开发者

Example of list having texts with images in android

开发者 https://www.devze.com 2023-02-18 02:41 出处:网络
I am developing a small list android application in which i have texts and images.Can anyone tell how should i pursue

I am developing a small list android application in which i have texts and images.Can anyone tell how should i pursue

Tha开发者_开发百科nks in advance Tushar


Take a look at http://developer.android.com/reference/java/util/List.html. Lists in android are not discriminatory - you can have several types of objects in them, just try to remember/ keep track of what kind of object you have in each place.

In order to add an element to the list it would be something like this

List myList = new List();    
myList.add(9);
myList.add("hola");

You can take a look at the rest of methods that list implement in the link that is at the beginning of the post.

0

精彩评论

暂无评论...
验证码 换一张
取 消