인텐트를 이용하여 갤러리에 있는 사진을 볼 수 있잖아요

 

그렇다면 갤러리에 있는 동영상도 재생할 수 있을까요?

 

인터넷을 조금 알아봐서

 

Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.setType("video/*");
intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, MediaStore.Images.Media.CONTENT_TYPE);               
startActivityForResult(intent,1);

 

이정도까지 알아냈는데요

 

동영상만 있는 갤러리가 나오지만 동영상을 클릭하면

 

따로 재생되는 기능은 없습니다... 이 기능을 뭐 따로 구현해야하는지...

 

파일이름을 static으로 주는 방법말고 자신의 갤러리에 있는 동영상을 재생하는 방법이 있는지

 

아시는분 작은 답변이라도 달아주세요~~