blob: a9423bf6f2602f2d1c0549fde462e8b723c55a73 [file] [log] [blame]
Brad Stenning754f8c92018-06-19 15:03:46 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2018 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
17<resources xmlns:android="http://schemas.android.com/apk/res/android">
18
19 <!-- The style for the volume icons in the volume dialog. This style makes the icon scale to
20 fit its container since auto wants the icon to be larger. The padding is added to make it
21 so the icon does not press along the edges of the dialog. -->
22 <style name="VolumeButtons" parent="@android:style/Widget.Material.Button.Borderless">
23 <item name="android:background">@drawable/btn_borderless_rect</item>
24 <item name="android:scaleType">fitCenter</item>
25 <item name="android:padding">22dp</item>
26 </style>
27
28 <style name="TextAppearance.StatusBar.Clock"
29 parent="@*android:style/TextAppearance.StatusBar.Icon">
30 <item name="android:textSize">42sp</item>
31 <item name="android:fontFamily">sans-serif-regular</item>
Heemin Seog50b43b72019-03-17 23:54:23 -070032 <item name="android:textColor">@*android:color/car_grey_50</item>
Brad Stenning754f8c92018-06-19 15:03:46 -070033 </style>
34
Heemin Seog50b43b72019-03-17 23:54:23 -070035 <style name="TextAppearance.CarStatus" parent="@android:style/TextAppearance.DeviceDefault">
36 <item name="android:textSize">@*android:dimen/car_body2_size</item>
37 <item name="android:textColor">@*android:color/car_grey_50</item>
Brad Stenning754f8c92018-06-19 15:03:46 -070038 </style>
39
40 <style name="CarNavigationBarButtonTheme">
41 <item name="android:colorControlHighlight">@color/nav_bar_ripple_background_color</item>
42 </style>
43
Brad Stenning754f8c92018-06-19 15:03:46 -070044 <style name="NavigationBarButton">
45 <item name="android:layout_height">96dp</item>
46 <item name="android:layout_width">96dp</item>
47 <item name="android:background">@drawable/nav_button_background</item>
48 </style>
Erin Yan8182bfd2019-08-14 12:03:12 -070049
50 <style name="UnlockDialogButton">
51 <item name="android:background">?android:attr/selectableItemBackground</item>
52 <item name="android:textAlignment">center</item>
53 <item name="android:textColor">@color/unlock_dialog_enter_pin_text_color</item>
54 <item name="android:paddingHorizontal">16dp</item>
55 <item name="android:textAllCaps">false</item>
56 </style>
Priyanke757aa92018-11-06 14:39:50 -080057</resources>