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);
}
}
}
'Android' 카테고리의 다른 글
AES256 encode,decode 를 해보자 (0) | 2016.07.12 |
---|---|
dp를 px로 변환하기 (0) | 2016.07.12 |
Intent를 이용한 트위터 공유하기 (0) | 2016.07.12 |
Intent를 이용한 카카오스토리 공유하기 (0) | 2016.07.12 |
Intent를 이용한 페이스북 공유하기 (0) | 2016.07.12 |