0

I want to put settings in left side of screen.

There will be switcher, listviews and textviews.

In result I need like this example:

enter image description here enter image description here

Is it possible and how I can start with?

Val
  • 4,225
  • 8
  • 36
  • 55
  • use [Navigation drawer](http://developer.android.com/training/implementing-navigation/nav-drawer.html) – Yugesh Sep 11 '13 at 08:12
  • Sorry for bad screenshots, it was animation and I just changed it on two screenshots. – Val Sep 11 '13 at 08:58
  • Do Navigation Drawer allows to use myLayout? I don't need ListLayout like in Menu. – Val Sep 11 '13 at 09:01
  • you want to add customized layout. – Yugesh Sep 11 '13 at 09:09
  • Yes, I want to add customized layout. – Val Sep 11 '13 at 09:13
  • refer this [link](http://stackoverflow.com/questions/8657894/android-facebook-style-slide).me also do one app like that what you expect(that link only help me to do that thing easily). – Yugesh Sep 11 '13 at 09:32

4 Answers4

2

You can use Sliding Menu Library to give such effect...

You can get the code from here.

You can also refer this link.

Community
  • 1
  • 1
SweetWisher ツ
  • 7,296
  • 2
  • 30
  • 74
0

It's possible, and you can implement it using the Navigation Drawer which comes with android support library.

Andy Res
  • 15,963
  • 5
  • 60
  • 96
  • I must use support-library-v4 or higher? – Val Sep 11 '13 at 08:11
  • v4 - Which means that your applications can use the libraries' features and still be compatible with devices running Android 1.6 (API level 4) and up. – Andy Res Sep 11 '13 at 08:12
0

You must check out the Ribbon Menu

1) What's the Purpose

Ease of Access: Allow easy access to a menu that slides in and out
Ease of Implementation: Update the same screen using minimal amount of code
Independency: Does not require support libraries such as ActionBarSherlock
Customization: Easy to change colors and menus

2)What's New

Changed the sliding animation to match Facebook and Google+ apps
Added standard ActionBar (you can chose to use ActionBarSherlock)
Used menuitem to open the Menu
Added ability to update ListView on main Activity
Added 2 ListViews to the Menu, similiar to Facebook and Google+ apps
Added a AutoCompleteTextView and a Button as well to show examples of implemenation
Added method to allow users to hit the 'back button' to hide the menu when it is open
Allows users to interact with background(main ListView) and the menu at the same time unlike the Facebook and Google+ apps!

OR

You can also try out with Sliding Menu

GrIsHu
  • 29,068
  • 10
  • 64
  • 102
0

You have to add one library file slider.jar into your project and follow this example for the same : http://www.oodlestechnologies.com/blogs/Facebook-Style-Slide-Menu-In-Android

AK Ali
  • 152
  • 1
  • 6