list in android
How do I put image and开发者_Python百科 name in the list in Android?
You have to use a custom list adapter.
Here are few links that might be useful..
http://www.helloandroid.com/tutorials/how-update-custom-listview-images-simply
http://androidgenuine.com/?tag=text-and-image-on-a-listview-android
You need to make a ListAdapter to tell the ListView how to display your items (image and name). You can read a tutorial here. I'm sure there are many other tutorials out there, including the ones from google.
精彩评论