其他分享
首页 > 其他分享> > 在Android的默认图库图像查看器中使用URI打开图像

在Android的默认图库图像查看器中使用URI打开图像

作者:互联网

我已经提取了图像uri,现在我想用Android的默认图像查看器打开图像.甚至更好,用户可以选择用于打开图像的程序.如果您尝试打开文件,File Explorers之类的东西会提供给您.

解决方法:

接受的答案对我不起作用,

工作原理:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + "/sdcard/test.jpg"), "image/*");
startActivity(intent);

标签:android,android-image
来源: https://codeday.me/bug/20190916/1806634.html