Loading packages/SystemUI/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -199,7 +199,7 @@ android:excludeFromRecents="true" android:stateNotNeeded="true" android:resumeWhilePausing="true" android:theme="@style/RecentsTheme"> android:theme="@style/config_recents_activity_theme"> <intent-filter> <action android:name="com.android.systemui.recents.TOGGLE_RECENTS" /> </intent-filter> Loading packages/SystemUI/res/values/config.xml +4 −0 Original line number Diff line number Diff line Loading @@ -35,6 +35,10 @@ <!-- The number of app icons we keep in memory --> <integer name="config_recents_max_icon_count">20</integer> <!-- The theme to use for RecentsActivity. --> <item type="style" name="config_recents_activity_theme">@style/RecentsTheme.Wallpaper</item> <!-- Control whether status bar should distinguish HSPA data icon form UMTS data icon on devices --> <bool name="config_hspa_data_distinguishable">false</bool> Loading packages/SystemUI/res/values/styles.xml +14 −5 Original line number Diff line number Diff line Loading @@ -20,14 +20,9 @@ <item name="android:windowAnimationStyle">@style/Animation.RecentsActivity</item> </style> <!-- Alternate Recents theme --> <style name="RecentsTheme" parent="@android:style/Theme"> <!-- NoTitle --> <item name="android:windowNoTitle">true</item> <!-- Wallpaper --> <item name="android:windowBackground">@color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowShowWallpaper">true</item> <!-- Misc --> <item name="android:statusBarColor">@android:color/transparent</item> <item name="android:navigationBarColor">@android:color/transparent</item> Loading @@ -36,6 +31,20 @@ <item name="android:ambientShadowAlpha">0.35</item> </style> <!-- Alternate Recents theme --> <style name="RecentsTheme.Wallpaper"> <!-- Wallpaper --> <item name="android:windowBackground">@color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowShowWallpaper">true</item> </style> <!-- Performance optimized alternate Recents theme (no wallpaper) --> <style name="RecentsTheme.NoWallpaper"> <item name="android:windowBackground">@android:color/black</item> </style> <!-- Animations for a non-full-screen window or activity. --> <style name="Animation.RecentsActivity" parent="@android:style/Animation.Activity"> <item name="android:activityOpenEnterAnimation">@anim/recents_launch_from_launcher_enter</item> Loading Loading
packages/SystemUI/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -199,7 +199,7 @@ android:excludeFromRecents="true" android:stateNotNeeded="true" android:resumeWhilePausing="true" android:theme="@style/RecentsTheme"> android:theme="@style/config_recents_activity_theme"> <intent-filter> <action android:name="com.android.systemui.recents.TOGGLE_RECENTS" /> </intent-filter> Loading
packages/SystemUI/res/values/config.xml +4 −0 Original line number Diff line number Diff line Loading @@ -35,6 +35,10 @@ <!-- The number of app icons we keep in memory --> <integer name="config_recents_max_icon_count">20</integer> <!-- The theme to use for RecentsActivity. --> <item type="style" name="config_recents_activity_theme">@style/RecentsTheme.Wallpaper</item> <!-- Control whether status bar should distinguish HSPA data icon form UMTS data icon on devices --> <bool name="config_hspa_data_distinguishable">false</bool> Loading
packages/SystemUI/res/values/styles.xml +14 −5 Original line number Diff line number Diff line Loading @@ -20,14 +20,9 @@ <item name="android:windowAnimationStyle">@style/Animation.RecentsActivity</item> </style> <!-- Alternate Recents theme --> <style name="RecentsTheme" parent="@android:style/Theme"> <!-- NoTitle --> <item name="android:windowNoTitle">true</item> <!-- Wallpaper --> <item name="android:windowBackground">@color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowShowWallpaper">true</item> <!-- Misc --> <item name="android:statusBarColor">@android:color/transparent</item> <item name="android:navigationBarColor">@android:color/transparent</item> Loading @@ -36,6 +31,20 @@ <item name="android:ambientShadowAlpha">0.35</item> </style> <!-- Alternate Recents theme --> <style name="RecentsTheme.Wallpaper"> <!-- Wallpaper --> <item name="android:windowBackground">@color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowShowWallpaper">true</item> </style> <!-- Performance optimized alternate Recents theme (no wallpaper) --> <style name="RecentsTheme.NoWallpaper"> <item name="android:windowBackground">@android:color/black</item> </style> <!-- Animations for a non-full-screen window or activity. --> <style name="Animation.RecentsActivity" parent="@android:style/Animation.Activity"> <item name="android:activityOpenEnterAnimation">@anim/recents_launch_from_launcher_enter</item> Loading