How to display all YouTube videos from specific channel in Android app

半城伤御伤魂 提交于 2020-01-13 07:18:51

问题


How I display all YouTube videos from specific channel in Android app .I m using Android studio to develop Android App...and New video from channel automatically display in Android app.... Please Help Me


回答1:


    String youtubeURL = "https://www.youtube.com/user/androiddevelopers";
    Intent youtubeIntent=null;
    try {
        youtubeIntent=new Intent(Intent.ACTION_VIEW);
        youtubeIntent.setPackage("com.google.android.youtube");
        youtubeIntent.setData(Uri.parse(youtubeURL ));
        startActivity(youtubeIntent);
    } catch (ActivityNotFoundException e) {  // If youtube app not available then using browser it should open
        youtubeIntent= new Intent(Intent.ACTION_VIEW);
        youtubeIntent.setData(Uri.parse(youtubeURL ));
        startActivity(youtubeIntent);
    }


来源:https://stackoverflow.com/questions/44801321/how-to-display-all-youtube-videos-from-specific-channel-in-android-app

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!