Android

Android

Android - Material design tutorial -8 ( RecyclerView basics )

Recyclerview was introduced as a replacement of ListView widget. Like listview, recyclerview is also used to display large set of items inside application. But recyclerview is more advanced and efficient than listview.

Read
Android

Android - Material design tutorial -7 ( NavigationView )

In this tutorial, we will discuss about navigation view. Using Navigation View which was introduced with android design support library, we can create a navigation drawer easily that comply with the Navigation Drawer [Design Guideline](http://www.google.com/design/spec/patterns/navigation-drawer.html) .

Read
Android

Android - Material Design Tutorial -6 ( TabLayout part 2 )

This is the next part of our previous tutorial, we have learnt how to create a tab layout and linked it with a view pager containing fragments. We will learn different tab modes in this tutorial.

Read
Android

Android - Material Design Tutorial -5 ( TabLayout part 1 )

Android Design library has brought a number of important material design components to all android 2.1 and higher devices like navigation drawer,  snackbar, tab layout , floating labels,floating action button etc .

Read
Android

Android - Material design tutorial -4 ( floating label edit text )

Floating label for edit text was introduced with material design library.Initially it acts as hint inside the Edit Text. When user touches the edit text or start entering the text, it moves to the top of the Edit Text with an animation as a floating label.

Read
Android

Android - Material Design Tutorial -3 ( FAB AND SNACKBAR )

In this post, we will learn about Floating action button and snackbar. Floating action button is a button that floats on right or left side of a device. Snackbar is used to show one message to the user.

Read
Android

Android CollapsingToolbarLayout - Material Design Tutorial -2

In this tutorial, we will learn to create a collapsing toolbar layout that was introduced with Design Support library . Before starting anything, let's check for the new layouts that were introduced with design library :.

Read
Android

Android Toolbar - Material Design Tutorial -1

Android Toolbar was introduced with Android Lollipop (API 21) .Toolbar can be used as a replacement for for android ActionBar. Toolbar was designed for Lollipop devices, but we can use it on Pre-Lollipop devices using google's AppCompat library. android.support.v7.widget.Toolbar class is used to implement ToolBar in this library.

Read