我有我的ListView
問題不同:列表視圖與圖像的每個項目
的ListView項XML有一個textarea和ImageView的,從數據庫取每個項目,我需要放置一個專用的圖像(基於_id)。
現在我有這個代碼的工作(但沒有圖像):
mio_db.openDataBase();
final Cursor data=mio_db.catalogo_prodotti();
final ListView listView1 = (ListView) findViewById(R.id.list_mia_2);
String[] from = new String[] {"prodotto","_id"};
int[] to = new int[] {R.id.nome_prodotto_lista,R.id.freccia_prodotto_lista};
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,R.layout.mia_lista_2, data, from, to);
listView1.setAdapter(adapter);
例如,如果我的_id
4我需要把圖像像freccia_4
在R.id.freccia_prodotto_lista
我不不知道該怎麼做。我讀過關於自定義適配器,但我不明白如何實現它。
任何人都可以幫助我嗎?
'SimpleCusorAdapter'構造函數已被棄用。 http://developer.android.com/reference/android/widget/SimpleCursorAdapter.html更好地使用自定義適配器。以下示例http://www.androidchennai.blogspot.in/2012/03/android-listview-example.html –
問題是,教程不使用遊標來做到這一點... – Zak
下面的教程將有助於您的需求** [自定義列表視圖](http://www.ezzylearning.com/tutorial.aspx?tid=1763429)和[this](http://android-er.blogspot.co.uk/2010/06/ custom-arrayadapter -with-with-different.html)**視頻 - [youtubeVideo](http://www.youtube.com/watch?v=LjAlNfa6obU)希望它有幫助 – GoCrazy