码迷,mamicode.com
首页 > 移动开发 > 详细

android 获取资源文件 R.drawable中的图片转换为drawable、bitmap(转载)

时间:2014-12-15 15:00:22      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:des   android   http   ar   sp   on   文件   div   art   

转载自:android 获取资源文件 R.drawable中的图片转换为drawable、bitmap

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);

android 获取资源文件 R.drawable中的图片转换为drawable、bitmap(转载)

标签:des   android   http   ar   sp   on   文件   div   art   

原文地址:http://www.cnblogs.com/xubuhang/p/4164689.html

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