dimens.xml revision da10fdd1400ecfd8d7f2e55651dd528d0614dfc5
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 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
17<resources>
18    <dimen name="action_bar_size">48dp</dimen>
19
20    <!-- Maximum height for a stacked tab bar as part of an action bar -->
21    <dimen name="action_bar_stacked_max_height">48dp</dimen>
22
23    <!-- The maximum number of action buttons that should be permitted within
24         an action bar/action mode. This will be used to determine how many
25         showAsAction="ifRoom" items can fit. "always" items can override this. -->
26    <integer name="max_action_buttons">2</integer>
27
28    <!-- Maximum width for a stacked action bar tab. This prevents
29         action bar tabs from becoming too wide on a wide screen when only
30         a few are present. -->
31    <dimen name="action_bar_stacked_tab_max_width">180dp</dimen>
32
33    <!-- Default height of an action bar. -->
34    <dimen name="action_bar_default_height">48dip</dimen>
35    <!-- Vertical padding around action bar icons. -->
36    <dimen name="action_bar_icon_vertical_padding">8dip</dimen>
37    <!-- Text size for action bar titles -->
38    <dimen name="action_bar_title_text_size">18dp</dimen>
39    <!-- Text size for action bar subtitles -->
40    <dimen name="action_bar_subtitle_text_size">14dp</dimen>
41    <!-- Top margin for action bar subtitles -->
42    <dimen name="action_bar_subtitle_top_margin">-3dp</dimen>
43    <!-- Bottom margin for action bar subtitles -->
44    <dimen name="action_bar_subtitle_bottom_margin">5dip</dimen>
45    <!-- Minimum width for an action button in the menu area of an action bar -->
46    <dimen name="action_button_min_width">56dip</dimen>
47
48
49    <dimen name="panel_menu_list_width">296dp</dimen>
50
51</resources>
52