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 <!-- 8388629 stands for Gravity.END | Gravity.CENTER_VERTICAL--> 23 <integer name="config_dialed_number_gravity">8388629</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 <!-- No toolbar title. Supported value see @attr/toolbarTitleMode --> 45 <integer name="config_toolbar_title_mode">1</integer> 46 47 <!-- Config gate the full screen incall ui --> 48 <bool name="config_show_fullscreen_incall_ui">true</bool> 49 50 <!-- A config determines whether to show type down list on Dialpad --> 51 <bool name="config_show_type_down_list_on_dialpad">true</bool> 52 <!-- A config determines whether to show user profile for input number only when type down is 53 not showing. This config works only when config_show_type_down_list_on_dialpad is false. --> 54 <bool name="config_show_detailed_user_profile_on_dialpad">false</bool> 55 <!-- A percent determines the size of the area for type down list on Dialpad in portrait mode. --> 56 <item name="config_type_down_guideline_percent" format="float" type="dimen">0.3</item> 57</resources> 58