我有一个问题,我想从 Android 中的图库中选择图像和视频,我使用了以下代码但不成功。
setType("*/*);
setType("video/*");
setType("image/*");
setType("image/* , video/*");
setType("image/* video/*");
Intent = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, 1);
Intent i= new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); i.setType("*/*"); startActivityForResult(i, RESULT_LOAD_IMAGE);