How to set a few lists in one layout include their own data from DB?

here is source code about set list in Android guide. List id is
@android:list
why the id must be android:list?, may I use my own id?
If I can, how to set lists to main layout including their own data
(title)?

        Cursor notesCursor = mDbHelper.fetchAllNotes();
        startManagingCursor(notesCursor);
        String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
        int[] to = new int[]{R.id.text1};
        SimpleCursorAdapter notes =
            new SimpleCursorAdapter(this, R.layout.notes_row_weekly,
notesCursor, from, to);
        setListAdapter(notes);

I want to set lists like this :

 ----------------------------------------------------
 |   List1              List2                    |
 |   title1       |       title                     |
 |   title2       |       title                     |
 |   title3       |       title                     |
 |                 |       title                     |
 |                 |                                 |
 |                                                   |
 |                                                   |

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to