【问题标题】:How to get only .pptx(MS - powerpoint) file through Intent.ACTION_GET_CONTENT如何通过 Intent.ACTION_GET_CONTENT 仅获取 .pptx(MS - powerpoint) 文件
【发布时间】:2016-11-17 05:08:21
【问题描述】:

我尝试使用以下代码,但它向我显示了选择中的所有类型的文件。我只希望文件选择器菜单仅显示 .pptx(Powerpoint) 文件。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("application/pptx");
startActivityForResult(intent, PICK_DOC_REQUEST_CODE);

我们将不胜感激!

【问题讨论】:

标签: android android-intent powerpoint filechooser


【解决方案1】:

我刚刚通过设置以下mime-type自己找到了解决方案。

intent.setType("application/vnd.openxmlformats-officedocument.presentationml.presentation");

它就像一个魅力!

【讨论】:

    猜你喜欢
    • 2014-05-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-08-21
    • 2020-03-20
    相关资源
    最近更新 更多