Hi! Deepa, when you create your list adapter you can pass an int that is a constant in the R file that points to a xml file in your layout folder.
That XML defines the view that you are going to display for each row. You can create it, called it books_row.xml and save it under the layouts folder. Start with a linear layout with a text view inside (you can copy from your list view's XML file). Then you need to override your adapter's getView or bindView method to populate your inner views (text views, image views, whatsoever). You may need to inflate the view as well in some cases. Good luck! Em segunda-feira, 2 de julho de 2012 07h10min09s UTC-3, Deepa M escreveu: > > > Dear All > i am going to the app which takes data from database called book in that > details of book will be there i had retrieved it through cursors and added > it to list view...i want customize the list view by adding button to that > each list thats > for read button... > do u have any idea? > -- > Thanks& Regards > Deepa M > > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

