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);