我有文件的路径,我希望设备使用其他应用程序打开文件

 public static void openUrl(Context context, String path) {
    Uri uriForFile;
    if  (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N){
        uriForFile = GenericFileProvider.getUriForFile(context,"xyz.provider",new File(path));
    }else{
        uriForFile = Uri.fromFile(new File(path));
    }
    MimeTypeMap myMime = MimeTypeMap.getSingleton();
    Intent newIntent = new Intent(Intent.ACTION_VIEW);
    String mimeType = myMime.getMimeTypeFromExtension(fileExt(path).substring(1));
    newIntent.setDataAndType(uriForFile, mimeType);
    newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    try {
        context.startActivity(newIntent);
    } catch (ActivityNotFoundException e) {
        Toast.makeText(context, R.string.msg_noHandlerForThisTypeOfFile, Toast.LENGTH_LONG).show();
    }
}


上面的代码在api 23及更低版本上运行良好

但是在android 7中,当我想打开mp3文件时,例如Toast“播放器不支持这种类型的音频文件”

或当我打开图像时,使用图库应用程序打开空白页。

最佳答案

更换:

newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);


与:

newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_GRANT_READ_URI_PERMISSION);


目前,第三方应用无权访问您的GenericFileProvider内容。

10-08 08:16