首页 > 系统 > Android > 正文

Android 加载asset文件夹下边的图片

2019-12-12 03:46:52
字体:
来源:转载
供稿:网友

将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文件夹下边的图片,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对武林网网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表