Questions tagged [android-side-navigation]

Side navigation is a UI pattern that provides users quick shortcuts to the most important part of the application without having to leave the screen they are on.

Side navigation is a UI pattern that provides users quick shortcuts to the most important part of the application without having to leave the screen they are on.

Side navigation image

The side navigation replaces the much criticized dashboard pattern in the apps. The major criticism towards use of dashboards has been that it slows users down on their way to the app's content. Every time you launch the app you must first tap an icon to get where you want.

36 questions
1
vote
0 answers

How can I change spannable string background color with match parent

I want to change background color of textView with match parent instead of text length in spannable string in android side navigation menu... How can I achieve this? Below is my code: MenuItem quickAction =…
1
vote
1 answer

Can not update user Display name utill I log out and login again in firebase

I have a text view in my nav header which I want to update when user updates its display name. Profile gets updates successfully but textview in nav header does not get updated util i log out and login again. This is oncreate method firebaseAuth =…
1
vote
2 answers

Refresh or Update the listadapter from a fragment in android eclipse

I have a MainActivity with some fragments to run when click on side navigation menu. In the side navigation menu there is a item Called Number of SMS that shall be updated as soon as in the other fragment you choose the desired phone number. but the…
1
vote
2 answers

How can I switch between activities in Android using Sidebar?

I am trying to work with android Sidebar first time. I have successfully implemented sidebar on my Main Activity but I want sidebar in my all other activities. Is there any solution for it?? or Do I need to use Fragment?? Thanks
1
vote
2 answers

layout flickering after translation on galaxy s2

i'm trying to build an android app which uses google maps with the support fragment libraries, everything was going fine until i tried to implement my own sliding menu, which didn't seem like a big task, i just put it behind the main activity…
Dan Levin
  • 718
  • 7
  • 16
1
vote
1 answer

Implementing Side Navigation to switch between activities

So I'm trying to implement side navigation in my app and I can't seem to find a way to implement it the way I want. I have been looked at multiple examples and I came accross this one from korovyansk that pretty much fits the mold that I would…
1
vote
2 answers

Call an Activity by using Click on SideBar Navigation Menu Item

How to Call an Activity while using Side Navigation in Android. I am using this sample :Navigation menu for Android (based off Google+ app) https://github.com/darvds/RibbonMenu Here i want, whenever user will click on Home then need to call…
1
vote
2 answers

Horizontal facebook style silder

I have recently been working with your facebook style android slider and I was wondering if you could help me. I need to make it so that the slider slides from the opposite side. So instead of sliding from left to right at first, i need it to go…
0
votes
0 answers

Why does three same activity behave differently to the same function?

I have three DrawerLayout for three Activity. These activities are mostly same (layouts are copy past). Let's call them as activity 1, activity 2, activity 3. activity 1 can start activity 2, activity 2 can start activity 3. Besides I have my…
0
votes
1 answer

Want to add Bottom and Side navigation in one activity but How?

I want to add Bottom navigation and Side navigation drawer in one activity like LinkedIn. I tried to add bottom navigation to the navigation drawer activity but unsuccessful as navigationListener of both can have same names and in one listener how…
0
votes
2 answers

How to hide a certain activity's action bar while maintaining the navigation bar?

I'm developing an application with a side navigation menu. In my activities, the action bar of the activity I'm loading overlays the action bar with the side navigation menu. Even though the side menu is there and works fine. Home page with the side…
0
votes
2 answers

Android inflating a Navigation view in drawer layout giving exception

I am trying to implement a slide menu in android with navigation drawer. But it is giving me an exception at the point of inflating the navigation view. Why am I getting this exception? Here is my code: MainActivity.java …
0
votes
1 answer

Android - Adding side navigator from template

I have an existing app to which I would like to add a side navigator. I realized that Android SDK provides a template for that (by adding side navigation drawer activity from the Add menu) but not sure about how to add it the app. Here is the code…
0
votes
1 answer

Android: Error inflating fragment with map in drawerlayout

I have app that has map in the second menu in drawerlayout. When i try to inflate the fragment with map the app crashes. Following is the code: if (rootView != null) { ViewGroup parent = (ViewGroup) rootView.getParent(); if (parent…
0
votes
1 answer

How to access navigate to side navigation menu items(Fragments) programatically?

I'm trying to access the side navigation drawer items from the code as a response to click event from other fragment items in the side navigation drawer. Google hasn't helped so far. EDIT : Further Elaboration Eg: I have a button in first fragment…
RmK
  • 1,408
  • 15
  • 28