1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2016 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
18<resources>
19
20  <style name="Dialer.Incall.TextAppearance" parent="android:TextAppearance.Material">
21    <item name="android:textColor">?android:attr/textColorSecondary</item>
22    <item name="android:textSize">18sp</item>
23  </style>
24
25  <style name="Dialer.Incall.TextAppearance.Large">
26    <item name="android:textColor">?android:attr/textColorPrimary</item>
27    <item name="android:textSize">36sp</item>
28    <item name="android:fontFamily">sans-serif-light</item>
29  </style>
30
31  <style name="Dialer.Incall.TextAppearance.Label">
32    <item name="android:textColor">?android:attr/textColorPrimary</item>
33    <item name="android:textSize">12sp</item>
34  </style>
35
36  <style name="BottomRowIcon">
37    <item name="android:layout_height">24dp</item>
38    <item name="android:layout_width">24dp</item>
39    <item name="android:layout_marginEnd">8dp</item>
40    <item name="android:scaleType">fitCenter</item>
41    <item name="colorControlNormal">?android:attr/textColorSecondary</item>
42  </style>
43
44  <style name="Incall.Button.End" parent="android:Widget.Material.Button">
45    <item name="android:background">@drawable/incall_end_call_background</item>
46    <item name="android:elevation">8dp</item>
47    <item name="android:layout_height">@dimen/incall_end_call_button_size</item>
48    <item name="android:layout_width">@dimen/incall_end_call_button_size</item>
49    <item name="android:padding">8dp</item>
50    <item name="android:src">@drawable/incall_end_call_icon</item>
51    <item name="android:stateListAnimator">@animator/disabled_alpha</item>
52  </style>
53
54  <style name="Answer.Button" parent="android:Widget.Material.Button">
55    <item name="android:stateListAnimator">@animator/button_state</item>
56  </style>
57
58  <style name="Answer.Button.Answer">
59    <item name="android:background">@drawable/answer_answer_background</item>
60  </style>
61
62  <style name="Answer.Button.Decline">
63    <item name="android:background">@drawable/answer_decline_background</item>
64  </style>
65
66</resources>
67