1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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    <!-- Framework -->
18    <!-- Columns -->
19    <integer name="car_column_number">4</integer>
20
21    <!-- Application Components -->
22    <!-- Cards -->
23    <integer name="column_card_default_column_span">4</integer>
24
25    <!-- Dialogs -->
26    <integer name="car_dialog_column_number">10</integer>
27
28    <!-- Slide Up Menu -->
29    <integer name="car_slide_up_menu_column_number">4</integer>
30
31    <!-- Slide Down Menu -->
32    <integer name="car_slide_down_menu_column_number">4</integer>
33
34    <!-- The length limit of text in a borderless button. String longer than this limit should be
35         truncated. -->
36    <integer name="car_borderless_button_text_length_limit">20</integer>
37
38    <!-- The amount of time that it takes the speed bump lock-out message to translate into
39         position. -->
40    <integer name="speed_bump_translate_y_duration_ms">300</integer>
41
42    <!-- The amount of time that it takes the speed bump lock-out message to fade in and out. -->
43    <integer name="speed_bump_fade_duration_ms">167</integer>
44
45    <!-- The amount of time that the speed bump lock-out message should be displayed. -->
46    <integer name="speed_bump_lock_out_duration_ms">5933</integer>
47
48    <!-- A delay before the color of the speed bump bar changes. This value plus
49         speed_bump_lock_out_color_change_ms should be less than
50         speed_bump_lock_out_duration_ms. -->
51    <integer name="speed_bump_lock_out_color_change_start_delay_ms">5433</integer>
52
53    <!-- The amount of time for the speed bump background color to transition. -->
54    <integer name="speed_bump_lock_out_color_change_ms">500</integer>
55
56    <!-- Action Bar animation durations -->
57    <integer name="car_action_bar_expand_anim_duration">333</integer>
58    <integer name="car_action_bar_collapse_anim_duration">233</integer>
59
60    <!-- The number of columns of buttons to display in the alpha jump overview. -->
61    <!-- TODO(deanh): this could be calculated dynamically, or something else to better support
62        adaptive/responsive. -->
63    <integer name="alpha_jump_button_columns">6</integer>
64</resources>
65