只选择图片
Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
mActivity.startActivityForResult(intent, CODE_TYPE_GALLERY_MULTI_SELECT);
两个意图
Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
Intent intent1 = new Intent(Intent.ACTION_PICK, MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
Intent intent2 = Intent.createChooser(intent, "视频");
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent2.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[]{intent, intent1});
mActivity.startActivityForResult(intent2, CODE_TYPE_GALLERY_MULTI_SELECT);
选择图片及视频
Intent intent = new Intent(Intent.ACTION_PICK);
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.setClassName("com.google.android.apps.photos", "com.google.android.apps.photos.picker.external.ExternalPickerActivity");
mActivity.startActivityForResult(intent, CODE_TYPE_GALLERY_MULTI_SELECT);