1<!--
2  ~ Copyright (C) 2023 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<resources xmlns:android="http://schemas.android.com/apk/res/android">
17
18    <style name="title" parent="@android:style/TextAppearance">
19        <item name="android:textSize">28sp</item>
20        <item name="android:paddingTop">8dp</item>
21        <item name="android:paddingBottom">4dp</item>
22    </style>
23
24    <style name="subtitle" parent="@style/title">
25        <item name="android:textSize">18sp</item>
26    </style>
27
28    <style name="ShareTest" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar">
29        <item name="android:checkboxStyle">@style/CheckBoxStyle</item>
30        <item name="android:radioButtonStyle">@style/RadioButtonStyle</item>
31    </style>
32
33    <style name="ShareTestDialog" parent="@android:style/Theme.DeviceDefault.Light">
34        <item name="android:windowIsTranslucent">true</item>
35        <item name="android:windowBackground">@android:color/transparent</item>
36        <item name="android:windowContentOverlay">@null</item>
37        <item name="android:windowNoTitle">true</item>
38        <item name="android:windowIsFloating">true</item>
39    </style>
40
41    <style name="CheckBoxStyle" parent="android:Widget.CompoundButton.CheckBox">
42        <item name="android:textSize">18sp</item>
43    </style>
44
45    <style name="RadioButtonStyle" parent="android:Widget.CompoundButton.RadioButton">
46        <item name="android:textSize">18sp</item>
47    </style>
48</resources>
49