1
A
回答
1
在this tutorial中,您可以看到如何定義自定義ListView。這應該可以幫助你實現你自己的解決方案。
0
Here's通過重構列表適配器代碼來高效實現複雜列表視圖。
0
下面是代碼,這將幫助ü出在列表視圖中添加圖像
public class ItemsList extends ListActivity {
private ItemsAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.items_list);
this.adapter = new ItemsAdapter(this, R.layout.items_list_item, ItemManager.getLoadedItems());
setListAdapter(this.adapter);
}
private class ItemsAdapter extends ArrayAdapter<Item> {
private Item[] items;
public ItemsAdapter(Context context, int textViewResourceId, Item[] items) {
super(context, textViewResourceId, items);
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.items_list_item, null);
}
Item it = items[position];
if (it != null) {
ImageView iv = (ImageView) v.findViewById(R.id.list_item_image);
if (iv != null) {
iv.setImageDrawable(it.getImage());
}
}
return v;
}
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
this.adapter.getItem(position).click(this.getApplicationContext());
}
}
相關問題
- 1. C#:如何在listview中添加圖像?
- 2. 在ListView列中添加圖像
- 3. 在ListView中添加掃描圖像
- 4. 如何在ListView中添加圖像?
- 5. 用c#在wpf listview中添加圖像#
- 6. 將圖像添加到ListView
- 7. 將圖像添加到ListView中
- 8. 在ListView中添加視圖
- 9. 在ListView中添加存儲在JSON數組中的圖像 - ReactNative
- 10. 如何通過適配器在Listview中添加圖標圖像?
- 11. Lazy在ListView中加載位圖圖像
- 12. 動態添加圖像到ListView
- 13. 如何將圖像添加到sqlite ListView?
- 14. 如何添加圖像到ListView
- 15. 從網絡添加圖像(srcs)到ListView
- 16. 如何將圖像添加到ListView?
- 17. 如何在Android中的自定義ListView中添加圖像?
- 18. 想在ListView中的前兩列添加圖像
- 19. 如何添加一個圖像到我的listview在android中?
- 20. 在ListView中添加圖像顯示內存不足
- 21. 在選定的項目(ListView)中正確添加背景圖像
- 22. Android:Glide不能在ListView中加載圖像
- 23. WPF - 在ListView中加載圖像
- 24. 在listview中加載Android圖像
- 25. 在ListView中延遲加載圖像
- 26. 如何在android listview或gridview中動態添加圖像/圖像按鈕
- 27. 在Android ListView中添加箭頭圖片
- 28. 如何在ListView中添加子視圖?
- 29. 添加圖像的每個ListView項中出列表視圖
- 30. 如何添加圖像圖標在android的listview?
看看這裏:http://stackoverflow.com/questions/459729/how-to-display-list-的圖像功能於列表視圖功能於安卓 – slhck 2010-09-02 10:41:36