Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vertical sliding menu in Android

Is there a vertical sliding menu available for android. I need something similar to Sliding menu of the Google Plus App BUT I need it to be able to slide vertically from bottom to top also.

Google Plus Sliding menu

like image 461
gop Avatar asked Jan 22 '13 06:01

gop


3 Answers

This UI Pattern is currently being referred to as Side Navigation and discussed in some detail here:

http://www.androiduipatterns.com/2012/06/emerging-ui-pattern-side-navigation.html

I think this is what you are looking for :)

https://github.com/korovyansk/android-fb-like-slideout-navigation

The side navigation isn't (yet) included in the Android SDK. A quick search in github does reveal one project that has implemented the UI pattern.

Here's another library project:

https://github.com/darvds/RibbonMenu

Two more library project:

https://bitbucket.org/jfeinstein10/slidingmenu/overview
https://github.com/Gregadeaux/android-fly-in-app-navigation

Hope this helps :)

like image 103
AndroidLearner Avatar answered Nov 16 '22 00:11

AndroidLearner


First up all ,

I think sliding menu is used for navigation between views in standard UI pattern see Drawers, So if you are using for same purpose then don't display it from bottom, It will confuse your user.

If you want to implement similar you can refer to link_1 , link_2

else, if you still want from bottom there are some links, like

How to create bottom menu like gmail android,

http://www.androidhive.info/2011/09/how-to-create-android-menus/,

Android SlidingDrawer from top?,

http://www.anddev.org/viewtopic.php?p=16622,

http://androidblogger.blogspot.in/2009/01/sliding-drawer-again.html

Android SlidingDrawer from top?

There is also on deprecated document but you can still refer it for just idea

like image 22
Saurabh Bayani Avatar answered Nov 16 '22 00:11

Saurabh Bayani


You can scroll the screen by 80% by calculating its width i have also implemented the same thing by programming only.

like image 1
GrIsHu Avatar answered Nov 16 '22 00:11

GrIsHu