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

时间:2011-03-21 21:11:32

标签: android android-image

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

14 个答案:

答案 0 :(得分:154)

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

工作原理:

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

答案 1 :(得分:27)

问自己,也回答自己:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("content://media/external/images/media/16"))); /** replace with your own uri */

它还会询问用于查看文件的程序。

答案 2 :(得分:22)

如果您的应用针对Android N(7.0)及更高版本,则不应使用上述答案(“Uri.fromFile”方法),因为它不适合您。

相反,您应该使用ContentProvider。

例如,如果您的图片文件位于外部文件夹中,则可以使用此文件(类似于我创建的代码here):

File file = ...;
final Intent intent = new Intent(Intent.ACTION_VIEW)//
                                    .setDataAndType(VERSION.SDK_INT >= VERSION_CODES.N ?
                                                    android.support.v4.content.FileProvider.getUriForFile(this,getPackageName() + ".provider", file) : Uri.fromFile(file),
                            "image/*").addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

<强>清单:

<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="${applicationId}.provider"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/provider_paths"/>
</provider>

res / xml / provider_paths.xml:

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <!--<external-path name="external_files" path="."/>-->
    <external-path
        name="files_root"
        path="Android/data/${applicationId}"/>
    <external-path
        name="external_storage_root"
        path="."/>
</paths>

如果您的图片位于应用的私有路径中,则应创建自己的ContentProvider,因为我在链接上创建了“OpenFileProvider”。

答案 3 :(得分:19)

尝试使用它:

Uri uri =  Uri.fromFile(entry);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
String mime = "*/*";
MimeTypeMap mimeTypeMap = MimeTypeMap.getSingleton();
if (mimeTypeMap.hasExtension(
    mimeTypeMap.getFileExtensionFromUrl(uri.toString())))
    mime = mimeTypeMap.getMimeTypeFromExtension(
        mimeTypeMap.getFileExtensionFromUrl(uri.toString()));
intent.setDataAndType(uri,mime);
startActivity(intent);

答案 4 :(得分:17)

基于Vikas answer但稍作修改:Uri由参数:

接收
private void showPhoto(Uri photoUri){
    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    intent.setDataAndType(photoUri, "image/*");
    startActivity(intent);
}

答案 5 :(得分:7)

如果您使用Android N及以下

,这件事可能有所帮助
def summary
    puts "Name: #{name}"
    puts "#{ingredients}"
    @summary
end

答案 6 :(得分:4)

对这个问题更清晰,更安全的回答(你真的不应该对字符串进行硬编码):

public void openInGallery(String imageId) {
  Uri uri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI.buildUpon().appendPath(imageId).build();
  Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  startActivity(intent);
}

您只需将图片ID附加到EXTERNAL_CONTENT_URI路径的末尾即可。然后使用View操作和Uri启动Intent。

图片ID来自查询内容解析器。

答案 7 :(得分:4)

所有上述答案都没有打开图像..当我第二次尝试打开它时,显示图库不是图像。

我从各种SO答案中得到了解决方案..

Intent galleryIntent = new Intent(Intent.ACTION_VIEW, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
galleryIntent.setDataAndType(Uri.fromFile(mImsgeFileName), "image/*");
galleryIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(galleryIntent);

这个只对我有用..

答案 8 :(得分:4)

使用Intent.ACTION_VIEW显示文件的问题是,如果您通过Uri解析路径。在所有情况下都不起作用。要解决该问题,您需要使用:

Uri.fromFile(new File(filePath));

而不是:

Uri.parse(filePath);

修改

这是我的完整代码:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(mediaFile.filePath)), mediaFile.getExtension());
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

<强>信息

MediaFile是我的域类,用于从对象中的数据库中包装文件。 MediaFile.getExtension()会为文件扩展名返回String Mimetype。示例:"image/png"

显示任何文件(扩展名)所需的

附加代码:

import android.webkit.MimeTypeMap;

public String getExtension () {
    MimeTypeMap myMime = MimeTypeMap.getSingleton();
    return myMime.getMimeTypeFromExtension(MediaFile.fileExtension(filePath));
}

public static String fileExtension(String path) {
    if (path.indexOf("?") > -1) {
        path = path.substring(0, path.indexOf("?"));
    }
    if (path.lastIndexOf(".") == -1) {
        return null;
    } else {
        String ext = path.substring(path.lastIndexOf(".") + 1);
        if (ext.indexOf("%") > -1) {
            ext = ext.substring(0, ext.indexOf("%"));
        }
        if (ext.indexOf("/") > -1) {
            ext = ext.substring(0, ext.indexOf("/"));
        }
        return ext.toLowerCase();
    }
}

如果您需要更多代码,请与我们联系。

答案 9 :(得分:3)

我用它对我有用

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), 1);

答案 10 :(得分:0)

几乎没有机会使用照片或图库应用程序(可能存在),但您可以尝试使用内容查看器。

请查看类似问题here

的其他答案

答案 11 :(得分:0)

我的解决方案

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory().getPath()+"/your_app_folder/"+"your_picture_saved_name"+".png")), "image/*");
context.startActivity(intent);

答案 12 :(得分:0)

我使用文件提供程序的解决方案

    private void viewGallery(File file) {

 Uri mImageCaptureUri = FileProvider.getUriForFile(
  mContext,
  mContext.getApplicationContext()
  .getPackageName() + ".provider", file);

 Intent view = new Intent();
 view.setAction(Intent.ACTION_VIEW);
 view.setData(mImageCaptureUri);
 List < ResolveInfo > resInfoList =
  mContext.getPackageManager()
  .queryIntentActivities(view, PackageManager.MATCH_DEFAULT_ONLY);
 for (ResolveInfo resolveInfo: resInfoList) {
  String packageName = resolveInfo.activityInfo.packageName;
  mContext.grantUriPermission(packageName, mImageCaptureUri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
 }
 view.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
 Intent intent = new Intent();
 intent.setAction(Intent.ACTION_VIEW);
 intent.setDataAndType(mImageCaptureUri, "image/*");
 mContext.startActivity(intent);
}

答案 13 :(得分:0)

uri 必须是内容 uri 而不是文件 uri, 您可以通过 FileProvider 获取 contentUri 为

Uri contentUri = FileProvider.getUriForFile(getContext(),"com.github.myApp",curFile);

不要忘记在 Manifest 文件中添加提供程序。

<provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="com.github.myApp"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths" />
</provider>