我實現了一個網格視圖按照本教程:Android的教程 - setImageResource和網格視圖
http://developer.android.com/guide/topics/ui/layout/gridview.html
適配器具有以下圖片引用:
// references to our images
private Integer[] mThumbIds = {
R.drawable.sample_2, R.drawable.sample_3,
R.drawable.sample_4, R.drawable.sample_5,
R.drawable.sample_6, R.drawable.sample_7,
R.drawable.sample_0, R.drawable.sample_1,
R.drawable.sample_2, R.drawable.sample_3,
R.drawable.sample_4, R.drawable.sample_5,
R.drawable.sample_6, R.drawable.sample_7,
R.drawable.sample_0, R.drawable.sample_1,
R.drawable.sample_2, R.drawable.sample_3,
R.drawable.sample_4, R.drawable.sample_5,
R.drawable.sample_6, R.drawable.sample_7
};
和圖案,然後使用顯示setImageResource:
imageView.setImageResource(mThumbIds[position]);
從互聯網
- 下載圖片(我會提供的URI)
- 緩存圖像
- 顯示他們在GridView
我想提高這一點,...
我該怎麼做?請點我到正確的方向,並提供任何相關教程如果可能的話
寫您自己的邏輯來取過網或利用圖書館數據通用圖像加載程序或凌空 –
我寧願自己編寫fetcher。你知道這個有什麼好的教程嗎? – chuckfinley