网上有很多方法:
比如:
- bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.img);
这个方法getResources()报红,找不到这个方法(这就是网络上见到最多的的,求解释啊,我比较菜)
比如:- Resources
res = getResources(); - Bitmap
bmp = BitmapFactory.decodeResource(res, R.drawable.icon);
比如:
- Bitmap bm=xxx; //xxx根据你的情况获取
- BitmapDrawable bd=BitmapDrawable(bm);
推荐用这个方法(也是为自己记录下):
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.ic_launcher); // 不存在设置默认图片
好用你就赞一个.......