码迷,mamicode.com
首页 > 其他好文 > 详细

获取资源文件 r.drawable中的图片转换为drawable、bitmap

时间:2015-10-16 15:12:09      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

1、

Resources resources = mContext.getResources();
Drawable drawable = resources.getDrawable(R.drawable.a);
imageview.setBackground(drawable);

2、

Resources r = this.getContext().getResources();
Inputstream is = r.openRawResource(R.drawable.my_background_image);
BitmapDrawable  bmpDraw = new BitmapDrawable(is);
Bitmap bmp = bmpDraw.getBitmap();

3、

Bitmap bmp=BitmapFactory.decodeResource(r, R.drawable.icon);

Bitmap newb = Bitmap.createBitmap( 300, 300, Config.ARGB_8888 ); 

4、

InputStream is = getResources().openRawResource(R.drawable.icon);  

Bitmap mBitmap = BitmapFactory.decodeStream(is);

 

 

获取资源文件 r.drawable中的图片转换为drawable、bitmap

标签:

原文地址:http://www.cnblogs.com/netcorner/p/4885165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!