程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-從 assets folder 中如何顯示圖像?

android-從 assets folder 中如何顯示圖像?

編輯:編程綜合問答
從 assets folder 中如何顯示圖像?

我把圖像放在 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();
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved