將asset中的圖片檔案載入到ImageView中
// load image try { // get input stream InputStream ims = getAssets().open("avatar.jpg"); // load image as Drawable Drawable d = Drawable.createFromStream(ims, null); // set image to ImageView mImage.setImageDrawable(d); } catch(IOException ex) { return; }
將asset中的圖片檔案繪製到自訂View中。
Bitmap bitmap; try { InputStream ims = this.getContext().getAssets().open("fl.jpg"); // 读入图片并将其强转为 BitmapDrawable类型 BitmapDrawable bd = (BitmapDrawable) Drawable.createFromStream(ims, null); bitmap = bd.getBitmap(); ims.close(); } catch(IOException ex) { return; } //canvas.drawBitmap(bitmap, -200, -200, new Paint()); canvas.drawBitmap(bitmap, null, new Rect(-30,-40,30,40), new Paint());//null表示原图尺寸,第二个rect表示显示区域(位图会拉伸填充该区域)
以上所述是小編給大家介紹的Android 加載asset文件夾下邊的圖片,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對腳本之家網站的支持!
更多Android 載入asset資料夾下邊的圖片相關文章請關注PHP中文網!