본문 바로가기

Android

유튜브 아이디를 통해 유튜브 앱으로 재생하기

public class YouTubeHelper {

    public static void watchYoutubeVideo(Context context, String id){

        try {

            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:" + id));

            context.startActivity(intent);

        } catch (ActivityNotFoundException ex) {

            Intent intent = new Intent(Intent.ACTION_VIEW,

                    Uri.parse("http://www.youtube.com/watch?v=" + id));

            context.startActivity(intent);

        }

    }

}