1

I am trying to figure out the best way to develop an android application nowadays. That's why I want to learn using relevant controls/layouts when developing an application.

My previous question was about Instagram's Android application. At here.

Current question is about Facebook's.

FB Android app - settings part

I am wondering how Facebook app doing that, via which control? When you slide screen left on Facebook app, settings panel will be shown.

Is it an activity/frame/table or something else? How this app separates screen to two?

Any ideas?

Community
  • 1
  • 1
JustWork
  • 1,944
  • 3
  • 22
  • 34

3 Answers3

3

To create a slide menu, you can use the Navigation Drawer that Google just introduced at the Google I/O 2013, is included in the Support Library.

Design http://developer.android.com/design/patterns/navigation-drawer.html

Example tutorial: http://developer.android.com/training/implementing-navigation/nav-drawer.html

xagema
  • 775
  • 1
  • 7
  • 14
2

You must use Android Drawers.

You will find more information here.

Community
  • 1
  • 1
lopez.mikhael
  • 9,943
  • 19
  • 67
  • 110
1

I believe they are using HTML5 for this purpose. Checkout this :

http://jquerymobile.com/demos/1.3.0-beta.1/docs/panels/#

amol-c
  • 435
  • 4
  • 10
  • 1
    This should be easy to tell, place your google device into debug mode and and enable the view boundaries options. If it is html5 in a webview it will only have one box for the entire thing. – draksia May 17 '13 at 18:41