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

图片_ _ Bitmap_Drawable_Image?

时间:2016-04-08 00:44:33      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

 

==== 1  

b、读取res/drawable目录下的png或者bmp

Resources r = this.getContext().getResources();
//以数据流的方式读取资源
Inputstream is = r.openRawResource(R.drawable.mm_image);
BitmapDrawable bmpDraw = new BitmapDrawable(is);
Bitmap bmp = bmpDraw.getBitmap();

如果需要利用图片解码器,如下使用:
InputStream is = getResources().openRawResource(R.drawable.icon);
Bitmap mBitmap = BitmapFactory.decodeStream(is);
Paint mPaint = new Paint();
canvas.drawBitmap(mBitmap, 40, 40, mPaint);

 

用Bitmap bm = BitmapFactory.decodeResource(this.getResources(), R.drawable.splash);
BitmapDrawable bd = new BitmapDrawable(this.getResources(), bm);
mBtn.setBackgroundDrawable(bd);  来代替mBtn.setBackgroundResource(R.drawable.splash)。

 

图片_ _ Bitmap_Drawable_Image?

标签:

原文地址:http://www.cnblogs.com/awkflf11/p/5366233.html

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