调用手机里的软件打开需要浏览的文件的时,会通过设置 Intent
的一些属性打开手机自带的软件进行预览。正常情况下,只需要这样就可以了
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(Uri.fromFile(new File(path)), type);
startActivity(intent);
android 7.0 以下,我用小米note 6.0测试ok,但是当我换到小米6X 8.1.0上的时候,调用系统图片提示文件已损坏,调用wps打开.doc文件只跳转到了wps主页并没有直接打开文件进行预览,还需要手动打开文件。这是怎么回事呢?
这里顺便说下android 7.0 以后对Uri的访问进行了限制,需要在manifest里面添加 provider,具体怎么写这个就不说了。好了回到刚才的问题为什么?只需要添加intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
意思就是在程序中动态的grant URI权限给Action接收者。下面给出详细代码:
//建立一个文件类型与文件后缀名的匹配表
private static final String[][] MATCH_ARRAY={
//{后缀名, 文件类型}
{".3gp", "video/3gpp"},
{".apk", "application/vnd.android.package-archive"},
{".asf", "video/x-ms-asf"},
{".avi", "video/x-msvideo"},
{".bin", "application/octet-stream"},
{".bmp", "image/bmp"},
{".c", "text/plain"},
{".class", "application/octet-stream"},
{".conf", "text/plain"},
{".cpp", "text/plain"},
{".doc", "application/msword"},
{".exe", "application/octet-stream"},
{".gif", "image/gif"},
{".gtar", "application/x-gtar"},
{".gz", "application/x-gzip"},
{".h", "text/plain"},
{".htm", "text/html"},
{".html", "text/html"},
{".jar", "application/java-archive"},
{".java", "text/plain"},
{".jpeg", "image/jpeg"},
{".jpg", "image/jpeg"},
{".js", "application/x-javascript"},
{".log", "text/plain"},
{".m3u", "audio/x-mpegurl"},
{".m4a", "audio/mp4a-latm"},
{".m4b", "audio/mp4a-latm"},
{".m4p", "audio/mp4a-latm"},
{".m4u", "video/vnd.mpegurl"},
{".m4v", "video/x-m4v"},
{".mov", "video/quicktime"},
{".mp2", "audio/x-mpeg"},
{".mp3", "audio/x-mpeg"},
{".mp4", "video/mp4"},
{".mpc", "application/vnd.mpohun.certificate"},
{".mpe", "video/mpeg"},
{".mpeg", "video/mpeg"},
{".mpg", "video/mpeg"},
{".mpg4", "video/mp4"},
{".mpga", "audio/mpeg"},
{".msg", "application/vnd.ms-outlook"},
{".ogg", "audio/ogg"},
{".pdf", "application/pdf"},
{".png", "image/png"},
{".pps", "application/vnd.ms-powerpoint"},
{".ppt", "application/vnd.ms-powerpoint"},
{".prop", "text/plain"},
{".rar", "application/x-rar-compressed"},
{".rc", "text/plain"},
{".rmvb", "audio/x-pn-realaudio"},
{".rtf", "application/rtf"},
{".sh", "text/plain"},
{".tar", "application/x-tar"},
{".tgz", "application/x-compressed"},
{".txt", "text/plain"},
{".wav", "audio/x-wav"},
{".wma", "audio/x-ms-wma"},
{".wmv", "audio/x-ms-wmv"},
{".wps", "application/vnd.ms-works"},
{".xml", "text/plain"},
{".z", "application/x-compress"},
{".zip", "application/zip"},
{"", "*/*"}
};
/**
* 根据路径打开文件
* @param context 上下文
* @param path 文件路径
*/
private static void openFileByPath(Context context,String path) {
if(context==null||path==null)
return;
Intent intent = new Intent();
//设置intent的Action属性
intent.setAction(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
//文件的类型
String type = "";
for(int i =0;i//判断文件的格式
if(path.toString().contains(MATCH_ARRAY[i][0].toString())){
type = MATCH_ARRAY[i][1];
break;
}
}
try {
File out = new File(path);
Uri fileURI;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
fileURI = FileProvider.getUriForFile(context,
"com.lonelypluto.test.provider",
out);
}else{
fileURI = Uri.fromFile(out);
}
//设置intent的data和Type属性
intent.setDataAndType(fileURI, type);
//跳转
context.startActivity(intent);
} catch (Exception e) { //当系统没有携带文件打开软件,提示
Toast.makeText(this,"无法打开该格式文件",Toast.LENGTH_SHORT).show();
e.printStackTrace();
}
}