// 加载 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));
网友评论