oleynikd
oleynikd

Reputation: 932

Set "Splash Screen" color for Android TV App

How can I set/change the color of this animated screen for my app?

enter image description here

Upvotes: 0

Views: 1228

Answers (2)

Abdul Rahaman
Abdul Rahaman

Reputation: 13

This is called "Changing Launcher color"
To customize the color of this animation, set the android:colorPrimary attribute of your TV app or activity to a specific color.

<resources>
    <style ... >
      <item name="android:colorPrimary">@color/primary</item>
    </style>
</resources>

For More info, you can check this link
https://developer.android.com/training/tv/start/start.html

Upvotes: 1

oleynikd
oleynikd

Reputation: 932

OK, Finally I've figured it out.

This color is taken from Theme. You should overwrite the android:colorPrimary to change this color.

Upvotes: 1

Related Questions