相关疑难解决方法(0)

在API级别19以下的Android中选择文件或图像时,如何限制Google驱动器选项不显示?

我是Android的新手,我要求在API级别19以下的设备上选择文件.

我试过了

private void chooseFile() {
        Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
             intent.setType("application/pdf|file");
        } else {
             intent.setType("image/*|application/pdf");
        }
        startActivityForResult(intent, PICKFILE_REQUEST_CODE);
}
Run Code Online (Sandbox Code Playgroud)

现在我不希望Google驱动器作为选项出现,我想要文件管理器作为选项.我想用意图来做这件事.

任何人都可以建议我如何实现这一目标?

android android-intent

8
推荐指数
2
解决办法
2230
查看次数

标签 统计

android ×1

android-intent ×1