我使用下面的代码从设备中选择文件
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(intent,1212);
以上代码给出了以下输出
有没有办法删除或过滤对话框中显示的应用?例如我想从对话框中删除com.android.contacts
。
答案 0 :(得分:1)
意图类型Intent.ACTION_PICK
使应用程序可以打开所有其他能够执行操作的应用Intent.ACTION_PICK
。当我删除照片应用程序时,我注意到它,它的选项没有显示在上面的弹出窗口中。