1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2023 The Android Open Source Project
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8  http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15-->
16<resources>
17    <!-- Columns -->
18    <integer name="car_app_selector_column_number">5</integer>
19    <integer name="car_app_selector_row_number">3</integer>
20
21    <!-- Number of milliseconds users need to hover the app icon on the side of the app grid during
22    drag and drop before the page is scrolled in the direction it was held.-->
23    <integer name="ms_off_page_hover_before_scroll">500</integer>
24
25    <!-- Duration for animating the resizing of app icon on long press-->
26    <integer name="ms_long_press_animation_duration">150</integer>
27
28    <!-- Duration for animating the resizing after long press is released -->
29    <integer name="ms_release_animation_duration">50</integer>
30
31    <!-- Delay before animating the drop animation when a valid drop event has been received -->
32    <integer name="ms_drop_animation_delay">25</integer>
33
34    <!-- Duration to animate the app item highlight when it is targeted during drag drop  -->
35    <integer name="ms_background_highlight_duration">75</integer>
36
37    <!-- Durations for animating scroll state change in page indicator  -->
38    <integer name="ms_scrollbar_appear_animation_duration">50</integer>
39    <integer name="ms_scrollbar_appear_animation_delay">0</integer>
40    <integer name="ms_scrollbar_fade_animation_duration">50</integer>
41    <integer name="ms_scrollbar_fade_animation_delay">500</integer>
42
43</resources>
44