blob: cd06a65c77a6212c6db27db9cd1780c95498b32f [file] [log] [blame]
Ivan Chiang309f7122021-06-09 11:23:19 +08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2021 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 xmlns:android="http://schemas.android.com/apk/res/android">
18
Ivan Chiang2ee32032021-11-26 17:06:25 +080019 <style name="CacheClearingAlertDialogTitle"
20 parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle">
21 <item name="android:layout_width">match_parent</item>
22 <item name="android:layout_height">wrap_content</item>
23 <item name="android:gravity">center</item>
24 <item name="android:textColor">?android:attr/textColorPrimary</item>
25 <item name="android:textSize">16sp</item>
26 <item name="android:textStyle">bold</item>
27 </style>
28
29 <style name="PermissionAlertDialogTitle"
30 parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle">
31 <item name="android:textColor">?android:attr/textColorPrimary</item>
32 </style>
33
Ivan Chiang591c3d72021-11-18 17:42:53 +080034 <style name="PickerHeaderTextAppearance"
35 parent="@android:style/TextAppearance.DeviceDefault.WindowTitle">
Ivan Chiang2ee32032021-11-26 17:06:25 +080036 <item name="android:textColor">?attr/pickerTextColor</item>
Ivan Chiang309f7122021-06-09 11:23:19 +080037 <item name="android:textSize">16sp</item>
38 </style>
39
Ivan Chiang591c3d72021-11-18 17:42:53 +080040 <style name="PickerChipTextAppearance"
41 parent="@android:style/TextAppearance.DeviceDefault.Widget.Button">
Ivan Chiang010d88a2021-06-25 18:51:04 +080042 <item name="android:textSize">@dimen/picker_chip_text_size</item>
43 </style>
44
Ivan Chiang591c3d72021-11-18 17:42:53 +080045 <style name="PickerButtonTextAppearance"
46 parent="@android:style/TextAppearance.DeviceDefault.Widget.Button"/>
Abhijeet Kaur0b06bce2021-07-11 20:50:31 +010047
Abhijeet Kaur359c1d92021-08-17 19:49:00 +010048 <style name="PickerProfileDialogTitle"
49 parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle">
50 <item name="android:textAllCaps">false</item>
Ivan Chiang2ee32032021-11-26 17:06:25 +080051 <item name="android:textColor">?attr/pickerTextColor</item>
Abhijeet Kaur359c1d92021-08-17 19:49:00 +010052 <item name="android:textSize">@dimen/picker_profile_dialog_title_text_size</item>
53 </style>
54
55 <style name="PickerProfileDialogBody" parent="@android:style/TextAppearance.Material.Body2">
56 <item name="android:textAllCaps">false</item>
Ivan Chiang2ee32032021-11-26 17:06:25 +080057 <item name="android:textColor">?attr/pickerTextColor</item>
Abhijeet Kaur359c1d92021-08-17 19:49:00 +010058 </style>
59
Ivan Chiang309f7122021-06-09 11:23:19 +080060</resources>