如何设置Fire TV的“图标"在主屏幕上? [英] How to set the Fire TV "icon" on home screen?

查看:162
本文介绍了如何设置Fire TV的“图标"在主屏幕上?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Fire TV应用,该应用也将在普通的Android TV上发布,还有一些电视的Android不是Android TV,并且可能在平板电脑上发布.因此,我已经将横幅广告设置为Android TV,并且可以正常使用,该图标在其他设备上也可以正常使用,但是Fire TV在我希望横幅广告显示的位置显示该图标.这是我的应用程序xml:

I have a Fire TV app that will also be released on normal Android TV and one some TVs that have Android that isn't Android TV and possibly on tablets. So I've set my banner for Android TV and that is working fine, the icon works fine on other devices but the Fire TV shows the icon where I expect the banner to be shown. This is my application xml:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:banner="@drawable/banner"
    android:theme="@style/AppTheme">

    <activity
        android:name=".start.MainActivity"
        android:banner="@drawable/banner"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:logo="@drawable/banner"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:screenOrientation="landscape">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

我想念什么?我也使用以下内容制作了自定义xml,但没有帮助:

What am I missing? I make the custom xml as well with what's below but didn't help:

<resources>
    <drawable name="splash_logo">@drawable/banner</drawable>
    <drawable name="app_logo">@drawable/banner</drawable>
    <drawable name="company_logo">@drawable/banner</drawable>
</resources>

推荐答案

要回答我自己的问题,这似乎来自Amazon App Store.一旦我发布了我的应用程序,横幅就神奇地发生了变化.

To answer my own question, that appears to come from the Amazon App Store. Once I released my app, the banner magically changed on its own.

这篇关于如何设置Fire TV的“图标"在主屏幕上?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆