我使用RecyclerView 來列印我的資料 目前的問題是 只要加這行 讓我的每筆資料都有對印的圖片
就會讓執行速度下降很多 問題是我資料才8筆
圖片一段時間要更新 所以不能直接丟在drawable
請問有高手可以給我一些建議媽?
目前所有照片大小不超過10KB
Bitmap bmp = null;
try {
URL url =new URL("https://github.com/w0983676450/www/blob/master/"+date.getT_picture_id()+ ".jpg?raw=true");
bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
} catch (IOException e) {
e.printStackTrace();
}
hold.picture.setImageBitmap(bmp);
hold.itemView.setTag(i);
顯示畫面