1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2019 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    <bool name="config_enable_dial_motion">true</bool>
20    <item name="config_dial_motion_scale_start" format="float" type="integer">1.5</item>
21    <integer name="config_dial_motion_duration">200</integer>
22    <!-- 21 stands for Gravity.RIGHT | Gravity.CENTER_VERTICAL-->
23    <integer name="config_dialed_number_gravity">21</integer>
24    <item name="config_background_image_alpha" format="float" type="dimen">1.0</item>
25    <item name="config_background_image_error_alpha" format="float" type="dimen">1.0</item>
26
27    <!-- A config determines whether to show divider and callog_action_button for callog items
28    that are not stored as contacts. "true" will show divider and button as disable state and
29    "false" will make divider and button invisible for non contacts. -->
30    <bool name="config_show_calllog_action_button_for_non_contact">false</bool>
31
32    <!-- A config determines whether to show divider and the button on the right side for contacts
33    without any contact details. "true" will show divider and button as disable state and "false"
34    will make divider and button invisible for empty contacts. -->
35    <bool name="config_show_contact_detail_button_for_empty_contact">false</bool>
36
37    <!-- A config determines whether to show postal address in contact details page. -->
38    <bool name="config_show_postal_address">true</bool>
39    <!-- A config determines whether to show the action bar view in the contact details page.-->
40    <bool name="config_show_contact_details_action_bar_view">false</bool>
41    <!-- A config determines if to show the action bar avatar in the contact details page.-->
42    <bool name="config_show_contact_details_action_bar_avatar">true</bool>
43
44    <!-- Use app name as toolbar title. Supported value see @attr/toolbarTitleMode -->
45    <integer name="config_toolbar_title_mode">0</integer>
46
47    <!-- Config gate the full screen incall ui -->
48    <bool name="config_show_fullscreen_incall_ui">true</bool>
49
50    <!-- Config for enabling incoming call HUN fullscreen intent -->
51    <bool name="config_show_hun_fullscreen_incall_ui">true</bool>
52
53    <!-- A config determines whether to show type down list on Dialpad -->
54    <bool name="config_show_type_down_list_on_dialpad">true</bool>
55    <!-- A config determines whether to show user profile for input number only when type down is
56    not showing. This config works only when config_show_type_down_list_on_dialpad is false. -->
57    <bool name="config_show_detailed_user_profile_on_dialpad">false</bool>
58    <!-- A percent determines the size of the area for type down list on Dialpad in portrait mode. -->
59    <item name="config_type_down_guideline_percent" format="float" type="dimen">0.3</item>
60</resources>
61