Android Story

[ Android ] 내장 동영상 플레이어 사용하기

WhiteDuck 2016. 2. 26. 09:27

[ Android ] 내장 동영상 플레이어 사용하기




// MEDIA PLAY - 내장 동영상 재생기를 통한 통영상 스트리밍
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse( file.path );
intent.setDataAndType(uri,"video/*");
startActivity(intent);


참고 : http://itpaper.co.kr/?mid=android&document_srl=1270&listStyle=viewer

반응형