0

我有一个列表视图,它显示来自数据存储类的播放器名称,我希望它也显示播放器的图像。如何更改我的列表视图以显示图像?

这是我填充列表视图的代码:

    player_List = (ListView)findViewById(R.id.listplayer); 

    player_List.setAdapter(new ArrayAdapter<Player>(this, android.R.layout.simple_list_item_1, dataStore.getPlayers()));

任何帮助将不胜感激!

顺便说一句,我尝试了一个简单的数组适配器,但这似乎只喜欢字符串对象!我想放一个玩家对象!

谢谢

4

1 回答 1

0

检查下面的链接

http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/

于 2012-08-03T10:34:53.263 回答