Yorke Lee | d725587 | 2014-08-25 15:03:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2014 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 |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 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 | |
| 17 | <resources> |
Priyank Singh | e436581 | 2019-05-01 15:13:21 -0700 | [diff] [blame] | 18 | <style name="Theme.Telecomm.Transparent" parent="@android:style/Theme.DeviceDefault.Light"> |
Youming Ye | c8a60ce | 2019-04-12 11:43:34 -0700 | [diff] [blame] | 19 | <item name="android:forceDarkAllowed">true</item> |
Yorke Lee | d725587 | 2014-08-25 15:03:51 -0700 | [diff] [blame] | 20 | <item name="android:windowIsTranslucent">true</item> |
| 21 | <item name="android:windowBackground">@android:color/transparent</item> |
| 22 | <item name="android:windowContentOverlay">@null</item> |
| 23 | <item name="android:windowNoTitle">true</item> |
| 24 | <item name="android:windowIsFloating">true</item> |
| 25 | <item name="android:backgroundDimEnabled">true</item> |
| 26 | <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> |
| 27 | </style> |
Andrew Lee | fd053f4 | 2014-11-12 18:09:58 -0800 | [diff] [blame] | 28 | |
qing | 2b132c2 | 2024-08-09 18:10:59 +0000 | [diff] [blame] | 29 | <style name="Theme.Telecomm.UserCallActivityNoSplash" parent="@android:style/Theme.DeviceDefault.Light"> |
| 30 | <item name="android:forceDarkAllowed">true</item> |
| 31 | <item name="android:windowIsTranslucent">true</item> |
| 32 | <item name="android:windowBackground">@android:color/transparent</item> |
| 33 | <item name="android:windowContentOverlay">@null</item> |
| 34 | <item name="android:windowNoTitle">true</item> |
| 35 | <item name="android:windowIsFloating">true</item> |
| 36 | <item name="android:backgroundDimEnabled">true</item> |
| 37 | <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> |
| 38 | <item name="android:windowDisablePreview">true</item> |
| 39 | </style> |
| 40 | |
Priyank Singh | e436581 | 2019-05-01 15:13:21 -0700 | [diff] [blame] | 41 | <style name="Theme.Telecom.DialerSettings" parent="@android:style/Theme.DeviceDefault.Light"> |
Youming Ye | c8a60ce | 2019-04-12 11:43:34 -0700 | [diff] [blame] | 42 | <item name="android:forceDarkAllowed">true</item> |
Andrew Lee | fd053f4 | 2014-11-12 18:09:58 -0800 | [diff] [blame] | 43 | <item name="android:actionBarStyle">@style/TelecomDialerSettingsActionBarStyle</item> |
Shen Lin | e34d713 | 2022-10-12 16:11:24 +0800 | [diff] [blame] | 44 | <item name="android:navigationBarColor">@android:color/transparent</item> |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 45 | <item name="android:windowLightStatusBar">true</item> |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 46 | <item name="android:windowLightNavigationBar">true</item> |
Tiger | 7ba4468 | 2024-04-09 20:26:26 +0800 | [diff] [blame] | 47 | |
| 48 | <!-- |
| 49 | TODO(b/309578419): Make activities handle insets properly and then remove this. |
| 50 | --> |
| 51 | <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item> |
Shen Lin | e34d713 | 2022-10-12 16:11:24 +0800 | [diff] [blame] | 52 | </style> |
| 53 | |
| 54 | <style name="Theme.Telecom.EnableAccount" parent="Theme.Telecom.DialerSettings"> |
| 55 | <item name="android:actionOverflowButtonStyle"> |
| 56 | @style/TelecomDialerSettingsActionOverflowButtonStyle |
| 57 | </item> |
Andrew Lee | fd053f4 | 2014-11-12 18:09:58 -0800 | [diff] [blame] | 58 | <item name="android:windowContentOverlay">@null</item> |
| 59 | </style> |
| 60 | |
Shen Lin | e34d713 | 2022-10-12 16:11:24 +0800 | [diff] [blame] | 61 | <style name="Theme.Telecom.BlockedNumbers" parent="Theme.Telecom.DialerSettings"> |
Ruijie Bai | 20e4995 | 2017-12-25 10:55:48 +0800 | [diff] [blame] | 62 | <item name="android:listDivider">@null</item> |
Shen Lin | e34d713 | 2022-10-12 16:11:24 +0800 | [diff] [blame] | 63 | <item name="android:windowContentOverlay">@null</item> |
Mohamed | c926185 | 2016-02-05 14:10:17 -0800 | [diff] [blame] | 64 | </style> |
| 65 | |
Priyank Singh | e436581 | 2019-05-01 15:13:21 -0700 | [diff] [blame] | 66 | <style name="TelecomDialerSettingsActionBarStyle" parent="android:Widget.DeviceDefault.ActionBar"> |
Chinmay Dhodapkar | b7735b3 | 2022-06-06 14:14:53 -0700 | [diff] [blame] | 67 | <item name="android:forceDarkAllowed">true</item> |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 68 | <item name="android:titleTextStyle">@style/BlockedNumbersTextHead1</item> |
Andrew Lee | fd053f4 | 2014-11-12 18:09:58 -0800 | [diff] [blame] | 69 | <item name="android:elevation">@dimen/dialer_settings_actionbar_elevation</item> |
| 70 | <!-- Empty icon --> |
| 71 | <item name="android:icon">@android:color/transparent</item> |
| 72 | </style> |
| 73 | |
Andrew Lee | fd053f4 | 2014-11-12 18:09:58 -0800 | [diff] [blame] | 74 | <style name="TelecomDialerSettingsActionOverflowButtonStyle" |
Priyank Singh | e436581 | 2019-05-01 15:13:21 -0700 | [diff] [blame] | 75 | parent="@android:style/Widget.DeviceDefault.Light.ActionButton.Overflow"> |
Chinmay Dhodapkar | b7735b3 | 2022-06-06 14:14:53 -0700 | [diff] [blame] | 76 | <item name="android:forceDarkAllowed">true</item> |
Andrew Lee | bbdd44c | 2015-05-27 12:34:14 -0700 | [diff] [blame] | 77 | <item name="android:src">@drawable/ic_more_vert_24dp</item> |
Andrew Lee | fd053f4 | 2014-11-12 18:09:58 -0800 | [diff] [blame] | 78 | </style> |
Mohamed | c926185 | 2016-02-05 14:10:17 -0800 | [diff] [blame] | 79 | |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 80 | <style name="BlockedNumbersButton" parent="BlockedNumbersTextPrimary2"> |
Grace Jia | 90ecf4d | 2023-02-28 03:02:36 +0800 | [diff] [blame] | 81 | <item name="android:textColor">#202124</item> |
Mohamed | c926185 | 2016-02-05 14:10:17 -0800 | [diff] [blame] | 82 | </style> |
| 83 | |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 84 | <style name="BlockedNumbersTextHead1" |
Priyank Singh | e436581 | 2019-05-01 15:13:21 -0700 | [diff] [blame] | 85 | parent="@android:style/TextAppearance.DeviceDefault.Widget.ActionBar.Title"> |
Chinmay Dhodapkar | b7735b3 | 2022-06-06 14:14:53 -0700 | [diff] [blame] | 86 | <item name="android:forceDarkAllowed">true</item> |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 87 | <item name="android:textSize">@dimen/blocked_numbers_head1_font_size</item> |
| 88 | <item name="android:fontFamily">sans-serif-regular</item> |
| 89 | </style> |
| 90 | |
Chinmay Dhodapkar | b7735b3 | 2022-06-06 14:14:53 -0700 | [diff] [blame] | 91 | <style name="BlockedNumbersTextPrimary2" parent="Theme.Telecom.BlockedNumbers"> |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 92 | <item name="android:textSize">@dimen/blocked_numbers_primary2_font_size</item> |
| 93 | <item name="android:fontFamily">sans-serif-regular</item> |
Mohamed | c926185 | 2016-02-05 14:10:17 -0800 | [diff] [blame] | 94 | <item name="android:lineSpacingExtra">@dimen/blocked_numbers_line_spacing</item> |
Grace Jia | f74e320 | 2019-09-30 13:28:15 -0700 | [diff] [blame] | 95 | <item name="android:capitalize">sentences</item> |
Mohamed | c926185 | 2016-02-05 14:10:17 -0800 | [diff] [blame] | 96 | </style> |
Mohamed | 97610cb | 2016-02-24 17:06:20 -0800 | [diff] [blame] | 97 | |
Chinmay Dhodapkar | b7735b3 | 2022-06-06 14:14:53 -0700 | [diff] [blame] | 98 | <style name="BlockedNumbersTextSecondary" parent="Theme.Telecom.BlockedNumbers"> |
Mohamed | 97610cb | 2016-02-24 17:06:20 -0800 | [diff] [blame] | 99 | <item name="android:textSize">@dimen/blocked_numbers_secondary_font_size</item> |
Youming Ye | 0e69270 | 2019-03-04 11:00:40 -0800 | [diff] [blame] | 100 | <item name="android:fontFamily">sans-serif-regular</item> |
Mohamed | 97610cb | 2016-02-24 17:06:20 -0800 | [diff] [blame] | 101 | <item name="android:lineSpacingExtra">@dimen/blocked_numbers_secondary_line_spacing</item> |
Grace Jia | f74e320 | 2019-09-30 13:28:15 -0700 | [diff] [blame] | 102 | <item name="android:capitalize">sentences</item> |
Mohamed | 97610cb | 2016-02-24 17:06:20 -0800 | [diff] [blame] | 103 | </style> |
Thomas Stuart | f84dd7e | 2022-04-04 12:37:46 -0700 | [diff] [blame] | 104 | |
| 105 | <style name="CallSettingsWithoutDividerTheme" parent="Theme.Telecom.DialerSettings"> |
| 106 | <item name="android:listDivider">@null</item> |
| 107 | </style> |
| 108 | |
Yorke Lee | d725587 | 2014-08-25 15:03:51 -0700 | [diff] [blame] | 109 | </resources> |