【Android】使用Assets目录中的图片资源
生活随笔
收集整理的這篇文章主要介紹了
【Android】使用Assets目录中的图片资源
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
ImageView 中有個setImageBitmap的方法,可以將Bitmap類直接設(shè)置為使用的圖片資源。
// 設(shè)置圖片// 獲取DOM ImageView img = findViewById(R.id.image);// 這里的兩個參數(shù),改成適合自己使用場景的 // 參數(shù)1, 當(dāng)前的上下文 // 參數(shù)2,filePath, 要讀取的文件名 img.setImageBitmap(getAssetsBitmap(MainActivity.fileName));public static Bitmap getAssetsBitmap(Context context, String path) {AssetManager am = context.getAssets();InputStream inputStream = null;try {inputStream = am.open(path);} catch (IOException e) {e.printStackTrace();}Bitmap bitmap = BitmapFactory.decodeStream(inputStream);return bitmap; }總結(jié)
以上是生活随笔為你收集整理的【Android】使用Assets目录中的图片资源的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Python】洛谷 P1175_表达式
- 下一篇: 【Python】PAT-1044 火星数