我正在使用下面的代码,并且它在下面运行良好android 5。我可以从 SD 卡中选择图像或视频。
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("video/* image/*");
getActivity().startActivityForResult(photoPickerIntent, 1);
Run Code Online (Sandbox Code Playgroud)
然而Android L它只显示视频。尝试搜索但没有找到任何内容,任何帮助将不胜感激。