我試圖顯示和附加圖像存儲在SD卡上的圖像視圖,我可以顯示圖像與setImageBitmap
沒有任何問題,但當我嘗試使用Picasso
不顯示圖像Andorid Picasso不顯示圖像從SDCARD
final File imageFile = new File(APP.DIR_APP + APP.IMAGE + "/" + channel.get(position).getFileName());
if (imageFile.isFile() && imageFile.exists()) {
BitmapFactory.Options options = new BitmapFactory.Options();
//options.inSampleSize = 8;
//holder.post_image.setImageBitmap(BitmapFactory.decodeFile(imageFile.getAbsolutePath(), options));
Picasso.with(context).load(imageFile).into(holder.post_image);
}
指這樣的:http://stackoverflow.com/a/24097624/5425930 –
嘗試'Picasso.with(上下文).load(Uri.parse(鏡像文件)的ToString ())。(holder.post_image);' – Enzokie
當畢加索失敗時,如果圖像尺寸真的很大,我也有類似的情況。對我而言,解決方案是遷移到Glide。 –