我有以下代码打开包含几个文件夹的库,例如“相机”,“照片”,“屏幕截图”等。
是否可以直接在“相机”文件夹中打开图库?
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*");
mapActivity.startActivityForResult(photoPickerIntent, REQUEST_LOAD_IMG);