-1
我不知道如何在這個教程鏈接設置在同一圖像中的所有列表視圖項圖片:https://www.codeproject.com/Articles/507651/Customized-Android-ListView-with-Image-and-Text如果我更改了雪XML數據源到我的默認圖像也不會沒有出現在輸出空白顯示,所以我需要在哪裏做出改變編碼部分設置所有列表一個圖像如何設置圖片爲所有列表項
我不知道如何在這個教程鏈接設置在同一圖像中的所有列表視圖項圖片:https://www.codeproject.com/Articles/507651/Customized-Android-ListView-with-Image-and-Text如果我更改了雪XML數據源到我的默認圖像也不會沒有出現在輸出空白顯示,所以我需要在哪裏做出改變編碼部分設置所有列表一個圖像如何設置圖片爲所有列表項
在BinderDataClass刪除下面的代碼:如果你想改變默認顯示的圖像可以定義
String uri = "drawable/"+ weatherDataCollection.get(position).get(KEY_ICON);
int imageResource = vi.getContext().getApplicationContext().getResources().getIdentifier(uri, null, vi.getContext().getApplicationContext().getPackageName());
Drawable image = vi.getContext().getResources().getDrawable(imageResource); holder.tvWeatherImage.setImageDrawable(image);
它改變的ImageView的SRC屬性名爲list_row.xml
列表項xml文件<ImageView
android:id="@+id/list_image"
android:contentDescription="@string/app_name"
android:layout_width="60dip"
android:layout_height="60dip"
android:src="@drawable/sunny" />