我有像 .doc .pdf .excel... 这样的文件,我想在外部打开它们。
我试过intent.ACTION_VIEW,但它在浏览器中打开它。
如何使用用户作为默认处理程序的应用程序打开它们?
File file = new File(Globals.SAVE_PATH + filename);
openFile(file.toURI());
public void openFile(URI uri) {
Intent i = new Intent(?????);
i.setData(Uri.parse(uri.toString()));
startActivity(i);
}