Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The view used in your screenshot is most probably a customized <a href="http://developer.android.com/reference/android/widget/ListView.html" rel="nofollow">ListView</a>. Take a look at that.</p> <p>A useful source I often recommend is the <a href="http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/index.html" rel="nofollow">API Demos project</a>.</p> <p>I'll quickly list the steps you need to do in order to reach your goal ;)</p> <ul> <li>Read <a href="http://developer.android.com/guide/topics/fundamentals.html" rel="nofollow">Android application fundamentals</a> (if not yet done)</li> <li>Watch the <a href="http://code.google.com/events/io/2010/sessions/world-of-listview-android.html" rel="nofollow">I/O session about ListView</a> or review the according slides.</li> <li>Take a look at Cursors and ListAdapters (and possibly ContentProviders). The <a href="http://developer.android.com/guide/tutorials/notepad/index.html" rel="nofollow">Notepad</a> tutorial might be useful. You'll need them in order to map the data on your list</li> <li>Check out how to create a custom list row layout. Basically create another layout xml file representing a single list row item; usually a LinearLayout with horizontal orientation (having a thumbnail, text,... in your specific case).</li> <li>Have fun ;)</li> </ul> <p>What helped me personally is to look at the native Android Contacts app's source code. It has a pretty "complex" list with sections, icons etc. Either download the <a href="http://source.android.com/" rel="nofollow">android source</a> or browse it <a href="http://www.google.com/codesearch/p?hl=en#oOy_5JrVRNM/trunk/packages/apps/Contacts/res/layout-finger/contacts_list_item.xml&amp;q=android%20contacts_list_item.xml&amp;d=0" rel="nofollow">here</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload