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.
65 lines
3.4 KiB
65 lines
3.4 KiB
4 months ago
|
<?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>
|
||
|
<style name="TextAppearance.TwoPanelPreference.Title" parent="android:TextAppearance">
|
||
|
<item name="android:fontFamily">@string/preference_title_text_font</item>
|
||
|
<item name="android:textSize">@dimen/tp_preference_decor_title_text_size</item>
|
||
|
<item name="android:textColor">@color/tp_preference_decor_title_text_color</item>
|
||
|
</style>
|
||
|
<style name="TextAppearance.TwoPanelPreference.Subtitle" parent="android:TextAppearance">
|
||
|
<item name="android:fontFamily">@string/preference_subtitle_text_font</item>
|
||
|
<item name="android:textSize">@dimen/tp_preference_decor_subtitle_text_size</item>
|
||
|
<item name="android:alpha">0.6</item>
|
||
|
<item name="android:textColor">@color/tp_preference_decor_title_text_color</item>
|
||
|
<item name="android:gravity">top</item>
|
||
|
</style>
|
||
|
<style name="TextAppearance.TwoPanelPreference.Category" parent="android:TextAppearance">
|
||
|
<item name="android:fontFamily">@string/preference_category_text_font</item>
|
||
|
<item name="android:textColor">@color/tp_preference_category_text_color</item>
|
||
|
<item name="android:textSize">@dimen/tp_preference_category_text_size</item>
|
||
|
<item name="android:textAllCaps">true</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="TextAppearance.TwoPanelPreference.ListItem" parent="android:TextAppearance">
|
||
|
<item name="android:fontFamily">@string/preference_list_item_text_font</item>
|
||
|
<item name="android:textColor">@color/tp_preference_item_primary_text_color_selector</item>
|
||
|
<item name="android:textSize">@dimen/tp_preference_item_primary_text_size</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="TextAppearance.TwoPanelPreference.ListItem.Secondary" parent="android:TextAppearance">
|
||
|
<item name="android:fontFamily">@string/preference_list_item_secondary_text_font</item>
|
||
|
<item name="android:textColor">@color/tp_preference_item_secondary_text_color_selector</item>
|
||
|
<item name="android:textSize">@dimen/tp_preference_item_secondary_text_size</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="TwoPanelPreferenceIconStyle" >
|
||
|
<item name="android:duplicateParentState">true</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="TwoPanelInfoTitleTextStyle">
|
||
|
<item name="android:fontFamily">@string/preference_title_text_font</item>
|
||
|
<item name="android:textSize">@dimen/settings_info_fragment_title_text_size</item>
|
||
|
<item name="android:textColor">@color/info_title_text_color</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="TwoPanelInfoSummaryTextStyle">
|
||
|
<item name="android:fontFamily">@string/preference_list_item_secondary_text_font</item>
|
||
|
<item name="android:textSize">@dimen/settings_info_fragment_summary_text_size</item>
|
||
|
<item name="android:textColor">@color/info_title_text_color</item>
|
||
|
</style>
|
||
|
</resources>
|