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.
86 lines
3.7 KiB
86 lines
3.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 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>
|
|
<style name="PreferenceButtonTextAppearance"
|
|
parent="@*android:style/TextAppearance.DeviceDefault.Widget.Button.Borderless.Colored">
|
|
<item name="android:fadingEdgeLength">@dimen/button_fading_edge_length</item>
|
|
<item name="android:ellipsize">none</item>
|
|
<item name="android:requiresFadingEdge">horizontal</item>
|
|
<item name="android:singleLine">true</item>
|
|
<item name="android:textAllCaps">false</item>
|
|
</style>
|
|
|
|
<style name="PreferenceButtonIconAppearance">
|
|
<item name="android:tint">@*android:color/btn_colored_borderless_text_material</item>
|
|
</style>
|
|
|
|
<style name="CarSettingsPreferenceFragment" parent="@style/PreferenceFragment.CarUi">
|
|
<item name="android:layout">@layout/settings_preference_fragment</item>
|
|
</style>
|
|
|
|
<style name="LockPattern">
|
|
<item name="*android:regularColor">@*android:color/car_body1</item>
|
|
<item name="*android:successColor">@*android:color/car_blue_500</item>
|
|
<item name="*android:errorColor">?android:attr/colorError</item>
|
|
</style>
|
|
|
|
<style name="PinPadKey">
|
|
<item name="android:gravity">center</item>
|
|
<item name="android:textStyle">normal</item>
|
|
<item name="android:textSize">@*android:dimen/car_body1_size</item>
|
|
<item name="android:textColor">@*android:color/car_body3</item>
|
|
<item name="android:tint">@*android:color/car_body3</item>
|
|
<item name="android:clickable">true</item>
|
|
<item name="android:background">?android:attr/selectableItemBackground</item>
|
|
</style>
|
|
|
|
<style name="DataUsageSummaryCarrierInfoTextAppearance"
|
|
parent="@android:style/TextAppearance.DeviceDefault.Small">
|
|
<item name="android:textColor">?android:attr/textColorSecondary</item>
|
|
<item name="android:fontFamily">sans-serif</item>
|
|
<item name="android:textStyle">normal</item>
|
|
</style>
|
|
|
|
<style name="DataUsageSummaryCarrierInfoWarningTextAppearance"
|
|
parent="@android:style/TextAppearance.DeviceDefault.Small">
|
|
<item name="android:textColor">?android:attr/colorError</item>
|
|
<item name="android:fontFamily">sans-serif-medium</item>
|
|
<item name="android:textStyle">normal</item>
|
|
</style>
|
|
|
|
<style name="NumberPickerStyle">
|
|
<item name="android:textSize">
|
|
@dimen/number_picker_text_size
|
|
</item>
|
|
<!-- The color of the number picker dividers -->
|
|
<!-- By default, the dividers are hidden -->
|
|
<!-- Use '?android:attr/textColorPrimary' (or another chosen color) to show the dividers -->
|
|
<item name="android:colorControlNormal">@android:color/transparent</item>
|
|
</style>
|
|
|
|
<style name="ColoredAccentPreferenceStyle">
|
|
<item name="titleColor">@color/text_color_accent_with_disable</item>
|
|
<item name="iconColor">?android:attr/colorAccent</item>
|
|
</style>
|
|
|
|
<style name="ColoredSwitchPreferenceStyle">
|
|
<item name="disabledTitleColor">@color/car_grey_400_with_disable</item>
|
|
<item name="enabledTitleColor">@color/text_color_accent_with_disable</item>
|
|
</style>
|
|
</resources>
|