Android打开文件方法
通过MIME type的不同用系统含有的程序打开Uriuri=Uri.parse("file://"+filePath);Intentintent=newIntent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setAction(Intent.ACTION_VIEW);Stringtype=Common.getMIMEType(filePath);intent.setDataAndTyp...