我把圖像放在 assets folder 中,然後想顯示它們。在 logcat 中也沒有顯示錯誤,但是就是顯示不出圖像。為什麼呢?
AssetManager mngr = mContext.getResources().getAssets();
is = mngr.open("test3.png");
bitmap = BitmapFactory.decodeStream(is);
Uri uriSavedImage=Uri.fromFile(pictures_directory);
((ImageView) view.findViewById(R.id.imageView1)).setImageBitmap(bitmap);
InputStream bitmap=null;
try {
bitmap=getAssets().open("test3.png");
Bitmap bit=BitmapFactory.decodeStream(bitmap);
img.setImageBitmap(bit);
} catch (IOException e) {
e.printStackTrace();
} finally {
if(bitmap!=null)
bitmap.close();
}