在我的 Android 应用程序中有一个图像视图。我需要获取此图像并将其保存在 sqlite 数据库中。我试图获取图像的 uri 并将其保存在数据库中。我使用以下代码段来获取图像的 uri。
// get byte array from image view
Drawable d = image.getBackground();
BitmapDrawable bitDw = ((BitmapDrawable) d);
Bitmap bitmap = bitDw.getBitmap();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageInByte = stream.toByteArray();
//get URI from byte array
String path = null;
try {
path = Images.Media.insertImage(getContentResolver(), imageInByte.toString(),
"title", null);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Uri imageUri = Uri.parse(path);
String uriString = imageUri.toString() ;
System.out.println(uriString);
ContentValues values = new ContentValues();
values.put(COLUMN_PROFILE_PICTURE, uriString);
但是日志猫说
11-12 06:54:21.028: E/AndroidRuntime(863): FATAL EXCEPTION: main
11-12 06:54:21.028: E/AndroidRuntime(863): java.lang.ClassCastException: android.graphics.drawable.GradientDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
错误指向此行。
BitmapDrawable bitDw = ((BitmapDrawable) d);