2015-08-24 72 views

回答

0

發生這種情況是因爲這些阻塞了UI線程。

您需要使其背景(其他線程)您用來檢索您的位圖的一些任務。

我推薦你使用像畢加索或其他庫。

Piccaso

String photoPath= "/android_asset/DvpvklR.png";  
Picasso.with(context).load("file://"+ photoPath).into(imageView); 

你的類GridViewImageAdapter在你的方法getView!

Picasso.with(context).load("file://"+ _filePaths.get(position)) 
.into(imageView); 

刪除不需要的代碼。

更多Piccaso http://square.github.io/picasso/

注意記得導入庫。