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

时间:2016-09-04 16:55:34

标签: android-manifest android-tv

我有一个简单的Android应用程序,有2个视图(屏幕)。 我也试图让我的应用在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 个答案:

答案 0 :(得分:3)

尝试检查您的清单,图标(位置和大小)以及您的应用程序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>

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

enter image description here

以下是项目树供参考:

enter image description here

供参考: