Mobile/Android
[Android]Intent로 Video재생 프로그램 띄우기
out of coding
2015. 1. 26. 18:15
내부에서 개발한 비디오 플레이어가 아닌 미리 설치가 되어 있는 플레이어로 동영상을 볼수가 있다.
사용방법은 다음과 같다.
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse([URL]);
intent.setDataAndType(uri, "video/*");
if(intent != null && intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}