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<resources>
18    <!-- Maximum number of group children shown after expansion -->
19    <integer name="max_group_children_number">8</integer>
20
21    <!-- Minimum display time for a heads up notification, in milliseconds. -->
22    <integer name="heads_up_notification_minimum_time">2000</integer>
23
24    <!-- Duration of heads-up notifications in milliseconds -->
25    <integer name="headsup_notification_duration_ms">8000</integer>
26
27    <!-- Total duration of fly-in animation for heads-up notifications in milliseconds -->
28    <integer name="headsup_total_enter_duration_ms">233</integer>
29
30    <!-- Duration of fly-in animation for heads-up notifications for alpha in milliseconds -->
31    <integer name="headsup_alpha_enter_duration_ms">83</integer>
32
33    <!-- Duration of fly-out animation for heads-up notifications in milliseconds -->
34    <integer name="headsup_exit_duration_ms">150</integer>
35
36    <!-- The minimum velocity in pixels per second that is used to determine whether a swipe
37    is moving in the same direction. -->
38    <integer name="min_velocity_for_swipe_direction_detection">50</integer>
39
40    <!-- Milliseconds of interval between each notification dismiss animation on clear all notifications event-->
41    <integer name="clear_all_notifications_animation_delay_interval_ms">120</integer>
42
43    <!-- Milliseconds delay between clear all notifications animation end and the collapse shade panel animation -->
44    <integer name="delay_between_clear_all_notifications_end_and_collapse_shade_panel_ms">300</integer>
45
46    <!-- Duration a heads-up notification can stay in the queue
47    before it is sent to the Notification Center directly when driving (Milliseconds) -->
48    <integer name="headsup_queue_expire_driving_duration_ms">24000</integer>
49
50    <!-- Duration a heads-up notification can stay in the queue
51    before it is sent to the Notification Center directly when parked (Milliseconds) -->
52    <integer name="headsup_queue_expire_parked_duration_ms">24000</integer>
53
54    <!-- Duration between consecutive heads-up notification or after throttled package
55     goes out of focus (Milliseconds) -->
56    <integer name="headsup_delay_duration">6000</integer>
57</resources>
58