blob: d9105779ee5097149e2c472e0486a8b36b9e1a55 [file] [log] [blame]
John Spurlock2ebc54e2014-07-20 12:21:34 -04001<?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 xmlns:android="http://schemas.android.com/apk/res/android">
18
Andrew Sapperstein448ea302016-06-23 19:14:21 -070019 <style name="PickerDialogTheme" parent="@*android:style/Theme.DeviceDefault.Settings.Dialog">
Ivan Chiangd6828c12020-06-11 17:37:51 +080020 <item name="android:windowNoTitle">true</item>
John Spurlock2ebc54e2014-07-20 12:21:34 -040021 </style>
22
shafik77ed67b2020-02-06 18:27:35 +000023 <style name="AlertDialogTheme"
shafikf9f900a2020-06-29 14:41:58 +010024 parent="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight" />
shafik77ed67b2020-02-06 18:27:35 +000025
shafikf9f900a2020-06-29 14:41:58 +010026 <style name="CacheClearingAlertDialogTheme"
27 parent="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
shafik77ed67b2020-02-06 18:27:35 +000028 <item name="android:windowIsTranslucent">true</item>
29 <item name="android:windowBackground">@android:color/transparent</item>
30 <item name="android:windowContentOverlay">@null</item>
31 <item name="android:windowNoTitle">true</item>
32 <item name="android:windowIsFloating">true</item>
33 <item name="android:backgroundDimEnabled">true</item>
34 <item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
35 </style>
36
Ivan Chiangf0fd46a2020-06-12 18:37:57 +080037 <style name="CacheClearingAlertDialogTitle"
38 parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle">
39 <item name="android:layout_width">match_parent</item>
40 <item name="android:layout_height">wrap_content</item>
41 <item name="android:gravity">center</item>
42 <item name="android:textSize">16sp</item>
43 </style>
44
John Spurlock2ebc54e2014-07-20 12:21:34 -040045</resources>