RecyclerView
Android Recyclerview Horizontal Scroll Example
This example will show you how to add and update RecyclerView items when horizontal scroll it. When user scroll from left to right at the beginning of RecyclerView, it will add a new item at beginning. When user scroll from right to left at the end of RecyclerView, it will insert another new item at …
Android CardView With Image And Text Example
Android CardView is a component that used to implement card layout effect. It is provided in appcompat-v7 library. Use CardView, you can add circle corner and shadow effect to the card frame. In this example, we will list some car images with text in a recycler view use grid layout manager. Each recycler view item …
Android Hide Floating Action Button While RecyclerView Scroll Example
This example will show you how to make a android floating action button hide and show when user scroll a recycler view. android.support.design.widget.FloatingActionButton class is used to implement the floating action button. It is supported by android material design support library, so before starting, make sure you have add below dependence library in build.gradle file. …
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 layout the data in RecyclerView. And specify the scroll orientation as you like. It is highly decoupling and flexible.