Laila Mattar
Laila Mattar

Reputation: 361

The application icon is not fully displayed in android tv

I have an app directed to android tv, using flutter to develop this app, and I want to change app banner.

The problem:

The banner doesn't fill the rectangle

enter image description here

What I tried:

I add banner to application tag in AndroidManifest like this:

<application
        android:label="test"
        android:icon="@drawable/banner"
        android:banner="@drawable/banner"
       >

How to solve this problem?

Upvotes: 1

Views: 1566

Answers (1)

Amirhosein
Amirhosein

Reputation: 4446

Please check your banner size. The banner should be an xhdpi resource with a size of 320 x 180 px.

Upvotes: 4

Related Questions