BitmapFactory 加载图片的方式

2019-03-22  本文已影响0人  沈溺_16e5
// 加载 Android Studio 中的图片资源时 
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.bb);

// 加载SD卡的图片时   string:图片在SD卡的路径
Uri imageUri= Uri.fromFile(new File(string));

Bitmap bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(imageUri));

Android 常用的 Drawable 和 Bitmap 之间的转化方法

上一篇下一篇

猜你喜欢

热点阅读