Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Master Detail Flow Example [closed]

enter image description here

I'm trying to implement a user interface like above and looking for a good tutorial to or code sample to learn it. Can someone help me to get this done

like image 469
SLM Avatar asked Aug 02 '12 08:08

SLM


2 Answers

If you are using Eclipse with ADT installed, you can create a new Activity (or Android Project) and select MasterDetailFlow as the template to be used for that activity. This will contain a Master Detail flow with a simple list of items.

EDIT

For an advanced list layout, you will need a customized ListView.

Examples:

  • Custom ListView Android
  • Android Custom ListView with Image and Text
like image 121
cyroxx Avatar answered Oct 19 '22 08:10

cyroxx


You're going to need to use Fragments.

Here's how they work: http://developer.android.com/guide/components/fragments.html

like image 34
Yevgeny Simkin Avatar answered Oct 19 '22 08:10

Yevgeny Simkin