Nexus Player(Android TV)YouTubeAndroidPlayerApi错误:"初始化YouTube播放器时出错。"

时间:2015-06-24 16:47:53

标签: android android-youtube-api android-tv

我使用YouTube Android播放器API播放一些YouTube视频。我的代码工作正常:

三星S3

三星Galaxy Tab III

Nexus 7(使用Android 5.1.1)

但它并不适用于Nexus播放器。我收到错误:

"初始化YouTube播放器时出错。"

Nexus播放器上的我的Youtube应用版本为1.0.5.5

我无法看到任何迹象表明youtube应用已过期,也无法更新任何内容。如果这是问题,我会说明如何更新它。

我认为我的清单还可以:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="coacb.org.examplevideoondemandapp" >

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".vodActivity" />
        <activity
            android:name=".youtubePlayer"
            android:label="@string/title_activity_youtube_player" >
        </activity>
        <activity
            android:name=".webviewInfo"
            android:label="@string/title_activity_webview_info" >
        </activity>
    </application>

</manifest>

提前致谢

2 个答案:

答案 0 :(得分:2)

这是因为适用于Android的YouTube SDK尚未支持Android TV。

从技术上讲,我相信YouTube for TV应用有不同的套餐名称,而且YouTube SDK依赖于YouTube应用安装才能显示视频(它充当&# 34;远程观看&#34;对于YouTube)。即使SDK最近更新到1.2.1,也没有引入电视支持。

答案 1 :(得分:1)

感谢dextor和ianhanniballake的建议和意见,我能够通过以下代码使其工作良好:

    String videoID = "ARM42-eorzE";//youtube video id
    if (getContext().getPackageManager().hasSystemFeature(PackageManager.FEATURE_TELEVISION)
            || getContext().getPackageManager().hasSystemFeature(PackageManager.FEATURE_LEANBACK)){
        Intent youtubeIntent = YouTubeIntents.createPlayVideoIntent(getContext(), videoID);
        context.startActivity(youtubeIntent);
    } else {
        Intent myIntent = new Intent(getContext(), youtubePlayer.class);
        myIntent.putExtra("youtubeID",videoID);
        context.startActivity(myIntent);
    }