Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

2 Answers

up vote 7 down vote accepted

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:

share|improve this answer
ADT 20 provide a simple list view navigation structure. What I want is a list with Images and descriptions. – SLM Aug 2 '12 at 8:47
Please see the updated answer. – cyroxx Aug 2 '12 at 9:03
@cyroxx is it possible to run this template on android 2.3? – dig Dec 7 '12 at 9:30
1  
@dig As this Master/Detail template uses Fragments, you will need the Android Support Library. For details: stackoverflow.com/a/6528757/1388240 - Please also see the Android docs: developer.android.com/tools/extras/support-library.html – cyroxx Feb 25 at 17:08

You're going to need to use Fragments.

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.