Joe Onorato | 503007d | 2010-04-16 09:20:55 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2006 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
Geoffrey Pitsch | 4dd5006 | 2016-12-06 16:41:22 -0500 | [diff] [blame] | 7 | |
Joe Onorato | 503007d | 2010-04-16 09:20:55 -0700 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Geoffrey Pitsch | 4dd5006 | 2016-12-06 16:41:22 -0500 | [diff] [blame] | 9 | |
Joe Onorato | 503007d | 2010-04-16 09:20:55 -0700 | [diff] [blame] | 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
Jeff DeCew | 546f6c4 | 2021-05-07 10:22:43 -0400 | [diff] [blame] | 17 | <resources xmlns:android="http://schemas.android.com/apk/res/android"> |
| 18 | <!-- NOTE: Adding the androidprv: namespace to this file will break the studio build. --> |
Manu Cornet | c733803 | 2016-12-13 17:32:20 +0000 | [diff] [blame] | 19 | <style name="ClearAllButtonDefaultMargins"> |
Manu Cornet | e138bd1 | 2016-11-15 11:32:28 -0800 | [diff] [blame] | 20 | <item name="android:layout_marginStart">0dp</item> |
| 21 | <item name="android:layout_marginTop">0dp</item> |
| 22 | <item name="android:layout_marginEnd">0dp</item> |
| 23 | <item name="android:layout_marginBottom">0dp</item> |
| 24 | </style> |
| 25 | |
Winson Chung | 15504af | 2016-11-02 18:11:36 -0700 | [diff] [blame] | 26 | <style name="PipPhoneOverlayControlTheme" parent="@android:style/Theme.Material"> |
| 27 | <item name="android:windowIsTranslucent">true</item> |
| 28 | <item name="android:windowNoTitle">true</item> |
| 29 | <item name="android:windowContentOverlay">@null</item> |
Vishnu Nair | f6ef1c7 | 2020-01-23 16:28:33 -0800 | [diff] [blame] | 30 | <item name="android:windowBackground">@android:color/transparent</item> |
Winson Chung | 15504af | 2016-11-02 18:11:36 -0700 | [diff] [blame] | 31 | <item name="android:colorBackgroundCacheHint">@null</item> |
Jason Monk | 58be7a6 | 2017-02-01 20:17:51 -0500 | [diff] [blame] | 32 | <item name="android:statusBarColor">@*android:color/transparent</item> |
Winson Chung | 15504af | 2016-11-02 18:11:36 -0700 | [diff] [blame] | 33 | <item name="android:windowAnimationStyle">@style/Animation.PipPhoneOverlayControl</item> |
| 34 | </style> |
| 35 | |
| 36 | <style name="Animation.PipPhoneOverlayControl" parent="@android:style/Animation"> |
| 37 | <item name="android:activityOpenEnterAnimation">@anim/forced_resizable_enter</item> |
| 38 | |
| 39 | <!-- If the target stack doesn't have focus, we do a task to front animation. --> |
| 40 | <item name="android:taskToFrontEnterAnimation">@anim/forced_resizable_enter</item> |
| 41 | <item name="android:activityCloseExitAnimation">@anim/forced_resizable_exit</item> |
| 42 | </style> |
| 43 | |
Adrian Roos | 6f6e159 | 2017-05-02 16:22:53 -0700 | [diff] [blame] | 44 | <!-- HybridNotification themes and styles --> |
| 45 | |
| 46 | <style name="HybridNotification"> |
| 47 | <item name="hybridNotificationStyle">@style/hybrid_notification</item> |
| 48 | <item name="hybridNotificationTitleStyle">@style/hybrid_notification_title</item> |
| 49 | <item name="hybridNotificationTextStyle">@style/hybrid_notification_text</item> |
| 50 | </style> |
| 51 | |
Adrian Roos | 6f6e159 | 2017-05-02 16:22:53 -0700 | [diff] [blame] | 52 | <style name="hybrid_notification"> |
| 53 | <item name="android:paddingStart">@*android:dimen/notification_content_margin_start</item> |
| 54 | <item name="android:paddingEnd">12dp</item> |
| 55 | </style> |
| 56 | |
Adrian Roos | 6f6e159 | 2017-05-02 16:22:53 -0700 | [diff] [blame] | 57 | <style name="hybrid_notification_title"> |
| 58 | <item name="android:paddingEnd">4dp</item> |
Selim Cinek | 3d2a982 | 2019-03-06 15:59:21 -0800 | [diff] [blame] | 59 | <item name="android:textAppearance">@*android:style/TextAppearance.DeviceDefault.Notification.Title</item> |
Adrian Roos | 6f6e159 | 2017-05-02 16:22:53 -0700 | [diff] [blame] | 60 | </style> |
| 61 | |
Selim Cinek | 6555bee | 2018-04-25 16:08:55 +0800 | [diff] [blame] | 62 | <style name="hybrid_notification_text" |
Selim Cinek | 3d2a982 | 2019-03-06 15:59:21 -0800 | [diff] [blame] | 63 | parent="@*android:style/Widget.DeviceDefault.Notification.Text"> |
Adrian Roos | 6f6e159 | 2017-05-02 16:22:53 -0700 | [diff] [blame] | 64 | <item name="android:paddingEnd">4dp</item> |
| 65 | </style> |
| 66 | |
| 67 | |
Chris Wren | 157026f | 2013-06-28 16:54:01 -0400 | [diff] [blame] | 68 | <style name="TextAppearance.StatusBar.HeadsUp" |
Dianne Hackborn | 426431a | 2011-06-09 11:29:08 -0700 | [diff] [blame] | 69 | parent="@*android:style/TextAppearance.StatusBar"> |
Daniel Sandler | 294c9fb | 2010-06-30 14:18:32 -0400 | [diff] [blame] | 70 | </style> |
Daniel Sandler | d39e388 | 2010-08-31 14:16:13 -0400 | [diff] [blame] | 71 | |
| 72 | <style name="TextAppearance.StatusBar.SystemPanel" |
Dianne Hackborn | 426431a | 2011-06-09 11:29:08 -0700 | [diff] [blame] | 73 | parent="@*android:style/TextAppearance.StatusBar"> |
Daniel Sandler | d39e388 | 2010-08-31 14:16:13 -0400 | [diff] [blame] | 74 | <item name="android:textAppearance">?android:attr/textAppearance</item> |
| 75 | <item name="android:textStyle">normal</item> |
Daniel Sandler | 3b476ab | 2010-11-05 16:31:03 -0400 | [diff] [blame] | 76 | <item name="android:textColor">#FF808080</item> |
Daniel Sandler | d39e388 | 2010-08-31 14:16:13 -0400 | [diff] [blame] | 77 | </style> |
| 78 | |
Daniel Sandler | 1a21f0a | 2011-09-06 11:28:34 -0400 | [diff] [blame] | 79 | <style name="TextAppearance.StatusBar.Clock" parent="@*android:style/TextAppearance.StatusBar.Icon"> |
Jorim Jaggi | 5172dc2 | 2014-09-02 14:59:06 +0200 | [diff] [blame] | 80 | <item name="android:textSize">@dimen/status_bar_clock_size</item> |
Fabian Kozynski | 9ec687a | 2019-01-09 11:26:50 -0500 | [diff] [blame] | 81 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
John Spurlock | e189f66 | 2013-08-25 10:38:32 -0400 | [diff] [blame] | 82 | <item name="android:textColor">@color/status_bar_clock_color</item> |
Daniel Sandler | 1a21f0a | 2011-09-06 11:28:34 -0400 | [diff] [blame] | 83 | </style> |
| 84 | |
Jason Monk | 3250885 | 2017-01-18 09:17:13 -0500 | [diff] [blame] | 85 | <style name="TextAppearance.StatusBar.Expanded" parent="@*android:style/TextAppearance.StatusBar"> |
| 86 | <item name="android:textColor">?android:attr/textColorTertiary</item> |
| 87 | </style> |
Daniel Sandler | 9ff6378 | 2012-05-03 23:16:42 -0400 | [diff] [blame] | 88 | |
| 89 | <style name="TextAppearance.StatusBar.Expanded.Clock"> |
Jorim Jaggi | 362dd6d | 2014-07-09 19:04:07 +0200 | [diff] [blame] | 90 | <item name="android:textSize">@dimen/qs_time_expanded_size</item> |
Fabian Kozynski | e0abce0 | 2018-10-30 09:14:07 -0400 | [diff] [blame] | 91 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
jackqdyulei | 1b515ee | 2016-11-30 12:02:38 -0800 | [diff] [blame] | 92 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Jason Monk | 3250885 | 2017-01-18 09:17:13 -0500 | [diff] [blame] | 93 | <item name="android:textStyle">normal</item> |
Daniel Sandler | 9ff6378 | 2012-05-03 23:16:42 -0400 | [diff] [blame] | 94 | </style> |
| 95 | |
| 96 | <style name="TextAppearance.StatusBar.Expanded.Date"> |
Jason Monk | 3ebde83 | 2017-06-02 13:17:27 -0400 | [diff] [blame] | 97 | <item name="android:textSize">@dimen/qs_time_expanded_size</item> |
Adrian Roos | 59a6127 | 2014-06-06 19:07:24 +0200 | [diff] [blame] | 98 | <item name="android:textStyle">normal</item> |
Rohan Shah | bb662cc | 2018-04-06 17:57:00 -0700 | [diff] [blame] | 99 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Amin Shaikh | 0aac7d0 | 2018-12-13 15:12:14 -0500 | [diff] [blame] | 100 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
Adrian Roos | 59a6127 | 2014-06-06 19:07:24 +0200 | [diff] [blame] | 101 | </style> |
| 102 | |
| 103 | <style name="TextAppearance.StatusBar.Expanded.AboveDateTime"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 104 | <item name="android:textSize">@dimen/qs_emergency_calls_only_text_size</item> |
Daniel Sandler | 9ff6378 | 2012-05-03 23:16:42 -0400 | [diff] [blame] | 105 | <item name="android:textStyle">normal</item> |
Jason Monk | 3250885 | 2017-01-18 09:17:13 -0500 | [diff] [blame] | 106 | <item name="android:textColor">?android:attr/textColorTertiary</item> |
Daniel Sandler | 9ff6378 | 2012-05-03 23:16:42 -0400 | [diff] [blame] | 107 | </style> |
| 108 | |
Adrian Roos | 59a6127 | 2014-06-06 19:07:24 +0200 | [diff] [blame] | 109 | <style name="TextAppearance.StatusBar.Expanded.EmergencyCallsOnly" |
| 110 | parent="TextAppearance.StatusBar.Expanded.AboveDateTime" /> |
| 111 | |
| 112 | <style name="TextAppearance.StatusBar.Expanded.ChargingInfo" |
| 113 | parent="TextAppearance.StatusBar.Expanded.AboveDateTime" /> |
| 114 | |
Adrian Roos | 8ddb2da | 2014-06-16 18:56:22 -0700 | [diff] [blame] | 115 | <style name="TextAppearance.StatusBar.Expanded.UserSwitcher"> |
Ben Murdoch | 840be1b | 2020-02-03 13:44:29 +0000 | [diff] [blame] | 116 | <item name="android:textSize">@dimen/kg_user_switcher_text_size</item> |
Adrian Roos | 8ddb2da | 2014-06-16 18:56:22 -0700 | [diff] [blame] | 117 | <item name="android:textStyle">normal</item> |
Peter Kalauskas | 1970915 | 2020-12-23 14:10:13 -0800 | [diff] [blame] | 118 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 119 | <item name="android:textColor">?attr/wallpaperTextColor</item> |
Adrian Roos | 8ddb2da | 2014-06-16 18:56:22 -0700 | [diff] [blame] | 120 | </style> |
Adrian Roos | 8ddb2da | 2014-06-16 18:56:22 -0700 | [diff] [blame] | 121 | |
Ben Murdoch | 8bae0d7 | 2020-02-10 14:09:19 +0000 | [diff] [blame] | 122 | <style name="TextAppearance.StatusBar.Expanded.UserSwitcher.Activated"> |
| 123 | <item name="android:fontWeight">700</item> |
Ben Murdoch | 8bae0d7 | 2020-02-10 14:09:19 +0000 | [diff] [blame] | 124 | </style> |
| 125 | |
Winson Chung | d63c5978 | 2012-09-05 17:34:41 -0700 | [diff] [blame] | 126 | <style name="TextAppearance" /> |
Daniel Sandler | b5538e6 | 2013-04-12 15:16:53 -0400 | [diff] [blame] | 127 | |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 128 | <style name="TextAppearance.QS"> |
| 129 | <item name="android:textStyle">normal</item> |
jackqdyulei | 1b515ee | 2016-11-30 12:02:38 -0800 | [diff] [blame] | 130 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Amin Shaikh | 0aac7d0 | 2018-12-13 15:12:14 -0500 | [diff] [blame] | 131 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 132 | </style> |
| 133 | |
| 134 | <style name="TextAppearance.QS.DetailHeader"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 135 | <item name="android:textSize">@dimen/qs_detail_header_text_size</item> |
Amin Shaikh | 0aac7d0 | 2018-12-13 15:12:14 -0500 | [diff] [blame] | 136 | <item name="android:fontFamily">@*android:string/config_bodyFontFamilyMedium</item> |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 137 | </style> |
| 138 | |
| 139 | <style name="TextAppearance.QS.DetailItemPrimary"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 140 | <item name="android:textSize">@dimen/qs_detail_item_primary_text_size</item> |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 141 | </style> |
| 142 | |
| 143 | <style name="TextAppearance.QS.DetailItemSecondary"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 144 | <item name="android:textSize">@dimen/qs_detail_item_secondary_text_size</item> |
Andrew Sapperstein | 5c37344 | 2016-06-12 13:17:16 -0700 | [diff] [blame] | 145 | <item name="android:textColor">?android:attr/colorAccent</item> |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 146 | </style> |
| 147 | |
John Spurlock | 90be379 | 2015-04-16 12:09:15 -0400 | [diff] [blame] | 148 | <style name="TextAppearance.QS.Introduction"> |
John Spurlock | b478252 | 2014-08-22 14:54:46 -0400 | [diff] [blame] | 149 | <item name="android:textSize">14sp</item> |
Julia Reynolds | d518135 | 2017-07-21 11:15:52 -0400 | [diff] [blame] | 150 | <item name="android:textColor">@color/zen_introduction</item> |
John Spurlock | b478252 | 2014-08-22 14:54:46 -0400 | [diff] [blame] | 151 | </style> |
| 152 | |
John Spurlock | 8be53ea | 2015-05-29 12:04:21 -0400 | [diff] [blame] | 153 | <style name="TextAppearance.QS.Warning"> |
| 154 | <item name="android:textSize">14sp</item> |
Jason Monk | 58be7a6 | 2017-02-01 20:17:51 -0500 | [diff] [blame] | 155 | <item name="android:textColor">?android:attr/colorError</item> |
John Spurlock | 8be53ea | 2015-05-29 12:04:21 -0400 | [diff] [blame] | 156 | </style> |
| 157 | |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 158 | <style name="TextAppearance.QS.DetailButton"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 159 | <item name="android:textSize">@dimen/qs_detail_button_text_size</item> |
Jason Monk | 3250885 | 2017-01-18 09:17:13 -0500 | [diff] [blame] | 160 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 161 | <item name="android:textAllCaps">true</item> |
Amin Shaikh | 0aac7d0 | 2018-12-13 15:12:14 -0500 | [diff] [blame] | 162 | <item name="android:fontFamily">@*android:string/config_bodyFontFamilyMedium</item> |
John Spurlock | 7f8f22a | 2014-07-02 18:54:17 -0400 | [diff] [blame] | 163 | <item name="android:gravity">center</item> |
John Spurlock | 8600534 | 2014-05-23 11:58:00 -0400 | [diff] [blame] | 164 | </style> |
| 165 | |
John Spurlock | f55b7f2 | 2015-04-13 19:21:26 -0400 | [diff] [blame] | 166 | <style name="TextAppearance.QS.DetailButton.White"> |
Julia Reynolds | d518135 | 2017-07-21 11:15:52 -0400 | [diff] [blame] | 167 | <item name="android:textColor">@color/zen_introduction</item> |
John Spurlock | f55b7f2 | 2015-04-13 19:21:26 -0400 | [diff] [blame] | 168 | </style> |
| 169 | |
John Spurlock | 486b78e | 2014-07-07 08:37:56 -0400 | [diff] [blame] | 170 | <style name="TextAppearance.QS.DetailEmpty"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 171 | <item name="android:textSize">@dimen/qs_detail_empty_text_size</item> |
Jason Monk | 3250885 | 2017-01-18 09:17:13 -0500 | [diff] [blame] | 172 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
John Spurlock | 486b78e | 2014-07-07 08:37:56 -0400 | [diff] [blame] | 173 | </style> |
| 174 | |
John Spurlock | ae641c9 | 2014-06-30 18:11:40 -0400 | [diff] [blame] | 175 | <style name="TextAppearance.QS.Subhead"> |
| 176 | <item name="android:textSize">14sp</item> |
John Spurlock | ae641c9 | 2014-06-30 18:11:40 -0400 | [diff] [blame] | 177 | <item name="android:textColor">@color/qs_subhead</item> |
| 178 | </style> |
| 179 | |
John Spurlock | ae641c9 | 2014-06-30 18:11:40 -0400 | [diff] [blame] | 180 | <style name="TextAppearance.QS.SegmentedButton"> |
John Spurlock | d9c75db | 2015-04-28 11:19:13 -0400 | [diff] [blame] | 181 | <item name="android:textSize">16sp</item> |
Amin Shaikh | 0aac7d0 | 2018-12-13 15:12:14 -0500 | [diff] [blame] | 182 | <item name="android:fontFamily">@*android:string/config_bodyFontFamilyMedium</item> |
John Spurlock | ae641c9 | 2014-06-30 18:11:40 -0400 | [diff] [blame] | 183 | </style> |
| 184 | |
John Spurlock | b98f747 | 2014-07-08 17:09:42 -0400 | [diff] [blame] | 185 | <style name="TextAppearance.QS.DataUsage"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 186 | <item name="android:textSize">@dimen/qs_data_usage_text_size</item> |
John Spurlock | b98f747 | 2014-07-08 17:09:42 -0400 | [diff] [blame] | 187 | </style> |
| 188 | |
| 189 | <style name="TextAppearance.QS.DataUsage.Usage"> |
Jorim Jaggi | e17c4b4 | 2014-08-26 17:27:31 +0200 | [diff] [blame] | 190 | <item name="android:textSize">@dimen/qs_data_usage_usage_text_size</item> |
Andrew Sapperstein | 5c37344 | 2016-06-12 13:17:16 -0700 | [diff] [blame] | 191 | <item name="android:textColor">?android:attr/colorAccent</item> |
John Spurlock | b98f747 | 2014-07-08 17:09:42 -0400 | [diff] [blame] | 192 | </style> |
| 193 | |
| 194 | <style name="TextAppearance.QS.DataUsage.Secondary"> |
jackqdyulei | b68fd7a | 2017-01-04 15:43:26 -0800 | [diff] [blame] | 195 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
John Spurlock | b98f747 | 2014-07-08 17:09:42 -0400 | [diff] [blame] | 196 | </style> |
| 197 | |
Xiaohui Chen | 2f3551b | 2016-04-07 10:37:25 -0700 | [diff] [blame] | 198 | <style name="TextAppearance.QS.TileLabel"> |
| 199 | <item name="android:textSize">@dimen/qs_tile_text_size</item> |
Fabian Kozynski | b223a3a | 2021-05-17 12:02:56 -0400 | [diff] [blame] | 200 | <item name="android:letterSpacing">0.01</item> |
| 201 | <item name="android:lineHeight">20sp</item> |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 202 | <item name="android:fontFamily">@*android:string/config_bodyFontFamilyMedium</item> |
Fabian Kozynski | e0abce0 | 2018-10-30 09:14:07 -0400 | [diff] [blame] | 203 | </style> |
| 204 | |
| 205 | <style name="TextAppearance.QS.TileLabel.Secondary"> |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 206 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
Xiaohui Chen | 2f3551b | 2016-04-07 10:37:25 -0700 | [diff] [blame] | 207 | </style> |
| 208 | |
Ben Murdoch | 8bae0d7 | 2020-02-10 14:09:19 +0000 | [diff] [blame] | 209 | <style name="TextAppearance.QS.UserSwitcher"> |
| 210 | <item name="android:textSize">@dimen/qs_detail_item_secondary_text_size</item> |
| 211 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
| 212 | </style> |
| 213 | |
| 214 | <style name="TextAppearance.QS.UserSwitcher.Activated"> |
| 215 | <item name="android:fontWeight">700</item> |
| 216 | <item name="android:textStyle">bold</item> |
| 217 | </style> |
| 218 | |
Fabian Kozynski | c651e64 | 2019-02-21 13:20:34 -0500 | [diff] [blame] | 219 | <!-- This is hard coded to be sans-serif-condensed to match the icons --> |
| 220 | <style name="TextAppearance.RATBadge" parent="@style/TextAppearance.QS.TileLabel.Secondary"> |
| 221 | <item name="android:fontFamily">sans-serif-condensed</item> |
| 222 | <item name="android:textSize">@dimen/celltile_rat_type_size</item> |
| 223 | </style> |
| 224 | |
Fabian Kozynski | 64308e9 | 2021-05-05 15:15:25 -0400 | [diff] [blame] | 225 | <style name="TextAppearance.QS.Status"> |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 226 | <item name="android:fontFamily">@*android:string/config_bodyFontFamilyMedium</item> |
Fabian Kozynski | 64308e9 | 2021-05-05 15:15:25 -0400 | [diff] [blame] | 227 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 228 | <item name="android:textSize">14sp</item> |
| 229 | <item name="android:letterSpacing">0.01</item> |
| 230 | <item name="android:lineHeight">20sp</item> |
| 231 | </style> |
| 232 | |
Fabian Kozynski | b223a3a | 2021-05-17 12:02:56 -0400 | [diff] [blame] | 233 | <style name="TextAppearance.QS.SecurityFooter" parent="@style/TextAppearance.QS.Status"> |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 234 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
Fabian Kozynski | df96e51 | 2021-05-13 11:49:14 -0400 | [diff] [blame] | 235 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
Fabian Kozynski | e0abce0 | 2018-10-30 09:14:07 -0400 | [diff] [blame] | 236 | </style> |
| 237 | |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 238 | <style name="TextAppearance.QS.Status.Carriers" /> |
Fabian Kozynski | b223a3a | 2021-05-17 12:02:56 -0400 | [diff] [blame] | 239 | |
| 240 | <style name="TextAppearance.QS.Status.Carriers.NoCarrierText"> |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 241 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
Fabian Kozynski | b223a3a | 2021-05-17 12:02:56 -0400 | [diff] [blame] | 242 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
| 243 | </style> |
| 244 | |
| 245 | <style name="TextAppearance.QS.Status.Build"> |
Fabian Kozynski | b643c76 | 2021-06-01 16:37:39 -0400 | [diff] [blame] | 246 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
Fabian Kozynski | 64308e9 | 2021-05-05 15:15:25 -0400 | [diff] [blame] | 247 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
Fabian Kozynski | 3aaf9ab | 2021-04-22 12:04:20 -0400 | [diff] [blame] | 248 | </style> |
| 249 | |
Fabian Kozynski | 371384f | 2019-03-01 11:02:13 -0500 | [diff] [blame] | 250 | <style name="TextAppearance.DeviceManagementDialog"> |
| 251 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Fabian Kozynski | 058155f | 2019-01-09 14:50:17 -0500 | [diff] [blame] | 252 | </style> |
| 253 | |
Fabian Kozynski | 371384f | 2019-03-01 11:02:13 -0500 | [diff] [blame] | 254 | <style name="TextAppearance.DeviceManagementDialog.Title" parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle"/> |
| 255 | |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 256 | <style name="TextAppearance.AuthCredential"> |
Curtis Belmonte | da9204a | 2020-04-03 11:51:10 -0700 | [diff] [blame] | 257 | <item name="android:accessibilityLiveRegion">polite</item> |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 258 | <item name="android:gravity">center_horizontal</item> |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 259 | <item name="android:textAlignment">gravity</item> |
| 260 | <item name="android:layout_gravity">top</item> |
| 261 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 262 | </style> |
| 263 | |
| 264 | <style name="TextAppearance.AuthCredential.Title"> |
Curtis Belmonte | ce03593 | 2020-03-26 13:43:25 -0700 | [diff] [blame] | 265 | <item name="android:fontFamily">google-sans</item> |
Curtis Belmonte | 44d5ad8 | 2020-04-27 16:08:59 -0700 | [diff] [blame] | 266 | <item name="android:paddingTop">12dp</item> |
Curtis Belmonte | ce03593 | 2020-03-26 13:43:25 -0700 | [diff] [blame] | 267 | <item name="android:paddingHorizontal">24dp</item> |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 268 | <item name="android:textSize">24sp</item> |
Curtis Belmonte | 0c70659 | 2021-03-03 10:51:49 -0800 | [diff] [blame] | 269 | <item name="android:singleLine">true</item> |
| 270 | <item name="android:ellipsize">marquee</item> |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 271 | </style> |
| 272 | |
Curtis Belmonte | ce03593 | 2020-03-26 13:43:25 -0700 | [diff] [blame] | 273 | <style name="TextAppearance.AuthCredential.Subtitle"> |
| 274 | <item name="android:fontFamily">google-sans</item> |
| 275 | <item name="android:paddingTop">8dp</item> |
| 276 | <item name="android:paddingHorizontal">24dp</item> |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 277 | <item name="android:textSize">16sp</item> |
Curtis Belmonte | 0c70659 | 2021-03-03 10:51:49 -0800 | [diff] [blame] | 278 | <item name="android:singleLine">true</item> |
| 279 | <item name="android:ellipsize">marquee</item> |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 280 | </style> |
| 281 | |
Curtis Belmonte | ce03593 | 2020-03-26 13:43:25 -0700 | [diff] [blame] | 282 | <style name="TextAppearance.AuthCredential.Description"> |
| 283 | <item name="android:fontFamily">google-sans</item> |
| 284 | <item name="android:paddingTop">8dp</item> |
| 285 | <item name="android:paddingHorizontal">24dp</item> |
| 286 | <item name="android:textSize">14sp</item> |
Curtis Belmonte | 0c70659 | 2021-03-03 10:51:49 -0800 | [diff] [blame] | 287 | <item name="android:singleLine">true</item> |
| 288 | <item name="android:ellipsize">marquee</item> |
Curtis Belmonte | ce03593 | 2020-03-26 13:43:25 -0700 | [diff] [blame] | 289 | </style> |
| 290 | |
| 291 | <style name="TextAppearance.AuthCredential.Error"> |
Curtis Belmonte | 44d5ad8 | 2020-04-27 16:08:59 -0700 | [diff] [blame] | 292 | <item name="android:paddingTop">6dp</item> |
Curtis Belmonte | ce03593 | 2020-03-26 13:43:25 -0700 | [diff] [blame] | 293 | <item name="android:paddingHorizontal">24dp</item> |
| 294 | <item name="android:textSize">14sp</item> |
| 295 | <item name="android:textColor">?android:attr/colorError</item> |
| 296 | </style> |
| 297 | |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 298 | <style name="TextAppearance.AuthCredential.PasswordEntry" parent="@android:style/TextAppearance.DeviceDefault"> |
| 299 | <item name="android:gravity">center</item> |
| 300 | <item name="android:singleLine">true</item> |
| 301 | <item name="android:textColor">?android:attr/colorForeground</item> |
| 302 | <item name="android:textSize">24sp</item> |
| 303 | </style> |
| 304 | |
Fabian Kozynski | 371384f | 2019-03-01 11:02:13 -0500 | [diff] [blame] | 305 | <style name="DeviceManagementDialogTitle"> |
| 306 | <item name="android:gravity">center</item> |
| 307 | <item name="android:textAppearance">@style/TextAppearance.DeviceManagementDialog.Title</item> |
| 308 | </style> |
| 309 | |
| 310 | <style name="TextAppearance.DeviceManagementDialog.Content" parent="@*android:style/TextAppearance.DeviceDefault.Subhead"/> |
| 311 | |
Lucas Dupin | ee7bdf6 | 2018-10-02 14:59:45 -0700 | [diff] [blame] | 312 | <style name="BaseBrightnessDialogContainer" parent="@style/Theme.SystemUI"> |
Winson Chung | 3ed6f94 | 2012-09-20 16:07:11 -0700 | [diff] [blame] | 313 | <item name="android:layout_width">match_parent</item> |
| 314 | <item name="android:layout_height">wrap_content</item> |
Winson Chung | 3ed6f94 | 2012-09-20 16:07:11 -0700 | [diff] [blame] | 315 | </style> |
Alan Viverette | e8ebaf3 | 2014-04-11 15:44:15 -0700 | [diff] [blame] | 316 | |
Winson Chung | 3ed6f94 | 2012-09-20 16:07:11 -0700 | [diff] [blame] | 317 | <style name="BrightnessDialogContainer" parent="@style/BaseBrightnessDialogContainer" /> |
| 318 | |
Joe Onorato | fd52b18 | 2010-11-10 18:00:52 -0800 | [diff] [blame] | 319 | <style name="Animation" /> |
| 320 | |
| 321 | <style name="Animation.ShirtPocketPanel"> |
| 322 | <item name="android:windowEnterAnimation">@*android:anim/grow_fade_in_from_bottom</item> |
| 323 | <item name="android:windowExitAnimation">@*android:anim/shrink_fade_out_from_bottom</item> |
| 324 | </style> |
| 325 | |
Jorim Jaggi | 0d210f6 | 2015-07-10 14:24:44 -0700 | [diff] [blame] | 326 | <style name="Animation.NavigationBarFadeIn"> |
| 327 | <item name="android:windowEnterAnimation">@anim/navbar_fade_in</item> |
| 328 | <item name="android:windowExitAnimation">@null</item> |
| 329 | </style> |
| 330 | |
Robert Horvath | 2f58649 | 2020-03-27 14:10:05 +0100 | [diff] [blame] | 331 | <style name="Animation.ShutdownUi" parent="@android:style/Animation.Toast"> |
| 332 | </style> |
| 333 | |
timhypeng | f1cacd7 | 2020-11-13 16:40:44 +0800 | [diff] [blame] | 334 | <style name="Animation.MediaOutputDialog" parent="@android:style/Animation.InputMethod"> |
| 335 | </style> |
| 336 | |
Dianne Hackborn | 59aed38 | 2011-08-02 17:31:44 -0700 | [diff] [blame] | 337 | <!-- Standard animations for hiding and showing the status bar. --> |
| 338 | <style name="Animation.StatusBar"> |
Dianne Hackborn | 59aed38 | 2011-08-02 17:31:44 -0700 | [diff] [blame] | 339 | </style> |
| 340 | |
Lucas Dupin | 32d4065 | 2021-04-02 10:22:41 -0700 | [diff] [blame] | 341 | <style name="Theme.SystemUI" parent="@*android:style/Theme.DeviceDefault.SystemUI"> |
Jason Monk | 9a376bc | 2017-05-10 09:52:10 -0400 | [diff] [blame] | 342 | <item name="lightIconTheme">@style/DualToneLightTheme</item> |
| 343 | <item name="darkIconTheme">@style/DualToneDarkTheme</item> |
Lucas Dupin | e17ce52 | 2017-07-17 15:45:06 -0700 | [diff] [blame] | 344 | <item name="wallpaperTextColor">@*android:color/primary_text_material_dark</item> |
| 345 | <item name="wallpaperTextColorSecondary">@*android:color/secondary_text_material_dark</item> |
Beverly | 36f2a1f | 2021-03-19 16:41:29 -0400 | [diff] [blame] | 346 | <item name="wallpaperTextColorAccent">@*android:color/system_accent1_100</item> |
Lucas Dupin | 2b28320 | 2018-01-11 09:27:47 -0800 | [diff] [blame] | 347 | <item name="android:colorError">@*android:color/error_color_material_dark</item> |
Lucas Dupin | 987f193 | 2017-05-13 21:02:52 -0700 | [diff] [blame] | 348 | <item name="*android:lockPatternStyle">@style/LockPatternStyle</item> |
Lucas Dupin | e17ce52 | 2017-07-17 15:45:06 -0700 | [diff] [blame] | 349 | <item name="passwordStyle">@style/PasswordTheme</item> |
Matt Pietal | 5a1c26e | 2021-01-15 14:08:55 -0500 | [diff] [blame] | 350 | <item name="numPadKeyStyle">@style/NumPadKey</item> |
Lucas Dupin | c9e5d76 | 2019-01-28 09:34:30 -0800 | [diff] [blame] | 351 | <item name="backgroundProtectedStyle">@style/BackgroundProtectedStyle</item> |
Amin Shaikh | b7b4c25 | 2019-04-25 17:02:13 -0400 | [diff] [blame] | 352 | <item name="android:homeAsUpIndicator">@drawable/ic_arrow_back</item> |
Lucas Dupin | fc0cf15 | 2019-05-23 16:14:29 -0700 | [diff] [blame] | 353 | <item name="shadowRadius">@dimen/keyguard_shadow_radius</item> |
Christofer Ã…kersten | d51640b | 2017-08-07 18:56:52 +0900 | [diff] [blame] | 354 | |
| 355 | <!-- Needed for MediaRoute chooser dialog --> |
| 356 | <item name="*android:isLightTheme">false</item> |
Lucas Dupin | e17ce52 | 2017-07-17 15:45:06 -0700 | [diff] [blame] | 357 | </style> |
| 358 | |
Lucas Dupin | bca9b0d0 | 2021-04-01 18:33:41 -0700 | [diff] [blame] | 359 | <style name="Theme.SystemUI.LightWallpaper"> |
Lucas Dupin | e17ce52 | 2017-07-17 15:45:06 -0700 | [diff] [blame] | 360 | <item name="wallpaperTextColor">@*android:color/primary_text_material_light</item> |
| 361 | <item name="wallpaperTextColorSecondary">@*android:color/secondary_text_material_light</item> |
Beverly | 36f2a1f | 2021-03-19 16:41:29 -0400 | [diff] [blame] | 362 | <item name="wallpaperTextColorAccent">@*android:color/system_accent2_600</item> |
Lucas Dupin | 2b28320 | 2018-01-11 09:27:47 -0800 | [diff] [blame] | 363 | <item name="android:colorError">@*android:color/error_color_material_light</item> |
Lucas Dupin | fc0cf15 | 2019-05-23 16:14:29 -0700 | [diff] [blame] | 364 | <item name="shadowRadius">0</item> |
Lucas Dupin | 098188a | 2018-08-23 16:19:46 -0700 | [diff] [blame] | 365 | |
| 366 | <!-- Needed for MediaRoute chooser dialog --> |
| 367 | <item name="*android:isLightTheme">true</item> |
Jason Monk | 9a376bc | 2017-05-10 09:52:10 -0400 | [diff] [blame] | 368 | </style> |
Lucas Dupin | 987f193 | 2017-05-13 21:02:52 -0700 | [diff] [blame] | 369 | |
Lucas Dupin | c9e5d76 | 2019-01-28 09:34:30 -0800 | [diff] [blame] | 370 | <style name="BackgroundProtectedStyle"> |
| 371 | <item name="android:textColor">?attr/wallpaperTextColor</item> |
| 372 | </style> |
| 373 | |
Alex Johnston | 5179ac6 | 2020-01-07 14:23:26 +0000 | [diff] [blame] | 374 | <style name="LockPatternContainerStyle"> |
| 375 | <item name="android:maxHeight">400dp</item> |
| 376 | <item name="android:maxWidth">420dp</item> |
| 377 | <item name="android:minHeight">0dp</item> |
| 378 | <item name="android:minWidth">0dp</item> |
| 379 | <item name="android:paddingBottom">0dp</item> |
| 380 | <item name="android:paddingHorizontal">44dp</item> |
| 381 | <item name="android:paddingTop">0dp</item> |
| 382 | </style> |
| 383 | |
Lucas Dupin | 987f193 | 2017-05-13 21:02:52 -0700 | [diff] [blame] | 384 | <style name="LockPatternStyle"> |
Matt Pietal | 6a40f0c | 2021-02-02 10:57:42 -0500 | [diff] [blame] | 385 | <item name="*android:regularColor">?android:attr/colorAccent</item> |
Lucas Dupin | 7b8636f | 2020-11-19 03:18:10 +0000 | [diff] [blame] | 386 | <item name="*android:successColor">?android:attr/textColorPrimary</item> |
Jorim Jaggi | 6498f96 | 2017-07-24 15:51:41 +0200 | [diff] [blame] | 387 | <item name="*android:errorColor">?android:attr/colorError</item> |
Matt Pietal | 6a40f0c | 2021-02-02 10:57:42 -0500 | [diff] [blame] | 388 | <item name="*android:dotColor">?android:attr/textColorSecondary</item> |
Lucas Dupin | 987f193 | 2017-05-13 21:02:52 -0700 | [diff] [blame] | 389 | </style> |
| 390 | |
Kevin Chyn | ff168dc | 2019-09-16 16:04:38 -0700 | [diff] [blame] | 391 | <style name="LockPatternStyleBiometricPrompt"> |
| 392 | <item name="*android:regularColor">?android:attr/colorForeground</item> |
| 393 | <item name="*android:successColor">?android:attr/colorForeground</item> |
| 394 | <item name="*android:errorColor">?android:attr/colorError</item> |
Matt Pietal | 6a40f0c | 2021-02-02 10:57:42 -0500 | [diff] [blame] | 395 | <item name="*android:dotColor">?android:attr/textColorSecondary</item> |
Kevin Chyn | ff168dc | 2019-09-16 16:04:38 -0700 | [diff] [blame] | 396 | </style> |
| 397 | |
Lucas Dupin | d62f724 | 2021-04-02 18:18:48 -0700 | [diff] [blame] | 398 | <style name="Theme.SystemUI.QuickSettings" parent="@*android:style/Theme.DeviceDefault"> |
Jason Monk | 9a376bc | 2017-05-10 09:52:10 -0400 | [diff] [blame] | 399 | <item name="lightIconTheme">@style/QSIconTheme</item> |
| 400 | <item name="darkIconTheme">@style/QSIconTheme</item> |
Evan Laird | 9dc22f4 | 2019-03-29 10:34:03 -0400 | [diff] [blame] | 401 | <item name="android:colorError">@*android:color/error_color_material_dark</item> |
Adrian Roos | edfab3b | 2018-03-08 18:39:20 +0100 | [diff] [blame] | 402 | <item name="android:windowIsFloating">true</item> |
Fabian Kozynski | 9baddff | 2019-05-23 15:41:49 -0400 | [diff] [blame] | 403 | <item name="android:homeAsUpIndicator">@drawable/ic_arrow_back</item> |
Fabian Kozynski | 37342cb | 2021-04-08 12:56:15 -0400 | [diff] [blame] | 404 | <item name="offStateColor">@android:color/system_neutral1_800</item> |
| 405 | <item name="underSurfaceColor">@android:color/system_neutral1_1000</item> |
| 406 | <item name="android:colorBackground">@android:color/system_neutral1_900</item> |
Bill Lin | 9284381 | 2021-06-24 14:58:21 +0800 | [diff] [blame] | 407 | <item name="android:itemTextAppearance">@style/Control.MenuItem</item> |
Fabian Kozynski | 37342cb | 2021-04-08 12:56:15 -0400 | [diff] [blame] | 408 | </style> |
| 409 | |
| 410 | <style name="Theme.SystemUI.QuickSettings.BrightnessDialog" parent="@android:style/Theme.DeviceDefault.Dialog"> |
Fabian Kozynski | 815f2dd | 2021-04-19 12:40:49 -0400 | [diff] [blame] | 411 | <item name="android:windowBackground">@android:color/transparent</item> |
Fabian Kozynski | 37342cb | 2021-04-08 12:56:15 -0400 | [diff] [blame] | 412 | </style> |
| 413 | |
| 414 | <style name="Theme.SystemUI.QuickSettings.Dialog" parent="@android:style/Theme.DeviceDefault.Dialog"> |
| 415 | <item name="android:dialogCornerRadius">@dimen/notification_corner_radius</item> |
Jason Monk | 9a376bc | 2017-05-10 09:52:10 -0400 | [diff] [blame] | 416 | </style> |
Adrian Roos | 070a0b6 | 2014-04-10 23:25:03 +0200 | [diff] [blame] | 417 | |
Galia Peycheva | 296a49c | 2020-07-31 12:41:39 +0200 | [diff] [blame] | 418 | <!-- Overridden by values-television/styles.xml with tv-specific settings --> |
Josh Tsuji | d7c84f4 | 2021-09-24 16:46:11 -0400 | [diff] [blame] | 419 | <style name="volume_dialog_theme" parent="Theme.SystemUI"> |
| 420 | <item name="android:windowIsFloating">true</item> |
| 421 | </style> |
Galia Peycheva | 296a49c | 2020-07-31 12:41:39 +0200 | [diff] [blame] | 422 | |
Andrew Sapperstein | 5c37344 | 2016-06-12 13:17:16 -0700 | [diff] [blame] | 423 | <style name="Theme.SystemUI.Dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog" /> |
John Spurlock | 3513460 | 2014-07-24 18:10:48 -0400 | [diff] [blame] | 424 | |
Craig Stout | 9eef7bc | 2014-05-06 19:10:53 -0700 | [diff] [blame] | 425 | <style name="Theme.SystemUI.Dialog.Alert" parent="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert" /> |
| 426 | |
Adrian Roos | edfab3b | 2018-03-08 18:39:20 +0100 | [diff] [blame] | 427 | <style name="Theme.SystemUI.Dialog.GlobalActions" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen"> |
Fabian Kozynski | 395aec9 | 2020-05-27 17:03:37 -0400 | [diff] [blame] | 428 | <item name="android:colorError">@*android:color/error_color_material_dark</item> |
Adrian Roos | edfab3b | 2018-03-08 18:39:20 +0100 | [diff] [blame] | 429 | <item name="android:windowIsFloating">true</item> |
| 430 | </style> |
Lucas Dupin | c1cc759 | 2017-05-22 15:56:16 -0700 | [diff] [blame] | 431 | |
Beth Thibodeau | 65c210b | 2021-03-17 13:36:11 -0400 | [diff] [blame] | 432 | <style name="Theme.SystemUI.Dialog.GlobalActionsLite" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen"> |
| 433 | <item name="android:windowIsFloating">true</item> |
| 434 | <item name="android:windowBackground">@android:color/transparent</item> |
| 435 | <item name="android:backgroundDimEnabled">true</item> |
| 436 | <item name="android:windowCloseOnTouchOutside">true</item> |
| 437 | </style> |
| 438 | |
timhypeng | eef372d | 2020-09-08 16:29:53 +0800 | [diff] [blame] | 439 | <style name="Theme.SystemUI.Dialog.MediaOutput"> |
| 440 | <item name="android:windowBackground">@drawable/media_output_dialog_background</item> |
| 441 | </style> |
| 442 | |
John Spurlock | 7e6809a | 2014-08-06 16:03:14 -0400 | [diff] [blame] | 443 | <style name="QSBorderlessButton"> |
John Spurlock | 7f8f22a | 2014-07-02 18:54:17 -0400 | [diff] [blame] | 444 | <item name="android:padding">12dp</item> |
Jason Monk | 30014c4 | 2016-03-02 14:52:27 -0500 | [diff] [blame] | 445 | <item name="android:background">@drawable/qs_btn_borderless_rect</item> |
John Spurlock | 7f8f22a | 2014-07-02 18:54:17 -0400 | [diff] [blame] | 446 | <item name="android:gravity">center</item> |
| 447 | </style> |
John Spurlock | d47a3f3 | 2014-05-18 19:14:14 -0400 | [diff] [blame] | 448 | |
Selim Cinek | 92d892c | 2014-09-11 15:11:00 +0200 | [diff] [blame] | 449 | <style name="SearchPanelCircle"> |
Jorim Jaggi | f479792 | 2014-08-04 22:49:41 +0200 | [diff] [blame] | 450 | <item name="android:layout_width">match_parent</item> |
Selim Cinek | 92d892c | 2014-09-11 15:11:00 +0200 | [diff] [blame] | 451 | <item name="android:layout_height">match_parent</item> |
Jorim Jaggi | f479792 | 2014-08-04 22:49:41 +0200 | [diff] [blame] | 452 | </style> |
| 453 | |
Adrian Roos | 1940892 | 2014-08-07 20:54:12 +0200 | [diff] [blame] | 454 | <style name="UserDetailView"> |
| 455 | <item name="numColumns">3</item> |
| 456 | </style> |
Adrian Roos | 752aee8 | 2014-11-25 21:11:19 +0100 | [diff] [blame] | 457 | |
Muyuan Li | 92c9141 | 2016-05-04 17:06:29 -0700 | [diff] [blame] | 458 | <style name="AutoSizingList"> |
| 459 | <item name="enableAutoSizing">true</item> |
| 460 | </style> |
Narayan Kamath | 05f010b | 2019-05-10 14:42:52 +0100 | [diff] [blame] | 461 | <style name="Theme.SystemUI.MediaProjectionAlertDialog"> |
Adrian Roos | 752aee8 | 2014-11-25 21:11:19 +0100 | [diff] [blame] | 462 | <item name="android:windowIsTranslucent">true</item> |
| 463 | <item name="android:windowBackground">@android:color/transparent</item> |
| 464 | <item name="android:windowContentOverlay">@null</item> |
| 465 | <item name="android:windowNoTitle">true</item> |
| 466 | <item name="android:windowIsFloating">true</item> |
Narayan Kamath | b4bfa1b | 2019-03-15 16:54:53 +0000 | [diff] [blame] | 467 | <item name="android:backgroundDimEnabled">true</item> |
Adrian Roos | 752aee8 | 2014-11-25 21:11:19 +0100 | [diff] [blame] | 468 | <item name="android:alertDialogTheme">@style/Theme.SystemUI.Dialog.Alert</item> |
| 469 | </style> |
Jorim Jaggi | 5443cc5 | 2015-03-20 14:39:24 -0700 | [diff] [blame] | 470 | |
| 471 | <style name="DualToneLightTheme"> |
| 472 | <item name="backgroundColor">@color/light_mode_icon_color_dual_tone_background</item> |
| 473 | <item name="fillColor">@color/light_mode_icon_color_dual_tone_fill</item> |
| 474 | <item name="singleToneColor">@color/light_mode_icon_color_single_tone</item> |
Winson Chung | 4184a1d | 2019-07-26 16:35:35 -0700 | [diff] [blame] | 475 | <item name="homeHandleColor">@color/navigation_bar_home_handle_light_color</item> |
Jorim Jaggi | 5443cc5 | 2015-03-20 14:39:24 -0700 | [diff] [blame] | 476 | </style> |
| 477 | <style name="DualToneDarkTheme"> |
| 478 | <item name="backgroundColor">@color/dark_mode_icon_color_dual_tone_background</item> |
| 479 | <item name="fillColor">@color/dark_mode_icon_color_dual_tone_fill</item> |
| 480 | <item name="singleToneColor">@color/dark_mode_icon_color_single_tone</item> |
Winson Chung | 4184a1d | 2019-07-26 16:35:35 -0700 | [diff] [blame] | 481 | <item name="homeHandleColor">@color/navigation_bar_home_handle_dark_color</item> |
Jorim Jaggi | 5443cc5 | 2015-03-20 14:39:24 -0700 | [diff] [blame] | 482 | </style> |
Fabian Kozynski | f86df99 | 2019-04-22 14:23:47 -0400 | [diff] [blame] | 483 | <style name="QSHeaderDarkTheme"> |
| 484 | <item name="backgroundColor">@color/dark_mode_qs_icon_color_dual_tone_background</item> |
| 485 | <item name="fillColor">@color/dark_mode_qs_icon_color_dual_tone_fill</item> |
| 486 | <item name="singleToneColor">@color/dark_mode_qs_icon_color_single_tone</item> |
| 487 | </style> |
| 488 | |
Lucas Dupin | d62f724 | 2021-04-02 18:18:48 -0700 | [diff] [blame] | 489 | <style name="Theme.SystemUI.QuickSettings.Header"> |
Fabian Kozynski | f86df99 | 2019-04-22 14:23:47 -0400 | [diff] [blame] | 490 | <item name="lightIconTheme">@style/DualToneLightTheme</item> |
| 491 | <item name="darkIconTheme">@style/QSHeaderDarkTheme</item> |
| 492 | </style> |
| 493 | |
Jason Monk | 9a376bc | 2017-05-10 09:52:10 -0400 | [diff] [blame] | 494 | <style name="QSIconTheme"> |
| 495 | <item name="backgroundColor">?android:attr/textColorHint</item> |
| 496 | <item name="fillColor">?android:attr/textColorPrimary</item> |
| 497 | <item name="singleToneColor">?android:attr/textColorPrimary</item> |
| 498 | </style> |
Matthew Ng | 32afc62 | 2018-06-12 14:26:07 -0700 | [diff] [blame] | 499 | <style name="ScreenPinningRequestTheme" parent="@*android:style/ThemeOverlay.DeviceDefault.Accent"> |
| 500 | <item name="singleToneColor">@color/light_mode_icon_color_single_tone</item> |
| 501 | </style> |
John Spurlock | d9c75db | 2015-04-28 11:19:13 -0400 | [diff] [blame] | 502 | |
| 503 | <style name="TextAppearance.Volume"> |
| 504 | <item name="android:textStyle">normal</item> |
Jason Monk | 18c9901 | 2017-04-17 16:04:30 -0400 | [diff] [blame] | 505 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Amin Shaikh | 0aac7d0 | 2018-12-13 15:12:14 -0500 | [diff] [blame] | 506 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
John Spurlock | d9c75db | 2015-04-28 11:19:13 -0400 | [diff] [blame] | 507 | </style> |
| 508 | |
John Spurlock | 0265657 | 2015-06-10 09:33:34 -0400 | [diff] [blame] | 509 | <style name="TextAppearance.Volume.Header"> |
| 510 | <item name="android:textSize">12sp</item> |
Jason Monk | 18c9901 | 2017-04-17 16:04:30 -0400 | [diff] [blame] | 511 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
John Spurlock | 0265657 | 2015-06-10 09:33:34 -0400 | [diff] [blame] | 512 | </style> |
| 513 | |
Julia Reynolds | 7c62c31 | 2018-02-01 17:29:33 -0500 | [diff] [blame] | 514 | <style name="TextAppearance.Volume.Header.Secondary"> |
| 515 | <item name="android:textSize">12sp</item> |
| 516 | <item name="android:textColor">?android:attr/textColorTertiary</item> |
John Spurlock | d9c75db | 2015-04-28 11:19:13 -0400 | [diff] [blame] | 517 | </style> |
| 518 | |
John Spurlock | d9c75db | 2015-04-28 11:19:13 -0400 | [diff] [blame] | 519 | <style name="VolumeButtons" parent="@android:style/Widget.Material.Button.Borderless"> |
| 520 | <item name="android:background">@drawable/btn_borderless_rect</item> |
| 521 | </style> |
| 522 | |
Andrew Sapperstein | 5c37344 | 2016-06-12 13:17:16 -0700 | [diff] [blame] | 523 | <style name="TunerSettings" parent="@android:style/Theme.DeviceDefault.Settings"> |
Jason Monk | a9f1288 | 2016-01-24 12:03:19 -0500 | [diff] [blame] | 524 | <item name="android:windowActionBar">false</item> |
Jason Monk | d40328e | 2015-12-07 21:45:47 -0500 | [diff] [blame] | 525 | <item name="preferenceTheme">@style/TunerPreferenceTheme</item> |
| 526 | </style> |
| 527 | |
Fan Zhang | 1137f87 | 2017-07-07 15:55:27 -0700 | [diff] [blame] | 528 | <style name="TunerPreferenceTheme" parent="@style/PreferenceThemeOverlay.SettingsBase"> |
Jason Monk | 87ccd55 | 2015-12-11 21:39:54 -0500 | [diff] [blame] | 529 | </style> |
| 530 | |
Julia Reynolds | e034148 | 2018-03-08 14:42:50 -0500 | [diff] [blame] | 531 | <style name="TextAppearance.NotificationInfo.Confirmation"> |
Julia Reynolds | e034148 | 2018-03-08 14:42:50 -0500 | [diff] [blame] | 532 | <item name="android:textSize">14sp</item> |
| 533 | <item name="android:alpha">0.87</item> |
| 534 | </style> |
| 535 | |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 536 | <style name="TextAppearance.NotificationInfo"> |
Evan Laird | 52ac0ce | 2020-04-03 17:33:28 -0400 | [diff] [blame] | 537 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 538 | </style> |
| 539 | |
Geoffrey Pitsch | d0856f0 | 2017-02-16 10:51:18 -0500 | [diff] [blame] | 540 | <style name="TextAppearance.NotificationInfo.Secondary"> |
Geoffrey Pitsch | d0856f0 | 2017-02-16 10:51:18 -0500 | [diff] [blame] | 541 | <item name="android:textSize">14sp</item> |
Evan Laird | c9d0a49 | 2019-06-13 10:08:41 -0400 | [diff] [blame] | 542 | <item name="android:alpha">0.62</item> |
Julia Reynolds | 2050536 | 2016-01-12 08:47:04 -0500 | [diff] [blame] | 543 | </style> |
| 544 | |
Evan Laird | 47dc454 | 2019-04-24 15:10:52 -0400 | [diff] [blame] | 545 | <style name="TextAppearance.NotificationInfo.Title"> |
Evan Laird | 47dc454 | 2019-04-24 15:10:52 -0400 | [diff] [blame] | 546 | <item name="android:textStyle">bold</item> |
| 547 | </style> |
| 548 | |
Geoffrey Pitsch | d0856f0 | 2017-02-16 10:51:18 -0500 | [diff] [blame] | 549 | <style name="TextAppearance.NotificationInfo.Button"> |
Ned Burns | 369f147 | 2019-05-22 21:07:26 -0400 | [diff] [blame] | 550 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
| 551 | <item name="android:textSize">14sp</item> |
Julia Reynolds | 146e157 | 2020-02-25 16:29:52 -0500 | [diff] [blame] | 552 | <item name="android:textColor">?android:attr/colorAccent</item> |
Geoffrey Pitsch | d0856f0 | 2017-02-16 10:51:18 -0500 | [diff] [blame] | 553 | <item name="android:background">@drawable/btn_borderless_rect</item> |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 554 | <item name="android:gravity">center_vertical</item> |
Geoffrey Pitsch | d0856f0 | 2017-02-16 10:51:18 -0500 | [diff] [blame] | 555 | <item name="android:focusable">true</item> |
Jason Monk | f0c6f64 | 2016-01-20 22:24:50 -0500 | [diff] [blame] | 556 | </style> |
| 557 | |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 558 | <style name="TextAppearance.NotificationImportanceChannel"> |
| 559 | <item name="android:textSize">@dimen/notification_importance_channel_text</item> |
Ned Burns | 369f147 | 2019-05-22 21:07:26 -0400 | [diff] [blame] | 560 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 561 | <item name="android:textColor">@color/notification_guts_header_text_color</item> |
| 562 | <item name="android:textSize">@dimen/notification_importance_channel_text</item> |
| 563 | </style> |
| 564 | |
| 565 | <style name="TextAppearance.NotificationImportanceChannelGroup"> |
| 566 | <item name="android:textSize">@dimen/notification_importance_channel_group_text</item> |
Ned Burns | 369f147 | 2019-05-22 21:07:26 -0400 | [diff] [blame] | 567 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Julia Reynolds | f870a11 | 2020-06-10 16:20:11 -0400 | [diff] [blame] | 568 | <item name="android:textColor">@color/notification_guts_header_text_color</item> |
| 569 | <item name="android:textSize">@dimen/notification_importance_channel_group_text</item> |
| 570 | </style> |
| 571 | |
| 572 | <style name="TextAppearance.NotificationImportanceApp"> |
| 573 | <item name="android:textSize">@dimen/notification_importance_channel_group_text</item> |
| 574 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 575 | <item name="android:textColor">@color/notification_guts_sub_text_color</item> |
| 576 | <item name="android:textSize">@dimen/notification_importance_channel_group_text</item> |
| 577 | </style> |
| 578 | |
| 579 | <style name="TextAppearance.NotificationImportanceHeader"> |
Julia Reynolds | 4d1dd79 | 2019-04-29 11:48:29 -0400 | [diff] [blame] | 580 | <item name="android:textSize">@dimen/notification_importance_header_text</item> |
Ned Burns | 369f147 | 2019-05-22 21:07:26 -0400 | [diff] [blame] | 581 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 582 | <item name="android:textColor">@color/notification_guts_header_text_color</item> |
| 583 | </style> |
| 584 | |
| 585 | <style name="TextAppearance.NotificationImportanceDetail"> |
| 586 | <item name="android:textSize">@dimen/notification_importance_description_text</item> |
| 587 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
| 588 | <item name="android:textColor">@color/notification_guts_sub_text_color</item> |
| 589 | <item name="android:gravity">center</item> |
| 590 | </style> |
| 591 | |
| 592 | <style name="TextAppearance.NotificationImportanceButton"> |
| 593 | <item name="android:textSize">@dimen/notification_importance_button_text</item> |
Ned Burns | 369f147 | 2019-05-22 21:07:26 -0400 | [diff] [blame] | 594 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
Julia Reynolds | 8d25709 | 2020-04-15 15:57:21 -0400 | [diff] [blame] | 595 | <item name="android:textColor">@color/notification_guts_priority_contents</item> |
Julia Reynolds | 8728d00 | 2019-04-19 15:46:13 -0400 | [diff] [blame] | 596 | <item name="android:gravity">center</item> |
| 597 | </style> |
| 598 | |
Steve Elliott | b094038 | 2020-02-20 14:24:02 -0500 | [diff] [blame] | 599 | <style |
| 600 | name="TextAppearance.NotificationSectionHeaderButton" |
Lucas Dupin | 7b8636f | 2020-11-19 03:18:10 +0000 | [diff] [blame] | 601 | parent="@android:style/Widget.DeviceDefault.Button.Borderless"> |
| 602 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Steve Elliott | b094038 | 2020-02-20 14:24:02 -0500 | [diff] [blame] | 603 | <item name="android:textAllCaps">false</item> |
Steve Elliott | d855da5 | 2020-04-28 15:43:22 -0400 | [diff] [blame] | 604 | <item name="android:textSize">14sp</item> |
Steve Elliott | 311c4e7 | 2020-05-26 13:33:38 -0400 | [diff] [blame] | 605 | <item name="android:minWidth">0dp</item> |
Steve Elliott | b094038 | 2020-02-20 14:24:02 -0500 | [diff] [blame] | 606 | </style> |
| 607 | |
Selim Cinek | aa9db1f3 | 2018-02-27 17:35:47 -0800 | [diff] [blame] | 608 | <style name="TextAppearance.HeadsUpStatusBarText" |
Selim Cinek | 3d2a982 | 2019-03-06 15:59:21 -0800 | [diff] [blame] | 609 | parent="@*android:style/TextAppearance.DeviceDefault.Notification.Info"> |
Selim Cinek | aa9db1f3 | 2018-02-27 17:35:47 -0800 | [diff] [blame] | 610 | </style> |
| 611 | |
Fabian Kozynski | b223a3a | 2021-05-17 12:02:56 -0400 | [diff] [blame] | 612 | <style name="TextAppearance.QSEdit" > |
| 613 | <item name="android:textSize">14sp</item> |
| 614 | <item name="android:letterSpacing">0.01</item> |
| 615 | <item name="android:lineHeight">20sp</item> |
| 616 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Fabian Kozynski | f80234c | 2019-02-12 13:54:16 -0500 | [diff] [blame] | 617 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
Fabian Kozynski | f80234c | 2019-02-12 13:54:16 -0500 | [diff] [blame] | 618 | </style> |
| 619 | |
| 620 | <style name="QSCustomizeToolbar" parent="@*android:style/Widget.DeviceDefault.Toolbar"> |
| 621 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 622 | <item name="android:elevation">10dp</item> |
Fabian Kozynski | 1720c36 | 2018-08-22 10:37:55 -0400 | [diff] [blame] | 623 | </style> |
| 624 | |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 625 | <!-- Media controls always have light background --> |
| 626 | <style name="MediaPlayer" parent="@*android:style/Theme.DeviceDefault.Light"> |
| 627 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 628 | <item name="android:backgroundTint">@android:color/system_accent2_50</item> |
| 629 | </style> |
| 630 | |
| 631 | <style name="MediaPlayer.ProgressBar" parent="@android:style/Widget.ProgressBar.Horizontal"> |
| 632 | <item name="android:thumbTint">?android:attr/textColorPrimary</item> |
| 633 | <item name="android:progressTint">?android:attr/textColorPrimary</item> |
| 634 | <item name="android:progressBackgroundTint">?android:attr/textColorTertiary</item> |
| 635 | <item name="android:clickable">true</item> |
| 636 | <item name="android:splitTrack">false</item> |
| 637 | </style> |
| 638 | |
| 639 | <style name="MediaPlayer.Subtitle" parent="MediaPlayer"> |
| 640 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
| 641 | </style> |
| 642 | |
| 643 | <style name="MediaPlayer.Action" parent="@android:style/Widget.Material.Button.Borderless.Small"> |
Lucas Dupin | 5feeaca | 2020-05-28 11:01:54 -0700 | [diff] [blame] | 644 | <item name="android:background">@drawable/qs_media_light_source</item> |
Beth Thibodeau | 16ea9a6 | 2021-02-08 13:47:04 -0500 | [diff] [blame] | 645 | <item name="android:tint">?android:attr/textColorPrimary</item> |
Lucas Dupin | 7a7fd76 | 2020-05-17 22:03:48 -0700 | [diff] [blame] | 646 | <item name="android:stateListAnimator">@anim/media_button_state_list_animator</item> |
Beth Thibodeau | 1781ae2 | 2021-06-24 19:18:24 -0400 | [diff] [blame] | 647 | <item name="android:paddingTop">8dp</item> |
| 648 | <item name="android:paddingStart">12dp</item> |
| 649 | <item name="android:paddingEnd">12dp</item> |
| 650 | <item name="android:paddingBottom">16dp</item> |
Beth Thibodeau | 9cf9543 | 2021-05-27 00:17:23 -0400 | [diff] [blame] | 651 | <item name="android:scaleType">centerInside</item> |
Lucas Dupin | 33102c2 | 2020-05-05 16:24:48 -0700 | [diff] [blame] | 652 | </style> |
| 653 | |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 654 | <style name="MediaPlayer.OutlineButton"> |
| 655 | <item name="android:background">@drawable/qs_media_button_background</item> |
| 656 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Jeff DeCew | 546f6c4 | 2021-05-07 10:22:43 -0400 | [diff] [blame] | 657 | <item name="android:backgroundTint">@color/media_player_outline_button_bg</item> |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 658 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
Beth Thibodeau | 5b7117f | 2021-05-14 19:16:55 -0400 | [diff] [blame] | 659 | <item name="android:layout_gravity">center</item> |
| 660 | <item name="android:singleLine">true</item> |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 661 | </style> |
| 662 | |
| 663 | <style name="MediaPlayer.SolidButton"> |
Beth Thibodeau | cf48e27 | 2021-05-13 15:17:09 -0400 | [diff] [blame] | 664 | <item name="android:backgroundTint">@color/media_player_solid_button_bg</item> |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 665 | <item name="android:tint">?android:attr/colorPrimary</item> |
Beth Thibodeau | cf48e27 | 2021-05-13 15:17:09 -0400 | [diff] [blame] | 666 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 667 | </style> |
| 668 | |
| 669 | <style name="MediaPlayer.AppIcon"> |
| 670 | <item name="android:background">@drawable/qs_media_icon_background</item> |
Beth Thibodeau | 9cf9543 | 2021-05-27 00:17:23 -0400 | [diff] [blame] | 671 | <item name="android:backgroundTint">@color/media_player_solid_button_bg</item> |
| 672 | <item name="android:padding">4dp</item> |
cecilia | 0f869b0 | 2021-05-06 20:21:11 -0400 | [diff] [blame] | 673 | </style> |
| 674 | |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 675 | <style name="MediaPlayer.Album"> |
Jeff DeCew | 546f6c4 | 2021-05-07 10:22:43 -0400 | [diff] [blame] | 676 | <item name="android:backgroundTint">@color/media_player_album_bg</item> |
Beth Thibodeau | 0c23fa4 | 2021-05-03 10:21:36 -0400 | [diff] [blame] | 677 | </style> |
| 678 | |
Beverly | 47fb7e7 | 2018-07-20 12:05:41 -0400 | [diff] [blame] | 679 | <!-- Used to style charging animation AVD animation --> |
| 680 | <style name="ChargingAnim" /> |
| 681 | |
| 682 | <style name="ChargingAnim.WallpaperBackground"> |
| 683 | <item name="chargingAnimColor">?attr/wallpaperTextColor</item> |
| 684 | <item name="android:textColor">?attr/wallpaperTextColor</item> |
| 685 | </style> |
| 686 | |
| 687 | <style name="ChargingAnim.DarkBackground"> |
| 688 | <item name="chargingAnimColor">@android:color/white</item> |
| 689 | <item name="android:textColor">@android:color/white</item> |
| 690 | </style> |
Beth Thibodeau | 5898ac4 | 2018-10-26 13:00:09 -0400 | [diff] [blame] | 691 | |
| 692 | <!-- Screen recording --> |
Beth Thibodeau | 3a6818b | 2021-05-13 20:41:43 -0400 | [diff] [blame] | 693 | <style name="ScreenRecord" parent="@android:style/Theme.DeviceDefault.DayNight"> |
| 694 | <item name="android:windowNoTitle">true</item> |
Beth Thibodeau | 5898ac4 | 2018-10-26 13:00:09 -0400 | [diff] [blame] | 695 | <item name="android:windowIsTranslucent">true</item> |
| 696 | <item name="android:windowBackground">@android:color/transparent</item> |
| 697 | <item name="android:windowIsFloating">true</item> |
| 698 | <item name="android:backgroundDimEnabled">true</item> |
| 699 | <item name="android:windowCloseOnTouchOutside">true</item> |
| 700 | </style> |
Badhri Jagan Sridharan | f603a2c | 2019-01-22 19:48:49 -0800 | [diff] [blame] | 701 | |
Beth Thibodeau | 64def4b | 2021-06-28 18:30:35 -0400 | [diff] [blame] | 702 | <style name="ScreenRecord.Switch"> |
| 703 | <item name="android:textAppearance">?android:attr/textAppearanceMedium</item> |
| 704 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 705 | <item name="android:switchMinWidth">52dp</item> |
| 706 | <item name="android:minHeight">48dp</item> |
| 707 | <item name="android:track">@drawable/settingslib_switch_track</item> |
| 708 | <item name="android:thumb">@drawable/settingslib_switch_thumb</item> |
| 709 | </style> |
| 710 | |
Matt Casey | b8090a0 | 2021-03-19 11:08:11 -0400 | [diff] [blame] | 711 | <!-- Screenshots --> |
| 712 | <style name="LongScreenshotActivity" parent="@android:style/Theme.DeviceDefault.DayNight"> |
| 713 | <item name="android:windowNoTitle">true</item> |
Matt Casey | 813d42b | 2021-04-06 16:35:35 -0400 | [diff] [blame] | 714 | <item name="android:windowLightStatusBar">true</item> |
| 715 | <item name="android:windowLightNavigationBar">true</item> |
Matt Casey | 176897a | 2021-05-20 11:15:28 -0400 | [diff] [blame] | 716 | <item name="android:navigationBarColor">?android:attr/colorBackgroundFloating</item> |
Miranda Kephart | 3ab2e80 | 2021-05-10 11:27:09 -0400 | [diff] [blame] | 717 | <item name="android:windowActivityTransitions">true</item> |
Matt Casey | b8090a0 | 2021-03-19 11:08:11 -0400 | [diff] [blame] | 718 | </style> |
| 719 | |
Miranda Kephart | 67fd70c | 2021-05-19 20:29:32 +0000 | [diff] [blame] | 720 | <style name="Screenshot" parent="@android:style/Theme.DeviceDefault.DayNight"/> |
| 721 | |
Fabian Kozynski | fd089fb | 2021-02-26 15:52:30 -0500 | [diff] [blame] | 722 | <!-- Privacy dialog --> |
Fabian Kozynski | 37342cb | 2021-04-08 12:56:15 -0400 | [diff] [blame] | 723 | <style name="PrivacyDialog" parent="Theme.SystemUI.QuickSettings.Dialog"> |
| 724 | <item name="android:windowIsTranslucent">true</item> |
| 725 | <item name="android:windowBackground">@android:color/transparent</item> |
| 726 | <item name="android:windowIsFloating">true</item> |
| 727 | <item name="android:backgroundDimEnabled">true</item> |
| 728 | <item name="android:windowCloseOnTouchOutside">true</item> |
Fabian Kozynski | fd089fb | 2021-02-26 15:52:30 -0500 | [diff] [blame] | 729 | <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> |
| 730 | </style> |
| 731 | |
Badhri Jagan Sridharan | f603a2c | 2019-01-22 19:48:49 -0800 | [diff] [blame] | 732 | <!-- USB Contaminant dialog --> |
| 733 | <style name ="USBContaminant" /> |
| 734 | |
| 735 | <style name ="USBContaminant.UserAction"> |
| 736 | <item name="android:layout_width">match_parent</item> |
| 737 | <item name="android:layout_height">wrap_content</item> |
| 738 | <item name="android:fontFamily">roboto-regular</item> |
| 739 | <item name="android:paddingLeft">16dp</item> |
| 740 | <item name="android:paddingTop">16dp</item> |
| 741 | <item name="android:paddingRight">24dp</item> |
| 742 | <item name="android:paddingBottom">16dp</item> |
| 743 | <item name="android:textAlignment">viewStart</item> |
| 744 | <item name="android:textSize">16sp</item> |
| 745 | <item name="android:clickable">true</item> |
| 746 | <item name="android:background">?android:attr/selectableItemBackground</item> |
| 747 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 748 | </style> |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 749 | |
| 750 | <!-- Controls styles --> |
| 751 | <style name="Theme.ControlsManagement" parent="@android:style/Theme.DeviceDefault.NoActionBar"> |
Matt Pietal | f4b870b | 2020-04-17 17:11:36 -0400 | [diff] [blame] | 752 | <item name="android:windowActivityTransitions">true</item> |
| 753 | <item name="android:windowContentTransitions">false</item> |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 754 | <item name="android:windowIsTranslucent">false</item> |
Matt Pietal | f4b870b | 2020-04-17 17:11:36 -0400 | [diff] [blame] | 755 | <item name="android:windowBackground">@android:color/black</item> |
| 756 | <item name="android:colorBackground">@android:color/black</item> |
| 757 | <item name="android:windowAnimationStyle">@null</item> |
| 758 | <item name="android:statusBarColor">@*android:color/transparent</item> |
Fabian Kozynski | ebff98b | 2020-04-27 14:47:37 -0400 | [diff] [blame] | 759 | <item name="wallpaperTextColor">@*android:color/primary_text_material_dark</item> |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 760 | </style> |
| 761 | |
Matt Pietal | 7d96918 | 2021-03-10 09:00:51 -0500 | [diff] [blame] | 762 | <style name="Theme.ControlsActivity" parent="@android:style/Theme.DeviceDefault.NoActionBar"> |
| 763 | <item name="android:windowActivityTransitions">true</item> |
| 764 | <item name="android:windowContentTransitions">false</item> |
| 765 | <item name="android:windowIsTranslucent">false</item> |
Matt Pietal | 6c19a8d | 2021-04-21 09:00:47 -0400 | [diff] [blame] | 766 | <item name="android:windowBackground">@android:color/black</item> |
Matt Pietal | 7d96918 | 2021-03-10 09:00:51 -0500 | [diff] [blame] | 767 | <item name="android:windowAnimationStyle">@null</item> |
Matt Pietal | 6c19a8d | 2021-04-21 09:00:47 -0400 | [diff] [blame] | 768 | <item name="android:statusBarColor">@android:color/black</item> |
Matt Pietal | 9172eef | 2021-07-23 14:47:37 -0400 | [diff] [blame] | 769 | <!-- Setting a placeholder will avoid using the SystemUI icon on the splash screen --> |
| 770 | <item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_blank</item> |
Matt Pietal | 7d96918 | 2021-03-10 09:00:51 -0500 | [diff] [blame] | 771 | <item name="wallpaperTextColor">@*android:color/primary_text_material_dark</item> |
| 772 | </style> |
| 773 | |
Andras Kloczl | 7f3c2dc | 2020-07-22 11:44:41 +0100 | [diff] [blame] | 774 | <style name="Theme.CreateUser" parent="@style/Theme.SystemUI"> |
| 775 | <item name="android:windowIsTranslucent">true</item> |
| 776 | <item name="android:windowBackground">#33000000</item> |
| 777 | <item name="android:windowActionBar">false</item> |
| 778 | <item name="android:windowNoTitle">true</item> |
| 779 | </style> |
| 780 | |
Flavio Fiszman | e4931c8 | 2021-03-23 18:09:07 +0000 | [diff] [blame] | 781 | <style name="Theme.PeopleTileConfigActivity" parent="@style/Theme.SystemUI"> |
| 782 | <item name="android:windowActionBar">false</item> |
| 783 | <item name="android:windowNoTitle">true</item> |
Flavio Fiszman | a0bd30c | 2021-07-12 14:57:09 +0100 | [diff] [blame] | 784 | <item name="android:windowLightStatusBar">true</item> |
Flavio Fiszman | e4931c8 | 2021-03-23 18:09:07 +0000 | [diff] [blame] | 785 | </style> |
| 786 | |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 787 | <style name="TextAppearance.Control"> |
| 788 | <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> |
| 789 | </style> |
| 790 | |
Matt Pietal | 7d96918 | 2021-03-10 09:00:51 -0500 | [diff] [blame] | 791 | <style name="Theme.SystemUI.Dialog.Control.DetailPanel" parent="@android:style/Theme.DeviceDefault.Dialog.NoActionBar"> |
| 792 | <item name="android:windowFullscreen">false</item> |
Matt Pietal | dc78c84 | 2020-03-30 08:09:18 -0400 | [diff] [blame] | 793 | <item name="android:windowIsFloating">false</item> |
Matt Pietal | 7d96918 | 2021-03-10 09:00:51 -0500 | [diff] [blame] | 794 | <item name="android:windowBackground">@android:color/black</item> |
| 795 | <item name="android:backgroundDimEnabled">false</item> |
| 796 | <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> |
Matt Pietal | 6c11cff | 2021-02-05 09:52:25 -0500 | [diff] [blame] | 797 | </style> |
| 798 | |
Matt Pietal | 9ef947a | 2020-03-04 08:22:03 -0500 | [diff] [blame] | 799 | <style name="Control" /> |
| 800 | |
Matt Pietal | 5ebb7fe | 2020-03-20 12:58:54 -0400 | [diff] [blame] | 801 | <style name="Control.MenuItem"> |
Matt Pietal | f74554f | 2020-04-29 13:43:55 -0400 | [diff] [blame] | 802 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 803 | <item name="android:textSize">@dimen/control_menu_item_text_size</item> |
Matt Pietal | 5ebb7fe | 2020-03-20 12:58:54 -0400 | [diff] [blame] | 804 | <item name="android:textColor">@color/control_primary_text</item> |
| 805 | <item name="android:singleLine">true</item> |
Matt Pietal | f74554f | 2020-04-29 13:43:55 -0400 | [diff] [blame] | 806 | <item name="android:gravity">center_vertical</item> |
| 807 | <item name="android:minHeight">@dimen/control_menu_item_min_height</item> |
Matt Pietal | 5ebb7fe | 2020-03-20 12:58:54 -0400 | [diff] [blame] | 808 | </style> |
| 809 | |
Matt Pietal | 9ef947a | 2020-03-04 08:22:03 -0500 | [diff] [blame] | 810 | <style name="Control.Spinner"> |
Matt Pietal | f74554f | 2020-04-29 13:43:55 -0400 | [diff] [blame] | 811 | <item name="android:textColor">@color/control_primary_text</item> |
Matt Pietal | 8f8953e | 2020-03-05 08:32:28 -0500 | [diff] [blame] | 812 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
Matt Pietal | 9ef947a | 2020-03-04 08:22:03 -0500 | [diff] [blame] | 813 | <item name="android:singleLine">true</item> |
| 814 | <item name="android:ellipsize">end</item> |
| 815 | </style> |
| 816 | |
| 817 | <style name="Control.Spinner.Header"> |
| 818 | <item name="android:background">@drawable/control_spinner_background</item> |
Matt Pietal | f74554f | 2020-04-29 13:43:55 -0400 | [diff] [blame] | 819 | <item name="android:textSize">@dimen/control_header_text_size</item> |
Matt Pietal | 9ef947a | 2020-03-04 08:22:03 -0500 | [diff] [blame] | 820 | </style> |
| 821 | |
| 822 | <style name="Control.Spinner.Item"> |
Matt Pietal | f74554f | 2020-04-29 13:43:55 -0400 | [diff] [blame] | 823 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 824 | <item name="android:textSize">@dimen/control_item_text_size</item> |
Matt Pietal | 638253a | 2020-03-02 09:10:43 -0500 | [diff] [blame] | 825 | </style> |
| 826 | |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 827 | <style name="TextAppearance.Control.Status"> |
Matt Pietal | 8f8953e | 2020-03-05 08:32:28 -0500 | [diff] [blame] | 828 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
Matt Pietal | 31ec9f2 | 2020-03-12 09:02:17 -0400 | [diff] [blame] | 829 | <item name="android:textSize">@dimen/control_status_normal</item> |
Matt Pietal | f8cf084 | 2020-02-14 10:25:11 -0500 | [diff] [blame] | 830 | <item name="android:textColor">@color/control_primary_text</item> |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 831 | </style> |
| 832 | |
| 833 | <style name="TextAppearance.Control.Title"> |
Matt Pietal | 8f8953e | 2020-03-05 08:32:28 -0500 | [diff] [blame] | 834 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
| 835 | <item name="android:textSize">@dimen/control_text_size</item> |
| 836 | <item name="android:lineSpacingExtra">6sp</item> |
Matt Pietal | f8cf084 | 2020-02-14 10:25:11 -0500 | [diff] [blame] | 837 | <item name="android:textColor">@color/control_primary_text</item> |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 838 | </style> |
| 839 | <style name="TextAppearance.Control.Subtitle"> |
Matt Pietal | 8f8953e | 2020-03-05 08:32:28 -0500 | [diff] [blame] | 840 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
| 841 | <item name="android:textSize">@dimen/control_text_size</item> |
Matt Pietal | f8cf084 | 2020-02-14 10:25:11 -0500 | [diff] [blame] | 842 | <item name="android:textColor">@color/control_secondary_text</item> |
Fabian Kozynski | 5fc5f6b | 2020-02-03 15:21:14 -0500 | [diff] [blame] | 843 | </style> |
Fabian Kozynski | 6936cd1 | 2020-04-30 12:14:03 -0400 | [diff] [blame] | 844 | <style name="TextAppearance.Control.Management" > |
| 845 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 846 | </style> |
| 847 | <style name="TextAppearance.Control.Management.Title"> |
| 848 | <item name="android:fontFamily">@*android:string/config_headlineFontFamilyMedium</item> |
| 849 | <item name="android:textSize">@dimen/controls_title_size</item> |
| 850 | </style> |
| 851 | <style name="TextAppearance.Control.Management.Subtitle"> |
| 852 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 853 | <item name="android:textSize">@dimen/controls_subtitle_size</item> |
| 854 | </style> |
| 855 | |
Matt Pietal | 9ef947a | 2020-03-04 08:22:03 -0500 | [diff] [blame] | 856 | <style name="Control.ListPopupWindow" parent="@*android:style/Widget.DeviceDefault.ListPopupWindow"> |
Matt Pietal | 638253a | 2020-03-02 09:10:43 -0500 | [diff] [blame] | 857 | <item name="android:overlapAnchor">true</item> |
Matt Pietal | 9ef947a | 2020-03-04 08:22:03 -0500 | [diff] [blame] | 858 | |
| 859 | <!-- used to override dark/light theming --> |
Matt Pietal | f74554f | 2020-04-29 13:43:55 -0400 | [diff] [blame] | 860 | <item name="*android:colorBackgroundFloating">@color/GM2_grey_800</item> |
| 861 | <item name="*android:colorPopupBackground">@color/GM2_grey_800</item> |
Fabian Kozynski | 1144c97 | 2020-05-21 13:01:03 -0400 | [diff] [blame] | 862 | <item name="*android:dialogCornerRadius">8dp</item> |
Matt Pietal | 638253a | 2020-03-02 09:10:43 -0500 | [diff] [blame] | 863 | </style> |
Fabian Kozynski | 04e7bde | 2020-02-13 13:02:33 -0500 | [diff] [blame] | 864 | |
Matt Pietal | 6126644 | 2020-03-17 12:53:44 -0400 | [diff] [blame] | 865 | <style name="TextAppearance.ControlSetup"> |
| 866 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 867 | <item name="android:textColor">@color/control_primary_text</item> |
Matt Pietal | 6126644 | 2020-03-17 12:53:44 -0400 | [diff] [blame] | 868 | </style> |
| 869 | |
| 870 | <style name="TextAppearance.ControlSetup.Title"> |
Matt Pietal | de1606e | 2020-05-11 16:21:58 -0400 | [diff] [blame] | 871 | <item name="android:textSize">@dimen/controls_setup_title</item> |
Matt Pietal | 3fc9898 | 2021-04-29 15:30:25 -0400 | [diff] [blame] | 872 | <item name="android:singleLine">true</item> |
Matt Pietal | 6126644 | 2020-03-17 12:53:44 -0400 | [diff] [blame] | 873 | </style> |
| 874 | |
| 875 | <style name="TextAppearance.ControlSetup.Subtitle"> |
Matt Pietal | de1606e | 2020-05-11 16:21:58 -0400 | [diff] [blame] | 876 | <item name="android:textSize">@dimen/controls_setup_subtitle</item> |
Matt Pietal | 3fc9898 | 2021-04-29 15:30:25 -0400 | [diff] [blame] | 877 | <item name="android:maxLines">2</item> |
Matt Pietal | 6126644 | 2020-03-17 12:53:44 -0400 | [diff] [blame] | 878 | </style> |
| 879 | |
Fabian Kozynski | 4429ee6 | 2020-05-04 12:44:41 -0400 | [diff] [blame] | 880 | <!-- The attributes used for title (textAppearanceLarge) and message (textAppearanceMedium) |
| 881 | are already as necessary: |
| 882 | * Title: headline, medium 20sp |
| 883 | * Message: body, 16 sp --> |
| 884 | <style name="Theme.ControlsRequestDialog" parent="@*android:style/Theme.DeviceDefault.Dialog.Alert"/> |
Fabian Kozynski | 467776a | 2021-01-28 14:11:11 -0500 | [diff] [blame] | 885 | |
| 886 | <style name="TextAppearance.PrivacyDialog"> |
| 887 | <item name="android:textSize">14sp</item> |
| 888 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Fabian Kozynski | 3102e88 | 2021-02-10 17:47:47 -0500 | [diff] [blame] | 889 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Fabian Kozynski | 467776a | 2021-01-28 14:11:11 -0500 | [diff] [blame] | 890 | </style> |
Kevin Chyn | 8c4397fe | 2021-02-04 12:28:58 -0800 | [diff] [blame] | 891 | |
Silin Huang | 8014230 | 2021-03-29 00:31:35 -0700 | [diff] [blame] | 892 | <!-- Wallet styles --> |
| 893 | <style name="Wallet" /> |
| 894 | |
| 895 | <style name="Wallet.TextAppearance"> |
| 896 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
Silin Huang | fd27c5b | 2021-05-10 11:57:55 -0700 | [diff] [blame] | 897 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Silin Huang | 8014230 | 2021-03-29 00:31:35 -0700 | [diff] [blame] | 898 | <item name="android:singleLine">true</item> |
| 899 | <item name="android:textSize">14sp</item> |
| 900 | </style> |
| 901 | |
Silin Huang | fd27c5b | 2021-05-10 11:57:55 -0700 | [diff] [blame] | 902 | <style name="Wallet.Theme" parent="@android:style/Theme.DeviceDefault"> |
| 903 | <item name="android:colorBackground">@android:color/system_neutral1_900</item> |
Silin Huang | 5097a4f | 2021-06-18 11:46:05 -0700 | [diff] [blame] | 904 | <item name="android:itemBackground">@android:color/system_neutral1_800</item> |
Matt Pietal | 9172eef | 2021-07-23 14:47:37 -0400 | [diff] [blame] | 905 | <!-- Setting a placeholder will avoid using the SystemUI icon on the splash screen. --> |
| 906 | <item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_blank</item> |
Silin Huang | 8014230 | 2021-03-29 00:31:35 -0700 | [diff] [blame] | 907 | </style> |
Zoey Chen | 5dbe2af | 2021-08-13 12:46:35 +0800 | [diff] [blame] | 908 | |
| 909 | <style name="Animation.InternetDialog" parent="@android:style/Animation.InputMethod"> |
| 910 | </style> |
| 911 | |
| 912 | <style name="Widget.SliceView.Panel"> |
| 913 | <item name="titleSize">16sp</item> |
| 914 | <item name="rowStyle">@style/SliceRow</item> |
| 915 | <item name="android:background">?android:attr/colorBackgroundFloating</item> |
| 916 | </style> |
| 917 | |
| 918 | <style name="SliceRow"> |
| 919 | <!-- 2dp start padding for the start icon --> |
| 920 | <item name="titleItemStartPadding">2dp</item> |
| 921 | <item name="titleItemEndPadding">0dp</item> |
| 922 | |
| 923 | <!-- Padding between content and the start icon is 14dp --> |
| 924 | <item name="contentStartPadding">14dp</item> |
| 925 | <!-- Padding between content and end items is 16dp --> |
| 926 | <item name="contentEndPadding">16dp</item> |
| 927 | |
| 928 | <!-- Both side margins of end item are 16dp --> |
| 929 | <item name="endItemStartPadding">16dp</item> |
| 930 | <item name="endItemEndPadding">16dp</item> |
| 931 | |
| 932 | <!-- Both side margins of bottom divider are 12dp --> |
| 933 | <item name="bottomDividerStartPadding">12dp</item> |
| 934 | <item name="bottomDividerEndPadding">12dp</item> |
| 935 | |
| 936 | <item name="actionDividerHeight">32dp</item> |
| 937 | </style> |
| 938 | |
| 939 | <style name="Theme.SystemUI.Dialog.Internet"> |
| 940 | <item name="android:windowBackground">@drawable/internet_dialog_background</item> |
| 941 | </style> |
| 942 | |
| 943 | <style name="MainSwitch.Settingslib" parent="@android:style/Theme.DeviceDefault"> |
| 944 | <item name="android:switchMinWidth">@dimen/settingslib_min_switch_width</item> |
| 945 | </style> |
| 946 | |
Zoey Chen | d4712ff | 2021-07-29 16:30:21 +0800 | [diff] [blame] | 947 | <style name="TrimmedHorizontalProgressBar" |
| 948 | parent="android:Widget.Material.ProgressBar.Horizontal"> |
| 949 | <item name="android:indeterminateDrawable"> |
| 950 | @drawable/progress_indeterminate_horizontal_material_trimmed |
| 951 | </item> |
| 952 | <item name="android:minHeight">4dp</item> |
| 953 | <item name="android:maxHeight">4dp</item> |
| 954 | </style> |
| 955 | |
Weng Su | d20de58 | 2021-09-13 08:56:28 +0800 | [diff] [blame] | 956 | <!-- Internet Dialog --> |
| 957 | <style name="InternetDialog"> |
| 958 | <item name="android:layout_width">wrap_content</item> |
| 959 | <item name="android:layout_height">wrap_content</item> |
| 960 | <item name="android:layout_gravity">center_vertical|start</item> |
| 961 | <item name="android:layout_marginStart">@dimen/internet_dialog_network_layout_margin</item> |
| 962 | </style> |
| 963 | |
| 964 | <style name="InternetDialog.Network"> |
| 965 | <item name="android:layout_width">match_parent</item> |
| 966 | <item name="android:layout_height">88dp</item> |
| 967 | <item name="android:layout_marginEnd">@dimen/internet_dialog_network_layout_margin</item> |
| 968 | <item name="android:paddingStart">22dp</item> |
| 969 | <item name="android:paddingEnd">22dp</item> |
| 970 | <item name="android:orientation">horizontal</item> |
| 971 | <item name="android:focusable">true</item> |
| 972 | <item name="android:clickable">true</item> |
| 973 | </style> |
| 974 | |
| 975 | <style name="InternetDialog.NetworkTitle"> |
| 976 | <item name="android:layout_marginEnd">7dp</item> |
| 977 | <item name="android:ellipsize">end</item> |
| 978 | <item name="android:textAppearance">@style/TextAppearance.InternetDialog</item> |
| 979 | </style> |
| 980 | |
| 981 | <style name="InternetDialog.NetworkTitle.Active"> |
| 982 | <item name="android:textAppearance">@style/TextAppearance.InternetDialog.Active</item> |
| 983 | </style> |
| 984 | |
| 985 | <style name="InternetDialog.NetworkSummary"> |
| 986 | <item name="android:layout_marginEnd">34dp</item> |
| 987 | <item name="android:ellipsize">end</item> |
| 988 | <item name="android:textAppearance">@style/TextAppearance.InternetDialog.Secondary</item> |
| 989 | </style> |
| 990 | |
| 991 | <style name="InternetDialog.NetworkSummary.Active"> |
| 992 | <item name="android:textAppearance">@style/TextAppearance.InternetDialog.Secondary.Active |
| 993 | </item> |
| 994 | </style> |
| 995 | |
| 996 | <style name="TextAppearance.InternetDialog"> |
| 997 | <item name="android:fontFamily">@*android:string/config_headlineFontFamily</item> |
| 998 | <item name="android:textSize">16sp</item> |
| 999 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
| 1000 | <item name="android:textDirection">locale</item> |
| 1001 | </style> |
| 1002 | |
| 1003 | <style name="TextAppearance.InternetDialog.Secondary"> |
| 1004 | <item name="android:textSize">14sp</item> |
Weng Su | b4e3b4c | 2021-09-24 05:00:29 +0800 | [diff] [blame] | 1005 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
Weng Su | d20de58 | 2021-09-13 08:56:28 +0800 | [diff] [blame] | 1006 | </style> |
| 1007 | |
| 1008 | <style name="TextAppearance.InternetDialog.Active"/> |
| 1009 | |
| 1010 | <style name="TextAppearance.InternetDialog.Secondary.Active"/> |
| 1011 | |
Joe Onorato | 503007d | 2010-04-16 09:20:55 -0700 | [diff] [blame] | 1012 | </resources> |