如何将移动应用程序扩展到应用程序的电视(Android)?

时间:2017-07-28 12:26:35

标签: android google-play android-tv

我正在尝试扩展我的应用程序以使其在电视上播放。我按照他们在本指南Getting Started with TV Apps

中的说法做了

这是我的清单

<uses-feature
    android:name="android.software.leanback"
    android:required="false" />
<uses-feature
    android:name="android.hardware.touchscreen"
    android:required="false" />


<application
    android:name=".NetworkAccess.MyApplication"
    android:allowBackup="true"
    android:banner="@drawable/banner"
    android:icon="@mipmap/ic_launcher"
    android:label="Amazon Codes"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity
        android:name=".StartActivity"
        android:theme="@style/Theme.AppCompat.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity android:name=".TvActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|navigation"
        android:theme="@style/Theme.Leanback"
        android:logo="@drawable/banner" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
        </intent-filter>
    </activity>
</application>

我还在layout-w960dp中添加了一个文件夹res,其中我为TvActivity创建了布局。但是,当我在商店中更新我的应用程序时,它仍然无法用于电视。

我的错误是什么?

2 个答案:

答案 0 :(得分:1)

您必须在Android TV项目中创建一个新模块。 同样适用于Wear。

enter image description here

答案 1 :(得分:0)

你必须创建一个新模块我的朋友。 您的项目结构应如下所示:

Project Structure

如你所见,我也有一个核心模块。在核心中,您可以放置​​两个模块之间共享的所有代码(通常是utils,常量,网络等等)。

之后,您的settings.gradle应该具有如下指定的新模块:

include ':app', ':core', "tv"