1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2020 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8      http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16<resources>
17    <dimen name="car_ui_toolbar_margin">76dp</dimen>
18    <!-- Paddings -->
19    <dimen name="car_ui_padding_0">4dp</dimen>
20    <dimen name="car_ui_padding_1">8dp</dimen>
21    <dimen name="car_ui_padding_2">12dp</dimen>
22    <dimen name="car_ui_padding_3">16dp</dimen>
23    <dimen name="car_ui_padding_4">24dp</dimen>
24    <dimen name="car_ui_padding_5">32dp</dimen>
25    <dimen name="car_ui_padding_6">48dp</dimen>
26    <dimen name="car_ui_padding_7">64dp</dimen>
27    <dimen name="car_ui_padding_8">96dp</dimen>
28
29    <!-- SeekBar dimensions. -->
30    <!-- Allows thumb to extend out of the range of the track. -->
31    <!-- For more information see android.widget.SeekBar#attr_android:thumbOffset. -->
32    <dimen name="car_ui_seekbar_thumb_offset">24dp</dimen>
33    <!-- Horizontal padding for the SeekBar.-->
34    <dimen name="car_ui_seekbar_horizontal_padding">24dp</dimen>
35    <!-- The SeekBar track height.-->
36    <dimen name="car_ui_seekbar_track_height">24dp</dimen>
37    <!-- Vertical padding that extends the touch area for the SeekBar. -->
38    <dimen name="car_ui_seekbar_track_vertical_padding">26dp</dimen>
39    <!-- The stroke with of the ring around the SeekBar thumb when selected. -->
40    <dimen name="car_ui_seekbar_thumb_selected_stroke_width">8dp</dimen>
41    <!-- The size of the SeekBar thumb. -->
42    <dimen name="car_ui_seekbar_thumb_size">68dp</dimen>
43    <!-- Should be the half of car_switch_track_height. -->
44    <dimen name="car_ui_seekbar_thumb_outer_radius">24dp</dimen>
45
46    <!-- Height of the top toolbar row. This can be customized independently. -->
47    <dimen name="car_ui_toolbar_first_row_height">@dimen/car_ui_toolbar_row_height</dimen>
48    <!-- Margin at the start of the title when there is no logo present -->
49    <dimen name="car_ui_toolbar_title_no_logo_margin_start">17dp</dimen>
50    <!-- Margin at the start of the title -->
51    <dimen name="car_ui_toolbar_title_margin_start">17dp</dimen>
52    <!-- Height of the search box -->
53    <dimen name="car_ui_toolbar_search_height">0dp</dimen>
54    <!-- Padding on the toolbar start (e.g.: distance between the container start and the start of
55    nav icon or logo) -->
56    <dimen name="car_ui_toolbar_start_inset">0dp</dimen>
57    <!-- Top padding -->
58    <dimen name="car_ui_toolbar_top_inset">0dp</dimen>
59    <!-- End padding (e.g.: distance between the container end and the end of the menu items) -->
60    <dimen name="car_ui_toolbar_end_inset">0dp</dimen>
61    <!-- Bottom padding -->
62    <dimen name="car_ui_toolbar_bottom_inset">0dp</dimen>
63
64    <!-- can't use 0dp for layout_height or the constraintlayout effect kicks in -->
65    <dimen name="car_ui_toolbar_separator_height">0.1dp</dimen>
66    <!-- can't use 0dp for layout_height or the constraintlayout effect kicks in -->
67    <dimen name="car_ui_toolbar_bottom_view_height">0.1dp</dimen>
68    <!-- Height of the bottom toolbar row (if the toolbar is used in two-rows mode. -->
69    <dimen name="car_ui_toolbar_second_row_height">@dimen/car_ui_toolbar_row_height</dimen>
70
71    <!-- Default height for both toolbar rows. See car_ui_toolbar_first_row_height and
72     car_ui_toolbar_second_row_height -->
73    <dimen name="car_ui_toolbar_row_height">96dp</dimen>
74    <!-- Margin between the logo and the title, when both logo and navigation icons are used -->
75    <dimen name="car_ui_toolbar_title_logo_padding">0dp</dimen>
76    <!-- Margin on the outside the toolbar logo -->
77    <dimen name="car_ui_toolbar_logo_margin">17dp</dimen>
78    <!-- Icon size for icon menu items -->
79    <dimen name="car_ui_toolbar_menu_item_icon_size">36dp</dimen>
80
81</resources>
82