如何筛选 android 个文件选择器应用
How to filter android file chooser apps
我正在使用以下代码select来自设备
的文件
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(intent,1212);
以上代码给出以下输出
有什么方法可以删除或过滤对话框中显示的应用程序吗?例如我想从对话框中删除两个 com.android.contacts
。
意图类型 Intent.ACTION_PICK
使该应用程序打开能够执行操作 Intent.ACTION_PICK
的所有其他应用程序。我在删除照片应用程序时注意到了它,它的选项没有显示在上面的弹出窗口中。
我正在使用以下代码select来自设备
的文件Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(intent,1212);
以上代码给出以下输出
有什么方法可以删除或过滤对话框中显示的应用程序吗?例如我想从对话框中删除两个 com.android.contacts
。
意图类型 Intent.ACTION_PICK
使该应用程序打开能够执行操作 Intent.ACTION_PICK
的所有其他应用程序。我在删除照片应用程序时注意到了它,它的选项没有显示在上面的弹出窗口中。