blob: 7f4544a384792eb36ec3c8293872c094dde2b9cd [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>
32 <item name="android:textColor">@color/car_grey_50</item>
33 </style>
34
35 <style name="TextAppearance.Car.Status">
36 <item name="android:textSize">@dimen/car_body2_size</item>
37 <item name="android:textColor">@color/car_grey_50</item>
38 </style>
39
40 <style name="CarNavigationBarButtonTheme">
41 <item name="android:colorControlHighlight">@color/nav_bar_ripple_background_color</item>
42 </style>
43
44 <style name="Theme.Car.DialogListView" parent="@style/Theme.Car.NoActionBar">
Lin Guo4ee01f42018-07-24 12:54:19 -070045 <item name="android:colorControlActivated">@color/car_accent</item>
Brad Stenning754f8c92018-06-19 15:03:46 -070046 <item name="listItemBackgroundColor">@android:color/black</item>
47 </style>
48
49 <style name="NavigationBarButton">
50 <item name="android:layout_height">96dp</item>
51 <item name="android:layout_width">96dp</item>
52 <item name="android:background">@drawable/nav_button_background</item>
53 </style>
54
55</resources>