我試圖擴大我的應用程序,使其在電視上可用。我做了,因爲他們本指南Getting Started with TV Apps如何將移動應用程序擴展到電視應用程序(android)?
在說這是我的清單:
<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>
我也res
我在其中創建佈局TvActivity添加的文件夾layout-w960dp
。但是當我在商店更新我的應用程序時,它仍然不適用於電視。
我的錯誤是什麼?
你檢查[TV應用質量(https://developer.android.com/develop/quality-guidelines /tv-app-quality.html)由Google指導?我不知道是否有必要,但「只有滿足以下質量標準的應用才能在Google Play上成爲Android TV應用。」 –