1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (c) 2018, 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    <!-- Full screen user switcher column number -->
20    <integer name="user_fullscreen_switcher_num_col">3</integer>
21
22    <!--Percentage of the screen height, from the top, that a notification panel being
23    partially closed at will result in it remaining open if released-->
24    <integer name="notification_settle_open_percentage">20</integer>
25    <!--Percentage of the screen height, from the top, that a notification panel being peeked
26    at will result in remaining closed the panel if released-->
27    <integer name="notification_settle_close_percentage">80</integer>
28
29    <!-- Timeout values in milliseconds for displaying volume dialog-->
30    <integer name="car_volume_dialog_display_normal_timeout">3000</integer>
31    <integer name="car_volume_dialog_display_hovering_timeout">16000</integer>
32    <integer name="car_volume_dialog_display_expanded_normal_timeout">6000</integer>
33    <integer name="car_volume_dialog_display_expanded_hovering_timeout">32000</integer>
34
35    <!-- Toast on Keyguard show duration -->
36    <integer name="car_keyguard_toast_show_duration_millisecond">2000</integer>
37
38    <!-- Privacy chip animation transition duration -->
39    <integer name="privacy_chip_animation_transition_duration">500</integer>
40    <!-- Privacy chip pill to circle animation delay -->
41    <integer name="privacy_chip_pill_to_circle_delay">2000</integer>
42    <!-- Privacy chip no sensor usage animation delay -->
43    <integer name="privacy_chip_no_sensor_usage_delay">15000</integer>
44    <!-- HVAC area ID that represents the associated property affecting the entire vehicle
45      (e.g. HVAC Power On/Off affects the entire vehicle.) -->
46    <integer name="hvac_global_area_id">117</integer>
47    <!-- The total number of seat heat levels supported by VHAL. -->
48    <integer name="hvac_seat_heat_level_count">4</integer>
49    <!-- Immersive privacy indicator animation duration. -->
50    <integer name="privacy_indicator_animation_duration">500</integer>
51    <!-- The minimum fan speed value.-->
52    <integer name="hvac_min_fan_speed">1</integer>
53    <!-- The maximum fan speed value. -->
54    <integer name="hvac_max_fan_speed">6</integer>
55
56    <!-- The upper bounds for background colors used in Adjustable Background Temperature Control
57    View. Note that these integers should be in Celsius and will be divided by 10 so that the first
58    decimal can be expressed. The corresponding background color for each level is defined in
59    arrays.xml (see hvac_temperature_level_backgrounds). -->
60    <integer-array name="hvac_temperature_control_levels">
61        <item>9999</item>
62    </integer-array>
63
64    <!-- Timeout value for data subscription pop up in ms -->
65    <integer name="data_subscription_pop_up_timeout">30000</integer>
66</resources>
67