android如何获取res文件夹下drawable文件夹下的图片资源

一、前言:

我们在项目中有时候会遇到要用代码或drawable下面的图片资源,我们就可以使用以下方法获取:

1、 在Activity中:

Bitmapbm = BitmapFactory.decodeResource(getResources(),R.drawable.img);  

2、 在Fragment或者其它类中:

Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.ic_launcher);

二、其它方式可以参考:

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、方式三:

Resources r = this.getContext().getResources();
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如何获取res文件夹下drawable文件夹下的图片资源)