Tuesday 5 January 2016

Impleneting a Navigation Drawer in Android


android.jpg
Navigation drawer :It can used as an app's main navigation option on the left edge of the screen. it it hidden all the time and revealed on the click of the app icon or swipe gesture from the left of the screen. Navigation drawer is used when your app structure need more than three top level views, cross navigation from lower levels.and deep navigation branches.
In this tutorial you will learn how to implement the navigation drawer in the app. You can see lot of popular applications like Facebook, Youtube, Google + already introduced navigation drawer menu in their applications. Here are some quick tips to add navigation drawer to your application.
First Create a java file data for navigation drawer item: sample code: NavDrawerItem.java
  1. package info.androidhive.slidingmenu.model;

  2. public class NavDrawerItem {

  3.   private String title;
  4.   private int icon;
  5.   private String count = "0";

Here is not the end.. to read the full blog about Impleneting a Navigation Drawer in Android visit FIndnerd.

You can also post Blogs at Findnerd and also ask tech queries on topics like Javascript, Java C, iOS, Android programming Question and Answers etc.

No comments:

Post a Comment