1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright 2017, 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    <!-- The maximum number of lines for the title of a currently playing media item. -->
19    <integer name="media_title_max_lines">2</integer>
20
21    <!-- The maximum number of lines for the artist of a currently playing media item. -->
22    <integer name="media_artist_max_lines">1</integer>
23
24    <!-- Number of columns in the browse view -->
25    <integer name="num_browse_columns">3</integer>
26
27    <!-- The amount of time it takes for the fragment playback queue to fade in and out -->
28    <integer name="fragment_playback_queue_fade_duration_ms">500</integer>
29
30    <!-- Time allowed for a process to complete before we show a progress indicator -->
31    <integer name="progress_indicator_delay">1000</integer>
32
33    <!-- Maximum number of tabs to show on the app bar -->
34    <integer name="max_tabs">4</integer>
35
36    <!-- Number of rows in the app bar view -->
37    <integer name="num_app_bar_view_rows">1</integer>
38
39    <!-- Views to hide when opening the custom actions when the queue isn't visible. -->
40    <integer-array name="playback_views_to_hide_when_showing_custom_actions">
41        <item>@id/seek_bar_container</item>
42    </integer-array>
43
44    <!-- Views to hide when the queue is visible (to show when the queue becomes invisible). -->
45    <integer-array name="playback_views_to_hide_when_queue_is_visible">
46        <item>@id/metadata_container</item>
47        <item>@id/seek_bar_container</item>
48    </integer-array>
49
50    <!-- Views to show when the queue is visible (to hide when the queue becomes invisible). -->
51    <integer-array name="playback_views_to_show_when_queue_is_visible">
52        <item>@id/queue_list</item>
53        <item>@id/background_scrim</item>
54    </integer-array>
55
56    <!-- Views to hide "immediately" when the queue is visible (to show "immediately" when the queue
57    becomes invisible). The visibility of these views will be changed without any delay to avoid
58    visual glitch. -->
59    <integer-array name="playback_views_to_hide_immediately_when_queue_is_visible"/>
60
61    <!-- Views to show "immediately" when the queue is visible (to hide "immediately" when the queue
62    becomes invisible). The visibility of these views will be changed without any delay to avoid
63    visual glitch. -->
64    <integer-array name="playback_views_to_show_immediately_when_queue_is_visible"/>
65
66</resources>
67