RecyclerView
Android Recyclerview Horizontal Scroll Example
This example will show you how to add and update RecyclerView items when horizontal scroll it. When the user scrolls from left to right at the beginning of RecyclerView, it will add a new item at the beginning. When the user scrolls from right to left at the end of RecyclerView, it will insert another …
Android CardView With Image And Text Example
Android CardView is a component that is used to implement the card layout effect. It is provided in the appcompat-v7 library. Use CardView, you can add a circle corner and shadow effect to the card frame. In this example, we will list some car images with text in a recycler view using grid layout manager. …
Android Hide Floating Action Button While RecyclerView Scroll Example
This example will show you how to make an android floating action button hide and show when the user scrolls a recycler view. android.support.design.widget.FloatingActionButton class is used to implement the floating action button. It is supported by the android material design support library, so before starting, make sure you have added the below dependence library …
Android Hide Floating Action Button While RecyclerView Scroll Example Read More »
Android RecyclerView Example
RecyclerView can be used to implement ListView, GridView, and Staggered GridView. It is more powerful because it is just like a framework, you can use your preferred layout manager to lay out the data in RecyclerView. And specify the scroll orientation as you like. It is highly decoupling and flexible.