0
我想在我的ListView中的每個項目旁邊添加一個圖像,但目前爲止沒有任何成功。 有一個數據庫,從那裏我檢索文本數據,就像這樣:如何在Android中的ListView中的文本項旁邊添加圖像?
Cursor categoriesCursor = myCategoryData.getCategoriesData();
String[] displayCategories = new String[]{ CategoryDataSource.NAME};
int[] displayViews = new int[]{R.id.list_name};
setListAdapter(new SimpleCursorAdapter(
this,
R.layout.list_category,
categoriesCursor,
displayCategories,
displayViews,1));
myListView = getListView();
然後,我創建一個數組存儲圖像的ID
Integer[] imageIds = new Integer[]{
R.drawable.cat1,
R.drawable.cat2,
R.drawable.cat3,
};
我想不通的是如何綁定他們在一起。非常感謝您的幫助!
創建自定義適配器,檢查[此](https://github.com/mohit008/Android-List-View) – Mohit