我需要从手机图库中上传图片并进行展示。我使用这段代码。
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == LOAD_IMAGE_RESULT && resultCode == RESULT_OK && data != null) {
Uri pickedImage = data.getData();
String[] filePath = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(pickedImage, filePath, null, null, null);
cursor.moveToFirst();
String imagePath = cursor.getString(cursor.getColumnIndex(filePath[0]));
Bitmap bitmap = BitmapFactory.decodeFile(imagePath);
postImage.setImageBitmap(bitmap);
cursor.close();
}
}
当我在三星设备中使用它时,无论我在摩托罗拉上试用它,它都不起作用。问题是位图似乎是空的。 我尝试从SD卡和主存储器上传图像,但位图始终为空。 有人知道如何解决这个问题? 感谢