Category Archives: Android

Using RecyclerView in Android

In your Android application, whenever you want to display a list of data, you can use RecyclerView. Earlier Android provide ListView which was used for the same thing. RecyclerView can be thought of as a more advanced and performance optimized version of ListView. As the name suggests, RecyclerView also recycles the items by using the… Read More »

Using Camera in Android Application

In this post we will take a look at how to integrate camera with our android application. There are two ways in which we can use Camera in our Android application. Android provides you with 2 options while working with Camera 1) Use an existing Camera application 2) Work with Camera hardware API directly If… Read More »