Android 打开文件

在Android 7.0之前打开文件只需要。
private static void openFile(Context context, File f) {
        Intent myIntent = new Intent(android.content.Intent.ACTION_VIEW);
        String extension = android.webkit.MimeTypeMap.getFileExtensionFromUrl(Uri.fromFile(f).toString());
        String mimetype = android.webkit.MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
        myIntent.setDataAndType(Uri.fromFile(f), mimetype);
        context.startActivity(myIntent);
    }
但是Android 7.0之后就不行了,对于7.0之后首先要在AndroidManifest.xml中声明Provider。

     
 然后再项目中新建xml文件夹,在其中创建对应的文件filepaths.xml。


    
    
最后再实现功能。
private static void openFile(Context context, File f) {
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        String extension = android.webkit.MimeTypeMap.getFileExtensionFromUrl(Uri.fromFile(f).toString());
        String mimetype = android.webkit.MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
        //7.0以上需要
        if (Build.VERSION.SDK_INT >= 24) {
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            Uri uri = FileProvider.getUriForFile(context, "com.example.administrator.main.fileprovider", f);
            intent.setDataAndType(uri, mimetype);
        } else {
            intent.setDataAndType(Uri.fromFile(f), mimetype);
        }
        context.startActivity(intent);
    }





你可能感兴趣的:(Android,Android开发)