如何过滤android文件选择器应用程序

时间:2016-05-31 13:46:39

标签: android android-intent android-implicit-intent android-afilechooser

我使用下面的代码从设备中选择文件

Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(intent,1212);

以上代码给出了以下输出

sample out put

有没有办法删除或过滤对话框中显示的应用?例如我想从对话框中删除com.android.contacts

1 个答案:

答案 0 :(得分:1)

意图类型Intent.ACTION_PICK使应用程序可以打开所有其他能够执行操作的应用Intent.ACTION_PICK。当我删除照片应用程序时,我注意到它,它的选项没有显示在上面的弹出窗口中。