Nexus Player (Android TV) YouTubeAndroidPlayerApi error: "An error occurred when initializing the YouTube player."

Nexus Player (Android TV) YouTubeAndroidPlayerApi error: "An error occurred when initializing the YouTube player."

我正在使用 YouTube android 播放器 API 播放一些 YouTube 视频。我的代码在以下方面运行良好:

三星 S3

三星 Galaxy Tab III

Nexus 7(Android 5.1.1)

但它不适用于 Nexus Player。我收到错误:

"An error occurred when initializing the YouTube player."

我在 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>

提前致谢

这是因为 Android 的 YouTube SDK(尚)不支持 Android 电视。

从技术上讲,我认为 YouTube for TV 应用程序 具有不同的程序包名称,并且 YouTube SDK 依赖于安装 YouTube 应用程序才能显示视频(它作为 YouTube 的 "remote view")。即使 SDK 最近更新到 1.2.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);
    }