我正在尝试在选择器意图中仅显示画廊和文件管理器
所以,我尝试了类似下面的东西
Intent intent = new Intent();
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY,true);
intent.setAction(Intent.ACTION_PICK);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), RESULT_LOAD_IMAGE);
但与画廊和文件资源管理器一起,它也显示其他应用程序。它还显示谷歌驱动器
所以,我决定只选择前两个意图并删除其他意图。
如何做到这一点?