recyclerview Archives - Page 2 of 2 - Androhub

Header and Footer Banner

Android Header and Footer Tutorial

In this tutorial we are going to learn how to implement Header and Footer for ListView and RecyclerView. The header is a View that displays before first item and footer displays after last item. Most of the apps you had seen who is having header and footer. Same thing we are going to implement in this tutorial.

Read More
Toolbar Animation Banner

Android Toolbar Animation Using Design Support Library

With the new Design support library for Android, it has become easier for us to create some great animations with minimal effort. We have seen WhatsApp profile view design with user image hide on scrolling. For that we need Design Support Library. In one of my earlier tutorial i had shown how to hide and show

Read More
Staggered and Horizontal RecyclerView Banner

Android Staggered and Horizontal RecyclerView

In my earlier tutorials of RecyclerView we had learn how to use RecyclerView to create ListView and GridView items. Today we are going to create Staggered GridView and Horizontal RecyclerView. Staggered GridView Staggered GridView is nothing but GridView with random grid sizes that look nice in app. To achieve this we need  StaggeredGridLayoutManager and the syntax

Read More
Material Design Tab Banner

Android Material Design Tabs Using TabLayout

In earlier we use ActionBar Tabs over ViewPager that we had done in earlier post that you can check here. But this ActionBar Tabs is deprecated in material design. So for that we need Material Design Tabs for implementing tabs in our app. We have seen Google Play Store, Whatsapp and many more are using

Read More

Android RecyclerView

What is RecyclerView? Google’s upcoming operating system named Android L looks very promising. It is highly focused on rich user experience and what they called it as material design. In this example we will take a look at the new UI widget called RecyclerView. RecyclerView is more advanced and flexible and efficient version of ListView. RecyclerView

Read More