I am new to Android. I want to implement navigation drawer as this :
The Navigation drawer should open below App Bar and should have red left pane for category icon and right page (white) with navigation options.
I am trying to convert default Navigation Drawer activity of Android to this style but don't know where to start with.
If anyone can help me implementing this would be great help.
Thanks in advance.
you need a custom navigation drawer to achive that, you can start by following this link https://github.com/awidiyadew/DrawerMultiLevelListview
Related
i want to design a navigation drawer for my app . In it i want various options to go to various activity.
I also want to add some clickable items on title bar which would go to any activity specified.
so, please suggest me direction to proceed.
Best example is add new activity and select "Navigation Drawer Activity"
That use titlebar item for opening menu and swip for opening and closing menu
I want to Implement Navigation drawer with sliding tabs. I have done this by designing my own navigation drawer. Now I want to use Android studio default navigation drawer with sliding tabs. I am not getting any idea???? Can anyone please help me...
THANKS in Advance
It has been explained here in great detail with code.
http://developer.android.com/training/implementing-navigation/nav-drawer.html
For New Project:-
Create New Project, while project creating, select Sample Activity like Navigation Drawer Activity Or Tabbed Activity. You can create it by selecting.
Or, In existing Project:-
Goto File --> New --> Activity --> Gallery and Select which you want.
Thanks,
I want to show the action bar navigation icon on the Right side of the ActionBar [instead of the default left side].
Also I need to have the same slide in animation of the Navigation Drawer icon as in the Gmail and Google plus application.
Is there any way of achieving that animation on the right side easily.
Any kind of help or suggestion is appreciated.
Thanks in advance!
This is how I've implemented the right navigation drawer. Just need to open and close the drawer based on Gravity. In this example they use Gravity.RIGHT, I use Gravity.END. I'm not sure which one is right or wrong. Hope this helps.
This link for ActionBar animation provides some good information, and should give a good base for doing the navigation drawer icon animation.
Here Is Slide Menu Image That I want
like
https://www.dropbox.com/s/t51hnf1768xifsj/Screenshot_2014-07-02-13-47-32.png
Hello Guyes
i want to make Sliding Menu Like this Image .Top Of Sliding Menu Show User Logged Image .I m using Json
Sliding Should Work For All Activity .Guyes i m very New On Android .I dont How To make Sliding Menu Like This
please Help Me To create Sliding Menu
thanks In Advance
You can achieve this by implementing Navigation Drawer.
Here is the example which will help you understand it better
Navigation Drawer - android and Android Sliding Menu using Navigation Drawer
Hope this will help you.
I have an app composed by different Fragments, some are equipped with a navigation drawer.
I would like to add the navigation drawer app icon in the MainActivity ActionBar only if required by the active Fragment but I cannot figure out how to do it in a proper way.
Can someone point me in the right direction, please?
Use
mDrawerToggle.setDrawerIndicatorEnabled(false);
whenever you select a fragment that don't want to display the navigation drawer icon.
Write it in your code..
mDrawerToggle.setDrawerIndicatorEnabled(false);
It will solve your problem... :)