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
287
votes
25 answers

Android Facebook style slide

The new Facebook application and its navigation is so cool. I was just trying to see how it can be emulated in my application. Anyone has a clue how it can be achieved? On clicking the the top left button the page slide and the following screen is…
Harsha M V
  • 54,075
  • 125
  • 354
  • 529
118
votes
8 answers

How did Google manage to do this? Slide ActionBar in Android application

I really want to implement this (the side navigation) in an app of my own, does anyone know how Google managed to do this? They seem to have pulled the current window aside and put in a fly-in navigation of their own.
38
votes
3 answers

How to make Facebook's app new menu on Android?

Possible Duplicate: Android facebook style slide Recently Facebook released a new version of its Android application that features an improved navigation. One main new feature is the new menu (that already existed on the iOS version): By…
Amokrane Chentir
  • 29,907
  • 37
  • 114
  • 158
34
votes
4 answers

Side navigation menu like Facebook app

I'm looking for something similar to what the new Facebook app has implemented for the Android/ios mobile applications. I am referring to a side navigation menu which opens with a finger movement. Something like this Is there any library or example…
Jatago
  • 725
  • 1
  • 8
  • 18
17
votes
4 answers

Android sidebar like facebook or firefox

With the new facebook app it comes with an hidden sidebar that I would love to use something like that in my applications. It looks kinda like the sidebars that firefox mobile have... Do you have any idea how to implement it besides re-implementing…
13
votes
6 answers

Android slide menu that slide from both sides left and right

I'm trying to make sliding drawer menu like the one in the Facebook app. I navigated many questions like this amazing one here. and found a lot of libraries but all of them slide from left to right or from right to left in different one. I want to…
M Hassen
  • 363
  • 1
  • 7
  • 17
9
votes
3 answers

Layout Animation Android[Facebook]

I want to Animate two Different layouts. Example I already have the animation the way I want, I just want to animate a different XML Layout. There is a class LayoutAnimationController, but I really dont know how to use it. Can some one point me in…
Maikel Bollemeijer
  • 6,545
  • 5
  • 25
  • 48
6
votes
2 answers

iOS Facebook Slide Menu for Android

I am looking to create the feature described in this post SplitView on iPhone, but I would like it for Android. Is there any library that would help me achieve this? Would I just use fragments and if so, what would this look like?
3
votes
1 answer

Sliding menu with many activities

There are many implementations of facebook app-like sliding menu, which are mentioned in that question. Some of them, which implementation I checked, are using one activity for showing menu and data. When user selects item from menu no new activity…
Maxim Korobov
  • 2,574
  • 1
  • 26
  • 44
3
votes
3 answers

Shift the screen to right on click of menu; like facebook

In my application, I want to have behavior like facebook app wherein on click of icon I'd like to shift the whole screen towards right and display some menus on the left as shown below: Before Clicking Menu Button After Clicking Menu Button One…
Rajkiran
  • 15,845
  • 24
  • 74
  • 114
2
votes
1 answer

Back button is not available when teversing application page from side navigation menu in ionic 2

I am developing an ionic 2 mobile application, i found when i visit a page through side navigation panel it does not providing the auto generated back button on the particular page, while when i am going to the page in normal traversing form one…
2
votes
0 answers

Loading image from url in side navigation drawer

I'm trying to achieve a Google+ like side navigation drawer with profile pic loaded from the facebook id. All's well except the image doesn't load inside the side navigation drawer. I've tried Picasso as well Volley image loader + NetworkImageView…
RmK
  • 1,408
  • 15
  • 28
2
votes
1 answer

How implement SlidingMenu?

I'd like to try to construct main.xml like in this application. Actually, I want construct it so that to have the same menu (with other styles). This menu is very useful. I can pull (or drag, don't know) screen to right, and menu will be on the left…
anony_root
  • 1,477
  • 4
  • 16
  • 25
1
vote
1 answer

new facebook android application like view

As i want to display number of cities on a left side of a screen just like following-it is a new Facebook android application. when you click on bar shown as a red square around it,the list view on a left side comes into picture after sliding a…
Hunt
  • 8,215
  • 28
  • 116
  • 256
1
vote
1 answer

actionBarDrawerToggle.setDrawerIndicatorEnabled(false) back arrow has no action

I use a navigation drawer, which I want to disable for inner Fragments. I used following code to setup the drawer: private void initSideMenu() { actionBarDrawerToggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.Open,…
Gerke
  • 926
  • 1
  • 10
  • 20
1
2 3