Material Design Topics


List of article on Archive

RecyclerView As Staggered Grid With Example In Android Studio

In Android, RecyclerView is an advanced and flexible version of ListView and GridView. It is a container used to display large amount of data sets that can be scrolled very efficiently by maintaining a limited number of views. RecyclerView was first introduced in Material Design in API level 21 (Android 5.0 i.e Lollipop). Material Design … Continue reading RecyclerView As Staggered Grid With Example In Android Studio

RecyclerView Using GridLayoutManager With Example In Android Studio

In Android, RecyclerView is an advance and flexible version of ListView and GridView. It is a container used to display large amount of data sets that can be scrolled very efficiently by maintaining a limited number of views. RecyclerView was introduced in Material Design in API level 21 (Android 5.0 i.e Lollipop). Material Design brings lot … Continue reading RecyclerView Using GridLayoutManager With Example In Android Studio

RecyclerView As ListView With Example In Android Studio

In Android, RecyclerView is an advanced and flexible version of ListView and GridView. It is a container used for displaying large amount of data sets that can be scrolled very efficiently by maintaining a limited number of views. RecyclerView was introduced in Material Design in API level 21 (Android 5.0 i.e Lollipop). Material Design brings … Continue reading RecyclerView As ListView With Example In Android Studio

TabLayout Tutorial With Example In Android Studio

In Android TabLayout is a new element introduced in Design Support library. It  provides horizontal layout to display tabs on the screen. We can display more screens in a single screen using tabs. We can quickly swipe between the tabs. TabLayout is basically view class required to be added into our layout(xml) for creating Sliding Tabs. … Continue reading TabLayout Tutorial With Example In Android Studio