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 »