[android-developers] Re: how does notepad_list and notes_row joined in Notepadv1

2008-12-09 Thread super
Thank you very much!!! I get it! Thank you ! --~--~-~--~~~---~--~~ 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

[android-developers] Re: how does notepad_list and notes_row joined in Notepadv1

2008-12-09 Thread Shubham
Hi, notes_row specifies an element that is used to display an individual row in the ListView. In essence the ListView needs a View on how to display each row. This is specified when you do: SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to);