18

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

SLM
  • 839
  • 3
  • 14
  • 31

2 Answers2

18

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:

Community
  • 1
  • 1
cyroxx
  • 3,809
  • 3
  • 23
  • 35
  • ADT 20 provide a simple list view navigation structure. What I want is a list with Images and descriptions. – SLM Aug 02 '12 at 08:47
  • @cyroxx is it possible to run this template on android 2.3? – Nik Dec 07 '12 at 09:30
  • 1
    @dig As this Master/Detail template uses Fragments, you will need the Android Support Library. For details: http://stackoverflow.com/a/6528757/1388240 - Please also see the Android docs: http://developer.android.com/tools/extras/support-library.html – cyroxx Feb 25 '13 at 17:08
3

You're going to need to use Fragments.

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

Yevgeny Simkin
  • 27,946
  • 39
  • 137
  • 236