버튼을 클릭했을 때
현재 안드로이드에서 사용가능한 비디오 플레이어 목록이 뜨게 하고 싶습니다.

     Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
     intent.setType( "video/*" );
     intent.setData(VideoURI);
     startActivity(Intent.createChooser(intent, "Select Video Player"));

이와 같이 소스를 짰는데요,
비디오 플레이어 목록이 뜨는게 아니라

현재 SD카드에 저장된 비디오 목록을 보는 화면이 나옵니다.


ApiDemo에서 audio 프로그램을 intent로 연결시킬 때 setType("audio/*") 를 쓰길래
video로 바꾸어 봤는데 잘 안되네요..