You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.6 KiB
55 lines
2.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (C) 2018 The Android Open Source Project
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License
|
|
-->
|
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- The style for the volume icons in the volume dialog. This style makes the icon scale to
|
|
fit its container since auto wants the icon to be larger. The padding is added to make it
|
|
so the icon does not press along the edges of the dialog. -->
|
|
<style name="VolumeButtons" parent="@android:style/Widget.Material.Button.Borderless">
|
|
<item name="android:background">@drawable/btn_borderless_rect</item>
|
|
<item name="android:scaleType">fitCenter</item>
|
|
<item name="android:padding">22dp</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.SystemBar.Clock"
|
|
parent="@*android:style/TextAppearance.StatusBar.Icon">
|
|
<item name="android:textSize">@dimen/car_body1_size</item>
|
|
<item name="android:textColor">@*android:color/car_headline3</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.SystemBar.Username"
|
|
parent="@android:style/TextAppearance.DeviceDefault">
|
|
<item name="android:textSize">@dimen/car_body3_size</item>
|
|
<item name="android:textColor">@color/system_bar_text_color</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.CarStatus" parent="@android:style/TextAppearance.DeviceDefault">
|
|
<item name="android:textSize">@*android:dimen/car_body2_size</item>
|
|
<item name="android:textColor">@color/system_bar_text_color</item>
|
|
</style>
|
|
|
|
<style name="SystemBarButton">
|
|
<item name="android:layout_height">@dimen/system_bar_button_size</item>
|
|
<item name="android:layout_width">@dimen/system_bar_button_size</item>
|
|
<item name="android:layout_marginEnd">@dimen/system_bar_button_margin</item>
|
|
<item name="android:padding">@dimen/system_bar_button_padding</item>
|
|
<item name="android:gravity">center</item>
|
|
<item name="android:background">@drawable/system_bar_button_background</item>
|
|
<item name="unselectedAlpha">0.56</item>
|
|
</style>
|
|
</resources>
|