1<!--
2  ~ Copyright (C) 2012 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License
15  -->
16<resources>
17  <!-- TODO(a bug): properly document this or delete it -->
18  <!-- We don't want to style this, need to discuss with Yen why this was used instead of a default theme -->
19  <style name="Theme.PreCall.DialogHolder" parent="Dialer.ThemeBase.NoActionBar">
20    <item name="android:windowBackground">@android:color/transparent</item>
21    <item name="android:windowActivityTransitions">false</item>
22    <item name="android:windowIsTranslucent">true</item>
23
24    <item name="android:statusBarColor">@android:color/transparent</item>
25    <item name="android:navigationBarColor">@android:color/transparent</item>
26    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
27  </style>
28
29  <!-- Style applied to the "Settings" screen.  Keep in sync with SettingsLight in Telephony. -->
30  <style name="SettingsStyle" parent="Dialer.ThemeBase.ActionBar">
31    <!-- Setting text. -->
32    <item name="android:textColorPrimary">@color/settings_text_color_primary</item>
33    <!-- Setting description. -->
34    <item name="android:textColorSecondary">@color/settings_text_color_secondary</item>
35    <item name="android:windowBackground">?android:attr/colorBackground</item>
36    <item name="android:colorAccent">?android:attr/colorPrimary</item>
37  </style>
38
39  <!-- TODO(a bug): This is only actively used in empty_content_view.xml. Move it there. -->
40  <style name="TextActionStyle">
41    <item name="android:layout_width">wrap_content</item>
42    <item name="android:layout_height">@dimen/call_log_action_height</item>
43    <item name="android:gravity">end|center_vertical</item>
44    <item name="android:paddingStart">@dimen/call_log_action_horizontal_padding</item>
45    <item name="android:paddingEnd">@dimen/call_log_action_horizontal_padding</item>
46    <item name="android:textColor">?android:attr/colorPrimary</item>
47    <item name="android:fontFamily">sans-serif-medium</item>
48    <item name="android:focusable">true</item>
49    <item name="android:singleLine">true</item>
50    <item name="android:textAllCaps">true</item>
51  </style>
52</resources>
53