Questions tagged [android-navigationview]

One of the features of Android Design Support Library which is bringing a number of important material design components to all developers and to all Android 2.1 or higher devices. Navigation Drawer enables your app having easy UX to navigate, particularly for first time users. NavigationView provides the framework for developers easier to establish Navigation Drawer UI.

Navigation Drawer () can be an important focal point for identity and navigation within your app and consistency in the design here can make a considerable difference in how easy your app is to navigate, particularly for first time users. NavigationView makes this easier by providing the framework you need for the navigation drawer as well as the ability to inflate your navigation items through a menu resource.

430 questions
0
votes
2 answers

how to close navigation properly before go to new Activity class

I want to hide NavigationView before go to new activity . In this time in my app Navigation Drawer not hiding properly yet start new activity . So I want to hide navigation properly then go to new activity .And I am not using number of fragment with…
0
votes
1 answer

Navigation hamburger not visible below Lollipop

I have a navigation drawer activity. The hamburger and the settings button is visible in Lollipop, but not visible in versions below lollipop. However, if I touch that area, it's working fine, it's just, not visible. My xml code: app_bar_nav
0
votes
1 answer

Android - Unable to inflate NavigationView

I'm trying to inflate NavigationView in Android inside a DrawerLayout. Here's the XML file :
Kevin Murvie
  • 2,592
  • 1
  • 25
  • 43
0
votes
1 answer

NavigationView with different icon states

So is there a way in NavigationView specifically that I can make an icon that has different states changing dynamically like the picture above? Currently Using these versions compile 'com.android.support:appcompat-v7:23.1.1' compile…
david
  • 2,900
  • 5
  • 28
  • 48
0
votes
1 answer

Android: How to set android.support.design.widget.NavigationView open from right in android studio 1.5.1?

I am using android studio 1.5.1. this version makes navigation drawer activity by its own:
0
votes
1 answer

How to open navigationview selected item

I am following this tutorial,i made some changes and i remove tablayout and viewpager,now i am trying to set CheeseListFragment as first item of navigationview but it display nothing,can any one tell me how to achieve that MainActivity.java public…
albert
  • 251
  • 5
  • 20
0
votes
2 answers

Navigation Drawer Covers arrow android

I am working on an app where I am using the NavigationDrawerActivity. When I tap on the hamburger icon, the navigation drawer slides in. But it covers the animation from hamburger to arrow. Is there anyway I can use my NavigationDrawer below the…
0
votes
0 answers

Navigation View headerLayout redundant issues

My navigation drawer have redundant header view . Anyone facing this issues ? My code for my header view : private FrameLayout flHeaderContainer; private NavigationView drawer; drawer = (NavigationView)…
Joshua
  • 61
  • 1
  • 9
0
votes
1 answer

How to implement the navigation drawer in android with sub item menu

I am new in android and in my project I want to add the navigation drawer. I am selecting Navigation Drawer activity and create project in eclipse please help me how to develop navigation drawer below Here is the image of navigation drawer for item…
dips
  • 11
  • 1
  • 1
  • 4
0
votes
1 answer

Change TextView in DrawerLayout

I would like to simply change the text in my DrawerLayout But everything I try achieve to a NullPointerException Can someone help me ? I can't succeed to go trough the layouts.. Activity_main.xml
0
votes
3 answers

Error inflating NavigationDrawer android

My app shows the following error. Error inflating class android.support.design.widget.NavigationView For all lollipop mobiles, it works fine.. But it crashes on versions lower than lollipop. I tried this but it didn't help. Below is my…
0
votes
1 answer

how to set icon of same color in android.support.design.widget.NavigationView?

This is the code i have written to get the navigation drawer using android.support.design.widget.NavigationView`
Arnold Laishram
  • 1,801
  • 2
  • 18
  • 25
0
votes
0 answers

access view components inside navigation view android

i'm new in android programming, i had a problem for accessing view components inside navigation view. this is my code: `
0
votes
1 answer

Android move main content to reveal drawer right side

I'd like to create a navigation drawer effect, but rather than the drawer sliding out from the right.I Created code and my code working perfect when my slide menu is left side.this is a my java code. DrawerLayout drawerLayout; View drawerView; View…