bitmap转换为drawable

Bitmap bitmap = MediaStore.Images.Media.getBitmap(this, Uri.parse(string));
Drawable drawable =new BitmapDrawable(bitmap);// 这样就转换成drawable格式,可以设置背景图片了

猜你喜欢

转载自www.cnblogs.com/Nigeria/p/10471028.html