其他分享
首页 > 其他分享> > 打开Youtube频道,拨打YouTube应用(Android)

打开Youtube频道,拨打YouTube应用(Android)

作者:互联网

我想打开显示特定频道的YouTube应用,但这只会执行浏览器.

try 
        {
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse("http://www.youtube.com/"+channel));
            startActivity(intent);
        }
        catch (Exception e) 
        {
            startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.youtube.com/"+channel)));         
        }

我想表明这一点:

解决方法:

对图书馆的研究称为YouTubeAndroidPlayerApi.这段代码完全符合您的要求.

Intent intent = YouTubeIntents.createUserIntent(this, channelName);
startActivity(intent);

标签:android,channel,youtube,youtube-channels
来源: https://codeday.me/bug/20191007/1865514.html