How can I change just one of menu item icon color in Android's navigation drawer? I don't want to change the entire drawers icon but just one icon.
I tried setting the android:iconTint property but that does not work.
Related
I want to create a bottom navigation bar with different color for different menu items. Something similar to "https://github.com/gauravk95/bubble-navigation".
All I could do till now is just change the on selected and on unselected colors for the navbar. Is there any way I can change these colors for each menu item?
I want to add title under the icon that as default appears when i create the navigation drawer .
like in red border
Its not possible if you use normal ActionBarToggle, you can provide your own custom layout in toolbar and add menu icon to it but back animation will not work. Also you will have to handle click events on the menu your self
How to customize Navigation Drawer menu items like the picture :
and need to disable some drawer items on login status. if user is not login the disabled menu items text color will grey and the background of item color will changed. And non disabled items color will white how to implement Navigation Drawer
Please help me to solve this problem.
you can edit these files inside your project to costumize it as you wished:
layout/nav_header_main.xml
layout/app_bar_main.xml
menu/activity_main_drawer.xml
I'm using support.v7.widget.Toolbar for create my actionbar. My question is that how I can change default drawer menu icon position to right corner?
Use DrawerArrowDrawable set in menu replace Toolbar Navigation Icon!
I am using a drop-down navigation list in action bar. I want to change the background color of the selected item in the drop-down navigation list. How can we change this through java code?