Office文档无法在ACTION_VIEW意图中使用

时间:2015-05-21 13:34:40

标签: android android-intent

我正在尝试使用Intent.ACTION_VIEW与任何其他办公室阅读器一起打开办公室文档,但它仅适用于Google表格或Google文档,与其他应用程序(例如Polaris Office或其他应用程序)一起使用,它根本不起作用。 这是我写的代码:

Intent intent = new Intent(Intent.ACTION_VIEW);
File mFile = new File("folder", Integer.toString(myFile.hashCode()));
intent.setDataAndType(Uri.fromFile(mFile), "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
startActivity(intent);

代码有问题吗?

0 个答案:

没有答案