attrs.xml revision 89208232f3b5d1451408d787872504a190bc7ee0
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    <!-- Many app-specific attributes are declared in this file.
19         Unless otherwise specified, they are intended to be set within
20         the context of a theme declaration.
21
22         Each cluster of attributes below states whether it is meant to
23         be set by the app and read by the system, or set by the system and
24         read by the app. -->
25    <eat-comment/>
26
27    <!-- These attributes are meant to be specified and customized by the app.
28         The system will read and apply them as needed. These attributes control
29         properties of the activity window, such as whether an action bar should
30         be present and whether it should overlay content. -->
31    <declare-styleable name="ActionBarWindow">
32        <attr name="windowActionBar" format="boolean"/>
33        <attr name="windowActionBarOverlay" format="boolean"/>
34        <attr name="windowSplitActionBar" format="boolean" />
35    </declare-styleable>
36
37    <!-- ============================================ -->
38
39    <!-- Action bar appearance and styling attributes.
40         These attributes are meant to be specified and customized by the
41         app. The system will read and apply them as needed. -->
42    <eat-comment/>
43
44    <!-- Default style for tabs within an action bar -->
45    <attr name="actionBarTabStyle" format="reference"/>
46    <attr name="actionBarTabBarStyle" format="reference"/>
47    <attr name="actionBarTabTextStyle" format="reference"/>
48    <attr name="actionOverflowButtonStyle" format="reference"/>
49    <!-- Reference to a style for the Action Bar -->
50    <attr name="actionBarStyle" format="reference"/>
51    <!-- Reference to a theme that should be used to inflate widgets
52         and layouts destined for the action bar. Most of the time
53         this will be a reference to the current theme, but when
54         the action bar has a significantly different contrast
55         profile than the rest of the activity the difference
56         can become important. If this is set to @null the current
57         theme will be used.-->
58    <attr name="actionBarSplitStyle" format="reference"/>
59    <!-- Reference to a theme that should be used to inflate widgets
60         and layouts destined for the action bar. Most of the time
61         this will be a reference to the current theme, but when
62         the action bar has a significantly different contrast
63         profile than the rest of the activity the difference
64         can become important. If this is set to @null the current
65         theme will be used.-->
66    <attr name="actionBarWidgetTheme" format="reference"/>
67    <!-- Size of the Action Bar, including the contextual
68         bar used to present Action Modes. -->
69    <attr name="actionBarSize" format="dimension"/>
70    <!-- Custom divider drawable to use for elements in the action bar. -->
71    <attr name="actionBarDivider" format="reference"/>
72    <!-- Custom item state list drawable background for action bar items. -->
73    <attr name="actionBarItemBackground" format="reference"/>
74    <!-- TextAppearance style that will be applied to text that
75         appears within action menu items. -->
76    <attr name="actionMenuTextAppearance" format="reference"/>
77    <!-- Color for text that appears within action menu items. -->
78    <attr name="actionMenuTextColor" format="color|reference"/>
79    <!-- Specifies a drawable to use for the 'home as up' indicator. -->
80    <attr name="homeAsUpIndicator" format="reference"/>
81    <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
82    <attr name="textAppearanceLargePopupMenu" format="reference"/>
83    <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
84    <attr name="textAppearanceSmallPopupMenu" format="reference"/>
85    <!-- Default action button style. -->
86    <attr name="actionButtonStyle" format="reference"/>
87
88    <!-- ============================================ -->
89
90    <!-- Assorted theme compatibility attributes.
91         These attributes are meant to be set by the system and read by apps
92         for use in layouts or other style declarations. -->
93    <eat-comment/>
94    <!-- A style that may be applied to horizontal LinearLayouts
95         to form a button bar. -->
96    <attr name="buttonBarStyle" format="reference"/>
97    <!-- A style that may be applied to Buttons placed within a
98         LinearLayout with the style buttonBarStyle to form a button bar. -->
99    <attr name="buttonBarButtonStyle" format="reference"/>
100    <!-- A style that may be applied to buttons or other selectable items
101         that should react to pressed and focus states, but that do not
102         have a clear visual border along the edges. -->
103    <attr name="selectableItemBackground" format="reference"/>
104    <!-- A drawable that may be used as a vertical divider between visual elements. -->
105    <attr name="dividerVertical" format="reference"/>
106    <!-- A drawable that may be used as a horizontal divider between visual elements. -->
107    <attr name="dividerHorizontal" format="reference"/>
108
109    <!-- The preferred list item height. -->
110    <attr name="listPreferredItemHeight" format="dimension"/>
111    <!-- A smaller, sleeker list item height. -->
112    <attr name="listPreferredItemHeightSmall" format="dimension"/>
113    <!-- A larger, more robust list item height. -->
114    <attr name="listPreferredItemHeightLarge" format="dimension"/>
115
116    <!-- The preferred padding along the left edge of list items. -->
117    <attr name="listPreferredItemPaddingLeft" format="dimension"/>
118    <!-- The preferred padding along the right edge of list items. -->
119    <attr name="listPreferredItemPaddingRight" format="dimension"/>
120
121    <!-- ListPopupWindow comaptibility -->
122    <attr name="dropDownListViewStyle" format="reference"/>
123    <attr name="listPopupWindowStyle" format="reference"/>
124
125
126    <!-- The preferred TextAppearance for the primary text of list items. -->
127    <attr name="textAppearanceListItem" format="reference"/>
128    <!-- The preferred TextAppearance for the primary text of small list items. -->
129    <attr name="textAppearanceListItemSmall" format="reference"/>
130
131    <attr name="title" format="string"/>
132    <attr name="height" format="dimension"/>
133
134
135    <!-- ============================================ -->
136
137    <!-- Attributes used to style the Action Bar.
138         These should be set on your theme; the default actionBarStyle will
139         propagate them to the correct elements as needed.
140
141         Please Note: when overriding attributes for an ActionBar style
142         you must specify each attribute twice: once with the "android:"
143         namespace prefix and once without. -->
144    <declare-styleable name="ActionBar">
145        <!-- The type of navigation to use. -->
146        <attr name="navigationMode">
147            <!-- Normal static title text -->
148            <enum name="normal" value="0"/>
149            <!-- The action bar will use a selection list for navigation. -->
150            <enum name="listMode" value="1"/>
151            <!-- The action bar will use a series of horizontal tabs for navigation. -->
152            <enum name="tabMode" value="2"/>
153        </attr>
154        <!-- Options affecting how the action bar is displayed. -->
155        <attr name="displayOptions">
156            <flag name="useLogo" value="0x1"/>
157            <flag name="showHome" value="0x2"/>
158            <flag name="homeAsUp" value="0x4"/>
159            <flag name="showTitle" value="0x8"/>
160            <flag name="showCustom" value="0x10"/>
161            <flag name="disableHome" value="0x20"/>
162        </attr>
163        <!-- Specifies title text used for navigationMode="normal" -->
164        <attr name="title"/>
165        <!-- Specifies subtitle text used for navigationMode="normal" -->
166        <attr name="subtitle" format="string"/>
167        <!-- Specifies a style to use for title text. -->
168        <attr name="titleTextStyle" format="reference"/>
169        <!-- Specifies a style to use for subtitle text. -->
170        <attr name="subtitleTextStyle" format="reference"/>
171        <!-- Specifies the drawable used for the application icon. -->
172        <attr name="icon" format="reference"/>
173        <!-- Specifies the drawable used for the application logo. -->
174        <attr name="logo" format="reference"/>
175        <!-- Specifies the drawable used for item dividers. -->
176        <attr name="divider" format="reference"/>
177        <!-- Specifies a background drawable for the action bar. -->
178        <attr name="background" format="reference"/>
179        <!-- Specifies a background drawable for a second stacked row of the action bar. -->
180        <attr name="backgroundStacked" format="reference|color"/>
181        <!-- Specifies a background drawable for the bottom component of a split action bar. -->
182        <attr name="backgroundSplit" format="reference|color"/>
183        <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
184        <attr name="customNavigationLayout" format="reference"/>
185        <!-- Specifies a fixed height. -->
186        <attr name="height"/>
187        <!-- Specifies a layout to use for the "home" section of the action bar. -->
188        <attr name="homeLayout" format="reference"/>
189        <!-- Specifies a style resource to use for an embedded progress bar. -->
190        <attr name="progressBarStyle" format="reference"/>
191        <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
192        <attr name="indeterminateProgressStyle" format="reference"/>
193        <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
194        <attr name="progressBarPadding" format="dimension"/>
195        <!-- Specifies padding that should be applied to the left and right sides of
196             system-provided items in the bar. -->
197        <attr name="itemPadding" format="dimension"/>
198    </declare-styleable>
199
200    <!-- Valid LayoutParams for views placed in the action bar as custom views. -->
201    <declare-styleable name="ActionBarLayout">
202        <attr name="android:layout_gravity"/>
203    </declare-styleable>
204
205    <declare-styleable name="ActionMenuItemView">
206        <attr name="android:minWidth"/>
207    </declare-styleable>
208
209    <declare-styleable name="ActionMode">
210        <!-- Specifies a style to use for title text. -->
211        <attr name="titleTextStyle"/>
212        <!-- Specifies a style to use for subtitle text. -->
213        <attr name="subtitleTextStyle"/>
214        <!-- Specifies a background for the action mode bar. -->
215        <attr name="background"/>
216        <!-- Specifies a background for the split action mode bar. -->
217        <attr name="backgroundSplit"/>
218        <!-- Specifies a fixed height for the action mode bar. -->
219        <attr name="height"/>
220    </declare-styleable>
221
222    <declare-styleable name="View">
223        <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
224        <attr name="paddingStart" format="dimension"/>
225        <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
226        <attr name="paddingEnd" format="dimension"/>
227
228        <!-- Boolean that controls whether a view can take focus.  By default the user can not
229             move focus to a view; by setting this attribute to true the view is
230             allowed to take focus.  This value does not impact the behavior of
231             directly calling {@link android.view.View#requestFocus}, which will
232             always request focus regardless of this view.  It only impacts where
233             focus navigation will try to move focus. -->
234        <attr name="android:focusable" />
235    </declare-styleable>
236
237    <!-- =================== -->
238    <!-- Action mode styles  -->
239    <!-- =================== -->
240    <eat-comment/>
241    <attr name="actionModeStyle" format="reference"/>
242    <attr name="actionModeCloseButtonStyle" format="reference"/>
243    <!-- Background drawable to use for action mode UI -->
244    <attr name="actionModeBackground" format="reference"/>
245    <!-- Background drawable to use for action mode UI in the lower split bar -->
246    <attr name="actionModeSplitBackground" format="reference"/>
247    <!-- Drawable to use for the close action mode button -->
248    <attr name="actionModeCloseDrawable" format="reference"/>
249
250    <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
251    <attr name="actionModeCutDrawable" format="reference"/>
252    <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
253    <attr name="actionModeCopyDrawable" format="reference"/>
254    <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
255    <attr name="actionModePasteDrawable" format="reference"/>
256    <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
257    <attr name="actionModeSelectAllDrawable" format="reference"/>
258    <!-- Drawable to use for the Share action button in WebView selection action modes -->
259    <attr name="actionModeShareDrawable" format="reference"/>
260    <!-- Drawable to use for the Find action button in WebView selection action modes -->
261    <attr name="actionModeFindDrawable" format="reference"/>
262    <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
263    <attr name="actionModeWebSearchDrawable" format="reference"/>
264
265    <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
266    <attr name="actionModePopupWindowStyle" format="reference"/>
267
268    <!-- These are the standard attributes that make up a complete theme. -->
269    <declare-styleable name="Theme">
270        <!-- Default ActionBar dropdown style. -->
271        <attr name="actionDropDownStyle" format="reference"/>
272        <!-- The preferred item height for dropdown lists. -->
273        <attr name="dropdownListPreferredItemHeight" format="dimension"/>
274        <!-- Default PopupMenu style. -->
275        <attr name="popupMenuStyle" format="reference"/>
276
277        <!-- ============ -->
278        <!-- Panel styles -->
279        <!-- ============ -->
280        <eat-comment />
281
282        <!-- Default Panel Menu width. -->
283        <attr name="panelMenuListWidth" format="dimension" />
284
285        <!-- Default Panel Menu style. -->
286        <attr name="panelMenuListTheme" format="reference" />
287
288        <!-- Drawable used as a background for selected list items. -->
289        <attr name="listChoiceBackgroundIndicator" format="reference" />
290
291    </declare-styleable>
292
293    <declare-styleable name="MenuView">
294        <!-- Default appearance of menu item text. -->
295        <attr name="android:itemTextAppearance"/>
296        <!-- Default horizontal divider between rows of menu items. -->
297        <attr name="android:horizontalDivider"/>
298        <!-- Default vertical divider between menu items. -->
299        <attr name="android:verticalDivider"/>
300        <!-- Default background for the menu header. -->
301        <attr name="android:headerBackground"/>
302        <!-- Default background for each menu item. -->
303        <attr name="android:itemBackground"/>
304        <!-- Default animations for the menu. -->
305        <attr name="android:windowAnimationStyle"/>
306        <!-- Default disabled icon alpha for each menu item that shows an icon. -->
307        <attr name="android:itemIconDisabledAlpha"/>
308        <!-- Whether space should be reserved in layout when an icon is missing. -->
309        <attr name="android:preserveIconSpacing"/>
310    </declare-styleable>
311    <declare-styleable name="ActionMenuView">
312        <!-- Size of padding on either end of a divider. -->
313    </declare-styleable>
314
315    <!-- Base attributes that are available to all groups. -->
316    <declare-styleable name="MenuGroup">
317
318        <!-- The ID of the group. -->
319        <attr name="android:id" />
320
321        <!-- The category applied to all items within this group.
322             (This will be or'ed with the orderInCategory attribute.) -->
323        <attr name="android:menuCategory" />
324
325        <!-- The order within the category applied to all items within this group.
326             (This will be or'ed with the category attribute.) -->
327        <attr name="android:orderInCategory" />
328
329        <!-- Whether the items are capable of displaying a check mark. -->
330        <attr name="android:checkableBehavior" />
331
332        <!-- Whether the items are shown/visible. -->
333        <attr name="android:visible" />
334
335        <!-- Whether the items are enabled. -->
336        <attr name="android:enabled" />
337
338    </declare-styleable>
339
340    <!-- Base attributes that are available to all Item objects. -->
341    <declare-styleable name="MenuItem">
342
343        <!-- The ID of the item. -->
344        <attr name="android:id" />
345
346        <!-- The category applied to the item.
347             (This will be or'ed with the orderInCategory attribute.) -->
348        <attr name="android:menuCategory" />
349
350        <!-- The order within the category applied to the item.
351             (This will be or'ed with the category attribute.) -->
352        <attr name="android:orderInCategory" />
353
354        <!-- The title associated with the item. -->
355        <attr name="android:title" />
356
357        <!-- The condensed title associated with the item.  This is used in situations where the
358             normal title may be too long to be displayed. -->
359        <attr name="android:titleCondensed" />
360
361        <!-- The icon associated with this item.  This icon will not always be shown, so
362             the title should be sufficient in describing this item. -->
363        <attr name="android:icon" />
364
365        <!-- The alphabetic shortcut key.  This is the shortcut when using a keyboard
366             with alphabetic keys. -->
367        <attr name="android:alphabeticShortcut" />
368
369        <!-- The numeric shortcut key.  This is the shortcut when using a numeric (e.g., 12-key)
370             keyboard. -->
371        <attr name="android:numericShortcut" />
372
373        <!-- Whether the item is capable of displaying a check mark. -->
374        <attr name="android:checkable" />
375
376        <!-- Whether the item is checked.  Note that you must first have enabled checking with
377             the checkable attribute or else the check mark will not appear. -->
378        <attr name="android:checked"  />
379
380        <!-- Whether the item is shown/visible. -->
381        <attr name="android:visible" />
382
383        <!-- Whether the item is enabled. -->
384        <attr name="android:enabled" />
385
386        <!-- Name of a method on the Context used to inflate the menu that will be
387             called when the item is clicked. -->
388        <attr name="android:onClick" />
389
390        <!-- How this item should display in the Action Bar, if present. -->
391        <attr name="showAsAction">
392            <!-- Never show this item in an action bar, show it in the overflow menu instead.
393                 Mutually exclusive with "ifRoom" and "always". -->
394            <flag name="never" value="0" />
395            <!-- Show this item in an action bar if there is room for it as determined
396                 by the system. Favor this option over "always" where possible.
397                 Mutually exclusive with "never" and "always". -->
398            <flag name="ifRoom" value="1" />
399            <!-- Always show this item in an actionbar, even if it would override
400                 the system's limits of how much stuff to put there. This may make
401                 your action bar look bad on some screens. In most cases you should
402                 use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
403            <flag name="always" value="2" />
404            <!-- When this item is shown as an action in the action bar, show a text
405                 label with it even if it has an icon representation. -->
406            <flag name="withText" value="4" />
407            <!-- This item's action view collapses to a normal menu
408                 item. When expanded, the action view takes over a
409                 larger segment of its container. -->
410            <flag name="collapseActionView" value="8" />
411        </attr>
412
413        <!-- An optional layout to be used as an action view.
414             See {@link android.view.MenuItem#setActionView(android.view.View)}
415             for more info. -->
416        <attr name="actionLayout" format="reference" />
417
418        <!-- The name of an optional View class to instantiate and use as an
419             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
420             for more info. -->
421        <attr name="actionViewClass" format="string" />
422
423        <!-- The name of an optional ActionProvider class to instantiate an action view
424             and perform operations such as default action for that menu item.
425             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
426             for more info. -->
427        <attr name="actionProviderClass" format="string" />
428
429    </declare-styleable>
430
431    <declare-styleable name="Spinner">
432        <!-- The prompt to display when the spinner's dialog is shown. -->
433        <attr name="prompt" format="reference" />
434        <!-- Display mode for spinner options. -->
435        <attr name="spinnerMode" format="enum">
436            <!-- Spinner options will be presented to the user as a dialog window. -->
437            <enum name="dialog" value="0" />
438            <!-- Spinner options will be presented to the user as an inline dropdown
439                 anchored to the spinner widget itself. -->
440            <enum name="dropdown" value="1" />
441        </attr>
442        <!-- List selector to use for spinnerMode="dropdown" display. -->
443        <attr name="android:dropDownSelector" />
444        <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
445        <attr name="android:popupBackground" />
446        <!-- Vertical offset from the spinner widget for positioning the dropdown in
447             spinnerMode="dropdown". -->
448        <attr name="android:dropDownVerticalOffset" />
449        <!-- Horizontal offset from the spinner widget for positioning the dropdown
450             in spinnerMode="dropdown". -->
451        <attr name="android:dropDownHorizontalOffset" />
452        <!-- Width of the dropdown in spinnerMode="dropdown". -->
453        <attr name="android:dropDownWidth" />
454        <!-- Reference to a layout to use for displaying a prompt in the dropdown for
455             spinnerMode="dropdown". This layout must contain a TextView with the id
456             {@code @android:id/text1} to be populated with the prompt text. -->
457        <attr name="popupPromptView" format="reference" />
458        <!-- Gravity setting for positioning the currently selected item. -->
459        <attr name="android:gravity" />
460        <!-- Whether this spinner should mark child views as enabled/disabled when
461             the spinner itself is enabled/disabled. -->
462        <attr name="disableChildrenWhenDisabled" format="boolean" />
463    </declare-styleable>
464
465    <declare-styleable name="LinearLayoutICS">
466        <!-- Drawable to use as a vertical divider between buttons. -->
467        <attr name="divider" />
468        <!-- Setting for which dividers to show. -->
469        <attr name="showDividers">
470            <flag name="none" value="0" />
471            <flag name="beginning" value="1" />
472            <flag name="middle" value="2" />
473            <flag name="end" value="4" />
474        </attr>
475        <!-- Size of padding on either end of a divider. -->
476        <attr name="dividerPadding" format="dimension" />
477    </declare-styleable>
478
479    <!-- Default Spinner style. -->
480    <attr name="spinnerStyle" format="reference" />
481
482    <!-- Default Spinner style. -->
483    <attr name="spinnerDropDownItemStyle" format="reference" />
484
485    <!-- Specifies whether the theme is light, otherwise it is dark. -->
486    <attr name="isLightTheme" format="boolean" />
487
488    <declare-styleable name="SearchView">
489        <!-- The default state of the SearchView. If true, it will be iconified when not in
490             use and expanded when clicked. -->
491        <attr name="iconifiedByDefault" format="boolean"/>
492        <!-- An optional maximum width of the SearchView. -->
493        <attr name="android:maxWidth" />
494        <!-- An optional query hint string to be displayed in the empty query field. -->
495        <attr name="queryHint" format="string" />
496        <!-- The IME options to set on the query text field. -->
497        <attr name="android:imeOptions" />
498        <!-- The input type to set on the query text field. -->
499        <attr name="android:inputType" />
500    </declare-styleable>
501
502    <!-- ============================ -->
503    <!-- SearchView styles and assets -->
504    <!-- ============================ -->
505    <eat-comment />
506    <!-- SearchView dropdown background -->
507    <attr name="searchDropdownBackground" format="reference" />
508    <!-- SearchView close button icon -->
509    <attr name="searchViewCloseIcon" format="reference" />
510    <!-- SearchView Go button icon -->
511    <attr name="searchViewGoIcon" format="reference" />
512    <!-- SearchView Search icon -->
513    <attr name="searchViewSearchIcon" format="reference" />
514    <!-- SearchView Voice button icon -->
515    <attr name="searchViewVoiceIcon" format="reference" />
516    <!-- SearchView query refinement icon -->
517    <attr name="searchViewEditQuery" format="reference" />
518    <!-- SearchView query refinement icon background -->
519    <attr name="searchViewEditQueryBackground" format="reference" />
520    <!-- SearchView text field background for the left section -->
521    <attr name="searchViewTextField" format="reference" />
522    <!-- SearchView text field background for the right section -->
523    <attr name="searchViewTextFieldRight" format="reference" />
524    <!-- The list item height for search results. @hide -->
525    <attr name="searchResultListItemHeight" format="dimension" />
526    <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
527    <attr name="textAppearanceSearchResultTitle" format="reference" />
528    <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
529    <attr name="textAppearanceSearchResultSubtitle" format="reference" />
530    <!-- Text color for urls in search suggestions, used by things like global search -->
531    <attr name="textColorSearchUrl" format="reference|color" />
532    <!-- SearchView AutoCompleteTextView style -->
533    <attr name="searchViewAutoCompleteTextView" format="reference" />
534
535    <!-- Attrbitutes for a ActivityChooserView. -->
536    <declare-styleable name="ActivityChooserView">
537        <!-- The maximal number of items initially shown in the activity list. -->
538        <attr name="initialActivityCount" format="string" />
539        <!-- The drawable to show in the button for expanding the activities overflow popup.
540             <strong>Note:</strong> Clients would like to set this drawable
541             as a clue about the action the chosen activity will perform. For
542             example, if share activity is to be chosen the drawable should
543             give a clue that sharing is to be performed.
544         -->
545        <attr name="expandActivityOverflowButtonDrawable" format="reference" />
546    </declare-styleable>
547
548    <!-- Default ActivityChooserView style. -->
549    <attr name="activityChooserViewStyle" format="reference" />
550
551    <declare-styleable name="CompatTextView">
552        <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
553        <attr name="textAllCaps" format="reference|boolean" />
554    </declare-styleable>
555
556</resources>
557