您好,我有以下代码可以打开图库,以便用户选择图像。
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select file to upload "), 1);
我可以选择图库和文件资源管理器。我怎样才能只获得内置画廊的 android。我需要这个,因为我不希望用户选择图像以外的东西。谢谢