第一行代码(第2版):8.3.2从相册中选择图片
程序员文章站
2022-06-22 08:05:57
第一行代码(第2版):8.3.2从相册中选择图片出现错误 :进入相册后,选择图片 ,无法显示到页面查阅这篇博客Android 10 不能直接通过图片路径显示图片,需要将他们转换成图片Uri来解决,经过修改后我的代码如下: /** * 将图片转换成Uri * @param context 传入上下文参数 * @param path 图片的路径 * @return 返回的就是一个Uri对象 */ public stat...
第一行代码(第2版):8.3.2从相册中选择图片
出现错误 :进入相册后,选择图片 ,无法显示到页面
查阅这篇博客Android 10 不能直接通过图片路径显示图片,需要将他们转换成图片Uri来解决,经过修改后我的代码如下:
/**
* 将图片转换成Uri
* @param context 传入上下文参数
* @param path 图片的路径
* @return 返回的就是一个Uri对象
*/
public static Uri getImageContentUri(Context context, String path) {
Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
new String[] { MediaStore.Images.Media._ID }, MediaStore.Images.Media.DATA + "=? ",
new String[] { path }, null);
if (cursor != null && cursor.moveToFirst()) {
int id = cursor.getInt(cursor.getColumnIndex(MediaStore.MediaColumns._ID));
Uri baseUri = Uri.parse("content://media/external/images/media");
return Uri.withAppendedPath(baseUri, "" + id);
} else {
// 如果图片不在手机的共享图片数据库,就先把它插入。
if (new File(path).exists()) {
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.DATA, path);
return context.getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
} else {
return null;
}
}
}
private void displayImage(String imagePath) {
Log.d(TAG, "displayImage: imagePath: " + imagePath);
if (imagePath != null) {
if (Build.VERSION.SDK_INT >= 29) {
picture.setImageURI(getImageContentUri(MainActivity.this, imagePath));
} else {
Bitmap bitmap = BitmapFactory.decodeFile(imagePath);
picture.setImageBitmap(bitmap);
}
} else {
Toast.makeText(this, "failed to get image", Toast.LENGTH_SHORT).show();
}
}
其它地方与书上一样,这里就不贴出来了
本文地址:https://blog.csdn.net/weixin_39494124/article/details/107874431
上一篇: 理解Python中的With语句
下一篇: Typora快捷键设置