diff --git a/docs/html/training/tv/start/start.jd b/docs/html/training/tv/start/start.jd index e55e2026fad06..743b61b1acf7f 100644 --- a/docs/html/training/tv/start/start.jd +++ b/docs/html/training/tv/start/start.jd @@ -228,6 +228,27 @@ supported by Android TV.

design guide.

+

Change the launcher color

+ +

When a TV app launches, the system displays an animation that resembles an expanding, filled + circle. To customize the color of this animation, set the android:colorPrimary + attribute of your TV app or activity to a specific color. You should also set two additional + transition overlap attributes to true, as shown in the following snippet from a + theme resource XML file:

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

For more information about working with themes and styles, see +Styles and Themes.

+

Add TV Support Libraries