Questions tagged [navigationview]

Provides navigation drawer access. Part of Android's design support library.

Summary

Helps developers follow Android's material design standards by providing access to the navigation drawer.

Navigation View

The 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.

Reference

770 questions
-2
votes
1 answer

Navigation Drawer from right to left?

I am using android studio 3.1 and I want to change the drawer so that it is shown from the right side . I tried android:layout_gravity="end" and that worked for me fine when swipping from rtl , but I still have one problem with the menu button on…
-2
votes
1 answer

Layout of the buttons on the side menu

I'm in the process of moving buttons from the main activity on the navigation view / side bar. I wonder if there is any way that moved the LinearLayout with two buttons from the main activity to the side menu. Is it any way? I ask, because I do…
-2
votes
2 answers

Update NavigationView state when user goes back to previous fragment

I'm using the NavigationView drawer in my app. I'm trying go back to the previous Fragment if the user press back button. This code works well: @Override public void onBackPressed() { FragmentManager fm = getSupportFragmentManager(); …
aseolin
  • 1,184
  • 3
  • 17
  • 35
-3
votes
2 answers

Implement Same Navigation View along different Activites in Android

Perhaps somebody can help me understand this question about the subject. I already made my navigation view, but now I want the same navigation view in my other 2 activities. What I don't understand is how should I properly implement my layouts for…
1 2 3
51
52