如何将我的应用转换为 Android TV 应用?

Posted

技术标签:

【中文标题】如何将我的应用转换为 Android TV 应用?【英文标题】:How to convert my app to an Android TV app? 【发布时间】:2017-01-12 03:50:06 【问题描述】:

我有一个带有 2 个视图(屏幕)的简单 android 应用程序。 我正在尝试使我的应用程序也可以在 Android TV 上运行。我不知道我做错了什么,但是当我在模拟器上运行我的应用程序时,我看不到我的应用程序的徽标。

我的清单文件有什么问题:

<?xml version="1" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="xxx.flagmaster">
    <uses-feature android:name="android.software.leanback"
        android:required="false" />
    <uses-feature android:name="android.hardware.touchscreen"
        android:required="false" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/flagmasterlogo"
        android:label="@string/app_name"
        android:banner="@drawable/flagmastertv"
        android:supportsRtl="true">
        android:theme="@style/AppTheme">    
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
        </activity>    
        <activity android:name=".FlagShowActivity"  
          android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize">
            <meta-data
                android:name="com.google.android.gms.version"
                android:value="@integer/google_play_services_version" />
            <intent-filter>    
                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

【问题讨论】:

【参考方案1】:

尝试检查清单、图标(位置和大小)和应用 gradle 文件。我尝试使用基本活动(android)创建一个项目,然后添加:

compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:leanback-v17:23.4.0'

Android TV 支持并更新了我的清单:

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

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

    <!-- TV app need to declare touchscreen not required -->
    <uses-feature
        android:name="android.hardware.touchscreen"
        android:required="false" />

    <!--
     true:  your app runs on only TV
     false: your app runs on phone and TV
    -->
    <uses-feature
        android:name="android.software.leanback"
        android:required="false" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/icon"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

这是电视模拟器的示例屏幕截图。注意:我不拥有图标图像,仅用于测试目的。

这是项目树供参考:

供参考:

Android TV and Google Cast Development Get Started with TV Apps

【讨论】:

以上是关于如何将我的应用转换为 Android TV 应用?的主要内容,如果未能解决你的问题,请参考以下文章

可以在 Google Play 上为 Android TV 和智能手机发布相同的应用程序

Android TV 使用 HTML 和 Javascript 创建应用

如何使用 android studio 和 android-box 调试 android TV 应用程序?

使用 sencha 将我的 html 转换为 apk 时的图像捕获

如何将我的 nuxt 通用应用程序转换为移动原生应用程序

如何将我的软件应用程序转换为软件设备?