attrs.xml revision 7b7578184567f4e4f0740ce935cc192765410cca
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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<!-- Formatting note: terminate all comments with a period, to avoid breaking
18     the documentation output. To suppress comment lines from the documentation
19     output, insert an eat-comment element after the comment lines.
20-->
21
22<resources>
23    <!-- These are the standard attributes that make up a complete theme. -->
24    <declare-styleable name="Theme">
25        <!-- ============== -->
26        <!-- Generic styles -->
27        <!-- ============== -->
28        <eat-comment />
29
30        <!-- Default color of foreground imagery. -->
31        <attr name="colorForeground" format="color" />
32        <!-- Default color of foreground imagery on an inverted background. -->
33        <attr name="colorForegroundInverse" format="color" />
34        <!-- Color that matches (as closely as possible) the window background. -->
35        <attr name="colorBackground" format="color" />
36        <!-- This is a hint for a solid color that can be used for caching
37             rendered views.  This should be the color of the background when
38             there is a solid background color; it should be null when the
39             background is a texture or translucent.  When a device is able
40             to use accelerated drawing (thus setting state_accelerated), the
41             cache hint is ignored and always assumed to be transparent. -->
42        <attr name="colorBackgroundCacheHint" format="color" />
43
44        <!-- Default highlight color for items that are pressed. -->
45        <attr name="colorPressedHighlight" format="color" />
46        <!-- Default highlight color for items that are long-pressed. -->
47        <attr name="colorLongPressedHighlight" format="color" />
48        <!-- Default highlight color for items that are
49             focused. (Focused meaning cursor-based selection.) -->
50        <attr name="colorFocusedHighlight" format="color" />
51        <!-- Default highlight color for items that are
52             activated. (Activated meaning persistent selection.) -->
53        <attr name="colorActivatedHighlight" format="color" />
54        <!-- Default highlight color for items in multiple selection
55             mode. -->
56        <attr name="colorMultiSelectHighlight" format="color" />
57
58        <!-- Default disabled alpha for widgets that set enabled/disabled alpha programmatically. -->
59        <attr name="disabledAlpha" format="float" />
60        <!-- Default background dim amount when a menu, dialog, or something similar pops up. -->
61        <attr name="backgroundDimAmount" format="float" />
62        <!-- Control whether dimming behind the window is enabled.  The default
63             theme does not set this value, meaning it is based on whether the
64             window is floating. -->
65        <attr name="backgroundDimEnabled" format="boolean" />
66
67        <!-- =========== -->
68        <!-- Text styles -->
69        <!-- =========== -->
70        <eat-comment />
71
72        <!-- Default appearance of text: color, typeface, size, and style. -->
73        <attr name="textAppearance" format="reference" />
74        <!-- Default appearance of text against an inverted background:
75             color, typeface, size, and style. -->
76        <attr name="textAppearanceInverse" format="reference" />
77
78        <!-- The most prominent text color.  -->
79        <attr name="textColorPrimary" format="reference|color" />
80        <!-- Secondary text color. -->
81        <attr name="textColorSecondary" format="reference|color" />
82        <!-- Tertiary text color. -->
83        <attr name="textColorTertiary" format="reference|color" />
84
85        <!-- Primary inverse text color, useful for inverted backgrounds. -->
86        <attr name="textColorPrimaryInverse" format="reference|color" />
87        <!-- Secondary inverse text color, useful for inverted backgrounds. -->
88        <attr name="textColorSecondaryInverse" format="reference|color" />
89        <!-- Tertiary inverse text color, useful for inverted backgrounds. -->
90        <attr name="textColorTertiaryInverse" format="reference|color" />
91
92        <!-- Inverse hint text color. -->
93        <attr name="textColorHintInverse" format="reference|color" />
94
95        <!-- Bright text color. Only differentiates based on the disabled state. -->
96        <attr name="textColorPrimaryDisableOnly" format="reference|color" />
97
98        <!-- Bright inverse text color. Only differentiates based on the disabled state. -->
99        <attr name="textColorPrimaryInverseDisableOnly" format="reference|color" />
100
101        <!-- Bright text color. This does not differentiate the disabled state. As an example,
102             buttons use this since they display the disabled state via the background and not the
103             foreground text color. -->
104        <attr name="textColorPrimaryNoDisable" format="reference|color" />
105        <!-- Dim text color. This does not differentiate the disabled state. -->
106        <attr name="textColorSecondaryNoDisable" format="reference|color" />
107
108        <!-- Bright inverse text color. This does not differentiate the disabled state. -->
109        <attr name="textColorPrimaryInverseNoDisable" format="reference|color" />
110        <!-- Dim inverse text color. This does not differentiate the disabled state. -->
111        <attr name="textColorSecondaryInverseNoDisable" format="reference|color" />
112
113        <!-- Text color for urls in search suggestions, used by things like global search and the browser. @hide -->
114        <attr name="textColorSearchUrl" format="reference|color" />
115
116        <!-- Color of highlighted text, when used in a light theme. -->
117        <attr name="textColorHighlightInverse" format="reference|color" />
118        <!-- Color of link text (URLs), when used in a light theme. -->
119        <attr name="textColorLinkInverse" format="reference|color" />
120
121        <!-- Color of list item text in alert dialogs. -->
122        <attr name="textColorAlertDialogListItem" format="reference|color" />
123
124        <!-- Search widget more corpus result item background. -->
125        <attr name="searchWidgetCorpusItemBackground" format="reference|color" />
126
127        <!-- Text color, typeface, size, and style for "large" text. Defaults to primary text color. -->
128        <attr name="textAppearanceLarge" format="reference" />
129        <!-- Text color, typeface, size, and style for "medium" text. Defaults to primary text color. -->
130        <attr name="textAppearanceMedium" format="reference" />
131        <!-- Text color, typeface, size, and style for "small" text. Defaults to secondary text color. -->
132        <attr name="textAppearanceSmall" format="reference" />
133
134        <!-- Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color. -->
135        <attr name="textAppearanceLargeInverse" format="reference" />
136        <!-- Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color. -->
137        <attr name="textAppearanceMediumInverse" format="reference" />
138        <!-- Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color. -->
139        <attr name="textAppearanceSmallInverse" format="reference" />
140
141        <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
142        <attr name="textAppearanceSearchResultTitle" format="reference" />
143        <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
144        <attr name="textAppearanceSearchResultSubtitle" format="reference" />
145
146        <!-- Text color, typeface, size, and style for the text inside of a button. -->
147        <attr name="textAppearanceButton" format="reference" />
148
149        <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
150        <attr name="textAppearanceLargePopupMenu" format="reference" />
151
152        <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
153        <attr name="textAppearanceSmallPopupMenu" format="reference" />
154
155        <!-- The underline color and thickness for easy correct suggestion -->
156        <attr name="textAppearanceEasyCorrectSuggestion" format="reference" />
157
158        <!-- The underline color and thickness for misspelled suggestion -->
159        <attr name="textAppearanceMisspelledSuggestion" format="reference" />
160
161        <!-- The underline color and thickness for auto correction suggestion -->
162        <attr name="textAppearanceAutoCorrectionSuggestion" format="reference" />
163
164        <!--  The underline color -->
165        <attr name="textUnderlineColor" format="reference|color" />
166        <!--  The underline thickness -->
167        <attr name="textUnderlineThickness" format="reference|dimension" />
168
169        <!-- EditText text foreground color. -->
170        <attr name="editTextColor" format="reference|color" />
171        <!-- EditText background drawable. -->
172        <attr name="editTextBackground" format="reference" />
173
174        <!-- Popup text displayed in TextView when setError is used. -->
175        <attr name="errorMessageBackground" format="reference" />
176        <!-- Background used instead of errorMessageBackground when the popup has to be above. -->
177        <attr name="errorMessageAboveBackground" format="reference" />
178
179        <!-- A styled string, specifying the style to be used for showing
180             inline candidate text when composing with an input method.  The
181             text itself will be ignored, but the style spans will be applied
182             to the candidate text as it is edited. -->
183        <attr name="candidatesTextStyleSpans" format="reference|string" />
184
185        <!-- Drawable to use for check marks. -->
186        <attr name="textCheckMark" format="reference" />
187        <attr name="textCheckMarkInverse" format="reference" />
188
189        <!-- Drawable to use for multiple choice indicators. -->
190        <attr name="listChoiceIndicatorMultiple" format="reference" />
191
192        <!-- Drawable to use for single choice indicators. -->
193        <attr name="listChoiceIndicatorSingle" format="reference" />
194
195        <!-- Drawable used as a background for selected list items. -->
196        <attr name="listChoiceBackgroundIndicator" format="reference" />
197
198        <!-- Drawable used as a background for activated items. -->
199        <attr name="activatedBackgroundIndicator" format="reference" />
200
201        <!-- ============= -->
202        <!-- Button styles -->
203        <!-- ============= -->
204        <eat-comment />
205
206        <!-- Normal Button style. -->
207        <attr name="buttonStyle" format="reference" />
208
209        <!-- Small Button style. -->
210        <attr name="buttonStyleSmall" format="reference" />
211
212        <!-- Button style to inset into an EditText. -->
213        <attr name="buttonStyleInset" format="reference" />
214
215        <!-- ToggleButton style. -->
216        <attr name="buttonStyleToggle" format="reference" />
217
218        <!-- ============== -->
219        <!-- Gallery styles -->
220        <!-- ============== -->
221        <eat-comment />
222
223        <!-- The preferred background for gallery items. This should be set
224             as the background of any Views you provide from the Adapter. -->
225        <attr name="galleryItemBackground" format="reference" />
226
227        <!-- =========== -->
228        <!-- List styles -->
229        <!-- =========== -->
230        <eat-comment />
231
232        <!-- The preferred list item height. -->
233        <attr name="listPreferredItemHeight" format="dimension" />
234        <!-- A smaller, sleeker list item height. -->
235        <attr name="listPreferredItemHeightSmall" format="dimension" />
236        <!-- A larger, more robust list item height. -->
237        <attr name="listPreferredItemHeightLarge" format="dimension" />
238        <!-- The list item height for search results. @hide -->
239        <attr name="searchResultListItemHeight" format="dimension" />
240
241        <!-- The preferred padding along the left edge of list items. -->
242        <attr name="listPreferredItemPaddingLeft" format="dimension" />
243        <!-- The preferred padding along the right edge of list items. -->
244        <attr name="listPreferredItemPaddingRight" format="dimension" />
245
246        <!-- The preferred TextAppearance for the primary text of list items. -->
247        <attr name="textAppearanceListItem" format="reference" />
248        <!-- The preferred TextAppearance for the primary text of small list items. -->
249        <attr name="textAppearanceListItemSmall" format="reference" />
250
251        <!-- The drawable for the list divider. -->
252        <attr name="listDivider" format="reference" />
253        <!-- The list divider used in alert dialogs. -->
254        <attr name="listDividerAlertDialog" format="reference" />
255        <!-- TextView style for list separators. -->
256        <attr name="listSeparatorTextViewStyle" format="reference" />
257        <!-- The preferred left padding for an expandable list item (for child-specific layouts,
258             use expandableListPreferredChildPaddingLeft). This takes into account
259             the indicator that will be shown to next to the item. -->
260        <attr name="expandableListPreferredItemPaddingLeft" format="dimension" />
261        <!-- The preferred left padding for an expandable list item that is a child.
262             If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft. -->
263        <attr name="expandableListPreferredChildPaddingLeft" format="dimension" />
264        <!-- The preferred left bound for an expandable list item's indicator. For a child-specific
265             indicator, use expandableListPreferredChildIndicatorLeft. -->
266        <attr name="expandableListPreferredItemIndicatorLeft" format="dimension" />
267        <!-- The preferred right bound for an expandable list item's indicator. For a child-specific
268             indicator, use expandableListPreferredChildIndicatorRight. -->
269        <attr name="expandableListPreferredItemIndicatorRight" format="dimension" />
270        <!-- The preferred left bound for an expandable list child's indicator. -->
271        <attr name="expandableListPreferredChildIndicatorLeft" format="dimension" />
272        <!-- The preferred right bound for an expandable list child's indicator. -->
273        <attr name="expandableListPreferredChildIndicatorRight" format="dimension" />
274
275        <!-- The preferred item height for dropdown lists. -->
276        <attr name="dropdownListPreferredItemHeight" format="dimension" />
277
278        <!-- The preferred padding along the start edge of list items. -->
279        <attr name="listPreferredItemPaddingStart" format="dimension" />
280        <!-- The preferred padding along the end edge of list items. -->
281        <attr name="listPreferredItemPaddingEnd" format="dimension" />
282
283        <!-- ============= -->
284        <!-- Window styles -->
285        <!-- ============= -->
286        <eat-comment />
287
288        <!-- Drawable to use as the overall window background.  As of
289             {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may
290             be a selector that uses state_accelerated to pick a non-solid
291             color when running on devices that can draw such a bitmap
292             with complex compositing on top at 60fps.
293
294             <p>There are a few special considerations to use when setting this
295             drawable:
296             <ul>
297             <li> This information will be used to infer the pixel format
298                  for your window's surface.  If the drawable has any
299                  non-opaque pixels, your window will be translucent
300                  (32 bpp).
301             <li> If you want to draw the entire background
302                  yourself, you should set this drawable to some solid
303                  color that closely matches that background (so the
304                  system's preview of your window will match), and
305                  then in code manually set your window's background to
306                  null so it will not be drawn.
307             </ul> -->
308        <attr name="windowBackground" format="reference" />
309        <!-- Drawable to use as a frame around the window. -->
310        <attr name="windowFrame" format="reference" />
311        <!-- Flag indicating whether there should be no title on this window. -->
312        <attr name="windowNoTitle" format="boolean" />
313        <!-- Flag indicating whether this window should fill the entire screen. -->
314        <attr name="windowFullscreen" format="boolean" />
315        <!-- Flag indicating whether this is a floating window. -->
316        <attr name="windowIsFloating" format="boolean" />
317        <!-- Flag indicating whether this is a translucent window. -->
318        <attr name="windowIsTranslucent" format="boolean" />
319        <!-- Flag indicating that this window's background should be the
320           user's current wallpaper. -->
321        <attr name="windowShowWallpaper" format="boolean" />
322        <!-- This Drawable is overlaid over the foreground of the Window's content area, usually
323             to place a shadow below the title.  -->
324        <attr name="windowContentOverlay" format="reference" />
325        <!-- The style resource to use for a window's title bar height. -->
326        <attr name="windowTitleSize" format="dimension" />
327        <!-- The style resource to use for a window's title text. -->
328        <attr name="windowTitleStyle" format="reference" />
329        <!-- The style resource to use for a window's title area. -->
330        <attr name="windowTitleBackgroundStyle" format="reference" />
331
332        <!-- Reference to a style resource holding
333             the set of window animations to use, which can be
334             any of the attributes defined by
335             {@link android.R.styleable#WindowAnimation}. -->
336        <attr name="windowAnimationStyle" format="reference" />
337
338        <!-- Flag indicating whether this window should have an Action Bar
339             in place of the usual title bar. -->
340        <attr name="windowActionBar" format="boolean" />
341
342        <!-- Flag indicating whether this window's Action Bar should overlay
343             application content. Does nothing if the window would not
344             have an Action Bar. -->
345        <attr name="windowActionBarOverlay" format="boolean" />
346
347        <!-- Flag indicating whether action modes should overlay window content
348             when there is not reserved space for their UI (such as an Action Bar). -->
349        <attr name="windowActionModeOverlay" format="boolean" />
350
351        <!-- Flag indicating that the action bar should be split to provide more
352             room for elements. -->
353        <attr name="windowSplitActionBar" format="boolean" />
354
355        <!-- Defines the default soft input state that this window would
356             like when it is displayed. -->
357        <attr name="windowSoftInputMode">
358            <!-- Not specified, use what the system thinks is best.  This
359                 is the default. -->
360            <flag name="stateUnspecified" value="0" />
361            <!-- Leave the soft input window as-is, in whatever state it
362                 last was. -->
363            <flag name="stateUnchanged" value="1" />
364            <!-- Make the soft input area hidden when normally appropriate
365                 (when the user is navigating forward to your window). -->
366            <flag name="stateHidden" value="2" />
367            <!-- Always make the soft input area hidden when this window
368                 has input focus. -->
369            <flag name="stateAlwaysHidden" value="3" />
370            <!-- Make the soft input area visible when normally appropriate
371                 (when the user is navigating forward to your window). -->
372            <flag name="stateVisible" value="4" />
373            <!-- Always make the soft input area visible when this window
374                 has input focus. -->
375            <flag name="stateAlwaysVisible" value="5" />
376
377            <!-- The window resize/pan adjustment has not been specified,
378                 the system will automatically select between resize and pan
379                 modes, depending
380                 on whether the content of the window has any layout views
381                 that can scroll their contents.  If there is such a view,
382                 then the window will be resized, with the assumption being
383                 that the resizeable area can be reduced to make room for
384                 the input UI. -->
385            <flag name="adjustUnspecified" value="0x00" />
386            <!-- Always resize the window: the content area of the window is
387                 reduced to make room for the soft input area. -->
388            <flag name="adjustResize" value="0x10" />
389            <!-- Don't resize the window to make room for the soft input area;
390                 instead pan the contents of the window as focus moves inside
391                 of it so that the user can see what they are typing.  This is
392                 generally less desireable than panning because the user may
393                 need to close the input area to get at and interact with
394                 parts of the window. -->
395            <flag name="adjustPan" value="0x20" />
396            <!-- Don't resize <em>or</em> pan the window to make room for the
397                 soft input area; the window is never adjusted for it. -->
398            <flag name="adjustNothing" value="0x30" />
399        </attr>
400
401        <!-- Flag allowing you to disable the preview animation for a window.
402             The default value is false; if set to true, the system can never
403             use the window's theme to show a preview of it before your
404             actual instance is shown to the user. -->
405        <attr name="windowDisablePreview" format="boolean" />
406
407        <!-- Flag indicating that this window should not be displayed at all.
408             The default value is false; if set to true, and this window is
409             the main window of an Activity, then it will never actually
410             be added to the window manager.  This means that your activity
411             must immediately quit without waiting for user interaction,
412             because there will be no such interaction coming. -->
413        <attr name="windowNoDisplay" format="boolean" />
414
415        <!-- Flag indicating that this window should allow touches to be split
416             across other windows that also support split touch.
417             The default value is true for applications with a targetSdkVersion
418             of Honeycomb or newer; false otherwise.
419             When this flag is false, the first pointer that goes down determines
420             the window to which all subsequent touches go until all pointers go up.
421             When this flag is true, each pointer (not necessarily the first) that
422             goes down determines the window to which all subsequent touches of that
423             pointer will go until that pointers go up thereby enabling touches
424             with multiple pointers to be split across multiple windows. -->
425        <attr name="windowEnableSplitTouch" format="boolean" />
426
427        <!-- Control whether a container should automatically close itself if
428             the user touches outside of it.  This only applies to activities
429             and dialogs.
430
431             <p>Note: this attribute will only be respected for applications
432             that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
433             or later. -->
434        <attr name="windowCloseOnTouchOutside" format="boolean" />
435
436        <!-- ============ -->
437        <!-- Alert Dialog styles -->
438        <!-- ============ -->
439        <eat-comment />
440        <attr name="alertDialogStyle" format="reference" />
441        <attr name="alertDialogButtonGroupStyle" format="reference" />
442        <attr name="alertDialogCenterButtons" format="boolean" />
443
444        <!-- ============== -->
445        <!-- Image elements -->
446        <!-- ============== -->
447        <eat-comment />
448
449        <!-- Background that can be used behind parts of a UI that provide
450             details on data the user is selecting.  For example, this is
451             the background element of PreferenceActivity's embedded
452             preference fragment. -->
453        <attr name="detailsElementBackground" format="reference" />
454
455        <!-- ============ -->
456        <!-- Panel styles -->
457        <!-- ============ -->
458        <eat-comment />
459
460        <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
461        <attr name="panelBackground" format="reference|color" />
462        <!-- The background of a panel when it extends to the left and right edges of the screen. -->
463        <attr name="panelFullBackground" format="reference|color" />
464        <!-- Default color of foreground panel imagery. -->
465        <attr name="panelColorForeground" format="reference|color" />
466        <!-- Color that matches (as closely as possible) the panel background. -->
467        <attr name="panelColorBackground" format="reference|color" />
468        <!-- Default appearance of panel text. -->
469        <attr name="panelTextAppearance" format="reference" />
470
471        <attr name="panelMenuIsCompact" format="boolean" />
472        <attr name="panelMenuListWidth" format="dimension" />
473        <attr name="panelMenuListTheme" format="reference" />
474
475        <!-- =================== -->
476        <!-- Other widget styles -->
477        <!-- =================== -->
478        <eat-comment />
479
480        <!-- Default AbsListView style. -->
481        <attr name="absListViewStyle" format="reference" />
482        <!-- Default AutoCompleteTextView style. -->
483        <attr name="autoCompleteTextViewStyle" format="reference" />
484        <!-- Default Checkbox style. -->
485        <attr name="checkboxStyle" format="reference" />
486        <!-- Default ListView style for drop downs. -->
487        <attr name="dropDownListViewStyle" format="reference" />
488        <!-- Default EditText style. -->
489        <attr name="editTextStyle" format="reference" />
490        <!-- Default ExpandableListView style. -->
491        <attr name="expandableListViewStyle" format="reference" />
492        <!-- ExpandableListView with white background. -->
493        <attr name="expandableListViewWhiteStyle" format="reference" />
494        <!-- Default Gallery style. -->
495        <attr name="galleryStyle" format="reference" />
496        <!-- Default GestureOverlayView style. -->
497        <attr name="gestureOverlayViewStyle" format="reference" />
498        <!-- Default GridView style. -->
499        <attr name="gridViewStyle" format="reference" />
500        <!-- The style resource to use for an ImageButton. -->
501        <attr name="imageButtonStyle" format="reference" />
502        <!-- The style resource to use for an ImageButton that is an image well. -->
503        <attr name="imageWellStyle" format="reference" />
504        <!-- Default ListView style. -->
505        <attr name="listViewStyle" format="reference" />
506        <!-- ListView with white background. -->
507        <attr name="listViewWhiteStyle" format="reference" />
508        <!-- Default PopupWindow style. -->
509        <attr name="popupWindowStyle" format="reference" />
510        <!-- Default ProgressBar style. This is a medium circular progress bar. -->
511        <attr name="progressBarStyle" format="reference" />
512        <!-- Horizontal ProgressBar style. This is a horizontal progress bar. -->
513        <attr name="progressBarStyleHorizontal" format="reference" />
514        <!-- Small ProgressBar style. This is a small circular progress bar. -->
515        <attr name="progressBarStyleSmall" format="reference" />
516        <!-- Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars. -->
517        <attr name="progressBarStyleSmallTitle" format="reference" />
518        <!-- Large ProgressBar style. This is a large circular progress bar. -->
519        <attr name="progressBarStyleLarge" format="reference" />
520        <!-- Inverse ProgressBar style. This is a medium circular progress bar. -->
521        <attr name="progressBarStyleInverse" format="reference" />
522        <!-- Small inverse ProgressBar style. This is a small circular progress bar. -->
523        <attr name="progressBarStyleSmallInverse" format="reference" />
524        <!-- Large inverse ProgressBar style. This is a large circular progress bar. -->
525        <attr name="progressBarStyleLargeInverse" format="reference" />
526        <!-- Default SeekBar style. -->
527        <attr name="seekBarStyle" format="reference" />
528        <!-- Default RatingBar style. -->
529        <attr name="ratingBarStyle" format="reference" />
530        <!-- Indicator RatingBar style. -->
531        <attr name="ratingBarStyleIndicator" format="reference" />
532        <!-- Small indicator RatingBar style. -->
533        <attr name="ratingBarStyleSmall" format="reference" />
534        <!-- Default RadioButton style. -->
535        <attr name="radioButtonStyle" format="reference" />
536        <!-- Default ScrollView style. -->
537        <attr name="scrollViewStyle" format="reference" />
538        <!-- Default HorizontalScrollView style. -->
539        <attr name="horizontalScrollViewStyle" format="reference" />
540        <!-- Default Spinner style. -->
541        <attr name="spinnerStyle" format="reference" />
542        <!-- Default dropdown Spinner style. -->
543        <attr name="dropDownSpinnerStyle" format="reference" />
544        <!-- Default ActionBar dropdown style. -->
545        <attr name="actionDropDownStyle" format="reference" />
546        <!-- Default action button style. -->
547        <attr name="actionButtonStyle" format="reference" />
548        <!-- Default Star style. -->
549        <attr name="starStyle" format="reference" />
550        <!-- Default TabWidget style. -->
551        <attr name="tabWidgetStyle" format="reference" />
552        <!-- Default TextView style. -->
553        <attr name="textViewStyle" format="reference" />
554        <!-- Default WebTextView style. -->
555        <attr name="webTextViewStyle" format="reference" />
556        <!-- Default WebView style. -->
557        <attr name="webViewStyle" format="reference" />
558        <!-- Default style for drop down items. -->
559        <attr name="dropDownItemStyle" format="reference" />
560         <!-- Default style for spinner drop down items. -->
561        <attr name="spinnerDropDownItemStyle" format="reference" />
562        <!-- Default style for drop down hints. -->
563        <attr name="dropDownHintAppearance" format="reference" />
564        <!-- Default spinner item style. -->
565        <attr name="spinnerItemStyle" format="reference" />
566        <!-- Default MapView style. -->
567        <attr name="mapViewStyle" format="reference" />
568        <!-- Drawable used as an overlay on top of quickcontact photos. -->
569        <attr name="quickContactBadgeOverlay" format="reference" />
570        <!-- Default quickcontact badge style with small quickcontact window. -->
571        <attr name="quickContactBadgeStyleWindowSmall" format="reference" />
572        <!-- Default quickcontact badge style with medium quickcontact window. -->
573        <attr name="quickContactBadgeStyleWindowMedium" format="reference" />
574        <!-- Default quickcontact badge style with large quickcontact window. -->
575        <attr name="quickContactBadgeStyleWindowLarge" format="reference" />
576        <!-- Default quickcontact badge style with small quickcontact window. -->
577        <attr name="quickContactBadgeStyleSmallWindowSmall" format="reference" />
578        <!-- Default quickcontact badge style with medium quickcontact window. -->
579        <attr name="quickContactBadgeStyleSmallWindowMedium" format="reference" />
580        <!-- Default quickcontact badge style with large quickcontact window. -->
581        <attr name="quickContactBadgeStyleSmallWindowLarge" format="reference" />
582        <!-- Reference to a style that will be used for the window containing a text
583             selection anchor. -->
584        <attr name="textSelectHandleWindowStyle" format="reference" />
585        <!-- Reference to a style that will be used for the window containing a list of possible
586             text suggestions in an EditText. -->
587        <attr name="textSuggestionsWindowStyle" format="reference" />
588        <!-- Default ListPopupWindow style. -->
589        <attr name="listPopupWindowStyle" format="reference" />
590        <!-- Default PopupMenu style. -->
591        <attr name="popupMenuStyle" format="reference" />
592        <!-- Default StackView style. -->
593        <attr name="stackViewStyle" format="reference" />
594
595        <!-- NumberPicker style. -->
596        <attr name="numberPickerStyle" format="reference" />
597
598        <!-- The CalendarView style. -->
599        <attr name="calendarViewStyle" format="reference" />
600
601        <!-- The TimePicker style. -->
602        <attr name="timePickerStyle" format="reference" />
603
604        <!-- The DatePicker style. -->
605        <attr name="datePickerStyle" format="reference" />
606
607        <!-- Default ActivityChooserView style. -->
608        <attr name="activityChooserViewStyle" format="reference" />
609
610        <!-- Fast scroller styles -->
611        <eat-comment />
612
613        <!-- Drawable to use as the fast scroll thumb. -->
614        <attr name="fastScrollThumbDrawable" format="reference" />
615        <!-- Drawable to use as the fast scroll index preview window background
616             when shown on the right. -->
617        <attr name="fastScrollPreviewBackgroundRight" format="reference" />
618        <!-- Drawable to use as the fast scroll index preview window background
619             when shown on the left. -->
620        <attr name="fastScrollPreviewBackgroundLeft" format="reference" />
621        <!-- Drawable to use as the track for the fast scroll thumb.
622             This may be null. -->
623        <attr name="fastScrollTrackDrawable" format="reference" />
624        <!-- Position of the fast scroll index overlay window. -->
625        <attr name="fastScrollOverlayPosition">
626            <enum name="floating" value="0" />
627            <enum name="atThumb" value="1" />
628        </attr>
629        <!-- Text color for the fast scroll index overlay. Make sure it
630             plays nicely with fastScrollPreviewBackground[Left|Right]. -->
631        <attr name="fastScrollTextColor" format="color" />
632
633        <!-- =================== -->
634        <!-- Action bar styles   -->
635        <!-- =================== -->
636        <eat-comment />
637        <!-- Default style for tabs within an action bar -->
638        <attr name="actionBarTabStyle" format="reference" />
639        <attr name="actionBarTabBarStyle" format="reference" />
640        <attr name="actionBarTabTextStyle" format="reference" />
641        <attr name="actionOverflowButtonStyle" format="reference" />
642        <!-- Reference to a style for the Action Bar -->
643        <attr name="actionBarStyle" format="reference" />
644        <!-- Reference to a style for the split Action Bar. This style
645             controls the split component that holds the menu/action
646             buttons. actionBarStyle is still used for the primary
647             bar. -->
648        <attr name="actionBarSplitStyle" format="reference" />
649        <!-- Reference to a theme that should be used to inflate widgets
650             and layouts destined for the action bar. Most of the time
651             this will be a reference to the current theme, but when
652             the action bar has a significantly different contrast
653             profile than the rest of the activity the difference
654             can become important. If this is set to @null the current
655             theme will be used.-->
656        <attr name="actionBarWidgetTheme" format="reference" />
657        <!-- Size of the Action Bar, including the contextual
658             bar used to present Action Modes. -->
659        <attr name="actionBarSize" format="dimension" >
660            <enum name="wrap_content" value="0" />
661        </attr>
662        <!-- Custom divider drawable to use for elements in the action bar. -->
663        <attr name="actionBarDivider" format="reference" />
664        <!-- Custom item state list drawable background for action bar items. -->
665        <attr name="actionBarItemBackground" format="reference" />
666        <!-- TextAppearance style that will be applied to text that
667             appears within action menu items. -->
668        <attr name="actionMenuTextAppearance" format="reference" />
669        <!-- Color for text that appears within action menu items. -->
670        <attr name="actionMenuTextColor" format="color|reference" />
671
672        <!-- =================== -->
673        <!-- Action mode styles  -->
674        <!-- =================== -->
675        <eat-comment />
676        <attr name="actionModeStyle" format="reference" />
677        <attr name="actionModeCloseButtonStyle" format="reference" />
678        <!-- Background drawable to use for action mode UI -->
679        <attr name="actionModeBackground" format="reference" />
680        <!-- Background drawable to use for action mode UI in the lower split bar -->
681        <attr name="actionModeSplitBackground" format="reference" />
682        <!-- Drawable to use for the close action mode button -->
683        <attr name="actionModeCloseDrawable" format="reference" />
684
685        <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
686        <attr name="actionModeCutDrawable" format="reference" />
687        <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
688        <attr name="actionModeCopyDrawable" format="reference" />
689        <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
690        <attr name="actionModePasteDrawable" format="reference" />
691        <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
692        <attr name="actionModeSelectAllDrawable" format="reference" />
693        <!-- Drawable to use for the Share action button in WebView selection action modes -->
694        <attr name="actionModeShareDrawable" format="reference" />
695        <!-- Drawable to use for the Find action button in WebView selection action modes -->
696        <attr name="actionModeFindDrawable" format="reference" />
697        <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
698        <attr name="actionModeWebSearchDrawable" format="reference" />
699
700        <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
701        <attr name="actionModePopupWindowStyle" format="reference" />
702
703        <!-- =================== -->
704        <!-- Preference styles   -->
705        <!-- =================== -->
706        <eat-comment />
707
708        <!-- Default style for PreferenceScreen. -->
709        <attr name="preferenceScreenStyle" format="reference" />
710        <!-- Default style for Headers pane in PreferenceActivity. -->
711        <attr name="preferenceFragmentStyle" format="reference" />
712        <!-- Default style for PreferenceCategory. -->
713        <attr name="preferenceCategoryStyle" format="reference" />
714        <!-- Default style for Preference. -->
715        <attr name="preferenceStyle" format="reference" />
716        <!-- Default style for informational Preference. -->
717        <attr name="preferenceInformationStyle" format="reference" />
718        <!-- Default style for CheckBoxPreference. -->
719        <attr name="checkBoxPreferenceStyle" format="reference" />
720        <!-- Default style for YesNoPreference. -->
721        <attr name="yesNoPreferenceStyle" format="reference" />
722        <!-- Default style for DialogPreference. -->
723        <attr name="dialogPreferenceStyle" format="reference" />
724        <!-- Default style for EditTextPreference. -->
725        <attr name="editTextPreferenceStyle" format="reference" />
726        <!-- Default style for RingtonePreference. -->
727        <attr name="ringtonePreferenceStyle" format="reference" />
728        <!-- The preference layout that has the child/tabbed effect. -->
729        <attr name="preferenceLayoutChild" format="reference" />
730        <!-- Preference panel style -->
731        <attr name="preferencePanelStyle" format="reference" />
732        <!-- Default style for switch preferences. -->
733        <attr name="switchPreferenceStyle" format="reference" />
734
735        <!-- ============================ -->
736        <!-- Text selection handle styles -->
737        <!-- ============================ -->
738        <eat-comment />
739
740        <!-- Reference to a drawable that will be used to display a text selection
741             anchor on the left side of a selection region. -->
742        <attr name="textSelectHandleLeft" format="reference" />
743        <!-- Reference to a drawable that will be used to display a text selection
744             anchor on the right side of a selection region. -->
745        <attr name="textSelectHandleRight" format="reference" />
746        <!-- Reference to a drawable that will be used to display a text selection
747             anchor for positioning the cursor within text. -->
748        <attr name="textSelectHandle" format="reference" />
749        <!-- The layout of the view that is displayed on top of the cursor to paste inside a
750             TextEdit field. -->
751        <attr name="textEditPasteWindowLayout" format="reference" />
752        <!-- Variation of textEditPasteWindowLayout displayed when the clipboard is empty. -->
753        <attr name="textEditNoPasteWindowLayout" format="reference" />
754        <!-- Used instead of textEditPasteWindowLayout when the window is moved on the side of the
755             insertion cursor because it would be clipped if it were positioned on top. -->
756        <attr name="textEditSidePasteWindowLayout" format="reference" />
757        <!-- Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. -->
758        <attr name="textEditSideNoPasteWindowLayout" format="reference" />
759
760        <!-- Layout of the TextView item that will populate the suggestion popup window. -->
761        <attr name="textEditSuggestionItemLayout" format="reference" />
762
763        <!-- Theme to use for dialogs spawned from this theme. -->
764        <attr name="dialogTheme" format="reference" />
765        <!-- Window decor layout to use in dialog mode with icons -->
766        <attr name="dialogTitleIconsDecorLayout" format="reference" />
767        <!-- Window decor layout to use in dialog mode with custom titles -->
768        <attr name="dialogCustomTitleDecorLayout" format="reference" />
769        <!-- Window decor layout to use in dialog mode with title only -->
770        <attr name="dialogTitleDecorLayout" format="reference" />
771
772        <!-- Theme to use for alert dialogs spawned from this theme. -->
773        <attr name="alertDialogTheme" format="reference" />
774        <!-- Icon drawable to use for alerts -->
775        <attr name="alertDialogIcon" format="reference" />
776
777        <!-- Theme to use for presentations spawned from this theme. -->
778        <attr name="presentationTheme" format="reference" />
779
780        <!-- Drawable to use for generic vertical dividers. -->
781        <attr name="dividerVertical" format="reference" />
782
783        <!-- Drawable to use for generic horizontal dividers. -->
784        <attr name="dividerHorizontal" format="reference" />
785
786        <!-- Style for button bars -->
787        <attr name="buttonBarStyle" format="reference" />
788
789        <!-- Style for buttons within button bars -->
790        <attr name="buttonBarButtonStyle" format="reference" />
791
792        <!-- Style for segmented buttons - a container that houses several buttons
793             with the appearance of a singel button broken into segments. -->
794        <attr name="segmentedButtonStyle" format="reference" />
795
796        <!-- Background drawable for standalone items that need focus/pressed states. -->
797        <attr name="selectableItemBackground" format="reference" />
798
799        <!-- Style for buttons without an explicit border, often used in groups. -->
800        <attr name="borderlessButtonStyle" format="reference" />
801
802        <!-- Background to use for toasts -->
803        <attr name="toastFrameBackground" format="reference" />
804
805        <!-- ============================ -->
806        <!-- SearchView styles and assets -->
807        <!-- ============================ -->
808        <eat-comment />
809        <!-- SearchView dropdown background -->
810        <attr name="searchDropdownBackground" format="reference" />
811        <!-- SearchView close button icon -->
812        <attr name="searchViewCloseIcon" format="reference" />
813        <!-- SearchView Go button icon -->
814        <attr name="searchViewGoIcon" format="reference" />
815        <!-- SearchView Search icon -->
816        <attr name="searchViewSearchIcon" format="reference" />
817        <!-- SearchView Voice button icon -->
818        <attr name="searchViewVoiceIcon" format="reference" />
819        <!-- SearchView query refinement icon -->
820        <attr name="searchViewEditQuery" format="reference" />
821        <!-- SearchView query refinement icon background -->
822        <attr name="searchViewEditQueryBackground" format="reference" />
823        <!-- SearchView text field background for the left section -->
824        <attr name="searchViewTextField" format="reference" />
825        <!-- SearchView text field background for the right section -->
826        <attr name="searchViewTextFieldRight" format="reference" />
827
828        <!-- Theme to use for Search Dialogs -->
829        <attr name="searchDialogTheme" format="reference" />
830
831        <!-- Specifies a drawable to use for the 'home as up' indicator. -->
832        <attr name="homeAsUpIndicator" format="reference" />
833
834        <!-- Preference frame layout styles. -->
835        <attr name="preferenceFrameLayoutStyle" format="reference" />
836
837        <!-- Default style for the Switch widget. -->
838        <attr name="switchStyle" format="reference" />
839
840        <!-- Default style for the MediaRouteButton widget. -->
841        <attr name="mediaRouteButtonStyle" format="reference" />
842
843        <!-- ============== -->
844        <!-- Pointer styles -->
845        <!-- ============== -->
846        <eat-comment />
847
848        <!-- Reference to the Pointer style -->
849        <attr name="pointerStyle" format="reference" />
850
851        <!-- The drawable for accessibility focused views. -->
852        <attr name="accessibilityFocusedDrawable" format="reference" />
853
854        <!-- Drawable for WebView find-on-page dialogue's "next" button. @hide -->
855        <attr name="findOnPageNextDrawable" format="reference" />
856
857        <!-- Drawable for WebView find-on-page dialogue's "previous" button. @hide -->
858        <attr name="findOnPagePreviousDrawable" format="reference" />
859
860    </declare-styleable>
861
862    <!-- **************************************************************** -->
863    <!-- Other non-theme attributes. -->
864    <!-- **************************************************************** -->
865    <eat-comment />
866
867    <!-- Size of text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp).
868         Supported values include the following:<p/>
869    <ul>
870        <li><b>px</b> Pixels</li>
871        <li><b>sp</b> Scaled pixels (scaled to relative pixel size on screen). See {@link android.util.DisplayMetrics} for more information.</li>
872        <li><b>pt</b> Points</li>
873        <li><b>dip</b> Device independent pixels. See {@link android.util.DisplayMetrics} for more information.</li>
874    </ul>
875        -->
876    <attr name="textSize" format="dimension" />
877
878    <!-- Default font family. -->
879    <attr name="fontFamily" format="string" />
880
881    <!-- Default text typeface. -->
882    <attr name="typeface">
883        <enum name="normal" value="0" />
884        <enum name="sans" value="1" />
885        <enum name="serif" value="2" />
886        <enum name="monospace" value="3" />
887    </attr>
888
889    <!-- Default text typeface style. -->
890    <attr name="textStyle">
891        <flag name="normal" value="0" />
892        <flag name="bold" value="1" />
893        <flag name="italic" value="2" />
894    </attr>
895
896    <!-- Color of text (usually same as colorForeground). -->
897    <attr name="textColor" format="reference|color" />
898
899    <!-- Color of highlighted text. -->
900    <attr name="textColorHighlight" format="reference|color" />
901
902    <!-- Color of hint text (displayed when the field is empty). -->
903    <attr name="textColorHint" format="reference|color" />
904
905    <!-- Color of link text (URLs). -->
906    <attr name="textColorLink" format="reference|color" />
907
908    <!-- Reference to a drawable that will be drawn under the insertion cursor. -->
909    <attr name="textCursorDrawable" format="reference" />
910
911    <!-- Indicates that the content of a non-editable TextView can be selected.
912     Default value is false. EditText content is always selectable. -->
913    <attr name="textIsSelectable" format="boolean" />
914
915    <!-- Where to ellipsize text. -->
916    <attr name="ellipsize">
917        <enum name="none" value="0" />
918        <enum name="start" value="1" />
919        <enum name="middle" value="2" />
920        <enum name="end" value="3" />
921        <enum name="marquee" value="4" />
922    </attr>
923
924    <!-- The type of data being placed in a text field, used to help an
925         input method decide how to let the user enter text.  The constants
926         here correspond to those defined by
927         {@link android.text.InputType}.  Generally you can select
928         a single value, though some can be combined together as
929         indicated.  Setting this attribute to anything besides
930         <var>none</var> also implies that the text is editable. -->
931    <attr name="inputType">
932        <!-- There is no content type.  The text is not editable. -->
933        <flag name="none" value="0x00000000" />
934        <!-- Just plain old text.  Corresponds to
935             {@link android.text.InputType#TYPE_CLASS_TEXT} |
936             {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}. -->
937        <flag name="text" value="0x00000001" />
938        <!-- Can be combined with <var>text</var> and its variations to
939             request capitalization of all characters.  Corresponds to
940             {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}. -->
941        <flag name="textCapCharacters" value="0x00001001" />
942        <!-- Can be combined with <var>text</var> and its variations to
943             request capitalization of the first character of every word.  Corresponds to
944             {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}. -->
945        <flag name="textCapWords" value="0x00002001" />
946        <!-- Can be combined with <var>text</var> and its variations to
947             request capitalization of the first character of every sentence.  Corresponds to
948             {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}. -->
949        <flag name="textCapSentences" value="0x00004001" />
950        <!-- Can be combined with <var>text</var> and its variations to
951             request auto-correction of text being input.  Corresponds to
952             {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}. -->
953        <flag name="textAutoCorrect" value="0x00008001" />
954        <!-- Can be combined with <var>text</var> and its variations to
955             specify that this field will be doing its own auto-completion and
956             talking with the input method appropriately.  Corresponds to
957             {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}. -->
958        <flag name="textAutoComplete" value="0x00010001" />
959        <!-- Can be combined with <var>text</var> and its variations to
960             allow multiple lines of text in the field.  If this flag is not set,
961             the text field will be constrained to a single line.  Corresponds to
962             {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}. -->
963        <flag name="textMultiLine" value="0x00020001" />
964        <!-- Can be combined with <var>text</var> and its variations to
965             indicate that though the regular text view should not be multiple
966             lines, the IME should provide multiple lines if it can.  Corresponds to
967             {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}. -->
968        <flag name="textImeMultiLine" value="0x00040001" />
969        <!-- Can be combined with <var>text</var> and its variations to
970             indicate that the IME should not show any
971             dictionary-based word suggestions.  Corresponds to
972             {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}. -->
973        <flag name="textNoSuggestions" value="0x00080001" />
974        <!-- Text that will be used as a URI.  Corresponds to
975             {@link android.text.InputType#TYPE_CLASS_TEXT} |
976             {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}. -->
977        <flag name="textUri" value="0x00000011" />
978        <!-- Text that will be used as an e-mail address.  Corresponds to
979             {@link android.text.InputType#TYPE_CLASS_TEXT} |
980             {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}. -->
981        <flag name="textEmailAddress" value="0x00000021" />
982        <!-- Text that is being supplied as the subject of an e-mail.  Corresponds to
983             {@link android.text.InputType#TYPE_CLASS_TEXT} |
984             {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}. -->
985        <flag name="textEmailSubject" value="0x00000031" />
986        <!-- Text that is the content of a short message.  Corresponds to
987             {@link android.text.InputType#TYPE_CLASS_TEXT} |
988             {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}. -->
989        <flag name="textShortMessage" value="0x00000041" />
990        <!-- Text that is the content of a long message.  Corresponds to
991             {@link android.text.InputType#TYPE_CLASS_TEXT} |
992             {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}. -->
993        <flag name="textLongMessage" value="0x00000051" />
994        <!-- Text that is the name of a person.  Corresponds to
995             {@link android.text.InputType#TYPE_CLASS_TEXT} |
996             {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}. -->
997        <flag name="textPersonName" value="0x00000061" />
998        <!-- Text that is being supplied as a postal mailing address.  Corresponds to
999             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1000             {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}. -->
1001        <flag name="textPostalAddress" value="0x00000071" />
1002        <!-- Text that is a password.  Corresponds to
1003             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1004             {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}. -->
1005        <flag name="textPassword" value="0x00000081" />
1006        <!-- Text that is a password that should be visible.  Corresponds to
1007             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1008             {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}. -->
1009        <flag name="textVisiblePassword" value="0x00000091" />
1010        <!-- Text that is being supplied as text in a web form.  Corresponds to
1011             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1012             {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}. -->
1013        <flag name="textWebEditText" value="0x000000a1" />
1014        <!-- Text that is filtering some other data.  Corresponds to
1015             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1016             {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}. -->
1017        <flag name="textFilter" value="0x000000b1" />
1018        <!-- Text that is for phonetic pronunciation, such as a phonetic name
1019             field in a contact entry.  Corresponds to
1020             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1021             {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}. -->
1022        <flag name="textPhonetic" value="0x000000c1" />
1023        <!-- Text that will be used as an e-mail address on a web form.  Corresponds to
1024             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1025             {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}. -->
1026        <flag name="textWebEmailAddress" value="0x000000d1" />
1027        <!-- Text that will be used as a password on a web form.  Corresponds to
1028             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1029             {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}. -->
1030        <flag name="textWebPassword" value="0x000000e1" />
1031        <!-- A numeric only field.  Corresponds to
1032             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1033             {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}. -->
1034        <flag name="number" value="0x00000002" />
1035        <!-- Can be combined with <var>number</var> and its other options to
1036             allow a signed number.  Corresponds to
1037             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1038             {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}. -->
1039        <flag name="numberSigned" value="0x00001002" />
1040        <!-- Can be combined with <var>number</var> and its other options to
1041             allow a decimal (fractional) number.  Corresponds to
1042             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1043             {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}. -->
1044        <flag name="numberDecimal" value="0x00002002" />
1045        <!-- A numeric password field.  Corresponds to
1046             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1047             {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}. -->
1048        <flag name="numberPassword" value="0x00000012" />
1049        <!-- For entering a phone number.  Corresponds to
1050             {@link android.text.InputType#TYPE_CLASS_PHONE}. -->
1051        <flag name="phone" value="0x00000003" />
1052        <!-- For entering a date and time.  Corresponds to
1053             {@link android.text.InputType#TYPE_CLASS_DATETIME} |
1054             {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}. -->
1055        <flag name="datetime" value="0x00000004" />
1056        <!-- For entering a date.  Corresponds to
1057             {@link android.text.InputType#TYPE_CLASS_DATETIME} |
1058             {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}. -->
1059        <flag name="date" value="0x00000014" />
1060        <!-- For entering a time.  Corresponds to
1061             {@link android.text.InputType#TYPE_CLASS_DATETIME} |
1062             {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}. -->
1063        <flag name="time" value="0x00000024" />
1064    </attr>
1065
1066    <!-- Additional features you can enable in an IME associated with an editor
1067         to improve the integration with your application.  The constants
1068         here correspond to those defined by
1069         {@link android.view.inputmethod.EditorInfo#imeOptions}. -->
1070    <attr name="imeOptions">
1071        <!-- There are no special semantics associated with this editor. -->
1072        <flag name="normal" value="0x00000000" />
1073        <!-- There is no specific action associated with this editor, let the
1074             editor come up with its own if it can.
1075             Corresponds to
1076             {@link android.view.inputmethod.EditorInfo#IME_NULL}. -->
1077        <flag name="actionUnspecified" value="0x00000000" />
1078        <!-- This editor has no action associated with it.
1079             Corresponds to
1080             {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}. -->
1081        <flag name="actionNone" value="0x00000001" />
1082        <!-- The action key performs a "go"
1083             operation to take the user to the target of the text they typed.
1084             Typically used, for example, when entering a URL.
1085             Corresponds to
1086             {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}. -->
1087        <flag name="actionGo" value="0x00000002" />
1088        <!-- The action key performs a "search"
1089             operation, taking the user to the results of searching for the text
1090             the have typed (in whatever context is appropriate).
1091             Corresponds to
1092             {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}. -->
1093        <flag name="actionSearch" value="0x00000003" />
1094        <!-- The action key performs a "send"
1095             operation, delivering the text to its target.  This is typically used
1096             when composing a message.
1097             Corresponds to
1098             {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}. -->
1099        <flag name="actionSend" value="0x00000004" />
1100        <!-- The action key performs a "next"
1101             operation, taking the user to the next field that will accept text.
1102             Corresponds to
1103             {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}. -->
1104        <flag name="actionNext" value="0x00000005" />
1105        <!-- The action key performs a "done"
1106             operation, closing the soft input method.
1107             Corresponds to
1108             {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}. -->
1109        <flag name="actionDone" value="0x00000006" />
1110        <!-- The action key performs a "previous"
1111             operation, taking the user to the previous field that will accept text.
1112             Corresponds to
1113             {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}. -->
1114        <flag name="actionPrevious" value="0x00000007" />
1115        <!-- Used to request that the IME never go
1116             into fullscreen mode.  Applications need to be aware that the flag is not
1117             a guarantee, and not all IMEs will respect it.
1118             <p>Corresponds to
1119             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}. -->
1120        <flag name="flagNoFullscreen" value="0x2000000" />
1121        <!-- Like flagNavigateNext, but
1122             specifies there is something interesting that a backward navigation
1123             can focus on.  If the user selects the IME's facility to backward
1124             navigate, this will show up in the application as an actionPrevious
1125             at {@link android.view.inputmethod.InputConnection#performEditorAction(int)
1126             InputConnection.performEditorAction(int)}.
1127             <p>Corresponds to
1128             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}. -->
1129        <flag name="flagNavigatePrevious" value="0x4000000" />
1130        <!-- Used to specify that there is something
1131             interesting that a forward navigation can focus on. This is like using
1132             actionNext, except allows the IME to be multiline (with
1133             an enter key) as well as provide forward navigation.  Note that some
1134             IMEs may not be able to do this, especially when running on a small
1135             screen where there is little space.  In that case it does not need to
1136             present a UI for this option.  Like actionNext, if the
1137             user selects the IME's facility to forward navigate, this will show up
1138             in the application at
1139             {@link android.view.inputmethod.InputConnection#performEditorAction(int)
1140             InputConnection.performEditorAction(int)}.
1141             <p>Corresponds to
1142             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}. -->
1143        <flag name="flagNavigateNext" value="0x8000000" />
1144        <!-- Used to specify that the IME does not need
1145             to show its extracted text UI.  For input methods that may be fullscreen,
1146             often when in landscape mode, this allows them to be smaller and let part
1147             of the application be shown behind.  Though there will likely be limited
1148             access to the application available from the user, it can make the
1149             experience of a (mostly) fullscreen IME less jarring.  Note that when
1150             this flag is specified the IME may <em>not</em> be set up to be able
1151             to display text, so it should only be used in situations where this is
1152             not needed.
1153             <p>Corresponds to
1154             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}. -->
1155        <flag name="flagNoExtractUi" value="0x10000000" />
1156        <!-- Used in conjunction with a custom action, this indicates that the
1157             action should not be available as an accessory button when the
1158             input method is full-screen.
1159             Note that by setting this flag, there can be cases where the action
1160             is simply never available to the user.  Setting this generally means
1161             that you think showing text being edited is more important than the
1162             action you have supplied.
1163             <p>Corresponds to
1164             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}. -->
1165        <flag name="flagNoAccessoryAction" value="0x20000000" />
1166        <!-- Used in conjunction with a custom action,
1167             this indicates that the action should not be available in-line as
1168             a replacement for the "enter" key.  Typically this is
1169             because the action has such a significant impact or is not recoverable
1170             enough that accidentally hitting it should be avoided, such as sending
1171             a message.    Note that {@link android.widget.TextView} will
1172             automatically set this flag for you on multi-line text views.
1173             <p>Corresponds to
1174             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}. -->
1175        <flag name="flagNoEnterAction" value="0x40000000" />
1176        <!-- Used to request that the IME should be capable of inputting ASCII
1177             characters.  The intention of this flag is to ensure that the user
1178             can type Roman alphabet characters in a {@link android.widget.TextView}
1179             used for, typically, account ID or password input.  It is expected that IMEs
1180             normally are able to input ASCII even without being told so (such IMEs
1181             already respect this flag in a sense), but there could be some cases they
1182             aren't when, for instance, only non-ASCII input languagaes like Arabic,
1183             Greek, Hebrew, Russian are enabled in the IME.  Applications need to be
1184             aware that the flag is not a guarantee, and not all IMEs will respect it.
1185             However, it is strongly recommended for IME authors to respect this flag
1186             especially when their IME could end up with a state that has only non-ASCII
1187             input languages enabled.
1188             <p>Corresponds to
1189             {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}. -->
1190        <flag name="flagForceAscii" value="0x80000000" />
1191    </attr>
1192
1193    <!-- A coordinate in the X dimension. -->
1194    <attr name="x" format="dimension" />
1195    <!-- A coordinate in the Y dimension. -->
1196    <attr name="y" format="dimension" />
1197
1198    <!-- Specifies how to place the content of an object, both
1199         on the x- and y-axis, within the object itself. -->
1200    <attr name="gravity">
1201        <!-- Push object to the top of its container, not changing its size. -->
1202        <flag name="top" value="0x30" />
1203        <!-- Push object to the bottom of its container, not changing its size. -->
1204        <flag name="bottom" value="0x50" />
1205        <!-- Push object to the left of its container, not changing its size. -->
1206        <flag name="left" value="0x03" />
1207        <!-- Push object to the right of its container, not changing its size. -->
1208        <flag name="right" value="0x05" />
1209        <!-- Place object in the vertical center of its container, not changing its size. -->
1210        <flag name="center_vertical" value="0x10" />
1211        <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
1212        <flag name="fill_vertical" value="0x70" />
1213        <!-- Place object in the horizontal center of its container, not changing its size. -->
1214        <flag name="center_horizontal" value="0x01" />
1215        <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
1216        <flag name="fill_horizontal" value="0x07" />
1217        <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
1218        <flag name="center" value="0x11" />
1219        <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
1220        <flag name="fill" value="0x77" />
1221        <!-- Additional option that can be set to have the top and/or bottom edges of
1222             the child clipped to its container's bounds.
1223             The clip will be based on the vertical gravity: a top gravity will clip the bottom
1224             edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
1225        <flag name="clip_vertical" value="0x80" />
1226        <!-- Additional option that can be set to have the left and/or right edges of
1227             the child clipped to its container's bounds.
1228             The clip will be based on the horizontal gravity: a left gravity will clip the right
1229             edge, a right gravity will clip the left edge, and neither will clip both edges. -->
1230        <flag name="clip_horizontal" value="0x08" />
1231        <!-- Push object to the beginning of its container, not changing its size. -->
1232        <flag name="start" value="0x00800003" />
1233        <!-- Push object to the end of its container, not changing its size. -->
1234        <flag name="end" value="0x00800005" />
1235    </attr>
1236
1237    <!-- Controls whether links such as urls and email addresses are
1238         automatically found and converted to clickable links.  The default
1239         value is "none", disabling this feature. -->
1240    <attr name="autoLink">
1241        <!-- Match no patterns (default). -->
1242        <flag name="none" value="0x00" />
1243        <!-- Match Web URLs. -->
1244        <flag name="web" value="0x01" />
1245        <!-- Match email addresses. -->
1246        <flag name="email" value="0x02" />
1247        <!-- Match phone numbers. -->
1248        <flag name="phone" value="0x04" />
1249        <!-- Match map addresses. -->
1250        <flag name="map" value="0x08" />
1251        <!-- Match all patterns (equivalent to web|email|phone|map). -->
1252        <flag name="all" value="0x0f" />
1253    </attr>
1254
1255    <!-- Reference to an array resource that will populate a list/adapter. -->
1256    <attr name="entries" format="reference" />
1257
1258    <!-- Standard gravity constant that a child can supply to its parent.
1259         Defines how to place the view, both its x- and y-axis, within its parent view group. -->
1260    <attr name="layout_gravity">
1261        <!-- Push object to the top of its container, not changing its size. -->
1262        <flag name="top" value="0x30" />
1263        <!-- Push object to the bottom of its container, not changing its size. -->
1264        <flag name="bottom" value="0x50" />
1265        <!-- Push object to the left of its container, not changing its size. -->
1266        <flag name="left" value="0x03" />
1267        <!-- Push object to the right of its container, not changing its size. -->
1268        <flag name="right" value="0x05" />
1269        <!-- Place object in the vertical center of its container, not changing its size. -->
1270        <flag name="center_vertical" value="0x10" />
1271        <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
1272        <flag name="fill_vertical" value="0x70" />
1273        <!-- Place object in the horizontal center of its container, not changing its size. -->
1274        <flag name="center_horizontal" value="0x01" />
1275        <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
1276        <flag name="fill_horizontal" value="0x07" />
1277        <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
1278        <flag name="center" value="0x11" />
1279        <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
1280        <flag name="fill" value="0x77" />
1281        <!-- Additional option that can be set to have the top and/or bottom edges of
1282             the child clipped to its container's bounds.
1283             The clip will be based on the vertical gravity: a top gravity will clip the bottom
1284             edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
1285        <flag name="clip_vertical" value="0x80" />
1286        <!-- Additional option that can be set to have the left and/or right edges of
1287             the child clipped to its container's bounds.
1288             The clip will be based on the horizontal gravity: a left gravity will clip the right
1289             edge, a right gravity will clip the left edge, and neither will clip both edges. -->
1290        <flag name="clip_horizontal" value="0x08" />
1291        <!-- Push object to the beginning of its container, not changing its size. -->
1292        <flag name="start" value="0x00800003" />
1293        <!-- Push object to the end of its container, not changing its size. -->
1294        <flag name="end" value="0x00800005" />
1295    </attr>
1296
1297    <!-- Standard orientation constant. -->
1298    <attr name="orientation">
1299        <!-- Defines an horizontal widget. -->
1300        <enum name="horizontal" value="0" />
1301        <!-- Defines a vertical widget. -->
1302        <enum name="vertical" value="1" />
1303    </attr>
1304
1305    <!-- Alignment constants. -->
1306    <attr name="alignmentMode">
1307        <!-- Align the bounds of the children.
1308        See {@link android.widget.GridLayout#ALIGN_BOUNDS}. -->
1309        <enum name="alignBounds" value="0" />
1310        <!-- Align the margins of the children.
1311        See {@link android.widget.GridLayout#ALIGN_MARGINS}. -->
1312        <enum name="alignMargins" value="1" />
1313    </attr>
1314
1315    <!-- ========================== -->
1316    <!-- Key Codes                  -->
1317    <!-- ========================== -->
1318    <eat-comment />
1319
1320    <!-- This enum provides the same keycode values as can be found in
1321        {@link android.view.KeyEvent}. -->
1322    <attr name="keycode">
1323        <enum name="KEYCODE_UNKNOWN" value="0" />
1324        <enum name="KEYCODE_SOFT_LEFT" value="1" />
1325        <enum name="KEYCODE_SOFT_RIGHT" value="2" />
1326        <enum name="KEYCODE_HOME" value="3" />
1327        <enum name="KEYCODE_BACK" value="4" />
1328        <enum name="KEYCODE_CALL" value="5" />
1329        <enum name="KEYCODE_ENDCALL" value="6" />
1330        <enum name="KEYCODE_0" value="7" />
1331        <enum name="KEYCODE_1" value="8" />
1332        <enum name="KEYCODE_2" value="9" />
1333        <enum name="KEYCODE_3" value="10" />
1334        <enum name="KEYCODE_4" value="11" />
1335        <enum name="KEYCODE_5" value="12" />
1336        <enum name="KEYCODE_6" value="13" />
1337        <enum name="KEYCODE_7" value="14" />
1338        <enum name="KEYCODE_8" value="15" />
1339        <enum name="KEYCODE_9" value="16" />
1340        <enum name="KEYCODE_STAR" value="17" />
1341        <enum name="KEYCODE_POUND" value="18" />
1342        <enum name="KEYCODE_DPAD_UP" value="19" />
1343        <enum name="KEYCODE_DPAD_DOWN" value="20" />
1344        <enum name="KEYCODE_DPAD_LEFT" value="21" />
1345        <enum name="KEYCODE_DPAD_RIGHT" value="22" />
1346        <enum name="KEYCODE_DPAD_CENTER" value="23" />
1347        <enum name="KEYCODE_VOLUME_UP" value="24" />
1348        <enum name="KEYCODE_VOLUME_DOWN" value="25" />
1349        <enum name="KEYCODE_POWER" value="26" />
1350        <enum name="KEYCODE_CAMERA" value="27" />
1351        <enum name="KEYCODE_CLEAR" value="28" />
1352        <enum name="KEYCODE_A" value="29" />
1353        <enum name="KEYCODE_B" value="30" />
1354        <enum name="KEYCODE_C" value="31" />
1355        <enum name="KEYCODE_D" value="32" />
1356        <enum name="KEYCODE_E" value="33" />
1357        <enum name="KEYCODE_F" value="34" />
1358        <enum name="KEYCODE_G" value="35" />
1359        <enum name="KEYCODE_H" value="36" />
1360        <enum name="KEYCODE_I" value="37" />
1361        <enum name="KEYCODE_J" value="38" />
1362        <enum name="KEYCODE_K" value="39" />
1363        <enum name="KEYCODE_L" value="40" />
1364        <enum name="KEYCODE_M" value="41" />
1365        <enum name="KEYCODE_N" value="42" />
1366        <enum name="KEYCODE_O" value="43" />
1367        <enum name="KEYCODE_P" value="44" />
1368        <enum name="KEYCODE_Q" value="45" />
1369        <enum name="KEYCODE_R" value="46" />
1370        <enum name="KEYCODE_S" value="47" />
1371        <enum name="KEYCODE_T" value="48" />
1372        <enum name="KEYCODE_U" value="49" />
1373        <enum name="KEYCODE_V" value="50" />
1374        <enum name="KEYCODE_W" value="51" />
1375        <enum name="KEYCODE_X" value="52" />
1376        <enum name="KEYCODE_Y" value="53" />
1377        <enum name="KEYCODE_Z" value="54" />
1378        <enum name="KEYCODE_COMMA" value="55" />
1379        <enum name="KEYCODE_PERIOD" value="56" />
1380        <enum name="KEYCODE_ALT_LEFT" value="57" />
1381        <enum name="KEYCODE_ALT_RIGHT" value="58" />
1382        <enum name="KEYCODE_SHIFT_LEFT" value="59" />
1383        <enum name="KEYCODE_SHIFT_RIGHT" value="60" />
1384        <enum name="KEYCODE_TAB" value="61" />
1385        <enum name="KEYCODE_SPACE" value="62" />
1386        <enum name="KEYCODE_SYM" value="63" />
1387        <enum name="KEYCODE_EXPLORER" value="64" />
1388        <enum name="KEYCODE_ENVELOPE" value="65" />
1389        <enum name="KEYCODE_ENTER" value="66" />
1390        <enum name="KEYCODE_DEL" value="67" />
1391        <enum name="KEYCODE_GRAVE" value="68" />
1392        <enum name="KEYCODE_MINUS" value="69" />
1393        <enum name="KEYCODE_EQUALS" value="70" />
1394        <enum name="KEYCODE_LEFT_BRACKET" value="71" />
1395        <enum name="KEYCODE_RIGHT_BRACKET" value="72" />
1396        <enum name="KEYCODE_BACKSLASH" value="73" />
1397        <enum name="KEYCODE_SEMICOLON" value="74" />
1398        <enum name="KEYCODE_APOSTROPHE" value="75" />
1399        <enum name="KEYCODE_SLASH" value="76" />
1400        <enum name="KEYCODE_AT" value="77" />
1401        <enum name="KEYCODE_NUM" value="78" />
1402        <enum name="KEYCODE_HEADSETHOOK" value="79" />
1403        <enum name="KEYCODE_FOCUS" value="80" />
1404        <enum name="KEYCODE_PLUS" value="81" />
1405        <enum name="KEYCODE_MENU" value="82" />
1406        <enum name="KEYCODE_NOTIFICATION" value="83" />
1407        <enum name="KEYCODE_SEARCH" value="84" />
1408        <enum name="KEYCODE_MEDIA_PLAY_PAUSE" value="85" />
1409        <enum name="KEYCODE_MEDIA_STOP" value="86" />
1410        <enum name="KEYCODE_MEDIA_NEXT" value="87" />
1411        <enum name="KEYCODE_MEDIA_PREVIOUS" value="88" />
1412        <enum name="KEYCODE_MEDIA_REWIND" value="89" />
1413        <enum name="KEYCODE_MEDIA_FAST_FORWARD" value="90" />
1414        <enum name="KEYCODE_MUTE" value="91" />
1415        <enum name="KEYCODE_PAGE_UP" value="92" />
1416        <enum name="KEYCODE_PAGE_DOWN" value="93" />
1417        <enum name="KEYCODE_PICTSYMBOLS" value="94" />
1418        <enum name="KEYCODE_SWITCH_CHARSET" value="95" />
1419        <enum name="KEYCODE_BUTTON_A" value="96" />
1420        <enum name="KEYCODE_BUTTON_B" value="97" />
1421        <enum name="KEYCODE_BUTTON_C" value="98" />
1422        <enum name="KEYCODE_BUTTON_X" value="99" />
1423        <enum name="KEYCODE_BUTTON_Y" value="100" />
1424        <enum name="KEYCODE_BUTTON_Z" value="101" />
1425        <enum name="KEYCODE_BUTTON_L1" value="102" />
1426        <enum name="KEYCODE_BUTTON_R1" value="103" />
1427        <enum name="KEYCODE_BUTTON_L2" value="104" />
1428        <enum name="KEYCODE_BUTTON_R2" value="105" />
1429        <enum name="KEYCODE_BUTTON_THUMBL" value="106" />
1430        <enum name="KEYCODE_BUTTON_THUMBR" value="107" />
1431        <enum name="KEYCODE_BUTTON_START" value="108" />
1432        <enum name="KEYCODE_BUTTON_SELECT" value="109" />
1433        <enum name="KEYCODE_BUTTON_MODE" value="110" />
1434        <enum name="KEYCODE_ESCAPE" value="111" />
1435        <enum name="KEYCODE_FORWARD_DEL" value="112" />
1436        <enum name="KEYCODE_CTRL_LEFT" value="113" />
1437        <enum name="KEYCODE_CTRL_RIGHT" value="114" />
1438        <enum name="KEYCODE_CAPS_LOCK" value="115" />
1439        <enum name="KEYCODE_SCROLL_LOCK" value="116" />
1440        <enum name="KEYCODE_META_LEFT" value="117" />
1441        <enum name="KEYCODE_META_RIGHT" value="118" />
1442        <enum name="KEYCODE_FUNCTION" value="119" />
1443        <enum name="KEYCODE_SYSRQ" value="120" />
1444        <enum name="KEYCODE_BREAK" value="121" />
1445        <enum name="KEYCODE_MOVE_HOME" value="122" />
1446        <enum name="KEYCODE_MOVE_END" value="123" />
1447        <enum name="KEYCODE_INSERT" value="124" />
1448        <enum name="KEYCODE_FORWARD" value="125" />
1449        <enum name="KEYCODE_MEDIA_PLAY" value="126" />
1450        <enum name="KEYCODE_MEDIA_PAUSE" value="127" />
1451        <enum name="KEYCODE_MEDIA_CLOSE" value="128" />
1452        <enum name="KEYCODE_MEDIA_EJECT" value="129" />
1453        <enum name="KEYCODE_MEDIA_RECORD" value="130" />
1454        <enum name="KEYCODE_F1" value="131" />
1455        <enum name="KEYCODE_F2" value="132" />
1456        <enum name="KEYCODE_F3" value="133" />
1457        <enum name="KEYCODE_F4" value="134" />
1458        <enum name="KEYCODE_F5" value="135" />
1459        <enum name="KEYCODE_F6" value="136" />
1460        <enum name="KEYCODE_F7" value="137" />
1461        <enum name="KEYCODE_F8" value="138" />
1462        <enum name="KEYCODE_F9" value="139" />
1463        <enum name="KEYCODE_F10" value="140" />
1464        <enum name="KEYCODE_F11" value="141" />
1465        <enum name="KEYCODE_F12" value="142" />
1466        <enum name="KEYCODE_NUM_LOCK" value="143" />
1467        <enum name="KEYCODE_NUMPAD_0" value="144" />
1468        <enum name="KEYCODE_NUMPAD_1" value="145" />
1469        <enum name="KEYCODE_NUMPAD_2" value="146" />
1470        <enum name="KEYCODE_NUMPAD_3" value="147" />
1471        <enum name="KEYCODE_NUMPAD_4" value="148" />
1472        <enum name="KEYCODE_NUMPAD_5" value="149" />
1473        <enum name="KEYCODE_NUMPAD_6" value="150" />
1474        <enum name="KEYCODE_NUMPAD_7" value="151" />
1475        <enum name="KEYCODE_NUMPAD_8" value="152" />
1476        <enum name="KEYCODE_NUMPAD_9" value="153" />
1477        <enum name="KEYCODE_NUMPAD_DIVIDE" value="154" />
1478        <enum name="KEYCODE_NUMPAD_MULTIPLY" value="155" />
1479        <enum name="KEYCODE_NUMPAD_SUBTRACT" value="156" />
1480        <enum name="KEYCODE_NUMPAD_ADD" value="157" />
1481        <enum name="KEYCODE_NUMPAD_DOT" value="158" />
1482        <enum name="KEYCODE_NUMPAD_COMMA" value="159" />
1483        <enum name="KEYCODE_NUMPAD_ENTER" value="160" />
1484        <enum name="KEYCODE_NUMPAD_EQUALS" value="161" />
1485        <enum name="KEYCODE_NUMPAD_LEFT_PAREN" value="162" />
1486        <enum name="KEYCODE_NUMPAD_RIGHT_PAREN" value="163" />
1487        <enum name="KEYCODE_VOLUME_MUTE" value="164" />
1488        <enum name="KEYCODE_INFO" value="165" />
1489        <enum name="KEYCODE_CHANNEL_UP" value="166" />
1490        <enum name="KEYCODE_CHANNEL_DOWN" value="167" />
1491        <enum name="KEYCODE_ZOOM_IN" value="168" />
1492        <enum name="KEYCODE_ZOOM_OUT" value="169" />
1493        <enum name="KEYCODE_TV" value="170" />
1494        <enum name="KEYCODE_WINDOW" value="171" />
1495        <enum name="KEYCODE_GUIDE" value="172" />
1496        <enum name="KEYCODE_DVR" value="173" />
1497        <enum name="KEYCODE_BOOKMARK" value="174" />
1498        <enum name="KEYCODE_CAPTIONS" value="175" />
1499        <enum name="KEYCODE_SETTINGS" value="176" />
1500        <enum name="KEYCODE_TV_POWER" value="177" />
1501        <enum name="KEYCODE_TV_INPUT" value="178" />
1502        <enum name="KEYCODE_STB_POWER" value="179" />
1503        <enum name="KEYCODE_STB_INPUT" value="180" />
1504        <enum name="KEYCODE_AVR_POWER" value="181" />
1505        <enum name="KEYCODE_AVR_INPUT" value="182" />
1506        <enum name="KEYCODE_PROG_GRED" value="183" />
1507        <enum name="KEYCODE_PROG_GREEN" value="184" />
1508        <enum name="KEYCODE_PROG_YELLOW" value="185" />
1509        <enum name="KEYCODE_PROG_BLUE" value="186" />
1510        <enum name="KEYCODE_APP_SWITCH" value="187" />
1511        <enum name="KEYCODE_BUTTON_1" value="188" />
1512        <enum name="KEYCODE_BUTTON_2" value="189" />
1513        <enum name="KEYCODE_BUTTON_3" value="190" />
1514        <enum name="KEYCODE_BUTTON_4" value="191" />
1515        <enum name="KEYCODE_BUTTON_5" value="192" />
1516        <enum name="KEYCODE_BUTTON_6" value="193" />
1517        <enum name="KEYCODE_BUTTON_7" value="194" />
1518        <enum name="KEYCODE_BUTTON_8" value="195" />
1519        <enum name="KEYCODE_BUTTON_9" value="196" />
1520        <enum name="KEYCODE_BUTTON_10" value="197" />
1521        <enum name="KEYCODE_BUTTON_11" value="198" />
1522        <enum name="KEYCODE_BUTTON_12" value="199" />
1523        <enum name="KEYCODE_BUTTON_13" value="200" />
1524        <enum name="KEYCODE_BUTTON_14" value="201" />
1525        <enum name="KEYCODE_BUTTON_15" value="202" />
1526        <enum name="KEYCODE_BUTTON_16" value="203" />
1527        <enum name="KEYCODE_LANGUAGE_SWITCH" value="204" />
1528        <enum name="KEYCODE_MANNER_MODE" value="205" />
1529        <enum name="KEYCODE_3D_MODE" value="206" />
1530        <enum name="KEYCODE_CONTACTS" value="207" />
1531        <enum name="KEYCODE_CALENDAR" value="208" />
1532        <enum name="KEYCODE_MUSIC" value="209" />
1533        <enum name="KEYCODE_CALCULATOR" value="210" />
1534        <enum name="KEYCODE_ZENKAKU_HANKAKU" value="211" />
1535        <enum name="KEYCODE_EISU" value="212" />
1536        <enum name="KEYCODE_MUHENKAN" value="213" />
1537        <enum name="KEYCODE_HENKAN" value="214" />
1538        <enum name="KEYCODE_KATAKANA_HIRAGANA" value="215" />
1539        <enum name="KEYCODE_YEN" value="216" />
1540        <enum name="KEYCODE_RO" value="217" />
1541        <enum name="KEYCODE_KANA" value="218" />
1542    </attr>
1543
1544    <!-- ***************************************************************** -->
1545    <!-- These define collections of attributes that can are with classes. -->
1546    <!-- ***************************************************************** -->
1547
1548    <!-- ========================== -->
1549    <!-- Special attribute classes. -->
1550    <!-- ========================== -->
1551    <eat-comment />
1552
1553    <!-- The set of attributes that describe a Windows's theme. -->
1554    <declare-styleable name="Window">
1555        <attr name="windowBackground" />
1556        <attr name="windowContentOverlay" />
1557        <attr name="windowFrame" />
1558        <attr name="windowNoTitle" />
1559        <attr name="windowFullscreen" />
1560        <attr name="windowIsFloating" />
1561        <attr name="windowIsTranslucent" />
1562        <attr name="windowShowWallpaper" />
1563        <attr name="windowAnimationStyle" />
1564        <attr name="windowSoftInputMode" />
1565        <attr name="windowDisablePreview" />
1566        <attr name="windowNoDisplay" />
1567        <attr name="textColor" />
1568        <attr name="backgroundDimEnabled" />
1569        <attr name="backgroundDimAmount" />
1570        <attr name="windowActionBar" />
1571        <attr name="windowActionModeOverlay" />
1572        <attr name="windowActionBarOverlay" />
1573        <attr name="windowSplitActionBar" />
1574        <attr name="windowEnableSplitTouch" />
1575        <attr name="windowCloseOnTouchOutside" />
1576        <!-- The minimum width the window is allowed to be, along the major
1577             axis of the screen.  That is, when in landscape.  Can be either
1578             an absolute dimension or a fraction of the screen size in that
1579             dimension. -->
1580        <attr name="windowMinWidthMajor" format="dimension|fraction" />
1581        <!-- The minimum width the window is allowed to be, along the minor
1582             axis of the screen.  That is, when in portrait.  Can be either
1583             an absolute dimension or a fraction of the screen size in that
1584             dimension. -->
1585        <attr name="windowMinWidthMinor" format="dimension|fraction" />
1586
1587        <!-- A fixed width for the window along the major axis of the screen,
1588             that is, when in landscape. Can be either an absolute dimension
1589             or a fraction of the screen size in that dimension. -->
1590        <attr name="windowFixedWidthMajor" format="dimension|fraction" />
1591        <!-- A fixed height for the window along the minor axis of the screen,
1592             that is, when in landscape. Can be either an absolute dimension
1593             or a fraction of the screen size in that dimension. -->
1594        <attr name="windowFixedHeightMinor" format="dimension|fraction" />
1595
1596        <!-- A fixed width for the window along the minor axis of the screen,
1597             that is, when in portrait. Can be either an absolute dimension
1598             or a fraction of the screen size in that dimension. -->
1599        <attr name="windowFixedWidthMinor" format="dimension|fraction" />
1600        <!-- A fixed height for the window along the major axis of the screen,
1601             that is, when in portrait. Can be either an absolute dimension
1602             or a fraction of the screen size in that dimension. -->
1603        <attr name="windowFixedHeightMajor" format="dimension|fraction" />
1604    </declare-styleable>
1605
1606    <!-- The set of attributes that describe a AlertDialog's theme. -->
1607    <declare-styleable name="AlertDialog">
1608        <attr name="fullDark" format="reference|color" />
1609        <attr name="topDark" format="reference|color" />
1610        <attr name="centerDark" format="reference|color" />
1611        <attr name="bottomDark" format="reference|color" />
1612        <attr name="fullBright" format="reference|color" />
1613        <attr name="topBright" format="reference|color" />
1614        <attr name="centerBright" format="reference|color" />
1615        <attr name="bottomBright" format="reference|color" />
1616        <attr name="bottomMedium" format="reference|color" />
1617        <attr name="centerMedium" format="reference|color" />
1618        <attr name="layout" />
1619        <attr name="listLayout" format="reference" />
1620        <attr name="multiChoiceItemLayout" format="reference" />
1621        <attr name="singleChoiceItemLayout" format="reference" />
1622        <attr name="listItemLayout" format="reference" />
1623        <attr name="progressLayout" format="reference" />
1624        <attr name="horizontalProgressLayout" format="reference" />
1625    </declare-styleable>
1626
1627    <!-- Fragment animation class attributes. -->
1628    <declare-styleable name="FragmentAnimation">
1629        <attr name="fragmentOpenEnterAnimation" format="reference" />
1630        <attr name="fragmentOpenExitAnimation" format="reference" />
1631        <attr name="fragmentCloseEnterAnimation" format="reference" />
1632        <attr name="fragmentCloseExitAnimation" format="reference" />
1633        <attr name="fragmentFadeEnterAnimation" format="reference" />
1634        <attr name="fragmentFadeExitAnimation" format="reference" />
1635    </declare-styleable>
1636
1637    <!-- Window animation class attributes. -->
1638    <declare-styleable name="WindowAnimation">
1639        <!-- The animation used when a window is being added. -->
1640        <attr name="windowEnterAnimation" format="reference" />
1641        <!-- The animation used when a window is being removed. -->
1642        <attr name="windowExitAnimation" format="reference" />
1643        <!-- The animation used when a window is going from INVISIBLE to VISIBLE. -->
1644        <attr name="windowShowAnimation" format="reference" />
1645        <!-- The animation used when a window is going from VISIBLE to INVISIBLE. -->
1646        <attr name="windowHideAnimation" format="reference" />
1647
1648        <!--  When opening a new activity, this is the animation that is
1649              run on the next activity (which is entering the screen). -->
1650        <attr name="activityOpenEnterAnimation" format="reference" />
1651        <!--  When opening a new activity, this is the animation that is
1652              run on the previous activity (which is exiting the screen). -->
1653        <attr name="activityOpenExitAnimation" format="reference" />
1654        <!--  When closing the current activity, this is the animation that is
1655              run on the next activity (which is entering the screen). -->
1656        <attr name="activityCloseEnterAnimation" format="reference" />
1657        <!--  When closing the current activity, this is the animation that is
1658              run on the current activity (which is exiting the screen). -->
1659        <attr name="activityCloseExitAnimation" format="reference" />
1660        <!--  When opening an activity in a new task, this is the animation that is
1661              run on the activity of the new task (which is entering the screen). -->
1662        <attr name="taskOpenEnterAnimation" format="reference" />
1663        <!--  When opening an activity in a new task, this is the animation that is
1664              run on the activity of the old task (which is exiting the screen). -->
1665        <attr name="taskOpenExitAnimation" format="reference" />
1666        <!--  When closing the last activity of a task, this is the animation that is
1667              run on the activity of the next task (which is entering the screen). -->
1668        <attr name="taskCloseEnterAnimation" format="reference" />
1669        <!--  When opening an activity in a new task, this is the animation that is
1670              run on the activity of the old task (which is exiting the screen). -->
1671        <attr name="taskCloseExitAnimation" format="reference" />
1672        <!--  When bringing an existing task to the foreground, this is the
1673              animation that is run on the top activity of the task being brought
1674              to the foreground (which is entering the screen). -->
1675        <attr name="taskToFrontEnterAnimation" format="reference" />
1676        <!--  When bringing an existing task to the foreground, this is the
1677              animation that is run on the current foreground activity
1678              (which is exiting the screen). -->
1679        <attr name="taskToFrontExitAnimation" format="reference" />
1680        <!--  When sending the current task to the background, this is the
1681              animation that is run on the top activity of the task behind
1682              it (which is entering the screen). -->
1683        <attr name="taskToBackEnterAnimation" format="reference" />
1684        <!--  When sending the current task to the background, this is the
1685              animation that is run on the top activity of the current task
1686              (which is exiting the screen). -->
1687        <attr name="taskToBackExitAnimation" format="reference" />
1688
1689        <!--  When opening a new activity that shows the wallpaper, while
1690              currently not showing the wallpaper, this is the animation that
1691              is run on the new wallpaper activity (which is entering the screen). -->
1692        <attr name="wallpaperOpenEnterAnimation" format="reference" />
1693        <!--  When opening a new activity that shows the wallpaper, while
1694              currently not showing the wallpaper, this is the animation that
1695              is run on the current activity (which is exiting the screen). -->
1696        <attr name="wallpaperOpenExitAnimation" format="reference" />
1697        <!--  When opening a new activity that hides the wallpaper, while
1698              currently showing the wallpaper, this is the animation that
1699              is run on the new activity (which is entering the screen). -->
1700        <attr name="wallpaperCloseEnterAnimation" format="reference" />
1701        <!--  When opening a new activity that hides the wallpaper, while
1702              currently showing the wallpaper, this is the animation that
1703              is run on the old wallpaper activity (which is exiting the screen). -->
1704        <attr name="wallpaperCloseExitAnimation" format="reference" />
1705
1706        <!--  When opening a new activity that is on top of the wallpaper
1707              when the current activity is also on top of the wallpaper,
1708              this is the animation that is run on the new activity
1709              (which is entering the screen).  The wallpaper remains
1710              static behind the animation. -->
1711        <attr name="wallpaperIntraOpenEnterAnimation" format="reference" />
1712        <!--  When opening a new activity that is on top of the wallpaper
1713              when the current activity is also on top of the wallpaper,
1714              this is the animation that is run on the current activity
1715              (which is exiting the screen).  The wallpaper remains
1716              static behind the animation. -->
1717        <attr name="wallpaperIntraOpenExitAnimation" format="reference" />
1718        <!--  When closing a foreround activity that is on top of the wallpaper
1719              when the previous activity is also on top of the wallpaper,
1720              this is the animation that is run on the previous activity
1721              (which is entering the screen).  The wallpaper remains
1722              static behind the animation. -->
1723        <attr name="wallpaperIntraCloseEnterAnimation" format="reference" />
1724        <!--  When closing a foreround activity that is on top of the wallpaper
1725              when the previous activity is also on top of the wallpaper,
1726              this is the animation that is run on the current activity
1727              (which is exiting the screen).  The wallpaper remains
1728              static behind the animation. -->
1729        <attr name="wallpaperIntraCloseExitAnimation" format="reference" />
1730    </declare-styleable>
1731
1732    <!-- ============================= -->
1733    <!-- View package class attributes -->
1734    <!-- ============================= -->
1735    <eat-comment />
1736
1737    <!-- Attributes that can be used with {@link android.view.View} or
1738         any of its subclasses.  Also see {@link #ViewGroup_Layout} for
1739         attributes that are processed by the view's parent. -->
1740    <declare-styleable name="View">
1741        <!-- Supply an identifier name for this view, to later retrieve it
1742             with {@link android.view.View#findViewById View.findViewById()} or
1743             {@link android.app.Activity#findViewById Activity.findViewById()}.
1744             This must be a
1745             resource reference; typically you set this using the
1746             <code>@+</code> syntax to create a new ID resources.
1747             For example: <code>android:id="@+id/my_id"</code> which
1748             allows you to later retrieve the view
1749             with <code>findViewById(R.id.my_id)</code>. -->
1750        <attr name="id" format="reference" />
1751
1752        <!-- Supply a tag for this view containing a String, to be retrieved
1753             later with {@link android.view.View#getTag View.getTag()} or
1754             searched for with {@link android.view.View#findViewWithTag
1755             View.findViewWithTag()}.  It is generally preferable to use
1756             IDs (through the android:id attribute) instead of tags because
1757             they are faster and allow for compile-time type checking. -->
1758        <attr name="tag" format="string" />
1759
1760        <!-- The initial horizontal scroll offset, in pixels.-->
1761        <attr name="scrollX" format="dimension" />
1762
1763        <!-- The initial vertical scroll offset, in pixels. -->
1764        <attr name="scrollY" format="dimension" />
1765
1766        <!-- A drawable to use as the background.  This can be either a reference
1767             to a full drawable resource (such as a PNG image, 9-patch,
1768             XML state list description, etc), or a solid color such as "#ff000000"
1769            (black). -->
1770        <attr name="background" format="reference|color" />
1771
1772        <!-- Sets the padding, in pixels, of all four edges.  Padding is defined as
1773             space between the edges of the view and the view's content. A views size
1774             will include it's padding.  If a {@link android.R.attr#background}
1775             is provided, the padding will initially be set to that (0 if the
1776             drawable does not have padding).  Explicitly setting a padding value
1777             will override the corresponding padding found in the background. -->
1778        <attr name="padding" format="dimension" />
1779        <!-- Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}. -->
1780        <attr name="paddingLeft" format="dimension" />
1781        <!-- Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}. -->
1782        <attr name="paddingTop" format="dimension" />
1783        <!-- Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}. -->
1784        <attr name="paddingRight" format="dimension" />
1785        <!-- Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}. -->
1786        <attr name="paddingBottom" format="dimension" />
1787        <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
1788        <attr name="paddingStart" format="dimension" />
1789        <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
1790        <attr name="paddingEnd" format="dimension" />
1791
1792        <!-- Boolean that controls whether a view can take focus.  By default the user can not
1793             move focus to a view; by setting this attribute to true the view is
1794             allowed to take focus.  This value does not impact the behavior of
1795             directly calling {@link android.view.View#requestFocus}, which will
1796             always request focus regardless of this view.  It only impacts where
1797             focus navigation will try to move focus. -->
1798        <attr name="focusable" format="boolean" />
1799
1800        <!-- Boolean that controls whether a view can take focus while in touch mode.
1801             If this is true for a view, that view can gain focus when clicked on, and can keep
1802             focus if another view is clicked on that doesn't have this attribute set to true. -->
1803        <attr name="focusableInTouchMode" format="boolean" />
1804
1805        <!-- Controls the initial visibility of the view.  -->
1806        <attr name="visibility">
1807            <!-- Visible on screen; the default value. -->
1808            <enum name="visible" value="0" />
1809            <!-- Not displayed, but taken into account during layout (space is left for it). -->
1810            <enum name="invisible" value="1" />
1811            <!-- Completely hidden, as if the view had not been added. -->
1812            <enum name="gone" value="2" />
1813        </attr>
1814
1815        <!-- Boolean internal attribute to adjust view layout based on
1816             system windows such as the status bar.
1817             If true, adjusts the padding of this view to leave space for the system windows.
1818             Will only take effect if this view is in a non-embedded activity. -->
1819        <attr name="fitsSystemWindows" format="boolean" />
1820
1821        <!-- Defines which scrollbars should be displayed on scrolling or not. -->
1822        <attr name="scrollbars">
1823            <!-- No scrollbar is displayed. -->
1824            <flag name="none" value="0x00000000" />
1825            <!-- Displays horizontal scrollbar only. -->
1826            <flag name="horizontal" value="0x00000100" />
1827            <!-- Displays vertical scrollbar only. -->
1828            <flag name="vertical" value="0x00000200" />
1829        </attr>
1830
1831        <!-- Controls the scrollbar style and position. The scrollbars can be overlaid or
1832             inset. When inset, they add to the padding of the view. And the
1833             scrollbars can be drawn inside the padding area or on the edge of
1834             the view. For example, if a view has a background drawable and you
1835             want to draw the scrollbars inside the padding specified by the
1836             drawable, you can use insideOverlay or insideInset. If you want them
1837             to appear at the edge of the view, ignoring the padding, then you can
1838             use outsideOverlay or outsideInset.-->
1839        <attr name="scrollbarStyle">
1840            <!-- Inside the padding and overlaid -->
1841            <enum name="insideOverlay" value="0x0" />
1842            <!-- Inside the padding and inset -->
1843            <enum name="insideInset" value="0x01000000" />
1844            <!-- Edge of the view and overlaid -->
1845            <enum name="outsideOverlay" value="0x02000000" />
1846            <!-- Edge of the view and inset -->
1847            <enum name="outsideInset" value="0x03000000" />
1848        </attr>
1849
1850        <!-- Set this if the view will serve as a scrolling container, meaing
1851             that it can be resized to shrink its overall window so that there
1852             will be space for an input method.  If not set, the default
1853             value will be true if "scrollbars" has the vertical scrollbar
1854             set, else it will be false. -->
1855        <attr name="isScrollContainer" format="boolean" />
1856
1857          <!-- Defines whether to fade out scrollbars when they are not in use. -->
1858         <attr name="fadeScrollbars" format="boolean" />
1859         <!-- Defines the delay in milliseconds that a scrollbar takes to fade out. -->
1860         <attr name="scrollbarFadeDuration" format="integer" />
1861         <!-- Defines the delay in milliseconds that a scrollbar waits before fade out. -->
1862        <attr name="scrollbarDefaultDelayBeforeFade" format="integer" />
1863        <!-- Sets the width of vertical scrollbars and height of horizontal scrollbars. -->
1864        <attr name="scrollbarSize" format="dimension" />
1865        <!-- Defines the horizontal scrollbar thumb drawable. -->
1866        <attr name="scrollbarThumbHorizontal" format="reference" />
1867        <!-- Defines the vertical scrollbar thumb drawable. -->
1868        <attr name="scrollbarThumbVertical" format="reference" />
1869        <!-- Defines the horizontal scrollbar track drawable. -->
1870        <attr name="scrollbarTrackHorizontal" format="reference" />
1871        <!-- Defines the vertical scrollbar track drawable. -->
1872        <attr name="scrollbarTrackVertical" format="reference" />
1873        <!-- Defines whether the horizontal scrollbar track should always be drawn. -->
1874        <attr name="scrollbarAlwaysDrawHorizontalTrack" format="boolean" />
1875        <!-- Defines whether the vertical scrollbar track should always be drawn. -->
1876        <attr name="scrollbarAlwaysDrawVerticalTrack" format="boolean" />
1877
1878        <!-- This attribute is deprecated and will be ignored as of
1879             API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}).
1880             Using fading edges may introduce noticeable performance
1881             degradations and should be used only when required by the application's
1882             visual design. To request fading edges with API level 14 and above,
1883             use the <code>android:requiresFadingEdge</code> attribute instead. -->
1884        <attr name="fadingEdge">
1885            <!-- No edge is faded. -->
1886            <flag name="none" value="0x00000000" />
1887            <!-- Fades horizontal edges only. -->
1888            <flag name="horizontal" value="0x00001000" />
1889            <!-- Fades vertical edges only. -->
1890            <flag name="vertical" value="0x00002000" />
1891        </attr>
1892        <!-- Defines which edges should be faded on scrolling. -->
1893        <attr name="requiresFadingEdge">
1894            <!-- No edge is faded. -->
1895            <flag name="none" value="0x00000000" />
1896            <!-- Fades horizontal edges only. -->
1897            <flag name="horizontal" value="0x00001000" />
1898            <!-- Fades vertical edges only. -->
1899            <flag name="vertical" value="0x00002000" />
1900        </attr>
1901        <!-- Defines the length of the fading edges. -->
1902        <attr name="fadingEdgeLength" format="dimension" />
1903
1904        <!-- Defines the next view to give focus to when the next focus is
1905             {@link android.view.View#FOCUS_LEFT}.
1906
1907             If the reference refers to a view that does not exist or is part
1908             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
1909             will result when the reference is accessed.-->
1910        <attr name="nextFocusLeft" format="reference"/>
1911
1912        <!-- Defines the next view to give focus to when the next focus is
1913             {@link android.view.View#FOCUS_RIGHT}
1914
1915             If the reference refers to a view that does not exist or is part
1916             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
1917             will result when the reference is accessed.-->
1918        <attr name="nextFocusRight" format="reference"/>
1919
1920        <!-- Defines the next view to give focus to when the next focus is
1921             {@link android.view.View#FOCUS_UP}
1922
1923             If the reference refers to a view that does not exist or is part
1924             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
1925             will result when the reference is accessed.-->
1926        <attr name="nextFocusUp" format="reference"/>
1927
1928        <!-- Defines the next view to give focus to when the next focus is
1929             {@link android.view.View#FOCUS_DOWN}
1930
1931             If the reference refers to a view that does not exist or is part
1932             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
1933             will result when the reference is accessed.-->
1934        <attr name="nextFocusDown" format="reference"/>
1935
1936        <!-- Defines the next view to give focus to when the next focus is
1937             {@link android.view.View#FOCUS_FORWARD}
1938
1939             If the reference refers to a view that does not exist or is part
1940             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
1941             will result when the reference is accessed.-->
1942        <attr name="nextFocusForward" format="reference"/>
1943
1944        <!-- Defines whether this view reacts to click events. -->
1945        <attr name="clickable" format="boolean" />
1946
1947        <!-- Defines whether this view reacts to long click events. -->
1948        <attr name="longClickable" format="boolean" />
1949
1950        <!-- If unset, no state will be saved for this view when it is being
1951             frozen. The default is true, allowing the view to be saved
1952             (however it also must have an ID assigned to it for its
1953             state to be saved).  Setting this to false only disables the
1954             state for this view, not for its children which may still
1955             be saved. -->
1956        <attr name="saveEnabled" format="boolean" />
1957
1958        <!-- Specifies whether to filter touches when the view's window is obscured by
1959             another visible window.  When set to true, the view will not receive touches
1960             whenever a toast, dialog or other window appears above the view's window.
1961             Refer to the {@link android.view.View} security documentation for more details. -->
1962        <attr name="filterTouchesWhenObscured" format="boolean" />
1963
1964        <!-- Defines the quality of translucent drawing caches. This property is used
1965             only when the drawing cache is enabled and translucent. The default value is auto. -->
1966        <attr name="drawingCacheQuality">
1967            <!-- Lets the framework decide what quality level should be used
1968                 for the drawing cache. -->
1969            <enum name="auto" value="0" />
1970            <!-- Low quality. When set to low quality, the drawing cache uses a lower color
1971                 depth, thus losing precision in rendering gradients, but uses less memory. -->
1972            <enum name="low" value="1" />
1973            <!-- High quality. When set to high quality, the drawing cache uses a higher
1974                 color depth but uses more memory. -->
1975            <enum name="high" value="2" />
1976        </attr>
1977
1978        <!-- Controls whether the view's window should keep the screen on
1979             while visible. -->
1980        <attr name="keepScreenOn" format="boolean" />
1981
1982        <!-- When this attribute is set to true, the view gets its drawable state
1983             (focused, pressed, etc.) from its direct parent rather than from itself. -->
1984        <attr name="duplicateParentState" format="boolean" />
1985
1986        <!-- Defines the minimum height of the view. It is not guaranteed
1987             the view will be able to achieve this minimum height (for example,
1988             if its parent layout constrains it with less available height). -->
1989        <attr name="minHeight" />
1990
1991        <!-- Defines the minimum width of the view. It is not guaranteed
1992             the view will be able to achieve this minimum width (for example,
1993             if its parent layout constrains it with less available width). -->
1994        <attr name="minWidth" />
1995
1996        <!-- Boolean that controls whether a view should have sound effects
1997             enabled for events such as clicking and touching. -->
1998        <attr name="soundEffectsEnabled" format="boolean" />
1999
2000        <!-- Boolean that controls whether a view should have haptic feedback
2001             enabled for events such as long presses. -->
2002        <attr name="hapticFeedbackEnabled" format="boolean" />
2003
2004        <!-- Defines text that briefly describes content of the view. This property is used
2005             primarily for accessibility. Since some views do not have textual
2006             representation this attribute can be used for providing such. -->
2007        <attr name="contentDescription" format="string" localization="suggested" />
2008
2009        <!-- Name of the method in this View's context to invoke when the view is
2010             clicked. This name must correspond to a public method that takes
2011             exactly one parameter of type View. For instance, if you specify
2012             <code>android:onClick="sayHello"</code>, you must declare a
2013             <code>public void sayHello(View v)</code> method of your context
2014             (typically, your Activity). -->
2015        <attr name="onClick" format="string" />
2016
2017        <!-- Defines over-scrolling behavior. This property is used only if the
2018             View is scrollable. Over-scrolling is the ability for the user to
2019             receive feedback when attempting to scroll beyond meaningful content. -->
2020        <attr name="overScrollMode">
2021            <!-- Always show over-scroll effects, even if the content fits entirely
2022                 within the available space. -->
2023            <enum name="always" value="0" />
2024            <!-- Only show over-scroll effects if the content is large
2025                 enough to meaningfully scroll. -->
2026            <enum name="ifContentScrolls" value="1" />
2027            <!-- Never show over-scroll effects. -->
2028            <enum name="never" value="2" />
2029        </attr>
2030
2031        <!-- alpha property of the view, as a value between 0 (completely transparent) and 1
2032             (completely opaque). -->
2033        <attr name="alpha" format="float" />
2034
2035        <!-- translation in x of the view. This value is added post-layout to the left
2036             property of the view, which is set by its layout. -->
2037        <attr name="translationX" format="dimension" />
2038
2039        <!-- translation in y of the view. This value is added post-layout to the left
2040             property of the view, which is set by its layout. -->
2041        <attr name="translationY" format="dimension" />
2042
2043        <!-- x location of the pivot point around which the view will rotate and scale.
2044             This xml attribute sets the pivotX property of the View. -->
2045        <attr name="transformPivotX" format="dimension" />
2046
2047        <!-- y location of the pivot point around which the view will rotate and scale.
2048             This xml attribute sets the pivotY property of the View. -->
2049        <attr name="transformPivotY" format="dimension" />
2050
2051        <!-- rotation of the view, in degrees. -->
2052        <attr name="rotation" format="float" />
2053
2054        <!-- rotation of the view around the x axis, in degrees. -->
2055        <attr name="rotationX" format="float" />
2056
2057        <!-- rotation of the view around the y axis, in degrees. -->
2058        <attr name="rotationY" format="float" />
2059
2060        <!-- scale of the view in the x direction. -->
2061        <attr name="scaleX" format="float" />
2062
2063        <!-- scale of the view in the y direction. -->
2064        <attr name="scaleY" format="float" />
2065
2066        <!-- Determines which side the vertical scroll bar should be placed on. -->
2067        <attr name="verticalScrollbarPosition">
2068            <!-- Place the scroll bar wherever the system default determines. -->
2069            <enum name="defaultPosition" value="0" />
2070            <!-- Place the scroll bar on the left. -->
2071            <enum name="left" value="1" />
2072            <!-- Place the scroll bar on the right. -->
2073            <enum name="right" value="2" />
2074        </attr>
2075
2076        <!-- Specifies the type of layer backing this view. The default value is none.
2077             Refer to {@link android.view.View#setLayerType(int, android.graphics.Paint)}
2078             for more information.-->
2079        <attr name="layerType">
2080            <!-- Don't use a layer. -->
2081            <enum name="none" value="0" />
2082            <!-- Use a software layer. Refer to
2083                 {@link android.view.View#setLayerType(int, android.graphics.Paint) for
2084                 more information. -->
2085            <enum name="software" value="1" />
2086            <!-- Use a hardware layer. Refer to
2087                 {@link android.view.View#setLayerType(int, android.graphics.Paint) for
2088                 more information. -->
2089            <enum name="hardware" value="2" />
2090        </attr>
2091
2092        <!-- Defines the direction of layout drawing. This typically is associated with writing
2093             direction of the language script used. The possible values are "ltr" for Left-to-Right,
2094             "rtl" for Right-to-Left, "locale" and "inherit" from parent view. If there is nothing
2095             to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction
2096             used in "en-US". The default for this attribute is "inherit". -->
2097        <attr name="layoutDirection">
2098            <!-- Left-to-Right -->
2099            <enum name="ltr" value="0" />
2100            <!-- Right-to-Left -->
2101            <enum name="rtl" value="1" />
2102            <!-- Inherit from parent -->
2103            <enum name="inherit" value="2" />
2104            <!-- Locale -->
2105            <enum name="locale" value="3" />
2106        </attr>
2107
2108        <!-- Direction of the text. A heuristic is used to determine the resolved text direction
2109             of paragraphs. -->
2110         <attr name="textDirection" format="integer">
2111            <!-- Default -->
2112            <enum name="inherit" value="0" />
2113            <!-- Default for the root view. The first strong directional character determines the
2114                 paragraph direction.  If there is no strong directional character, the paragraph
2115                 direction is the view’s resolved layout direction. -->
2116            <enum name="firstStrong" value="1" />
2117            <!-- The paragraph direction is RTL if it contains any strong RTL character, otherwise
2118                 it is LTR if it contains any strong LTR characters.  If there are neither, the
2119                 paragraph direction is the view’s resolved layout direction. -->
2120            <enum name="anyRtl" value="2" />
2121            <!-- The paragraph direction is left to right. -->
2122            <enum name="ltr" value="3" />
2123            <!-- The paragraph direction is right to left. -->
2124            <enum name="rtl" value="4" />
2125            <!-- The paragraph direction is coming from the system Locale. -->
2126            <enum name="locale" value="5" />
2127        </attr>
2128
2129        <!-- Alignment of the text. A heuristic is used to determine the resolved
2130            text alignment. -->
2131        <attr name="textAlignment" format="integer">
2132            <!-- Default -->
2133            <enum name="inherit" value="0" />
2134            <!-- Default for the root view. The gravity determines the alignment, ALIGN_NORMAL,
2135                ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s
2136                text direction -->
2137            <enum name="gravity" value="1" />
2138            <!-- Align to the start of the paragraph, e.g. ALIGN_NORMAL. -->
2139            <enum name="textStart" value="2" />
2140            <!-- Align to the end of the paragraph, e.g. ALIGN_OPPOSITE. -->
2141            <enum name="textEnd" value="3" />
2142            <!-- Center the paragraph, e.g. ALIGN_CENTER. -->
2143            <enum name="center" value="4" />
2144            <!-- Align to the start of the view, which is ALIGN_LEFT if the view’s resolved
2145                layoutDirection is LTR, and ALIGN_RIGHT otherwise. -->
2146            <enum name="viewStart" value="5" />
2147            <!-- Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved
2148                layoutDirection is LTR, and ALIGN_LEFT otherwise -->
2149            <enum name="viewEnd" value="6" />
2150        </attr>
2151
2152        <!-- Controls how this View is important for accessibility which is if it fires
2153             accessibility events and if it is reported to accessibility services that
2154             query the screen. Note: While not recommended, an accessibility service may
2155             decide to ignore this attribute and operate on all views in the view tree. -->
2156        <attr name="importantForAccessibility" format="integer">
2157            <!-- The system determines whether the view is important for accessibility - default
2158                 (recommended). -->
2159            <enum name="auto" value="0" />
2160            <!-- The view is important for accessibility. -->
2161            <enum name="yes" value="1" />
2162            <!-- The view is not important for accessibility. -->
2163            <enum name="no" value="2" />
2164        </attr>
2165
2166        <!-- Specifies the id of a view for which this view serves as a label for
2167             accessibility purposes. For example, a TextView before an EditText in
2168             the UI usually specifies what infomation is contained in the EditText.
2169             Hence, the TextView is a label for the EditText. -->
2170        <attr name="labelFor" format="integer" />
2171
2172    </declare-styleable>
2173
2174    <!-- Attributes that can be used with a {@link android.view.ViewGroup} or any
2175         of its subclasses.  Also see {@link #ViewGroup_Layout} for
2176         attributes that this class processes in its children. -->
2177    <declare-styleable name="ViewGroup">
2178        <!-- Defines whether changes in layout (caused by adding and removing items) should
2179             cause a LayoutTransition to run. When this flag is set to true, a default
2180             LayoutTransition object will be set on the ViewGroup container and default
2181             animations will run when these layout changes occur.-->
2182        <attr name="animateLayoutChanges" format="boolean" />
2183        <!-- Defines whether a child is limited to draw inside of its bounds or not.
2184             This is useful with animations that scale the size of the children to more
2185             than 100% for instance. In such a case, this property should be set to false
2186             to allow the children to draw outside of their bounds. The default value of
2187             this property is true. -->
2188        <attr name="clipChildren" format="boolean" />
2189        <!-- Defines whether the ViewGroup will clip its drawing surface so as to exclude
2190             the padding area. This property is set to true by default. -->
2191        <attr name="clipToPadding" format="boolean" />
2192        <!-- Defines the layout animation to use the first time the ViewGroup is laid out.
2193             Layout animations can also be started manually after the first layout. -->
2194        <attr name="layoutAnimation" format="reference" />
2195        <!-- Defines whether layout animations should create a drawing cache for their
2196             children. Enabling the animation cache consumes more memory and requires
2197             a longer initialization but provides better performance. The animation
2198             cache is enabled by default. -->
2199        <attr name="animationCache" format="boolean" />
2200        <!-- Defines the persistence of the drawing cache. The drawing cache might be
2201             enabled by a ViewGroup for all its children in specific situations (for
2202             instance during a scrolling.) This property lets you persist the cache
2203             in memory after its initial usage. Persisting the cache consumes more
2204             memory but may prevent frequent garbage collection is the cache is created
2205             over and over again. By default the persistence is set to scrolling. -->
2206        <attr name="persistentDrawingCache">
2207            <!-- The drawing cache is not persisted after use. -->
2208            <flag name="none" value="0x0" />
2209            <!-- The drawing cache is persisted after a layout animation. -->
2210            <flag name="animation" value="0x1" />
2211            <!-- The drawing cache is persisted after a scroll. -->
2212            <flag name="scrolling" value="0x2" />
2213            <!-- The drawing cache is always persisted. -->
2214            <flag name="all" value="0x3" />
2215        </attr>
2216        <!-- Defines whether the ViewGroup should always draw its children using their
2217             drawing cache or not. The default value is true. -->
2218        <attr name="alwaysDrawnWithCache" format="boolean" />
2219        <!-- Sets whether this ViewGroup's drawable states also include
2220             its children's drawable states.  This is used, for example, to
2221             make a group appear to be focused when its child EditText or button
2222             is focused. -->
2223        <attr name="addStatesFromChildren" format="boolean" />
2224
2225        <!-- Defines the relationship between the ViewGroup and its descendants
2226             when looking for a View to take focus. -->
2227        <attr name="descendantFocusability">
2228            <!-- The ViewGroup will get focus before any of its descendants. -->
2229            <enum name="beforeDescendants" value="0" />
2230            <!-- The ViewGroup will get focus only if none of its descendants want it. -->
2231            <enum name="afterDescendants" value="1" />
2232            <!-- The ViewGroup will block its descendants from receiving focus. -->
2233            <enum name="blocksDescendants" value="2" />
2234        </attr>
2235
2236        <!-- Sets whether this ViewGroup should split MotionEvents
2237             to separate child views during touch event dispatch.
2238             If false (default), touch events will be dispatched to
2239             the child view where the first pointer went down until
2240             the last pointer goes up.
2241             If true, touch events may be dispatched to multiple children.
2242             MotionEvents for each pointer will be dispatched to the child
2243             view where the initial ACTION_DOWN event happened.
2244             See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)}
2245             for more information. -->
2246        <attr name="splitMotionEvents" format="boolean" />
2247
2248        <!-- Defines the layout mode of this ViewGroup. -->
2249        <attr name="layoutMode">
2250            <!-- Use the children's clip bounds when laying out this container. -->
2251            <enum name="clipBounds" value="0" />
2252            <!-- Use the children's optical bounds when laying out this container. -->
2253            <enum name="opticalBounds" value="1" />
2254        </attr>
2255    </declare-styleable>
2256
2257    <!-- A {@link android.view.ViewStub} lets you lazily include other XML layouts
2258         inside your application at runtime. -->
2259    <declare-styleable name="ViewStub">
2260        <!-- Supply an identifier for the layout resource to inflate when the ViewStub
2261             becomes visible or when forced to do so. The layout resource must be a
2262             valid reference to a layout. -->
2263        <attr name="layout" format="reference" />
2264        <!-- Overrides the id of the inflated View with this value. -->
2265        <attr name="inflatedId" format="reference" />
2266    </declare-styleable>
2267
2268    <!-- ===================================== -->
2269    <!-- View package parent layout attributes -->
2270    <!-- ===================================== -->
2271    <eat-comment />
2272
2273    <!-- This is the basic set of layout attributes that are common to all
2274         layout managers.  These attributes are specified with the rest of
2275         a view's normal attributes (such as {@link android.R.attr#background},
2276         but will be parsed by the view's parent and ignored by the child.
2277        <p>The values defined here correspond to the base layout attribute
2278        class {@link android.view.ViewGroup.LayoutParams}. -->
2279    <declare-styleable name="ViewGroup_Layout">
2280        <!-- Specifies the basic width of the view.  This is a required attribute
2281             for any view inside of a containing layout manager.  Its value may
2282             be a dimension (such as "12dip") for a constant width or one of
2283             the special constants. -->
2284        <attr name="layout_width" format="dimension">
2285            <!-- The view should be as big as its parent (minus padding).
2286                 This constant is deprecated starting from API Level 8 and
2287                 is replaced by {@code match_parent}. -->
2288            <enum name="fill_parent" value="-1" />
2289            <!-- The view should be as big as its parent (minus padding).
2290                 Introduced in API Level 8. -->
2291            <enum name="match_parent" value="-1" />
2292            <!-- The view should be only big enough to enclose its content (plus padding). -->
2293            <enum name="wrap_content" value="-2" />
2294        </attr>
2295
2296        <!-- Specifies the basic height of the view.  This is a required attribute
2297             for any view inside of a containing layout manager.  Its value may
2298             be a dimension (such as "12dip") for a constant height or one of
2299             the special constants. -->
2300        <attr name="layout_height" format="dimension">
2301            <!-- The view should be as big as its parent (minus padding).
2302                 This constant is deprecated starting from API Level 8 and
2303                 is replaced by {@code match_parent}. -->
2304            <enum name="fill_parent" value="-1" />
2305            <!-- The view should be as big as its parent (minus padding).
2306                 Introduced in API Level 8. -->
2307            <enum name="match_parent" value="-1" />
2308            <!-- The view should be only big enough to enclose its content (plus padding). -->
2309            <enum name="wrap_content" value="-2" />
2310        </attr>
2311    </declare-styleable>
2312
2313    <!-- This is the basic set of layout attributes for layout managers that
2314         wish to place margins around their child views.
2315         These attributes are specified with the rest of
2316         a view's normal attributes (such as {@link android.R.attr#background},
2317         but will be parsed by the view's parent and ignored by the child.
2318        <p>The values defined here correspond to the base layout attribute
2319        class {@link android.view.ViewGroup.MarginLayoutParams}. -->
2320    <declare-styleable name="ViewGroup_MarginLayout">
2321        <attr name="layout_width" />
2322        <attr name="layout_height" />
2323        <!--  Specifies extra space on the left, top, right and bottom
2324              sides of this view. This space is outside this view's bounds. -->
2325        <attr name="layout_margin" format="dimension"  />
2326        <!--  Specifies extra space on the left side of this view.
2327              This space is outside this view's bounds. -->
2328        <attr name="layout_marginLeft" format="dimension"  />
2329        <!--  Specifies extra space on the top side of this view.
2330              This space is outside this view's bounds. -->
2331        <attr name="layout_marginTop" format="dimension" />
2332        <!--  Specifies extra space on the right side of this view.
2333              This space is outside this view's bounds. -->
2334        <attr name="layout_marginRight" format="dimension"  />
2335        <!--  Specifies extra space on the bottom side of this view.
2336              This space is outside this view's bounds. -->
2337        <attr name="layout_marginBottom" format="dimension"  />
2338        <!--  Specifies extra space on the start side of this view.
2339              This space is outside this view's bounds. -->
2340        <attr name="layout_marginStart" format="dimension"  />
2341        <!--  Specifies extra space on the end side of this view.
2342              This space is outside this view's bounds. -->
2343        <attr name="layout_marginEnd" format="dimension"  />
2344    </declare-styleable>
2345
2346    <!-- Use <code>input-method</code> as the root tag of the XML resource that
2347         describes an
2348         {@link android.view.inputmethod.InputMethod} service, which is
2349         referenced from its
2350         {@link android.view.inputmethod.InputMethod#SERVICE_META_DATA}
2351         meta-data entry.  Described here are the attributes that can be
2352         included in that tag. -->
2353    <declare-styleable name="InputMethod">
2354        <!-- Component name of an activity that allows the user to modify
2355             the settings for this service. -->
2356        <attr name="settingsActivity" format="string" />
2357        <!-- Set to true in all of the configurations for which this input
2358             method should be considered an option as the default. -->
2359        <attr name="isDefault" format="boolean" />
2360    </declare-styleable>
2361
2362    <!-- This is the subtype of InputMethod. Subtype can describe locales (e.g. en_US, fr_FR...)
2363         and modes (e.g. voice, keyboard...), and is used for IME switch. This subtype allows
2364         the system to call the specified subtype of the IME directly. -->
2365    <declare-styleable name="InputMethod_Subtype">
2366        <!-- The name of the subtype. -->
2367        <attr name="label" />
2368        <!-- The icon of the subtype. -->
2369        <attr name="icon" />
2370        <!-- The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...)
2371             and will be passed to the IME when the framework calls the IME
2372             with the subtype. This is also used by the framework to know the supported locales
2373             of the IME.  -->
2374        <attr name="imeSubtypeLocale" format="string" />
2375        <!-- The mode of the subtype. This string can be a mode (e.g. voice, keyboard...) and this
2376             string will be passed to the IME when the framework calls the IME with the
2377             subtype.  -->
2378        <attr name="imeSubtypeMode" format="string" />
2379        <!-- Set true if the subtype is auxiliary.  An auxiliary subtype won't be shown in the
2380             input method selection list in the settings app.
2381             InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it
2382             chooses a target subtype. -->
2383        <attr name="isAuxiliary" format="boolean" />
2384        <!-- Set true when this subtype should be selected by default if no other subtypes are
2385             selected explicitly. Note that a subtype with this parameter being true will
2386             not be shown in the subtypes list. -->
2387        <attr name="overridesImplicitlyEnabledSubtype" format="boolean" />
2388        <!-- The extra value of the subtype. This string can be any string and will be passed to
2389             the IME when the framework calls the IME with the subtype.  -->
2390        <attr name="imeSubtypeExtraValue" format="string" />
2391        <!-- The unique id for the subtype. The input method framework keeps track of enabled
2392             subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even
2393             if other attributes are different. If the ID is unspecified (by calling the other
2394             constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue,
2395             isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead. -->
2396        <attr name="subtypeId" format="integer"/>
2397    </declare-styleable>
2398
2399    <!-- Use <code>spell-checker</code> as the root tag of the XML resource that
2400         describes an
2401         {@link android.service.textservice.SpellCheckerService} service, which is
2402         referenced from its
2403         {@link android.view.textservice.SpellCheckerSession#SERVICE_META_DATA}
2404         meta-data entry.  Described here are the attributes that can be
2405         included in that tag. -->
2406    <declare-styleable name="SpellChecker">
2407        <!-- The name of the spell checker. -->
2408        <attr name="label" />
2409        <!-- Component name of an activity that allows the user to modify
2410             the settings for this service. -->
2411        <attr name="settingsActivity"/>
2412    </declare-styleable>
2413
2414    <!-- This is the subtype of the spell checker. Subtype can describe locales (e.g. en_US, fr_FR...) -->
2415    <declare-styleable name="SpellChecker_Subtype">
2416        <!-- The name of the subtype. -->
2417        <attr name="label" />
2418        <!-- The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...)
2419             This is also used by the framework to know the supported locales
2420             of the spell checker.  -->
2421        <attr name="subtypeLocale" format="string" />
2422        <!-- The extra value of the subtype. This string can be any string and will be passed to
2423             the SpellChecker.  -->
2424        <attr name="subtypeExtraValue" format="string" />
2425    </declare-styleable>
2426
2427    <!-- Use <code>accessibility-service</code> as the root tag of the XML resource that
2428         describes an {@link android.accessibilityservice.AccessibilityService} service,
2429         which is referenced from its
2430         {@link android.accessibilityservice.AccessibilityService#SERVICE_META_DATA}
2431         meta-data entry. -->
2432    <declare-styleable name="AccessibilityService">
2433        <!-- The event types this serivce would like to receive as specified in
2434             {@link android.view.accessibility.AccessibilityEvent}. This setting
2435             can be changed at runtime by calling
2436             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
2437             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
2438        <attr name="accessibilityEventTypes">
2439            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} events.-->
2440            <flag name="typeViewClicked" value="0x00000001" />
2441            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_LONG_CLICKED} events. -->
2442            <flag name="typeViewLongClicked" value="0x00000002" />
2443            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SELECTED} events. -->
2444            <flag name="typeViewSelected" value="0x00000004" />
2445            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_FOCUSED} events. -->
2446            <flag name="typeViewFocused" value="0x00000008" />
2447            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_CHANGED} events. -->
2448            <flag name="typeViewTextChanged" value="0x00000010" />
2449            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_STATE_CHANGED} events. -->
2450            <flag name="typeWindowStateChanged" value="0x00000020" />
2451            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_NOTIFICATION_STATE_CHANGED} events. -->
2452            <flag name="typeNotificationStateChanged" value="0x00000040" />
2453            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER} events. -->
2454            <flag name="typeViewHoverEnter" value="0x00000080" />
2455            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_EXIT} events. -->
2456            <flag name="typeViewHoverExit" value="0x00000100" />
2457            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_START} events. -->
2458            <flag name="typeTouchExplorationGestureStart" value="0x00000200" />
2459            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_END} events. -->
2460            <flag name="typeTouchExplorationGestureEnd" value="0x00000400" />
2461            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} events. -->
2462            <flag name="typeWindowContentChanged" value="0x00000800" />
2463            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SCROLLED} events. -->
2464            <flag name="typeViewScrolled" value="0x000001000" />
2465            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_SELECTION_CHANGED} events. -->
2466            <flag name="typeViewTextSelectionChanged" value="0x000002000" />
2467            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPES_ALL_MASK} i.e. all events. -->
2468            <flag name="typeAllMask" value="0xffffffff" />
2469        </attr>
2470        <!-- Comma separated package names from which this serivce would like to receive events (leave out for all packages).
2471             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
2472             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
2473        <attr name="packageNames" format="string" />
2474        <!-- The feedback types this serivce provides as specified in
2475             {@link android.accessibilityservice.AccessibilityServiceInfo}. This setting
2476             can be changed at runtime by calling
2477             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
2478             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
2479        <attr name="accessibilityFeedbackType">
2480            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_SPOKEN} feedback. -->
2481            <flag name="feedbackSpoken" value="0x00000001" />
2482            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_HAPTIC} feedback. -->
2483            <flag name="feedbackHaptic" value="0x00000002" />
2484            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_AUDIBLE} feedback. -->
2485            <flag name="feedbackAudible" value="0x00000004" />
2486            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_VISUAL} feedback. -->
2487            <flag name="feedbackVisual" value="0x00000008" />
2488            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_GENERIC} feedback. -->
2489            <flag name="feedbackGeneric" value="0x00000010" />
2490            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_ALL_MASK} feedback. -->
2491            <flag name="feedbackAllMask" value="0xffffffff" />
2492        </attr>
2493        <!-- The minimal period in milliseconds between two accessibility events of the same type
2494             are sent to this serivce. This setting can be changed at runtime by calling
2495             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
2496             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
2497        <attr name="notificationTimeout" format="integer" />
2498        <!-- Additional flags as specified in
2499             {@link android.accessibilityservice.AccessibilityServiceInfo}.
2500             This setting can be changed at runtime by calling
2501             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
2502             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
2503        <attr name="accessibilityFlags">
2504            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#DEFAULT} -->
2505            <flag name="flagDefault" value="0x00000001" />
2506            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS} -->
2507            <flag name="flagIncludeNotImportantViews" value="0x00000002" />
2508            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} -->
2509            <flag name="flagRequestTouchExplorationMode" value="0x00000004" />
2510        </attr>
2511        <!-- Component name of an activity that allows the user to modify
2512             the settings for this service. This setting cannot be changed at runtime. -->
2513        <attr name="settingsActivity" />
2514        <!-- Flag whether the accessibility service wants to be able to retrieve the
2515             active window content. This setting cannot be changed at runtime. -->
2516        <attr name="canRetrieveWindowContent" format="boolean" />
2517        <!-- Short description of the accessibility serivce purpose or behavior.-->
2518        <attr name="description" />
2519    </declare-styleable>
2520
2521    <declare-styleable name="ActionMenuItemView">
2522        <attr name="minWidth" />
2523    </declare-styleable>
2524
2525    <!-- =============================== -->
2526    <!-- Widget package class attributes -->
2527    <!-- =============================== -->
2528    <eat-comment />
2529
2530    <declare-styleable name="AbsListView">
2531         <!-- Drawable used to indicate the currently selected item in the list. -->
2532        <attr name="listSelector" format="color|reference" />
2533        <!-- When set to true, the selector will be drawn over the selected item.
2534             Otherwise the selector is drawn behind the selected item. The default
2535             value is false. -->
2536        <attr name="drawSelectorOnTop" format="boolean" />
2537        <!-- Used by ListView and GridView to stack their content from the bottom. -->
2538        <attr name="stackFromBottom" format="boolean" />
2539        <!-- When set to true, the list uses a drawing cache during scrolling.
2540             This makes the rendering faster but uses more memory. The default
2541             value is true. -->
2542        <attr name="scrollingCache" format="boolean" />
2543        <!-- When set to true, the list will filter results as the user types. The
2544             List's adapter must support the Filterable interface for this to work. -->
2545        <attr name="textFilterEnabled" format="boolean" />
2546        <!-- Sets the transcript mode for the list. In transcript mode, the list
2547             scrolls to the bottom to make new items visible when they are added. -->
2548        <attr name="transcriptMode">
2549            <!-- Disables transcript mode. This is the default value. -->
2550            <enum name="disabled" value="0"/>
2551            <!-- The list will automatically scroll to the bottom when
2552                 a data set change notification is received and only if the last item is
2553                 already visible on screen. -->
2554            <enum name="normal" value="1" />
2555            <!-- The list will automatically scroll to the bottom, no matter what items
2556                 are currently visible. -->
2557            <enum name="alwaysScroll" value="2" />
2558        </attr>
2559        <!-- Indicates that this list will always be drawn on top of solid, single-color
2560             opaque background. This allows the list to optimize drawing. -->
2561        <attr name="cacheColorHint" format="color" />
2562        <!-- Enables the fast scroll thumb that can be dragged to quickly scroll through
2563             the list. -->
2564        <attr name="fastScrollEnabled" format="boolean" />
2565        <!-- When set to true, the list will use a more refined calculation
2566             method based on the pixels height of the items visible on screen. This
2567             property is set to true by default but should be set to false if your adapter
2568             will display items of varying heights. When this property is set to true and
2569             your adapter displays items of varying heights, the scrollbar thumb will
2570             change size as the user scrolls through the list. When set to fale, the list
2571             will use only the number of items in the adapter and the number of items visible
2572             on screen to determine the scrollbar's properties. -->
2573        <attr name="smoothScrollbar" format="boolean" />
2574        <!-- Defines the choice behavior for the view. By default, lists do not have
2575             any choice behavior. By setting the choiceMode to singleChoice, the list
2576             allows up to one item to be in a chosen state. By setting the choiceMode to
2577             multipleChoice, the list allows any number of items to be chosen.
2578             Finally, by setting the choiceMode to multipleChoiceModal the list allows
2579             any number of items to be chosen in a special selection mode.
2580             The application will supply a
2581             {@link android.widget.AbsListView.MultiChoiceModeListener} using
2582             {@link android.widget.AbsListView#setMultiChoiceModeListener} to control the
2583             selection mode. This uses the {@link android.view.ActionMode} API. -->
2584        <attr name="choiceMode">
2585            <!-- Normal list that does not indicate choices. -->
2586            <enum name="none" value="0" />
2587            <!-- The list allows up to one choice. -->
2588            <enum name="singleChoice" value="1" />
2589            <!-- The list allows multiple choices. -->
2590            <enum name="multipleChoice" value="2" />
2591            <!-- The list allows multiple choices in a custom selection mode. -->
2592            <enum name="multipleChoiceModal" value="3" />
2593        </attr>
2594
2595        <!-- When set to true, the list will always show the fast scroll interface.
2596             This setting implies fastScrollEnabled. -->
2597        <attr name="fastScrollAlwaysVisible" format="boolean" />
2598    </declare-styleable>
2599    <declare-styleable name="AbsSpinner">
2600        <!-- Reference to an array resource that will populate the Spinner.  For static content,
2601             this is simpler than populating the Spinner programmatically. -->
2602        <attr name="entries" />
2603    </declare-styleable>
2604    <declare-styleable name="AnalogClock">
2605        <attr name="dial" format="reference"/>
2606        <attr name="hand_hour" format="reference"/>
2607        <attr name="hand_minute" format="reference"/>
2608    </declare-styleable>
2609    <declare-styleable name="Button">
2610    </declare-styleable>
2611    <declare-styleable name="Chronometer">
2612        <!-- Format string: if specified, the Chronometer will display this
2613             string, with the first "%s" replaced by the current timer value
2614             in "MM:SS" or "H:MM:SS" form.
2615             If no format string is specified, the Chronometer will simply display
2616             "MM:SS" or "H:MM:SS". -->
2617        <attr name="format" format="string" localization="suggested" />
2618    </declare-styleable>
2619    <declare-styleable name="CompoundButton">
2620        <!-- Indicates the initial checked state of this button. -->
2621        <attr name="checked" format="boolean" />
2622        <!-- Drawable used for the button graphic (e.g. checkbox, radio button, etc). -->
2623        <attr name="button" format="reference"/>
2624    </declare-styleable>
2625    <declare-styleable name="CheckedTextView">
2626        <!-- Indicates the initial checked state of this text. -->
2627        <attr name="checked" />
2628        <!-- Drawable used for the check mark graphic. -->
2629        <attr name="checkMark" format="reference"/>
2630    </declare-styleable>
2631    <declare-styleable name="EditText">
2632    </declare-styleable>
2633    <declare-styleable name="FrameLayout">
2634        <!-- Defines the drawable to draw over the content. This can be used as an overlay.
2635             The foreground drawable participates in the padding of the content if the gravity
2636             is set to fill. -->
2637        <attr name="foreground" format="reference|color" />
2638        <!-- Defines the gravity to apply to the foreground drawable. The gravity defaults
2639             to fill. -->
2640        <attr name="foregroundGravity">
2641            <!-- Push object to the top of its container, not changing its size. -->
2642            <flag name="top" value="0x30" />
2643            <!-- Push object to the bottom of its container, not changing its size. -->
2644            <flag name="bottom" value="0x50" />
2645            <!-- Push object to the left of its container, not changing its size. -->
2646            <flag name="left" value="0x03" />
2647            <!-- Push object to the right of its container, not changing its size. -->
2648            <flag name="right" value="0x05" />
2649            <!-- Place object in the vertical center of its container, not changing its size. -->
2650            <flag name="center_vertical" value="0x10" />
2651            <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
2652            <flag name="fill_vertical" value="0x70" />
2653            <!-- Place object in the horizontal center of its container, not changing its size. -->
2654            <flag name="center_horizontal" value="0x01" />
2655            <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
2656            <flag name="fill_horizontal" value="0x07" />
2657            <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
2658            <flag name="center" value="0x11" />
2659            <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
2660            <flag name="fill" value="0x77" />
2661            <!-- Additional option that can be set to have the top and/or bottom edges of
2662                 the child clipped to its container's bounds.
2663                 The clip will be based on the vertical gravity: a top gravity will clip the bottom
2664                 edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
2665            <flag name="clip_vertical" value="0x80" />
2666            <!-- Additional option that can be set to have the left and/or right edges of
2667                 the child clipped to its container's bounds.
2668                 The clip will be based on the horizontal gravity: a left gravity will clip the right
2669                 edge, a right gravity will clip the left edge, and neither will clip both edges. -->
2670            <flag name="clip_horizontal" value="0x08" />
2671        </attr>
2672        <!-- Defines whether the foreground drawable should be drawn inside the padding.
2673             This property is turned on by default. -->
2674        <attr name="foregroundInsidePadding" format="boolean" />
2675        <!-- Determines whether to measure all children or just those in
2676             the VISIBLE or INVISIBLE state when measuring. Defaults to false. -->
2677        <attr name="measureAllChildren" format="boolean" />
2678    </declare-styleable>
2679    <declare-styleable name="ExpandableListView">
2680        <!-- Indicator shown beside the group View. This can be a stateful Drawable. -->
2681        <attr name="groupIndicator" format="reference" />
2682        <!-- Indicator shown beside the child View. This can be a stateful Drawable. -->
2683        <attr name="childIndicator" format="reference" />
2684        <!-- The left bound for an item's indicator. To specify a left bound specific to children,
2685             use childIndicatorLeft. -->
2686        <attr name="indicatorLeft" format="dimension" />
2687        <!-- The right bound for an item's indicator. To specify a right bound specific to children,
2688             use childIndicatorRight. -->
2689        <attr name="indicatorRight" format="dimension" />
2690        <!-- The left bound for a child's indicator. -->
2691        <attr name="childIndicatorLeft" format="dimension" />
2692        <!-- The right bound for a child's indicator. -->
2693        <attr name="childIndicatorRight" format="dimension" />
2694        <!-- Drawable or color that is used as a divider for children. (It will drawn
2695             below and above child items.) The height of this will be the same as
2696             the height of the normal list item divider. -->
2697        <attr name="childDivider" format="reference|color" />
2698    </declare-styleable>
2699    <declare-styleable name="Gallery">
2700        <attr name="gravity" />
2701        <!-- Sets how long a transition animation should run (in milliseconds)
2702             when layout has changed.  Only relevant if animation is turned on. -->
2703        <attr name="animationDuration" format="integer" min="0" />
2704        <attr name="spacing" format="dimension" />
2705        <!-- Sets the alpha on the items that are not selected. -->
2706        <attr name="unselectedAlpha" format="float" />
2707    </declare-styleable>
2708    <declare-styleable name="GridView">
2709        <!-- Defines the default horizontal spacing between columns. -->
2710        <attr name="horizontalSpacing" format="dimension" />
2711        <!-- Defines the default vertical spacing between rows. -->
2712        <attr name="verticalSpacing" format="dimension" />
2713        <!-- Defines how columns should stretch to fill the available empty space, if any. -->
2714        <attr name="stretchMode">
2715            <!-- Stretching is disabled. -->
2716            <enum name="none" value="0"/>
2717            <!-- The spacing between each column is stretched. -->
2718            <enum name="spacingWidth" value="1" />
2719            <!-- Each column is stretched equally. -->
2720            <enum name="columnWidth" value="2" />
2721            <!-- The spacing between each column is uniformly stretched.. -->
2722            <enum name="spacingWidthUniform" value="3" />
2723        </attr>
2724        <!-- Specifies the fixed width for each column. -->
2725        <attr name="columnWidth" format="dimension" />
2726        <!-- Defines how many columns to show. -->
2727        <attr name="numColumns" format="integer" min="0">
2728            <!-- Display as many columns as possible to fill the available space. -->
2729            <enum name="auto_fit" value="-1" />
2730        </attr>
2731        <!-- Specifies the gravity within each cell. -->
2732        <attr name="gravity" />
2733    </declare-styleable>
2734    <declare-styleable name="ImageSwitcher">
2735    </declare-styleable>
2736    <declare-styleable name="ImageView">
2737        <!-- Sets a drawable as the content of this ImageView. -->
2738        <attr name="src" format="reference|color" />
2739        <!-- Controls how the image should be resized or moved to match the size
2740             of this ImageView. -->
2741        <attr name="scaleType">
2742            <enum name="matrix" value="0" />
2743            <enum name="fitXY" value="1" />
2744            <enum name="fitStart" value="2" />
2745            <enum name="fitCenter" value="3" />
2746            <enum name="fitEnd" value="4" />
2747            <enum name="center" value="5" />
2748            <enum name="centerCrop" value="6" />
2749            <enum name="centerInside" value="7" />
2750        </attr>
2751        <!-- Set this to true if you want the ImageView to adjust its bounds
2752             to preserve the aspect ratio of its drawable. -->
2753        <attr name="adjustViewBounds" format="boolean" />
2754        <!-- An optional argument to supply a maximum width for this view.
2755             See {see android.widget.ImageView#setMaxWidth} for details. -->
2756        <attr name="maxWidth" format="dimension" />
2757        <!-- An optional argument to supply a maximum height for this view.
2758             See {see android.widget.ImageView#setMaxHeight} for details. -->
2759        <attr name="maxHeight" format="dimension" />
2760        <!-- Set a tinting color for the image. -->
2761        <attr name="tint" format="color" />
2762        <!-- If true, the image view will be baseline aligned with based on its
2763             bottom edge. -->
2764        <attr name="baselineAlignBottom" format="boolean" />
2765         <!-- If true, the image will be cropped to fit within its padding. -->
2766        <attr name="cropToPadding" format="boolean" />
2767        <!-- The offset of the baseline within this view. See {see android.view.View#getBaseline}
2768             for details -->
2769        <attr name="baseline" format="dimension" />
2770        <!-- @hide The alpha value (0-255) set on the ImageView's drawable. Equivalent
2771             to calling ImageView.setAlpha(int), not the same as View.setAlpha(float). -->
2772        <attr name="drawableAlpha" format="integer" />
2773    </declare-styleable>
2774    <declare-styleable name="ToggleButton">
2775        <!-- The text for the button when it is checked. -->
2776        <attr name="textOn" format="string" />
2777        <!-- The text for the button when it is not checked. -->
2778        <attr name="textOff" format="string" />
2779        <!-- The alpha to apply to the indicator when disabled. -->
2780        <attr name="disabledAlpha" />
2781    </declare-styleable>
2782    <declare-styleable name="RelativeLayout">
2783        <attr name="gravity" />
2784        <!-- Indicates what view should not be affected by gravity. -->
2785        <attr name="ignoreGravity" format="reference" />
2786    </declare-styleable>
2787    <declare-styleable name="LinearLayout">
2788        <!-- Should the layout be a column or a row?  Use "horizontal"
2789             for a row, "vertical" for a column.  The default is
2790             horizontal. -->
2791        <attr name="orientation" />
2792        <attr name="gravity" />
2793        <!-- When set to false, prevents the layout from aligning its children's
2794             baselines. This attribute is particularly useful when the children
2795             use different values for gravity. The default value is true. -->
2796        <attr name="baselineAligned" format="boolean" />
2797        <!-- When a linear layout is part of another layout that is baseline
2798          aligned, it can specify which of its children to baseline align to
2799          (that is, which child TextView).-->
2800        <attr name="baselineAlignedChildIndex" format="integer" min="0"/>
2801        <!-- Defines the maximum weight sum. If unspecified, the sum is computed
2802             by adding the layout_weight of all of the children. This can be
2803             used for instance to give a single child 50% of the total available
2804             space by giving it a layout_weight of 0.5 and setting the weightSum
2805             to 1.0. -->
2806        <attr name="weightSum" format="float" />
2807        <!-- When set to true, all children with a weight will be considered having
2808             the minimum size of the largest child. If false, all children are
2809             measured normally. -->
2810        <attr name="measureWithLargestChild" format="boolean" />
2811        <!-- Drawable to use as a vertical divider between buttons. -->
2812        <attr name="divider" />
2813        <!-- Setting for which dividers to show. -->
2814        <attr name="showDividers">
2815            <flag name="none" value="0" />
2816            <flag name="beginning" value="1" />
2817            <flag name="middle" value="2" />
2818            <flag name="end" value="4" />
2819        </attr>
2820        <!-- Size of padding on either end of a divider. -->
2821        <attr name="dividerPadding" format="dimension" />
2822    </declare-styleable>
2823    <declare-styleable name="GridLayout">
2824        <!-- The orientation property is not used during layout. It is only used to
2825        allocate row and column parameters when they are not specified by its children's
2826        layout paramters. GridLayout works like LinearLayout in this case;
2827        putting all the components either in a single row or in a single column -
2828        depending on the value of this flag. In the horizontal case, a columnCount
2829        property may be additionally supplied to force new rows to be created when a
2830        row is full. The rowCount attribute may be used similarly in the vertical case.
2831        The default is horizontal. -->
2832        <attr name="orientation" />
2833        <!-- The maxmimum number of rows to create when automatically positioning children. -->
2834        <attr name="rowCount" format="integer" />
2835        <!-- The maxmimum number of columns to create when automatically positioning children. -->
2836        <attr name="columnCount" format="integer" />
2837        <!-- When set to true, tells GridLayout to use default margins when none are specified
2838        in a view's layout parameters.
2839        The default value is false.
2840        See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}.-->
2841        <attr name="useDefaultMargins" format="boolean" />
2842        <!-- When set to alignMargins, causes alignment to take place between the outer
2843        boundary of a view, as defined by its margins. When set to alignBounds,
2844        causes alignment to take place between the edges of the view.
2845        The default is alignMargins.
2846        See {@link android.widget.GridLayout#setAlignmentMode(int)}.-->
2847        <attr name="alignmentMode" />
2848        <!-- When set to true, forces row boundaries to appear in the same order
2849        as row indices.
2850        The default is true.
2851        See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}.-->
2852        <attr name="rowOrderPreserved" format="boolean" />
2853        <!-- When set to true, forces column boundaries to appear in the same order
2854        as column indices.
2855        The default is true.
2856        See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}.-->
2857        <attr name="columnOrderPreserved" format="boolean" />
2858    </declare-styleable>
2859    <declare-styleable name="ListView">
2860        <!-- Reference to an array resource that will populate the ListView.  For static content,
2861             this is simpler than populating the ListView programmatically. -->
2862        <attr name="entries" />
2863        <!-- Drawable or color to draw between list items. -->
2864        <attr name="divider" format="reference|color" />
2865        <!-- Height of the divider. Will use the intrinsic height of the divider if this
2866             is not specified. -->
2867        <attr name="dividerHeight" format="dimension" />
2868        <!-- When set to false, the ListView will not draw the divider after each header view.
2869             The default value is true. -->
2870        <attr name="headerDividersEnabled" format="boolean" />
2871        <!-- When set to false, the ListView will not draw the divider before each footer view.
2872             The default value is true. -->
2873        <attr name="footerDividersEnabled" format="boolean" />
2874        <!-- Drawable to draw above list content. -->
2875        <attr name="overScrollHeader" format="reference|color" />
2876        <!-- Drawable to draw below list content. -->
2877        <attr name="overScrollFooter" format="reference|color" />
2878    </declare-styleable>
2879    <declare-styleable name="PreferenceFrameLayout">
2880        <!-- Padding to use at the top of the prefs content. -->
2881        <attr name="borderTop" format="dimension" />
2882        <!-- Padding to use at the bottom of the prefs content. -->
2883        <attr name="borderBottom" format="dimension" />
2884        <!-- Padding to use at the left of the prefs content. -->
2885        <attr name="borderLeft" format="dimension" />
2886        <!-- Padding to use at the right of the prefs content. -->
2887        <attr name="borderRight" format="dimension" />
2888    </declare-styleable>
2889    <declare-styleable name="PreferenceFrameLayout_Layout">
2890        <!-- Padding to use at the top of the prefs content. -->
2891        <attr name="layout_removeBorders" format="boolean" />
2892    </declare-styleable>
2893    <declare-styleable name="MenuView">
2894        <!-- Default appearance of menu item text. -->
2895        <attr name="itemTextAppearance" format="reference" />
2896        <!-- Default horizontal divider between rows of menu items. -->
2897        <attr name="horizontalDivider" format="reference" />
2898        <!-- Default vertical divider between menu items. -->
2899        <attr name="verticalDivider" format="reference" />
2900        <!-- Default background for the menu header. -->
2901        <attr name="headerBackground" format="color|reference" />
2902        <!-- Default background for each menu item. -->
2903        <attr name="itemBackground" format="color|reference" />
2904        <!-- Default animations for the menu. -->
2905        <attr name="windowAnimationStyle" />
2906        <!-- Default disabled icon alpha for each menu item that shows an icon. -->
2907        <attr name="itemIconDisabledAlpha" format="float" />
2908        <!-- Whether space should be reserved in layout when an icon is missing. -->
2909        <attr name="preserveIconSpacing" format="boolean" />
2910    </declare-styleable>
2911    <declare-styleable name="IconMenuView">
2912        <!-- Defines the height of each row. -->
2913        <attr name="rowHeight" format="dimension" />
2914        <!-- Defines the maximum number of rows displayed. -->
2915        <attr name="maxRows" format="integer" />
2916        <!-- Defines the maximum number of items per row. -->
2917        <attr name="maxItemsPerRow" format="integer" />
2918        <!-- Defines the maximum number of items to show. -->
2919        <attr name="maxItems" format="integer" />
2920        <!-- 'More' icon. -->
2921        <attr name="moreIcon" format="reference" />
2922    </declare-styleable>
2923
2924    <declare-styleable name="ProgressBar">
2925        <!-- Defines the maximum value the progress can take. -->
2926        <attr name="max" format="integer" />
2927        <!-- Defines the default progress value, between 0 and max. -->
2928        <attr name="progress" format="integer" />
2929        <!-- Defines the secondary progress value, between 0 and max. This progress is drawn between
2930             the primary progress and the background.  It can be ideal for media scenarios such as
2931             showing the buffering progress while the default progress shows the play progress. -->
2932        <attr name="secondaryProgress" format="integer" />
2933        <!-- Allows to enable the indeterminate mode. In this mode the progress
2934         bar plays an infinite looping animation. -->
2935        <attr name="indeterminate" format="boolean" />
2936        <!-- Restricts to ONLY indeterminate mode (state-keeping progress mode will not work). -->
2937        <attr name="indeterminateOnly" format="boolean" />
2938        <!-- Drawable used for the indeterminate mode. -->
2939        <attr name="indeterminateDrawable" format="reference" />
2940        <!-- Drawable used for the progress mode. -->
2941        <attr name="progressDrawable" format="reference" />
2942        <!-- Duration of the indeterminate animation. -->
2943        <attr name="indeterminateDuration" format="integer" min="1" />
2944        <!-- Defines how the indeterminate mode should behave when the progress
2945        reaches max. -->
2946        <attr name="indeterminateBehavior">
2947            <!-- Progress starts over from 0. -->
2948            <enum name="repeat" value="1" />
2949            <!-- Progress keeps the current value and goes back to 0. -->
2950            <enum name="cycle" value="2" />
2951        </attr>
2952        <attr name="minWidth" format="dimension" />
2953        <attr name="maxWidth" />
2954        <attr name="minHeight" format="dimension" />
2955        <attr name="maxHeight" />
2956        <attr name="interpolator" format="reference" />
2957        <!-- Timeout between frames of animation in milliseconds
2958             {@deprecated Not used by the framework.} -->
2959        <attr name="animationResolution" format="integer" />
2960    </declare-styleable>
2961
2962    <declare-styleable name="SeekBar">
2963        <!-- Draws the thumb on a seekbar. -->
2964        <attr name="thumb" format="reference" />
2965        <!-- An offset for the thumb that allows it to extend out of the range of the track. -->
2966        <attr name="thumbOffset" format="dimension" />
2967    </declare-styleable>
2968
2969    <declare-styleable name="StackView">
2970        <!-- Color of the res-out outline. -->
2971        <attr name="resOutColor" format="color" />
2972        <!-- Color of the outline of click feedback. -->
2973        <attr name="clickColor" format="color" />
2974    </declare-styleable>
2975
2976    <declare-styleable name="RatingBar">
2977        <!-- The number of stars (or rating items) to show. -->
2978        <attr name="numStars" format="integer" />
2979        <!-- The rating to set by default. -->
2980        <attr name="rating" format="float" />
2981        <!-- The step size of the rating. -->
2982        <attr name="stepSize" format="float" />
2983        <!-- Whether this rating bar is an indicator (and non-changeable by the user). -->
2984        <attr name="isIndicator" format="boolean" />
2985    </declare-styleable>
2986
2987    <declare-styleable name="RadioGroup">
2988        <!-- The id of the child radio button that should be checked by default
2989             within this radio group. -->
2990        <attr name="checkedButton" format="integer" />
2991        <!-- Should the radio group be a column or a row?  Use "horizontal"
2992             for a row, "vertical" for a column.  The default is
2993             vertical. -->
2994        <attr name="orientation" />
2995    </declare-styleable>
2996    <declare-styleable name="TableLayout">
2997        <!-- The zero-based index of the columns to stretch. The column indices
2998             must be separated by a comma: 1, 2, 5. Illegal and duplicate
2999             indices are ignored. You can stretch all columns by using the
3000             value "*" instead. Note that a column can be marked stretchable
3001             and shrinkable at the same time. -->
3002        <attr name="stretchColumns" format="string" />
3003       <!-- The zero-based index of the columns to shrink. The column indices
3004             must be separated by a comma: 1, 2, 5. Illegal and duplicate
3005             indices are ignored. You can shrink all columns by using the
3006             value "*" instead. Note that a column can be marked stretchable
3007             and shrinkable at the same time. -->
3008        <attr name="shrinkColumns" format="string" />
3009        <!-- The zero-based index of the columns to collapse. The column indices
3010             must be separated by a comma: 1, 2, 5. Illegal and duplicate
3011             indices are ignored. -->
3012        <attr name="collapseColumns" format="string" />
3013    </declare-styleable>
3014    <declare-styleable name="TableRow">
3015
3016    </declare-styleable>
3017    <declare-styleable name="TableRow_Cell">
3018        <!-- The index of the column in which this child should be. -->
3019        <attr name="layout_column" format="integer" />
3020        <!-- Defines how many columns this child should span.  Must be >= 1.-->
3021        <attr name="layout_span" format="integer" />
3022    </declare-styleable>
3023    <declare-styleable name="TabWidget">
3024        <!-- Drawable used to draw the divider between tabs. -->
3025        <attr name="divider" />
3026        <!-- Determines whether the strip under the tab indicators is drawn or not. -->
3027        <attr name="tabStripEnabled" format="boolean" />
3028        <!-- Drawable used to draw the left part of the strip underneath the tabs. -->
3029        <attr name="tabStripLeft" format="reference" />
3030        <!-- Drawable used to draw the right part of the strip underneath the tabs. -->
3031        <attr name="tabStripRight" format="reference" />
3032        <!-- Layout used to organize each tab's content. -->
3033        <attr name="tabLayout" format="reference" />
3034    </declare-styleable>
3035    <declare-styleable name="TextAppearance">
3036        <!-- Text color. -->
3037        <attr name="textColor" />
3038        <!-- Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). -->
3039        <attr name="textSize" />
3040        <!-- Style (bold, italic, bolditalic) for the text. -->
3041        <attr name="textStyle" />
3042        <!-- Typeface (normal, sans, serif, monospace) for the text. -->
3043        <attr name="typeface" />
3044        <!-- Font family (named by string) for the text. -->
3045        <attr name="fontFamily" />
3046        <!-- Color of the text selection highlight. -->
3047        <attr name="textColorHighlight" />
3048        <!-- Color of the hint text. -->
3049        <attr name="textColorHint" />
3050        <!-- Color of the links. -->
3051        <attr name="textColorLink" />
3052        <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
3053        <attr name="textAllCaps" format="boolean" />
3054    </declare-styleable>
3055    <declare-styleable name="TextSwitcher">
3056    </declare-styleable>
3057    <declare-styleable name="TextView">
3058        <!-- Determines the minimum type that getText() will return.
3059             The default is "normal".
3060             Note that EditText and LogTextBox always return Editable,
3061             even if you specify something less powerful here. -->
3062        <attr name="bufferType">
3063            <!-- Can return any CharSequence, possibly a
3064             Spanned one if the source text was Spanned. -->
3065            <enum name="normal" value="0" />
3066            <!-- Can only return Spannable. -->
3067            <enum name="spannable" value="1" />
3068            <!-- Can only return Spannable and Editable. -->
3069            <enum name="editable" value="2" />
3070        </attr>
3071        <!-- Text to display. -->
3072        <attr name="text" format="string" localization="suggested" />
3073        <!-- Hint text to display when the text is empty. -->
3074        <attr name="hint" format="string" />
3075        <!-- Text color. -->
3076        <attr name="textColor" />
3077        <!-- Color of the text selection highlight. -->
3078        <attr name="textColorHighlight" />
3079        <!-- Color of the hint text. -->
3080        <attr name="textColorHint" />
3081        <!-- Base text color, typeface, size, and style. -->
3082        <attr name="textAppearance" />
3083        <!-- Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). -->
3084        <attr name="textSize" />
3085        <!-- Sets the horizontal scaling factor for the text. -->
3086        <attr name="textScaleX" format="float" />
3087        <!-- Typeface (normal, sans, serif, monospace) for the text. -->
3088        <attr name="typeface" />
3089        <!-- Style (bold, italic, bolditalic) for the text. -->
3090        <attr name="textStyle" />
3091        <!-- Font family (named by string) for the text. -->
3092        <attr name="fontFamily" />
3093        <!-- Text color for links. -->
3094        <attr name="textColorLink" />
3095        <!-- Makes the cursor visible (the default) or invisible. -->
3096        <attr name="cursorVisible" format="boolean" />
3097        <!-- Makes the TextView be at most this many lines tall.
3098
3099        When used on an editable text, the <code>inputType</code> attribute's value must be
3100        combined with the <code>textMultiLine</code> flag for the maxLines attribute to apply. -->
3101        <attr name="maxLines" format="integer" min="0" />
3102        <!-- Makes the TextView be at most this many pixels tall. -->
3103        <attr name="maxHeight" />
3104        <!-- Makes the TextView be exactly this many lines tall. -->
3105        <attr name="lines" format="integer" min="0" />
3106        <!-- Makes the TextView be exactly this many pixels tall.
3107             You could get the same effect by specifying this number in the
3108             layout parameters. -->
3109        <attr name="height" format="dimension" />
3110        <!-- Makes the TextView be at least this many lines tall.
3111
3112        When used on an editable text, the <code>inputType</code> attribute's value must be
3113        combined with the <code>textMultiLine</code> flag for the minLines attribute to apply. -->
3114        <attr name="minLines" format="integer" min="0" />
3115        <!-- Makes the TextView be at least this many pixels tall. -->
3116        <attr name="minHeight" />
3117        <!-- Makes the TextView be at most this many ems wide. -->
3118        <attr name="maxEms" format="integer" min="0" />
3119        <!-- Makes the TextView be at most this many pixels wide. -->
3120        <attr name="maxWidth" />
3121        <!-- Makes the TextView be exactly this many ems wide. -->
3122        <attr name="ems" format="integer" min="0" />
3123        <!-- Makes the TextView be exactly this many pixels wide.
3124             You could get the same effect by specifying this number in the
3125             layout parameters. -->
3126        <attr name="width" format="dimension" />
3127        <!-- Makes the TextView be at least this many ems wide. -->
3128        <attr name="minEms" format="integer" min="0" />
3129        <!-- Makes the TextView be at least this many pixels wide. -->
3130        <attr name="minWidth" />
3131        <!-- Specifies how to align the text by the view's x- and/or y-axis
3132             when the text is smaller than the view. -->
3133        <attr name="gravity" />
3134        <!-- Whether the text is allowed to be wider than the view (and
3135             therefore can be scrolled horizontally). -->
3136        <attr name="scrollHorizontally" format="boolean" />
3137        <!-- Whether the characters of the field are displayed as
3138             password dots instead of themselves.
3139             {@deprecated Use inputType instead.} -->
3140        <attr name="password" format="boolean" />
3141        <!-- Constrains the text to a single horizontally scrolling line
3142             instead of letting it wrap onto multiple lines, and advances
3143             focus instead of inserting a newline when you press the
3144             enter key.
3145
3146             The default value is false (multi-line wrapped text mode) for non-editable text, but if
3147             you specify any value for inputType, the default is true (single-line input field mode).
3148
3149             {@deprecated This attribute is deprecated. Use <code>maxLines</code> instead to change
3150             the layout of a static text, and use the <code>textMultiLine</code> flag in the
3151             inputType attribute instead for editable text views (if both singleLine and inputType
3152             are supplied, the inputType flags will override the value of singleLine). } -->
3153        <attr name="singleLine" format="boolean" />
3154        <!-- Specifies whether the widget is enabled. The interpretation of the enabled state varies by subclass.
3155             For example, a non-enabled EditText prevents the user from editing the contained text, and
3156             a non-enabled Button prevents the user from tapping the button.
3157             The appearance of enabled and non-enabled widgets may differ, if the drawables referenced
3158             from evaluating state_enabled differ. -->
3159        <attr name="enabled" format="boolean" />
3160        <!-- If the text is selectable, select it all when the view takes
3161             focus. -->
3162        <attr name="selectAllOnFocus" format="boolean" />
3163        <!-- Leave enough room for ascenders and descenders instead of
3164             using the font ascent and descent strictly.  (Normally true). -->
3165        <attr name="includeFontPadding" format="boolean" />
3166        <!-- Set an input filter to constrain the text length to the
3167             specified number. -->
3168        <attr name="maxLength" format="integer" min="0" />
3169        <!-- Place a shadow of the specified color behind the text. -->
3170        <attr name="shadowColor" format="color" />
3171        <!-- Horizontal offset of the shadow. -->
3172        <attr name="shadowDx" format="float" />
3173        <!-- Vertical offset of the shadow. -->
3174        <attr name="shadowDy" format="float" />
3175        <!-- Radius of the shadow. -->
3176        <attr name="shadowRadius" format="float" />
3177        <attr name="autoLink" />
3178        <!-- If set to false, keeps the movement method from being set
3179             to the link movement method even if autoLink causes links
3180             to be found. -->
3181        <attr name="linksClickable" format="boolean" />
3182        <!-- If set, specifies that this TextView has a numeric input method.
3183             The default is false.
3184             {@deprecated Use inputType instead.} -->
3185        <attr name="numeric">
3186            <!-- Input is numeric. -->
3187            <flag name="integer" value="0x01" />
3188            <!-- Input is numeric, with sign allowed. -->
3189            <flag name="signed" value="0x03" />
3190            <!-- Input is numeric, with decimals allowed. -->
3191            <flag name="decimal" value="0x05" />
3192        </attr>
3193        <!-- If set, specifies that this TextView has a numeric input method
3194             and that these specific characters are the ones that it will
3195             accept.
3196             If this is set, numeric is implied to be true.
3197             The default is false. -->
3198        <attr name="digits" format="string" />
3199        <!-- If set, specifies that this TextView has a phone number input
3200             method. The default is false.
3201             {@deprecated Use inputType instead.} -->
3202        <attr name="phoneNumber" format="boolean" />
3203        <!-- If set, specifies that this TextView should use the specified
3204             input method (specified by fully-qualified class name).
3205             {@deprecated Use inputType instead.} -->
3206        <attr name="inputMethod" format="string" />
3207        <!-- If set, specifies that this TextView has a textual input method
3208             and should automatically capitalize what the user types.
3209             The default is "none".
3210             {@deprecated Use inputType instead.} -->
3211        <attr name="capitalize">
3212            <!-- Don't automatically capitalize anything. -->
3213            <enum name="none" value="0" />
3214            <!-- Capitalize the first word of each sentence. -->
3215            <enum name="sentences" value="1" />
3216            <!-- Capitalize the first letter of every word. -->
3217            <enum name="words" value="2" />
3218            <!-- Capitalize every character. -->
3219            <enum name="characters" value="3" />
3220        </attr>
3221        <!-- If set, specifies that this TextView has a textual input method
3222             and automatically corrects some common spelling errors.
3223             The default is "false".
3224             {@deprecated Use inputType instead.} -->
3225        <attr name="autoText" format="boolean" />
3226        <!-- If set, specifies that this TextView has an input method.
3227             It will be a textual one unless it has otherwise been specified.
3228             For TextView, this is false by default.  For EditText, it is
3229             true by default.
3230             {@deprecated Use inputType instead.} -->
3231        <attr name="editable" format="boolean" />
3232        <!-- If set, the text view will include its current complete text
3233             inside of its frozen icicle in addition to meta-data such as
3234             the current cursor position.  By default this is disabled;
3235             it can be useful when the contents of a text view is not stored
3236             in a persistent place such as a content provider. -->
3237        <attr name="freezesText" format="boolean" />
3238        <!-- If set, causes words that are longer than the view is wide
3239             to be ellipsized instead of broken in the middle.
3240             You will often also want to set scrollHorizontally or singleLine
3241             as well so that the text as a whole is also constrained to
3242             a single line instead of still allowed to be broken onto
3243             multiple lines. -->
3244        <attr name="ellipsize" />
3245        <!-- The drawable to be drawn above the text. -->
3246        <attr name="drawableTop" format="reference|color" />
3247        <!-- The drawable to be drawn below the text. -->
3248        <attr name="drawableBottom" format="reference|color" />
3249        <!-- The drawable to be drawn to the left of the text. -->
3250        <attr name="drawableLeft" format="reference|color" />
3251        <!-- The drawable to be drawn to the right of the text. -->
3252        <attr name="drawableRight" format="reference|color" />
3253        <!-- The drawable to be drawn to the start of the text. -->
3254        <attr name="drawableStart" format="reference|color" />
3255        <!-- The drawable to be drawn to the end of the text. -->
3256        <attr name="drawableEnd" format="reference|color" />
3257        <!-- The padding between the drawables and the text. -->
3258        <attr name="drawablePadding" format="dimension" />
3259        <!-- Extra spacing between lines of text. -->
3260        <attr name="lineSpacingExtra" format="dimension" />
3261        <!-- Extra spacing between lines of text, as a multiplier. -->
3262        <attr name="lineSpacingMultiplier" format="float" />
3263        <!-- The number of times to repeat the marquee animation. Only applied if the
3264             TextView has marquee enabled. -->
3265        <attr name="marqueeRepeatLimit" format="integer">
3266            <!-- Indicates that marquee should repeat indefinitely. -->
3267            <enum name="marquee_forever" value="-1" />
3268        </attr>
3269        <attr name="inputType" />
3270        <attr name="imeOptions" />
3271        <!-- An addition content type description to supply to the input
3272             method attached to the text view, which is private to the
3273             implementation of the input method.  This simply fills in
3274             the {@link android.view.inputmethod.EditorInfo#privateImeOptions
3275             EditorInfo.privateImeOptions} field when the input
3276             method is connected. -->
3277        <attr name="privateImeOptions" format="string" />
3278        <!-- Supply a value for
3279             {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel}
3280             used when an input method is connected to the text view. -->
3281        <attr name="imeActionLabel" format="string" />
3282        <!-- Supply a value for
3283             {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId}
3284             used when an input method is connected to the text view. -->
3285        <attr name="imeActionId" format="integer" />
3286        <!-- Reference to an
3287             {@link android.R.styleable#InputExtras &lt;input-extras&gt;}
3288             XML resource containing additional data to
3289             supply to an input method, which is private to the implementation
3290             of the input method.  This simply fills in
3291             the {@link android.view.inputmethod.EditorInfo#extras
3292             EditorInfo.extras} field when the input
3293             method is connected. -->
3294        <attr name="editorExtras" format="reference" />
3295
3296        <!-- Reference to a drawable that will be used to display a text selection
3297             anchor on the left side of a selection region. -->
3298        <attr name="textSelectHandleLeft" />
3299        <!-- Reference to a drawable that will be used to display a text selection
3300             anchor on the right side of a selection region. -->
3301        <attr name="textSelectHandleRight" />
3302        <!-- Reference to a drawable that will be used to display a text selection
3303             anchor for positioning the cursor within text. -->
3304        <attr name="textSelectHandle" />
3305        <!-- The layout of the view that is displayed on top of the cursor to paste inside a
3306             TextEdit field. -->
3307        <attr name="textEditPasteWindowLayout" />
3308        <!-- Variation of textEditPasteWindowLayout displayed when the clipboard is empty. -->
3309        <attr name="textEditNoPasteWindowLayout" />
3310        <!-- Used instead of textEditPasteWindowLayout when the window is moved on the side of the
3311             insertion cursor because it would be clipped if it were positioned on top. -->
3312        <attr name="textEditSidePasteWindowLayout" />
3313        <!-- Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. -->
3314        <attr name="textEditSideNoPasteWindowLayout" />
3315
3316        <!-- Layout of the TextView item that will populate the suggestion popup window. -->
3317        <attr name="textEditSuggestionItemLayout" />
3318
3319
3320        <!-- Reference to a drawable that will be drawn under the insertion cursor. -->
3321        <attr name="textCursorDrawable" />
3322
3323        <!-- Indicates that the content of a non-editable text can be selected. -->
3324        <attr name="textIsSelectable" />
3325        <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
3326        <attr name="textAllCaps" />
3327    </declare-styleable>
3328    <declare-styleable name="TextViewAppearance">
3329        <!-- Base text color, typeface, size, and style. -->
3330        <attr name="textAppearance" />
3331    </declare-styleable>
3332    <declare-styleable name="SelectionModeDrawables">
3333        <attr name="actionModeSelectAllDrawable" />
3334        <attr name="actionModeCutDrawable" />
3335        <attr name="actionModeCopyDrawable" />
3336        <attr name="actionModePasteDrawable" />
3337    </declare-styleable>
3338    <declare-styleable name="SuggestionSpan">
3339        <attr name="textUnderlineColor" />
3340        <attr name="textUnderlineThickness" />
3341    </declare-styleable>
3342    <!-- An <code>input-extras</code> is a container for extra data to supply to
3343         an input method.  Contains
3344         one more more {@link #Extra <extra>} tags.  -->
3345    <declare-styleable name="InputExtras">
3346    </declare-styleable>
3347    <declare-styleable name="AutoCompleteTextView">
3348        <!-- Defines the hint displayed in the drop down menu. -->
3349        <attr name="completionHint" format="string" />
3350        <!-- Defines the hint view displayed in the drop down menu. -->
3351        <attr name="completionHintView" format="reference" />
3352        <!-- Defines the number of characters that the user must type before
3353         completion suggestions are displayed in a drop down menu. -->
3354        <attr name="completionThreshold" format="integer" min="1" />
3355        <!-- Selector in a drop down list. -->
3356        <attr name="dropDownSelector" format="reference|color" />
3357        <!-- Amount of pixels by which the drop down should be offset vertically. -->
3358        <attr name="dropDownVerticalOffset" format="dimension" />
3359        <!-- Amount of pixels by which the drop down should be offset horizontally. -->
3360        <attr name="dropDownHorizontalOffset" format="dimension" />
3361        <!-- View to anchor the auto-complete dropdown to. If not specified, the text view itself
3362             is used. -->
3363        <attr name="dropDownAnchor" format="reference" />
3364        <!-- Specifies the basic width of the dropdown. Its value may
3365             be a dimension (such as "12dip") for a constant width,
3366             fill_parent or match_parent to match the width of the
3367             screen, or wrap_content to match the width of
3368             the anchored view. -->
3369        <attr name="dropDownWidth" format="dimension">
3370            <!-- The dropdown should fill the width of the screen.
3371                 This constant is deprecated starting from API Level 8 and
3372                 is replaced by {@code match_parent}. -->
3373            <enum name="fill_parent" value="-1" />
3374            <!-- The dropdown should fit the width of the screen.
3375                 Introduced in API Level 8. -->
3376            <enum name="match_parent" value="-1" />
3377            <!-- The dropdown should fit the width of its anchor. -->
3378            <enum name="wrap_content" value="-2" />
3379        </attr>
3380        <!-- Specifies the basic height of the dropdown. Its value may
3381             be a dimension (such as "12dip") for a constant height,
3382             fill_parent or match_parent to fill the height of the
3383             screen, or wrap_content to match the height of
3384             the content of the drop down. -->
3385        <attr name="dropDownHeight" format="dimension">
3386            <!-- The dropdown should fit the height of the screen.
3387                 This constant is deprecated starting from API Level 8 and
3388                 is replaced by {@code match_parent}. -->
3389            <enum name="fill_parent" value="-1" />
3390            <!-- The dropdown should fit the height of the screen.
3391                 Introduced in API Level 8. -->
3392            <enum name="match_parent" value="-1" />
3393            <!-- The dropdown should fit the height of the content. -->
3394            <enum name="wrap_content" value="-2" />
3395        </attr>
3396        <attr name="inputType" />
3397    </declare-styleable>
3398    <declare-styleable name="PopupWindow">
3399        <attr name="popupBackground" format="reference|color" />
3400        <attr name="popupAnimationStyle" format="reference" />
3401    </declare-styleable>
3402    <declare-styleable name="ViewAnimator">
3403        <!-- Identifier for the animation to use when a view is shown. -->
3404        <attr name="inAnimation" format="reference" />
3405        <!-- Identifier for the animation to use when a view is hidden. -->
3406        <attr name="outAnimation" format="reference" />
3407        <!-- Defines whether to animate the current View when the ViewAnimation
3408             is first displayed. -->
3409        <attr name="animateFirstView" format="boolean" />
3410    </declare-styleable>
3411    <declare-styleable name="ViewFlipper">
3412        <attr name="flipInterval" format="integer" min="0" />
3413        <!-- When true, automatically start animating -->
3414        <attr name="autoStart" format="boolean" />
3415    </declare-styleable>
3416    <declare-styleable name="AdapterViewAnimator">
3417        <!-- Identifier for the animation to use when a view is shown. -->
3418        <attr name="inAnimation" />
3419        <!-- Identifier for the animation to use when a view is hidden. -->
3420        <attr name="outAnimation" />
3421        <!--Defines whether the animator loops to the first view once it
3422        has reached the end of the list. -->
3423        <attr name="loopViews" format="boolean" />
3424        <!-- Defines whether to animate the current View when the ViewAnimation
3425        is first displayed. -->
3426        <attr name="animateFirstView" />
3427    </declare-styleable>
3428    <declare-styleable name="AdapterViewFlipper">
3429        <attr name="flipInterval" />
3430        <!-- When true, automatically start animating -->
3431        <attr name="autoStart" />
3432    </declare-styleable>
3433    <declare-styleable name="ViewSwitcher">
3434    </declare-styleable>
3435    <declare-styleable name="ScrollView">
3436        <!-- Defines whether the scrollview should stretch its content to fill the viewport. -->
3437        <attr name="fillViewport" format="boolean" />
3438    </declare-styleable>
3439    <declare-styleable name="HorizontalScrollView">
3440        <!-- Defines whether the scrollview should stretch its content to fill the viewport. -->
3441        <attr name="fillViewport" />
3442    </declare-styleable>
3443    <declare-styleable name="Spinner">
3444        <!-- The prompt to display when the spinner's dialog is shown. -->
3445        <attr name="prompt" format="reference" />
3446        <!-- Display mode for spinner options. -->
3447        <attr name="spinnerMode" format="enum">
3448            <!-- Spinner options will be presented to the user as a dialog window. -->
3449            <enum name="dialog" value="0" />
3450            <!-- Spinner options will be presented to the user as an inline dropdown
3451                 anchored to the spinner widget itself. -->
3452            <enum name="dropdown" value="1" />
3453        </attr>
3454        <!-- List selector to use for spinnerMode="dropdown" display. -->
3455        <attr name="dropDownSelector" />
3456        <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
3457        <attr name="popupBackground" />
3458        <!-- Vertical offset from the spinner widget for positioning the dropdown in
3459             spinnerMode="dropdown". -->
3460        <attr name="dropDownVerticalOffset" />
3461        <!-- Horizontal offset from the spinner widget for positioning the dropdown
3462             in spinnerMode="dropdown". -->
3463        <attr name="dropDownHorizontalOffset" />
3464        <!-- Width of the dropdown in spinnerMode="dropdown". -->
3465        <attr name="dropDownWidth" />
3466        <!-- Reference to a layout to use for displaying a prompt in the dropdown for
3467             spinnerMode="dropdown". This layout must contain a TextView with the id
3468             @android:id/text1 to be populated with the prompt text. -->
3469        <attr name="popupPromptView" format="reference" />
3470        <!-- Gravity setting for positioning the currently selected item. -->
3471        <attr name="gravity" />
3472        <!-- Whether this spinner should mark child views as enabled/disabled when
3473             the spinner itself is enabled/disabled. -->
3474        <attr name="disableChildrenWhenDisabled" format="boolean" />
3475    </declare-styleable>
3476
3477    <declare-styleable name="DatePicker">
3478        <!-- The first year (inclusive), for example "1940".
3479             {@deprecated Use minDate instead.}
3480         -->
3481        <attr name="startYear" format="integer" />
3482        <!-- The last year (inclusive), for example "2010".
3483             {@deprecated Use maxDate instead.}
3484         -->
3485        <attr name="endYear" format="integer" />
3486        <!-- Whether the spinners are shown. -->
3487        <attr name="spinnersShown" format="boolean" />
3488        <!-- Whether the calendar view is shown. -->
3489        <attr name="calendarViewShown" format="boolean" />
3490        <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
3491        <attr name="minDate" format="string" />
3492        <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
3493        <attr name="maxDate" format="string" />
3494        <!-- @hide The layout of the date picker. -->
3495        <attr name="internalLayout" format="reference"  />
3496    </declare-styleable>
3497
3498    <declare-styleable name="TwoLineListItem">
3499        <attr name="mode">
3500            <!-- Always show only the first line. -->
3501            <enum name="oneLine" value="1" />
3502            <!-- When selected show both lines, otherwise show only the first line.
3503                 This is the default mode. -->
3504            <enum name="collapsing" value="2" />
3505            <!-- Always show both lines. -->
3506            <enum name="twoLine" value="3" />
3507        </attr>
3508    </declare-styleable>
3509
3510    <!-- SlidingDrawer specific attributes. These attributes are used to configure
3511         a SlidingDrawer from XML. -->
3512    <declare-styleable name="SlidingDrawer">
3513        <!-- Identifier for the child that represents the drawer's handle. -->
3514        <attr name="handle" format="reference" />
3515        <!-- Identifier for the child that represents the drawer's content. -->
3516        <attr name="content" format="reference" />
3517        <!-- Orientation of the SlidingDrawer. -->
3518        <attr name="orientation" />
3519        <!-- Extra offset for the handle at the bottom of the SlidingDrawer. -->
3520        <attr name="bottomOffset" format="dimension"  />
3521        <!-- Extra offset for the handle at the top of the SlidingDrawer. -->
3522        <attr name="topOffset" format="dimension"  />
3523        <!-- Indicates whether the drawer can be opened/closed by a single tap
3524             on the handle.  (If false, the user must drag or fling, or click
3525             using the trackball, to open/close the drawer.)  Default is true. -->
3526        <attr name="allowSingleTap" format="boolean" />
3527        <!-- Indicates whether the drawer should be opened/closed with an animation
3528             when the user clicks the handle. Default is true. -->
3529        <attr name="animateOnClick" format="boolean" />
3530    </declare-styleable>
3531
3532    <!-- GestureOverlayView specific attributes. These attributes are used to configure
3533         a GestureOverlayView from XML. -->
3534    <declare-styleable name="GestureOverlayView">
3535        <!-- Width of the stroke used to draw the gesture. -->
3536        <attr name="gestureStrokeWidth" format="float" />
3537        <!-- Color used to draw a gesture. -->
3538        <attr name="gestureColor" format="color" />
3539        <!-- Color used to draw the user's strokes until we are sure it's a gesture. -->
3540        <attr name="uncertainGestureColor" format="color" />
3541        <!-- Time, in milliseconds, to wait before the gesture fades out after the user
3542             is done drawing it. -->
3543        <attr name="fadeOffset" format="integer" />
3544        <!-- Duration, in milliseconds, of the fade out effect after the user is done
3545             drawing a gesture. -->
3546        <attr name="fadeDuration" format="integer" />
3547        <!-- Defines the type of strokes that define a gesture. -->
3548        <attr name="gestureStrokeType">
3549            <!-- A gesture is made of only one stroke. -->
3550            <enum name="single" value="0" />
3551            <!-- A gesture is made of multiple strokes. -->
3552            <enum name="multiple" value="1" />
3553        </attr>
3554        <!-- Minimum length of a stroke before it is recognized as a gesture. -->
3555        <attr name="gestureStrokeLengthThreshold" format="float" />
3556        <!-- Squareness threshold of a stroke before it is recognized as a gesture. -->
3557        <attr name="gestureStrokeSquarenessThreshold" format="float" />
3558        <!-- Minimum curve angle a stroke must contain before it is recognized as a gesture. -->
3559        <attr name="gestureStrokeAngleThreshold" format="float" />
3560        <!-- Defines whether the overlay should intercept the motion events when a gesture
3561             is recognized. -->
3562        <attr name="eventsInterceptionEnabled" format="boolean" />
3563        <!-- Defines whether the gesture will automatically fade out after being recognized. -->
3564        <attr name="fadeEnabled" format="boolean" />
3565        <!-- Indicates whether horizontal (when the orientation is vertical) or vertical
3566             (when orientation is horizontal) strokes automatically define a gesture. -->
3567        <attr name="orientation" />
3568    </declare-styleable>
3569
3570    <declare-styleable name="QuickContactBadge">
3571        <attr name="quickContactWindowSize">
3572            <enum name="modeSmall" value="1" />
3573            <enum name="modeMedium" value="2" />
3574            <enum name="modeLarge" value="3" />
3575        </attr>
3576    </declare-styleable>
3577
3578    <!-- ======================================= -->
3579    <!-- Widget package parent layout attributes -->
3580    <!-- ======================================= -->
3581    <eat-comment />
3582
3583    <declare-styleable name="AbsoluteLayout_Layout">
3584        <attr name="layout_x" format="dimension" />
3585        <attr name="layout_y" format="dimension" />
3586    </declare-styleable>
3587    <declare-styleable name="LinearLayout_Layout">
3588        <attr name="layout_width" />
3589        <attr name="layout_height" />
3590        <attr name="layout_weight" format="float" />
3591        <attr name="layout_gravity" />
3592    </declare-styleable>
3593    <declare-styleable name="GridLayout_Layout">
3594        <!-- The row boundary delimiting the top of the group of cells
3595        occupied by this view. -->
3596        <attr name="layout_row" format="integer" />
3597        <!-- The row span: the difference between the bottom and top
3598        boundaries delimiting the group of cells occupied by this view.
3599        The default is one.
3600        See {@link android.widget.GridLayout.Spec}. -->
3601        <attr name="layout_rowSpan" format="integer" min="1" />
3602        <!-- The column boundary delimiting the left of the group of cells
3603        occupied by this view. -->
3604        <attr name="layout_column" />
3605        <!-- The column span: the difference between the right and left
3606        boundaries delimiting the group of cells occupied by this view.
3607        The default is one.
3608        See {@link android.widget.GridLayout.Spec}. -->
3609        <attr name="layout_columnSpan" format="integer" min="1" />
3610        <!-- Gravity specifies how a component should be placed in its group of cells.
3611        The default is LEFT | BASELINE.
3612        See {@link android.widget.GridLayout.LayoutParams#setGravity(int)}. -->
3613        <attr name="layout_gravity" />
3614    </declare-styleable>
3615    <declare-styleable name="FrameLayout_Layout">
3616        <attr name="layout_gravity" />
3617    </declare-styleable>
3618    <declare-styleable name="RelativeLayout_Layout">
3619        <!-- Positions the right edge of this view to the left of the given anchor view ID.
3620             Accommodates right margin of this view and left margin of anchor view. -->
3621        <attr name="layout_toLeftOf" format="reference" />
3622        <!-- Positions the left edge of this view to the right of the given anchor view ID.
3623            Accommodates left margin of this view and right margin of anchor view. -->
3624        <attr name="layout_toRightOf" format="reference" />
3625        <!-- Positions the bottom edge of this view above the given anchor view ID.
3626            Accommodates bottom margin of this view and top margin of anchor view. -->
3627        <attr name="layout_above" format="reference" />
3628        <!-- Positions the top edge of this view below the given anchor view ID.
3629            Accommodates top margin of this view and bottom margin of anchor view. -->
3630        <attr name="layout_below" format="reference" />
3631        <!-- Positions the baseline of this view on the baseline of the given anchor view ID. -->
3632        <attr name="layout_alignBaseline" format="reference" />
3633        <!-- Makes the left edge of this view match the left edge of the given anchor view ID.
3634            Accommodates left margin. -->
3635        <attr name="layout_alignLeft" format="reference" />
3636        <!-- Makes the top edge of this view match the top edge of the given anchor view ID.
3637            Accommodates top margin. -->
3638        <attr name="layout_alignTop" format="reference" />
3639        <!-- Makes the right edge of this view match the right edge of the given anchor view ID.
3640            Accommodates right margin. -->
3641        <attr name="layout_alignRight" format="reference" />
3642        <!-- Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
3643            Accommodates bottom margin. -->
3644        <attr name="layout_alignBottom" format="reference" />
3645        <!-- If true, makes the left edge of this view match the left edge of the parent.
3646            Accommodates left margin. -->
3647        <attr name="layout_alignParentLeft" format="boolean" />
3648        <!-- If true, makes the top edge of this view match the top edge of the parent.
3649            Accommodates top margin. -->
3650        <attr name="layout_alignParentTop" format="boolean" />
3651        <!-- If true, makes the right edge of this view match the right edge of the parent.
3652            Accommodates right margin. -->
3653        <attr name="layout_alignParentRight" format="boolean" />
3654        <!-- If true, makes the bottom edge of this view match the bottom edge of the parent.
3655            Accommodates bottom margin. -->
3656        <attr name="layout_alignParentBottom" format="boolean" />
3657        <!-- If true, centers this child horizontally and vertically within its parent. -->
3658        <attr name="layout_centerInParent" format="boolean" />
3659        <!-- If true, centers this child horizontally within its parent. -->
3660        <attr name="layout_centerHorizontal" format="boolean" />
3661        <!-- If true, centers this child vertically within its parent. -->
3662        <attr name="layout_centerVertical" format="boolean" />
3663        <!-- If set to true, the parent will be used as the anchor when the anchor cannot be
3664             be found for layout_toLeftOf, layout_toRightOf, etc. -->
3665        <attr name="layout_alignWithParentIfMissing" format="boolean" />
3666        <!-- Positions the end edge of this view to the start of the given anchor view ID.
3667             Accommodates end margin of this view and start margin of anchor view. -->
3668        <attr name="layout_toStartOf" format="reference" />
3669        <!-- Positions the start edge of this view to the end of the given anchor view ID.
3670             Accommodates start margin of this view and end margin of anchor view. -->
3671        <attr name="layout_toEndOf" format="reference" />
3672        <!-- Makes the start edge of this view match the start edge of the given anchor view ID.
3673            Accommodates start margin. -->
3674        <attr name="layout_alignStart" format="reference" />
3675        <!-- Makes the end edge of this view match the end edge of the given anchor view ID.
3676            Accommodates end margin. -->
3677        <attr name="layout_alignEnd" format="reference" />
3678        <!-- If true, makes the start edge of this view match the start edge of the parent.
3679            Accommodates start margin. -->
3680        <attr name="layout_alignParentStart" format="boolean" />
3681        <!-- If true, makes the end edge of this view match the end edge of the parent.
3682            Accommodates end margin. -->
3683        <attr name="layout_alignParentEnd" format="boolean" />
3684    </declare-styleable>
3685    <declare-styleable name="VerticalSlider_Layout">
3686        <attr name="layout_scale" format="float" />
3687    </declare-styleable>
3688
3689    <!-- attributes for internal rotary widget used in lock screen and phone app
3690      @hide -->
3691    <declare-styleable name="RotarySelector">
3692        <!-- Use "horizontal" or "vertical".  The default is horizontal. -->
3693        <attr name="orientation" />
3694    </declare-styleable>
3695
3696    <!-- @hide -->
3697    <declare-styleable name="WeightedLinearLayout">
3698        <attr name="majorWeightMin" format="float" />
3699        <attr name="minorWeightMin" format="float" />
3700        <attr name="majorWeightMax" format="float" />
3701        <attr name="minorWeightMax" format="float" />
3702    </declare-styleable>
3703
3704    <declare-styleable name="CalendarView">
3705        <!-- The first day of week according to {@link java.util.Calendar}. -->
3706        <attr name="firstDayOfWeek" format="integer" />
3707        <!-- Whether do show week numbers. -->
3708        <attr name="showWeekNumber" format="boolean" />
3709        <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
3710        <attr name="minDate" />
3711        <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
3712        <attr name="maxDate" />
3713        <!-- The number of weeks to be shown. -->
3714        <attr name="shownWeekCount" format="integer"/>
3715        <!-- The background color for the selected week. -->
3716        <attr name="selectedWeekBackgroundColor" format="color|reference" />
3717        <!-- The color for the dates of the focused month. -->
3718        <attr name="focusedMonthDateColor" format="color|reference" />
3719        <!-- The color for the dates of an unfocused month. -->
3720        <attr name="unfocusedMonthDateColor" format="color|reference" />
3721        <!-- The color for the week numbers. -->
3722        <attr name="weekNumberColor" format="color|reference" />
3723        <!-- The color for the separator line between weeks. -->
3724        <attr name="weekSeparatorLineColor" format="color|reference" />
3725        <!-- Drawable for the vertical bar shown at the beginning and at the end of the selected date. -->
3726        <attr name="selectedDateVerticalBar" format="reference" />
3727        <!-- The text appearance for the week day abbreviation of the calendar header. -->
3728        <attr name="weekDayTextAppearance" format="reference" />
3729        <!-- The text appearance for the calendar dates. -->
3730        <attr name="dateTextAppearance" format="reference" />
3731    </declare-styleable>
3732
3733    <declare-styleable name="NumberPicker">
3734        <!-- @hide Color for the solid color background if such for optimized rendering. -->
3735        <attr name="solidColor" format="color|reference" />
3736        <!-- @hide The divider for making the selection area. -->
3737        <attr name="selectionDivider" format="reference" />
3738        <!-- @hide The height of the selection divider. -->
3739        <attr name="selectionDividerHeight" format="dimension" />
3740        <!-- @hide The distance between the two selection dividers. -->
3741        <attr name="selectionDividersDistance" format="dimension" />
3742        <!-- @hide The min height of the NumberPicker. -->
3743        <attr name="internalMinHeight" format="dimension" />
3744        <!-- @hide The max height of the NumberPicker. -->
3745        <attr name="internalMaxHeight" format="dimension" />
3746        <!-- @hide The min width of the NumberPicker. -->
3747        <attr name="internalMinWidth" format="dimension" />
3748        <!-- @hide The max width of the NumberPicker. -->
3749        <attr name="internalMaxWidth" format="dimension" />
3750        <!-- @hide The layout of the number picker. -->
3751        <attr name="internalLayout" />
3752        <!-- @hide The drawable for pressed virtual (increment/decrement) buttons. -->
3753        <attr name="virtualButtonPressedDrawable" format="reference"/>
3754    </declare-styleable>
3755
3756    <declare-styleable name="TimePicker">
3757        <!-- @hide The layout of the time picker. -->
3758        <attr name="internalLayout" />
3759    </declare-styleable>
3760
3761    <!-- ========================= -->
3762    <!-- Drawable class attributes -->
3763    <!-- ========================= -->
3764    <eat-comment />
3765
3766    <!-- Base attributes that are available to all Drawable objects. -->
3767    <declare-styleable name="Drawable">
3768        <!-- Provides initial visibility state of the drawable; the default
3769             value is false.  See
3770             {@link android.graphics.drawable.Drawable#setVisible}. -->
3771        <attr name="visible" format="boolean" />
3772    </declare-styleable>
3773
3774    <!-- Drawable used to render several states. Each state is represented by
3775         a child drawable. -->
3776    <declare-styleable name="StateListDrawable">
3777        <!-- Indicates whether the drawable should be initially visible. -->
3778        <attr name="visible" />
3779        <!-- If true, allows the drawable's padding to change based on the
3780             current state that is selected.  If false, the padding will
3781             stay the same (based on the maximum padding of all the states).
3782             Enabling this feature requires that the owner of the drawable
3783             deal with performing layout when the state changes, which is
3784             often not supported. -->
3785        <attr name="variablePadding" format="boolean" />
3786        <!-- If true, the drawable's reported internal size will remain
3787             constant as the state changes; the size is the maximum of all
3788             of the states.  If false, the size will vary based on the
3789             current state. -->
3790        <attr name="constantSize" format="boolean" />
3791        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
3792             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
3793             an RGB 565 screen). -->
3794        <attr name="dither" format="boolean" />
3795        <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
3796        <attr name="enterFadeDuration" format="integer" />
3797        <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
3798        <attr name="exitFadeDuration" format="integer" />
3799    </declare-styleable>
3800
3801    <!-- Drawable used to render several animated frames. -->
3802    <declare-styleable name="AnimationDrawable">
3803        <attr name="visible" />
3804        <attr name="variablePadding" />
3805        <!-- If true, the animation will only run a single time and then
3806             stop.  If false (the default), it will continually run,
3807             restarting at the first frame after the last has finished. -->
3808        <attr name="oneshot" format="boolean" />
3809    </declare-styleable>
3810
3811    <!-- Represents a single frame inside an AnimationDrawable. -->
3812    <declare-styleable name="AnimationDrawableItem">
3813        <!-- Amount of time (in milliseconds) to display this frame. -->
3814        <attr name="duration" format="integer" />
3815        <!-- Reference to a drawable resource to use for the frame.  If not
3816             given, the drawable must be defined by the first child tag. -->
3817        <attr name="drawable" format="reference" />
3818    </declare-styleable>
3819
3820    <!-- Drawable used to render a geometric shape, with a gradient or a solid color. -->
3821    <declare-styleable name="GradientDrawable">
3822        <!-- Indicates whether the drawable should intially be visible. -->
3823        <attr name="visible" />
3824        <!-- Enables or disables dithering. -->
3825        <attr name="dither" />
3826        <!-- Indicates what shape to fill with a gradient. -->
3827        <attr name="shape">
3828            <!-- Rectangle shape, with optional rounder corners. -->
3829            <enum name="rectangle" value="0" />
3830            <!-- Oval shape. -->
3831            <enum name="oval" value="1" />
3832            <!-- Line shape. -->
3833            <enum name="line" value="2" />
3834            <!-- Ring shape. -->
3835            <enum name="ring" value="3" />
3836        </attr>
3837        <!-- Inner radius of the ring expressed as a ratio of the ring's width. For instance,
3838             if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9.
3839             This value is ignored if innerRadius is defined. Default value is 9. -->
3840        <attr name="innerRadiusRatio" format="float" />
3841        <!-- Thickness of the ring expressed as a ratio of the ring's width. For instance,
3842             if thicknessRatio=3, then the thickness equals the ring's width divided by 3.
3843             This value is ignored if innerRadius is defined. Default value is 3. -->
3844        <attr name="thicknessRatio" format="float" />
3845        <!-- Inner radius of the ring. When defined, innerRadiusRatio is ignored. -->
3846        <attr name="innerRadius" format="dimension" />
3847        <!-- Thickness of the ring. When defined, thicknessRatio is ignored. -->
3848        <attr name="thickness" format="dimension" />
3849        <!-- Indicates whether the drawable's level affects the way the gradient is drawn. -->
3850        <attr name="useLevel" />
3851    </declare-styleable>
3852
3853    <!-- Used to specify the size of the shape for GradientDrawable. -->
3854    <declare-styleable name="GradientDrawableSize">
3855        <!-- Width of the gradient shape. -->
3856        <attr name="width" />
3857        <!-- Height of the gradient shape. -->
3858        <attr name="height" />
3859    </declare-styleable>
3860
3861    <!-- Used to describe the gradient used to fill the shape of a GradientDrawable. -->
3862    <declare-styleable name="GradientDrawableGradient">
3863        <!-- Start color of the gradient. -->
3864        <attr name="startColor" format="color" />
3865        <!-- Optional center color. For linear gradients, use centerX or centerY
3866             to place the center color. -->
3867        <attr name="centerColor" format="color" />
3868        <!-- End color of the gradient. -->
3869        <attr name="endColor" format="color" />
3870        <attr name="useLevel" format="boolean" />
3871        <!-- Angle of the gradient. -->
3872        <attr name="angle" format="float" />
3873        <!-- Type of gradient. The default type is linear. -->
3874        <attr name="type">
3875            <!-- Linear gradient. -->
3876            <enum name="linear" value="0" />
3877            <!-- Radial, or circular, gradient. -->
3878            <enum name="radial" value="1" />
3879            <!-- Sweep, or angled or diamond, gradient. -->
3880            <enum name="sweep"  value="2" />
3881        </attr>
3882        <!-- X coordinate of the origin of the gradient within the shape. -->
3883        <attr name="centerX" format="float|fraction" />
3884        <!-- Y coordinate of the origin of the gradient within the shape. -->
3885        <attr name="centerY" format="float|fraction" />
3886        <!-- Radius of the gradient, used only with radial gradient. -->
3887        <attr name="gradientRadius" format="float|fraction" />
3888    </declare-styleable>
3889
3890    <!-- Used to fill the shape of GradientDrawable with a solid color. -->
3891    <declare-styleable name="GradientDrawableSolid">
3892        <!-- Solid color for the gradient shape. -->
3893        <attr name="color" format="color" />
3894    </declare-styleable>
3895
3896    <!-- Used to describe the optional stroke of a GradientDrawable. -->
3897    <declare-styleable name="GradientDrawableStroke">
3898        <!-- Width of the gradient shape's stroke. -->
3899        <attr name="width" />
3900        <!-- Color of the gradient shape's stroke. -->
3901        <attr name="color" />
3902        <!-- Length of a dash in the stroke. -->
3903        <attr name="dashWidth" format="dimension" />
3904        <!-- Gap between dashes in the stroke. -->
3905        <attr name="dashGap" format="dimension" />
3906    </declare-styleable>
3907
3908    <!-- Describes the corners for the rectangle shape of a GradientDrawable.
3909         This can be used to render rounded corners. -->
3910    <declare-styleable name="DrawableCorners">
3911        <!-- Defines the radius of the four corners. -->
3912        <attr name="radius" format="dimension" />
3913        <!-- Radius of the top left corner. -->
3914        <attr name="topLeftRadius" format="dimension" />
3915        <!-- Radius of the top right corner. -->
3916        <attr name="topRightRadius" format="dimension" />
3917        <!-- Radius of the bottom left corner. -->
3918        <attr name="bottomLeftRadius" format="dimension" />
3919        <!-- Radius of the bottom right corner. -->
3920        <attr name="bottomRightRadius" format="dimension" />
3921    </declare-styleable>
3922
3923    <!-- Used to specify the optional padding of a GradientDrawable. -->
3924    <declare-styleable name="GradientDrawablePadding">
3925        <!-- Amount of left padding inside the gradient shape. -->
3926        <attr name="left" format="dimension" />
3927        <!-- Amount of top padding inside the gradient shape. -->
3928        <attr name="top" format="dimension" />
3929        <!-- Amount of right padding inside the gradient shape. -->
3930        <attr name="right" format="dimension" />
3931        <!-- Amount of bottom padding inside the gradient shape. -->
3932        <attr name="bottom" format="dimension" />
3933    </declare-styleable>
3934
3935    <!-- Drawable used to render several drawables stacked on top of each other.
3936         Each child drawable can be controlled individually. -->
3937    <declare-styleable name="LayerDrawable">
3938        <!-- Indicates the opacity of the layer. This can be useful to allow the
3939              system to enable drawing optimizations. The default value is
3940              translucent. -->
3941        <attr name="opacity">
3942            <!-- Indicates that the layer is opaque and contains no transparent
3943                 nor translucent pixels. -->
3944            <enum name="opaque" value="-1" />
3945            <!-- The layer is completely transparent (no pixel will be drawn.) -->
3946            <enum name="transparent" value="-2" />
3947            <!-- The layer has translucent pixels. -->
3948            <enum name="translucent" value="-3" />
3949        </attr>
3950    </declare-styleable>
3951
3952    <!-- Describes an item (or child) of a LayerDrawable. -->
3953    <declare-styleable name="LayerDrawableItem">
3954        <!-- Left coordinate of the layer. -->
3955        <attr name="left" />
3956        <!-- Top coordinate of the layer. -->
3957        <attr name="top" />
3958        <!-- Right coordinate of the layer. -->
3959        <attr name="right" />
3960        <!-- Bottom coordinate of the layer. -->
3961        <attr name="bottom" />
3962        <!-- Drawable used to render the layer. -->
3963        <attr name="drawable" />
3964        <!-- Identifier of the layer. This can be used to retrieve the layer
3965             from a drawbable container. -->
3966        <attr name="id" />
3967    </declare-styleable>
3968
3969    <declare-styleable name="LevelListDrawableItem">
3970        <!-- The minimum level allowed for this item. -->
3971        <attr name="minLevel" format="integer" />
3972        <!-- The maximum level allowed for this item. -->
3973        <attr name="maxLevel" format="integer" />
3974        <attr name="drawable" />
3975    </declare-styleable>
3976
3977    <declare-styleable name="MipmapDrawableItem">
3978        <attr name="drawable" />
3979    </declare-styleable>
3980
3981    <!-- Drawable used to rotate another drawable. -->
3982    <declare-styleable name="RotateDrawable">
3983        <attr name="visible" />
3984        <attr name="fromDegrees" format="float" />
3985        <attr name="toDegrees" format="float" />
3986        <attr name="pivotX" format="float|fraction" />
3987        <attr name="pivotY" format="float|fraction" />
3988        <attr name="drawable" />
3989    </declare-styleable>
3990
3991    <declare-styleable name="AnimatedRotateDrawable">
3992        <attr name="visible" />
3993        <attr name="frameDuration" format="integer" />
3994        <attr name="framesCount" format="integer" />
3995        <attr name="pivotX" />
3996        <attr name="pivotY" />
3997        <attr name="drawable" />
3998    </declare-styleable>
3999
4000    <declare-styleable name="InsetDrawable">
4001        <attr name="visible" />
4002        <attr name="drawable" />
4003        <attr name="insetLeft" format="dimension" />
4004        <attr name="insetRight" format="dimension" />
4005        <attr name="insetTop" format="dimension" />
4006        <attr name="insetBottom" format="dimension" />
4007    </declare-styleable>
4008
4009    <!-- Drawable used to draw bitmaps. -->
4010    <declare-styleable name="BitmapDrawable">
4011        <!-- Identifier of the bitmap file. This attribute is mandatory. -->
4012        <attr name="src" />
4013        <!-- Enables or disables antialiasing. -->
4014        <attr name="antialias" format="boolean" />
4015        <!-- Enables or disables bitmap filtering. Filtering is used when the bitmap is
4016             shrunk or stretched to smooth its apperance. -->
4017        <attr name="filter" format="boolean" />
4018        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
4019             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
4020             an RGB 565 screen). -->
4021        <attr name="dither" />
4022        <!-- Defines the gravity for the bitmap. The gravity indicates where to position
4023             the drawable in its container if the bitmap is smaller than the container. -->
4024        <attr name="gravity" />
4025        <!-- Defines the tile mode. When the tile mode is enabled, the bitmap is repeated.
4026             Gravity is ignored when the tile mode is enabled. -->
4027        <attr name="tileMode">
4028            <!-- Do not tile the bitmap. This is the default value. -->
4029            <enum name="disabled" value="-1" />
4030            <!-- Replicates the edge color. -->
4031            <enum name="clamp" value="0" />
4032            <!-- Repeats the bitmap in both direction. -->
4033            <enum name="repeat" value="1" />
4034            <!-- Repeats the shader's image horizontally and vertically, alternating
4035                 mirror images so that adjacent images always seam. -->
4036            <enum name="mirror" value="2" />
4037        </attr>
4038    </declare-styleable>
4039
4040    <!-- Drawable used to draw 9-patches. -->
4041    <declare-styleable name="NinePatchDrawable">
4042        <!-- Identifier of the bitmap file. This attribute is mandatory. -->
4043        <attr name="src" />
4044        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
4045             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
4046             an RGB 565 screen). -->
4047        <attr name="dither" />
4048    </declare-styleable>
4049
4050    <!-- Drawable used to draw a single color. -->
4051    <declare-styleable name="ColorDrawable">
4052        <!-- The color to use. -->
4053        <attr name="color" />
4054    </declare-styleable>
4055
4056    <declare-styleable name="ScaleDrawable">
4057        <!-- Scale width, expressed as a percentage of the drawable's bound. The value's
4058             format is XX%. For instance: 100%, 12.5%, etc.-->
4059        <attr name="scaleWidth" format="string" />
4060        <!-- Scale height, expressed as a percentage of the drawable's bound. The value's
4061             format is XX%. For instance: 100%, 12.5%, etc.-->
4062        <attr name="scaleHeight" format="string" />
4063        <!-- Specifies where the drawable is positioned after scaling. The default value is
4064             left. -->
4065        <attr name="scaleGravity">
4066            <!-- Push object to the top of its container, not changing its size. -->
4067            <flag name="top" value="0x30" />
4068            <!-- Push object to the bottom of its container, not changing its size. -->
4069            <flag name="bottom" value="0x50" />
4070            <!-- Push object to the left of its container, not changing its size. -->
4071            <flag name="left" value="0x03" />
4072            <!-- Push object to the right of its container, not changing its size. -->
4073            <flag name="right" value="0x05" />
4074            <!-- Place object in the vertical center of its container, not changing its size. -->
4075            <flag name="center_vertical" value="0x10" />
4076            <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
4077            <flag name="fill_vertical" value="0x70" />
4078            <!-- Place object in the horizontal center of its container, not changing its size. -->
4079            <flag name="center_horizontal" value="0x01" />
4080            <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
4081            <flag name="fill_horizontal" value="0x07" />
4082            <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
4083            <flag name="center" value="0x11" />
4084            <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
4085            <flag name="fill" value="0x77" />
4086            <!-- Additional option that can be set to have the top and/or bottom edges of
4087                 the child clipped to its container's bounds.
4088                 The clip will be based on the vertical gravity: a top gravity will clip the bottom
4089                 edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
4090            <flag name="clip_vertical" value="0x80" />
4091            <!-- Additional option that can be set to have the left and/or right edges of
4092                 the child clipped to its container's bounds.
4093                 The clip will be based on the horizontal gravity: a left gravity will clip the right
4094                 edge, a right gravity will clip the left edge, and neither will clip both edges. -->
4095            <flag name="clip_horizontal" value="0x08" />
4096            <!-- Push object to the beginning of its container, not changing its size. -->
4097            <flag name="start" value="0x00800003" />
4098            <!-- Push object to the end of its container, not changing its size. -->
4099            <flag name="end" value="0x00800005" />
4100        </attr>
4101        <!-- Reference to a drawable resource to draw with the specified scale. -->
4102        <attr name="drawable" />
4103        <!-- Use the drawable's intrinsic width and height as minimum size values.
4104             Useful if the target drawable is a 9-patch or otherwise should not be scaled
4105             down beyond a minimum size. -->
4106        <attr name="useIntrinsicSizeAsMinimum" format="boolean" />
4107    </declare-styleable>
4108
4109    <declare-styleable name="ClipDrawable">
4110        <!-- The orientation for the clip. -->
4111        <attr name="clipOrientation">
4112            <!-- Clip the drawable horizontally. -->
4113            <flag name="horizontal" value="1" />
4114            <!-- Clip the drawable vertically. -->
4115            <flag name="vertical" value="2" />
4116        </attr>
4117        <!-- Specifies where to clip within the drawable. The default value is
4118             left. -->
4119        <attr name="gravity" />
4120        <!-- Reference to a drawable resource to draw with the specified scale. -->
4121        <attr name="drawable" />
4122    </declare-styleable>
4123
4124    <!-- Defines the padding of a ShapeDrawable. -->
4125    <declare-styleable name="ShapeDrawablePadding">
4126        <!-- Left padding. -->
4127        <attr name="left" />
4128        <!-- Top padding. -->
4129        <attr name="top" />
4130        <!-- Right padding. -->
4131        <attr name="right" />
4132        <!-- Bottom padding. -->
4133        <attr name="bottom" />
4134    </declare-styleable>
4135
4136    <!-- Drawable used to draw shapes. -->
4137    <declare-styleable name="ShapeDrawable">
4138        <!-- Defines the color of the shape. -->
4139        <attr name="color" />
4140        <!-- Defines the width of the shape. -->
4141        <attr name="width" />
4142        <!-- Defines the height of the shape. -->
4143        <attr name="height" />
4144        <!-- Enables or disables dithering. -->
4145        <attr name="dither" />
4146    </declare-styleable>
4147
4148    <!-- ========================== -->
4149    <!-- Animation class attributes -->
4150    <!-- ========================== -->
4151    <eat-comment />
4152
4153    <declare-styleable name="Animation">
4154        <!-- Defines the interpolator used to smooth the animation movement in time. -->
4155        <attr name="interpolator" />
4156        <!-- When set to true, the value of fillBefore is taken into account. -->
4157        <attr name="fillEnabled" format="boolean" />
4158        <!-- When set to true or when fillEnabled is not set to true, the animation transformation
4159             is applied before the animation has started. The default value is true. -->
4160        <attr name="fillBefore" format="boolean" />
4161        <!-- When set to true, the animation transformation is applied after the animation is
4162             over. The default value is false. If fillEnabled is not set to true and the
4163             animation is not set on a View, fillAfter is assumed to be true.-->
4164        <attr name="fillAfter" format="boolean" />
4165        <!-- Amount of time (in milliseconds) for the animation to run. -->
4166        <attr name="duration" />
4167        <!-- Delay in milliseconds before the animation runs, once start time is reached. -->
4168        <attr name="startOffset" format="integer" />
4169        <!-- Defines how many times the animation should repeat. The default value is 0. -->
4170        <attr name="repeatCount" format="integer">
4171            <enum name="infinite" value="-1" />
4172        </attr>
4173        <!-- Defines the animation behavior when it reaches the end and the repeat count is
4174             greater than 0 or infinite. The default value is restart. -->
4175        <attr name="repeatMode">
4176            <!-- The animation starts again from the beginning. -->
4177            <enum name="restart" value="1" />
4178            <!-- The animation plays backward. -->
4179            <enum name="reverse" value="2" />
4180        </attr>
4181        <!-- Allows for an adjustment of the Z ordering of the content being
4182             animated for the duration of the animation.  The default value is normal. -->
4183        <attr name="zAdjustment">
4184            <!-- The content being animated be kept in its current Z order. -->
4185            <enum name="normal" value="0" />
4186            <!-- The content being animated is forced on top of all other
4187                 content for the duration of the animation. -->
4188            <enum name="top" value="1" />
4189            <!-- The content being animated is forced under all other
4190                 content for the duration of the animation. -->
4191            <enum name="bottom" value="-1" />
4192        </attr>
4193        <!-- Special background behind animation.  Only for use with window
4194             animations.  Can only be a color, and only black.  If 0, the
4195             default, there is no background. -->
4196        <attr name="background" />
4197        <!-- Special option for window animations: if this window is on top
4198             of a wallpaper, don't animate the wallpaper with it. -->
4199        <attr name="detachWallpaper" format="boolean" />
4200    </declare-styleable>
4201
4202    <declare-styleable name="AnimationSet">
4203        <attr name="shareInterpolator" format="boolean" />
4204        <attr name="fillBefore" />
4205        <attr name="fillAfter" />
4206        <attr name="duration" />
4207        <attr name="startOffset" />
4208        <attr name="repeatMode" />
4209    </declare-styleable>
4210
4211    <declare-styleable name="RotateAnimation">
4212        <attr name="fromDegrees" />
4213        <attr name="toDegrees" />
4214        <attr name="pivotX" />
4215        <attr name="pivotY" />
4216    </declare-styleable>
4217
4218    <declare-styleable name="ScaleAnimation">
4219        <attr name="fromXScale" format="float|fraction|dimension" />
4220        <attr name="toXScale" format="float|fraction|dimension" />
4221        <attr name="fromYScale" format="float|fraction|dimension" />
4222        <attr name="toYScale" format="float|fraction|dimension" />
4223        <attr name="pivotX" />
4224        <attr name="pivotY" />
4225    </declare-styleable>
4226
4227    <declare-styleable name="TranslateAnimation">
4228        <attr name="fromXDelta" format="float|fraction" />
4229        <attr name="toXDelta" format="float|fraction" />
4230        <attr name="fromYDelta" format="float|fraction" />
4231        <attr name="toYDelta" format="float|fraction" />
4232    </declare-styleable>
4233
4234    <declare-styleable name="AlphaAnimation">
4235        <attr name="fromAlpha" format="float" />
4236        <attr name="toAlpha" format="float" />
4237    </declare-styleable>
4238
4239    <declare-styleable name="LayoutAnimation">
4240        <!-- Fraction of the animation duration used to delay the beginning of
4241         the animation of each child. -->
4242        <attr name="delay" format="float|fraction" />
4243        <!-- Animation to use on each child. -->
4244        <attr name="animation" format="reference" />
4245        <!-- The order in which the animations will be started. -->
4246        <attr name="animationOrder">
4247            <!-- Animations are started in the natural order. -->
4248            <enum name="normal" value="0" />
4249            <!-- Animations are started in the reverse order. -->
4250            <enum name="reverse" value="1" />
4251            <!-- Animations are started randomly. -->
4252            <enum name="random" value="2" />
4253        </attr>
4254        <!-- Interpolator used to interpolate the delay between the start of
4255         each animation. -->
4256        <attr name="interpolator" />
4257    </declare-styleable>
4258
4259    <declare-styleable name="GridLayoutAnimation">
4260        <!-- Fraction of the animation duration used to delay the beginning of
4261         the animation of each column. -->
4262        <attr name="columnDelay" format="float|fraction" />
4263        <!-- Fraction of the animation duration used to delay the beginning of
4264         the animation of each row. -->
4265        <attr name="rowDelay" format="float|fraction" />
4266        <!-- Direction of the animation in the grid. -->
4267        <attr name="direction">
4268            <!-- Animates columns from left to right. -->
4269            <flag name="left_to_right" value="0x0" />
4270            <!-- Animates columns from right to left. -->
4271            <flag name="right_to_left" value="0x1" />
4272            <!-- Animates rows from top to bottom. -->
4273            <flag name="top_to_bottom" value="0x0" />
4274            <!-- Animates rows from bottom to top. -->
4275            <flag name="bottom_to_top" value="0x2" />
4276        </attr>
4277        <!-- Priority of the rows and columns. When the priority is none,
4278         both rows and columns have the same priority. When the priority is
4279         column, the animations will be applied on the columns first. The same
4280         goes for rows. -->
4281        <attr name="directionPriority">
4282            <!-- Rows and columns are animated at the same time. -->
4283            <enum name="none"   value="0" />
4284            <!-- Columns are animated first. -->
4285            <enum name="column" value="1" />
4286            <!-- Rows are animated first. -->
4287            <enum name="row"    value="2" />
4288        </attr>
4289    </declare-styleable>
4290
4291    <declare-styleable name="AccelerateInterpolator">
4292        <!-- This is the amount of deceleration to add when easing in. -->
4293        <attr name="factor" format="float" />
4294    </declare-styleable>
4295
4296    <declare-styleable name="DecelerateInterpolator">
4297        <!-- This is the amount of acceleration to add when easing out. -->
4298        <attr name="factor" />
4299    </declare-styleable>
4300
4301    <declare-styleable name="CycleInterpolator">
4302        <attr name="cycles" format="float" />
4303    </declare-styleable>
4304
4305    <declare-styleable name="AnticipateInterpolator">
4306        <!-- This is the amount of tension. -->
4307        <attr name="tension" format="float" />
4308    </declare-styleable>
4309
4310    <declare-styleable name="OvershootInterpolator">
4311        <!-- This is the amount of tension. -->
4312        <attr name="tension" />
4313    </declare-styleable>
4314
4315    <declare-styleable name="AnticipateOvershootInterpolator">
4316        <!-- This is the amount of tension. -->
4317        <attr name="tension" />
4318        <!-- This is the amount by which to multiply the tension. -->
4319        <attr name="extraTension" format="float" />
4320    </declare-styleable>
4321
4322    <!-- ========================== -->
4323    <!-- ValueAnimator class attributes -->
4324    <!-- ========================== -->
4325    <eat-comment />
4326
4327    <declare-styleable name="Animator">
4328        <!-- Defines the interpolator used to smooth the animation movement in time. -->
4329        <attr name="interpolator" />
4330        <!-- Amount of time (in milliseconds) for the animation to run. -->
4331        <attr name="duration" />
4332        <!-- Delay in milliseconds before the animation runs, once start time is reached. -->
4333        <attr name="startOffset"/>
4334        <!-- Defines how many times the animation should repeat. The default value is 0. -->
4335        <attr name="repeatCount"/>
4336        <!-- Defines the animation behavior when it reaches the end and the repeat count is
4337             greater than 0 or infinite. The default value is restart. -->
4338        <attr name="repeatMode"/>
4339        <!-- Value the animation starts from. -->
4340        <attr name="valueFrom" format="float|integer|color|dimension"/>
4341        <!-- Value the animation animates to. -->
4342        <attr name="valueTo" format="float|integer|color|dimension"/>
4343        <!-- The type of valueFrom and valueTo. -->
4344        <attr name="valueType">
4345            <!-- valueFrom and valueTo are floats. This is the default value is valueType is
4346                 unspecified. Note that if either valueFrom or valueTo represent colors
4347                 (beginning with "#"), then this attribute is ignored and the color values are
4348                 interpreted as integers. -->
4349            <enum name="floatType" value="0" />
4350            <!-- valueFrom and valueTo are integers. -->
4351            <enum name="intType"   value="1" />
4352        </attr>
4353    </declare-styleable>
4354
4355    <!-- ========================== -->
4356    <!-- ObjectAnimator class attributes -->
4357    <!-- ========================== -->
4358    <eat-comment />
4359
4360    <declare-styleable name="PropertyAnimator">
4361        <!-- Name of the property being animated. -->
4362        <attr name="propertyName" format="string"/>
4363    </declare-styleable>
4364
4365
4366    <!-- ========================== -->
4367    <!-- AnimatorSet class attributes -->
4368    <!-- ========================== -->
4369    <eat-comment />
4370
4371    <declare-styleable name="AnimatorSet">
4372        <!-- Name of the property being animated. -->
4373        <attr name="ordering">
4374            <!-- child animations should be played together. -->
4375            <enum name="together" value="0" />
4376            <!-- child animations should be played sequentially, in the same order as the xml. -->
4377            <enum name="sequentially" value="1" />
4378        </attr>
4379    </declare-styleable>
4380
4381    <!-- ========================== -->
4382    <!-- State attributes           -->
4383    <!-- ========================== -->
4384    <eat-comment />
4385
4386    <!-- Drawable states.
4387         The mapping of Drawable states to a particular drawables is specified
4388         in the "state" elements of a Widget's "selector" element.
4389         Possible values:
4390         <ul>
4391         <li>"state_focused"
4392         <li>"state_window_focused"
4393         <li>"state_enabled"
4394         <li>"state_checked"
4395         <li>"state_selected"
4396         <li>"state_active"
4397         <li>"state_single"
4398         <li>"state_first"
4399         <li>"state_mid"
4400         <li>"state_last"
4401         <li>"state_only"
4402         <li>"state_pressed"
4403         <li>"state_activated"
4404         <li>"state_error"
4405         <li>"state_circle"
4406         <li>"state_rect"
4407         <li>"state_grow"
4408         <li>"state_move"
4409         <li>"state_hovered"
4410         <li>"state_drag_can_accept"
4411         <li>"state_drag_hovered"
4412         <li>"state_accessibility_focused"
4413         </ul>  -->
4414    <declare-styleable name="DrawableStates">
4415        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4416             set when a view has input focus. -->
4417        <attr name="state_focused" format="boolean" />
4418        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4419             set when a view's window has input focus. -->
4420        <attr name="state_window_focused" format="boolean" />
4421        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4422             set when a view is enabled. -->
4423        <attr name="state_enabled" format="boolean" />
4424        <!-- State identifier indicating that the object <var>may</var> display a check mark.
4425             See {@link R.attr#state_checked} for the identifier that indicates whether it is
4426             actually checked. -->
4427        <attr name="state_checkable" format="boolean"/>
4428        <!-- State identifier indicating that the object is currently checked.  See
4429             {@link R.attr#state_checkable} for an additional identifier that can indicate if
4430             any object may ever display a check, regardless of whether state_checked is
4431             currently set. -->
4432        <attr name="state_checked" format="boolean"/>
4433        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4434             set when a view (or one of its parents) is currently selected. -->
4435        <attr name="state_selected" format="boolean" />
4436        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4437             set when the user is pressing down in a view. -->
4438        <attr name="state_pressed" format="boolean" />
4439        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4440             set when a view or its parent has been "activated" meaning the user has currently
4441             marked it as being of interest.  This is an alternative representation of
4442             state_checked for when the state should be propagated down the view hierarchy. -->
4443        <attr name="state_activated" format="boolean" />
4444        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.-->
4445        <attr name="state_active" format="boolean" />
4446        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.-->
4447        <attr name="state_single" format="boolean" />
4448        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.-->
4449        <attr name="state_first" format="boolean" />
4450        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.-->
4451        <attr name="state_middle" format="boolean" />
4452        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.-->
4453        <attr name="state_last" format="boolean" />
4454        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4455             indicating that the Drawable is in a view that is hardware accelerated.
4456             This means that the device can at least render a full-screen scaled
4457             bitmap with one layer of text and bitmaps composited on top of it
4458             at 60fps.  When this is set, the colorBackgroundCacheHint will be
4459             ignored even if it specifies a solid color, since that optimization
4460             is not needed. -->
4461        <attr name="state_accelerated" format="boolean" />
4462        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
4463             set when a pointer is hovering over the view. -->
4464        <attr name="state_hovered" format="boolean" />
4465        <!-- State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
4466             indicating that the Drawable is in a view that is capable of accepting a drop of
4467             the content currently being manipulated in a drag-and-drop operation. -->
4468        <attr name="state_drag_can_accept" format="boolean" />
4469        <!-- State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
4470             indicating that a drag operation (for which the Drawable's view is a valid recipient)
4471             is currently positioned over the Drawable. -->
4472        <attr name="state_drag_hovered" format="boolean" />
4473        <!-- State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
4474             indicating that a View has accessibility focus. -->
4475        <attr name="state_accessibility_focused" format="boolean" />
4476    </declare-styleable>
4477    <declare-styleable name="ViewDrawableStates">
4478        <attr name="state_pressed" />
4479        <attr name="state_focused" />
4480        <attr name="state_selected" />
4481        <attr name="state_window_focused" />
4482        <attr name="state_enabled" />
4483        <attr name="state_activated" />
4484        <attr name="state_accelerated" />
4485        <attr name="state_hovered" />
4486        <attr name="state_drag_can_accept" />
4487        <attr name="state_drag_hovered" />
4488    </declare-styleable>
4489    <!-- State array representing a menu item that is currently checked. -->
4490    <declare-styleable name="MenuItemCheckedState">
4491        <attr name="state_checkable" />
4492        <attr name="state_checked" />
4493    </declare-styleable>
4494    <!-- State array representing a menu item that is checkable but is not currently checked. -->
4495    <declare-styleable name="MenuItemUncheckedState">
4496        <attr name="state_checkable" />
4497    </declare-styleable>
4498    <!-- State array representing a menu item that is currently focused and checked. -->
4499    <declare-styleable name="MenuItemCheckedFocusedState">
4500        <attr name="state_checkable" />
4501        <attr name="state_checked" />
4502        <attr name="state_focused" />
4503    </declare-styleable>
4504    <!-- State array representing a menu item that is focused and checkable but is not currently checked. -->
4505    <declare-styleable name="MenuItemUncheckedFocusedState">
4506        <attr name="state_checkable" />
4507        <attr name="state_focused" />
4508    </declare-styleable>
4509    <!-- State array representing an expandable list child's indicator. -->
4510    <declare-styleable name="ExpandableListChildIndicatorState">
4511        <!-- State identifier indicating the child is the last child within its group. -->
4512        <attr name="state_last" />
4513    </declare-styleable>
4514    <!-- State array representing an expandable list group's indicator. -->
4515    <declare-styleable name="ExpandableListGroupIndicatorState">
4516        <!-- State identifier indicating the group is expanded. -->
4517        <attr name="state_expanded" format="boolean" />
4518        <!-- State identifier indicating the group is empty (has no children). -->
4519        <attr name="state_empty" format="boolean" />
4520    </declare-styleable>
4521    <declare-styleable name="PopupWindowBackgroundState">
4522        <!-- State identifier indicating the popup will be above the anchor. -->
4523        <attr name="state_above_anchor" format="boolean" />
4524    </declare-styleable>
4525    <declare-styleable name="TextViewMultiLineBackgroundState">
4526        <!-- State identifier indicating a TextView has a multi-line layout. -->
4527        <attr name="state_multiline" format="boolean" />
4528    </declare-styleable>
4529
4530    <!-- ***************************************************************** -->
4531    <!-- Support for Searchable activities. -->
4532    <!-- ***************************************************************** -->
4533    <eat-comment />
4534
4535    <!-- Searchable activities and applications must provide search configuration information
4536        in an XML file, typically called searchable.xml.  This file is referenced in your manifest.
4537        For a more in-depth discussion of search configuration, please refer to
4538        {@link android.app.SearchManager}. -->
4539    <declare-styleable name="Searchable">
4540          <!--<strong>This is deprecated.</strong><br/>The default
4541              application icon is now always used, so this attribute is
4542              obsolete.-->
4543        <attr name="icon" />
4544        <!-- This is the user-displayed name of the searchable activity.  <i>Required
4545            attribute.</i> -->
4546        <attr name="label" />
4547        <!-- If supplied, this string will be displayed as a hint to the user.  <i>Optional
4548            attribute.</i> -->
4549        <attr name="hint" />
4550        <!-- If supplied, this string will be displayed as the text of the "Search" button.
4551          <i>Optional attribute.</i>
4552          {@deprecated This will create a non-standard UI appearance, because the search bar UI is
4553                       changing to use only icons for its buttons.}-->
4554        <attr name="searchButtonText" format="string" />
4555        <attr name="inputType" />
4556        <attr name="imeOptions" />
4557
4558        <!-- Additional features are controlled by mode bits in this field.  Omitting
4559            this field, or setting to zero, provides default behavior.  <i>Optional attribute.</i>
4560        -->
4561        <attr name="searchMode">
4562          <!-- If set, this flag enables the display of the search target (label) within the
4563               search bar.  If neither bad mode is selected, no badge will be shown. -->
4564          <flag name="showSearchLabelAsBadge" value="0x04" />
4565          <!--<strong>This is deprecated.</strong><br/>The default
4566              application icon is now always used, so this option is
4567              obsolete.-->
4568          <flag name="showSearchIconAsBadge" value="0x08" />
4569          <!-- If set, this flag causes the suggestion column SUGGEST_COLUMN_INTENT_DATA to
4570               be considered as the text for suggestion query rewriting.  This should only
4571               be used when the values in SUGGEST_COLUMN_INTENT_DATA are suitable for user
4572               inspection and editing - typically, HTTP/HTTPS Uri's. -->
4573          <flag name="queryRewriteFromData" value="0x10" />
4574          <!-- If set, this flag causes the suggestion column SUGGEST_COLUMN_TEXT_1 to
4575               be considered as the text for suggestion query rewriting.  This should be used
4576               for suggestions in which no query text is provided and the SUGGEST_COLUMN_INTENT_DATA
4577               values are not suitable for user inspection and editing. -->
4578          <flag name="queryRewriteFromText" value="0x20" />
4579        </attr>
4580
4581        <!-- Voice search features are controlled by mode bits in this field.  Omitting
4582            this field, or setting to zero, provides default behavior.
4583            If showVoiceSearchButton is set, then launchWebSearch or launchRecognizer must
4584            also be set.  <i>Optional attribute.</i>
4585        -->
4586        <attr name="voiceSearchMode">
4587          <!-- If set, display a voice search button.  This only takes effect if voice search is
4588               available on the device. -->
4589          <flag name="showVoiceSearchButton" value="0x01" />
4590          <!-- If set, the voice search button will take the user directly to a built-in
4591               voice web search activity.  Most applications will not use this flag, as it
4592               will take the user away from the activity in which search was invoked. -->
4593          <flag name="launchWebSearch" value="0x02" />
4594          <!-- If set, the voice search button will take the user directly to a built-in
4595               voice recording activity.  This activity will prompt the user to speak,
4596               transcribe the spoken text, and forward the resulting query
4597               text to the searchable activity, just as if the user had typed it into
4598               the search UI and clicked the search button. -->
4599          <flag name="launchRecognizer" value="0x04" />
4600        </attr>
4601
4602        <!-- If provided, this specifies the language model that should be used by the
4603             voice recognition system.  See
4604             {@link android.speech.RecognizerIntent#EXTRA_LANGUAGE_MODEL } for more information.
4605             If not provided, the default value
4606             {@link android.speech.RecognizerIntent#LANGUAGE_MODEL_FREE_FORM } will be used. -->
4607        <attr name="voiceLanguageModel" format="string" />
4608        <!-- If provided, this specifies a prompt that will be displayed during voice input. -->
4609        <attr name="voicePromptText" format="string" />
4610        <!-- If provided, this specifies the spoken language to be expected, and that it will be
4611             different than the one set in the {@link java.util.Locale#getDefault()}. -->
4612        <attr name="voiceLanguage" format="string" />
4613        <!-- If provided, enforces the maximum number of results to return, including the "best"
4614             result which will always be provided as the SEARCH intent's primary query.  Must be one
4615             or greater.  If not provided, the recognizer will choose how many results to return.
4616             -->
4617        <attr name="voiceMaxResults" format="integer" />
4618
4619        <!-- If provided, this is the trigger indicating that the searchable activity
4620            provides suggestions as well.  The value must be a fully-qualified content provider
4621            authority (e.g. "com.example.android.apis.SuggestionProvider") and should match the
4622            "android:authorities" tag in your content provider's manifest entry.  <i>Optional
4623            attribute.</i> -->
4624        <attr name="searchSuggestAuthority" format="string" />
4625        <!-- If provided, this will be inserted in the suggestions query Uri, after the authority
4626            you have provide but before the standard suggestions path. <i>Optional attribute.</i>
4627            -->
4628        <attr name="searchSuggestPath" format="string" />
4629        <!-- If provided, suggestion queries will be passed into your query function
4630            as the <i>selection</i> parameter.  Typically this will be a WHERE clause for your
4631            database, and will contain a single question mark, which represents the actual query
4632            string that has been typed by the user.  If not provided, then the user query text
4633            will be appended to the query Uri (after an additional "/".)  <i>Optional
4634            attribute.</i> -->
4635        <attr name="searchSuggestSelection" format="string" />
4636
4637        <!-- If provided, and not overridden by an action in the selected suggestion, this
4638            string will be placed in the action field of the {@link android.content.Intent Intent}
4639            when the user clicks a suggestion.  <i>Optional attribute.</i> -->
4640        <attr name="searchSuggestIntentAction" format="string" />
4641        <!-- If provided, and not overridden by an action in the selected suggestion, this
4642            string will be placed in the data field of the {@link android.content.Intent Intent}
4643            when the user clicks a suggestion.  <i>Optional attribute.</i> -->
4644        <attr name="searchSuggestIntentData" format="string" />
4645
4646        <!-- If provided, this is the minimum number of characters needed to trigger
4647             search suggestions. The default value is 0. <i>Optional attribute.</i> -->
4648        <attr name="searchSuggestThreshold" format="integer" />
4649
4650        <!-- If provided and <code>true</code>, this searchable activity will be
4651             included in any global lists of search targets.
4652             The default value is <code>false</code>. <i>Optional attribute.</i>. -->
4653        <attr name="includeInGlobalSearch" format="boolean" />
4654
4655        <!-- If provided and <code>true</code>, this searchable activity will be invoked for all
4656             queries in a particular session. If set to <code>false</code> and the activity
4657             returned zero results for a query, it will not be invoked again in that session for
4658             supersets of that zero-results query. For example, if the activity returned zero
4659             results for "bo", it would not be queried again for "bob".
4660             The default value is <code>false</code>. <i>Optional attribute.</i>. -->
4661        <attr name="queryAfterZeroResults" format="boolean" />
4662        <!-- If provided, this string will be used to describe the searchable item in the
4663             searchable items settings within system search settings. <i>Optional
4664             attribute.</i> -->
4665        <attr name="searchSettingsDescription" format="string" />
4666
4667        <!-- If provided and <code>true</code>, URLs entered in the search dialog while searching
4668             within this activity would be detected and treated as URLs (show a 'go' button in the
4669             keyboard and invoke the browser directly when user launches the URL instead of passing
4670             the URL to the activity). If set to <code>false</code> any URLs entered are treated as
4671             normal query text.
4672             The default value is <code>false</code>. <i>Optional attribute.</i>. -->
4673        <attr name="autoUrlDetect" format="boolean" />
4674
4675    </declare-styleable>
4676
4677    <!-- In order to process special action keys during search, you must define them using
4678            one or more "ActionKey" elements in your Searchable metadata.  For a more in-depth
4679            discussion of action code handling, please refer to {@link android.app.SearchManager}.
4680    -->
4681    <declare-styleable name="SearchableActionKey">
4682        <!-- This attribute denotes the action key you wish to respond to.  Note that not
4683            all action keys are actually supported using this mechanism, as many of them are
4684            used for typing, navigation, or system functions.  This will be added to the
4685            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
4686            searchable activity.  To examine the key code, use
4687            {@link android.content.Intent#getIntExtra getIntExtra(SearchManager.ACTION_KEY)}.
4688            <p>Note, in addition to the keycode, you must also provide one or more of the action
4689            specifier attributes.  <i>Required attribute.</i> -->
4690        <attr name="keycode" />
4691
4692        <!-- If you wish to handle an action key during normal search query entry, you
4693            must define an action string here.  This will be added to the
4694            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
4695            searchable activity.  To examine the string, use
4696            {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}.
4697            <i>Optional attribute.</i> -->
4698        <attr name="queryActionMsg"  format="string" />
4699
4700        <!-- If you wish to handle an action key while a suggestion is being displayed <i>and
4701            selected</i>, there are two ways to handle this.  If <i>all</i> of your suggestions
4702            can handle the action key, you can simply define the action message using this
4703            attribute.  This will be added to the
4704            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
4705            searchable activity.  To examine the string, use
4706            {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}.
4707            <i>Optional attribute.</i> -->
4708        <attr name="suggestActionMsg"  format="string" />
4709
4710        <!-- If you wish to handle an action key while a suggestion is being displayed <i>and
4711            selected</i>, but you do not wish to enable this action key for every suggestion,
4712            then you can use this attribute to control it on a suggestion-by-suggestion basis.
4713            First, you must define a column (and name it here) where your suggestions will include
4714            the action string.  Then, in your content provider, you must provide this column, and
4715            when desired, provide data in this column.
4716            The search manager will look at your suggestion cursor, using the string
4717            provided here in order to select a column, and will use that to select a string from
4718            the cursor.  That string will be added to the
4719            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to
4720            your searchable activity.  To examine the string, use
4721            {@link android.content.Intent#getStringExtra
4722            getStringExtra(SearchManager.ACTION_MSG)}.  <i>If the data does not exist for the
4723            selection suggestion, the action key will be ignored.</i><i>Optional attribute.</i> -->
4724        <attr name="suggestActionMsgColumn" format="string" />
4725
4726    </declare-styleable>
4727
4728    <!-- ***************************************************************** -->
4729    <!-- Support for MapView. -->
4730    <!-- ***************************************************************** -->
4731    <eat-comment />
4732
4733    <!-- The set of attributes for a MapView. -->
4734    <declare-styleable name="MapView">
4735        <!-- Value is a string that specifies the Maps API Key to use. -->
4736        <attr name="apiKey" format="string" />
4737    </declare-styleable>
4738
4739    <!-- **************************************************************** -->
4740    <!-- Menu XML inflation. -->
4741    <!-- **************************************************************** -->
4742    <eat-comment />
4743
4744    <!-- Base attributes that are available to all Menu objects. -->
4745    <declare-styleable name="Menu">
4746    </declare-styleable>
4747
4748    <!-- Base attributes that are available to all groups. -->
4749    <declare-styleable name="MenuGroup">
4750
4751        <!-- The ID of the group. -->
4752        <attr name="id" />
4753
4754        <!-- The category applied to all items within this group.
4755             (This will be or'ed with the orderInCategory attribute.) -->
4756        <attr name="menuCategory">
4757            <!-- Items are part of a container. -->
4758            <enum name="container" value="0x00010000" />
4759            <!-- Items are provided by the system. -->
4760            <enum name="system" value="0x00020000" />
4761            <!-- Items are user-supplied secondary (infrequently used). -->
4762            <enum name="secondary" value="0x00030000" />
4763            <!-- Items are alternative actions. -->
4764            <enum name="alternative" value="0x00040000" />
4765        </attr>
4766
4767        <!-- The order within the category applied to all items within this group.
4768             (This will be or'ed with the category attribute.) -->
4769        <attr name="orderInCategory" format="integer" />
4770
4771        <!-- Whether the items are capable of displaying a check mark. -->
4772        <attr name="checkableBehavior">
4773            <!-- The items are not checkable. -->
4774            <enum name="none" value="0" />
4775            <!-- The items are all checkable. -->
4776            <enum name="all" value="1" />
4777            <!-- The items are checkable and there will only be a single checked item in
4778                 this group. -->
4779            <enum name="single" value="2" />
4780        </attr>
4781
4782        <!-- Whether the items are shown/visible. -->
4783        <attr name="visible" />
4784
4785        <!-- Whether the items are enabled. -->
4786        <attr name="enabled" />
4787
4788    </declare-styleable>
4789
4790    <!-- Base attributes that are available to all Item objects. -->
4791    <declare-styleable name="MenuItem">
4792
4793        <!-- The ID of the item. -->
4794        <attr name="id" />
4795
4796        <!-- The category applied to the item.
4797             (This will be or'ed with the orderInCategory attribute.) -->
4798        <attr name="menuCategory" />
4799
4800        <!-- The order within the category applied to the item.
4801             (This will be or'ed with the category attribute.) -->
4802        <attr name="orderInCategory" />
4803
4804        <!-- The title associated with the item. -->
4805        <attr name="title" format="string" />
4806
4807        <!-- The condensed title associated with the item.  This is used in situations where the
4808             normal title may be too long to be displayed. -->
4809        <attr name="titleCondensed" format="string" />
4810
4811        <!-- The icon associated with this item.  This icon will not always be shown, so
4812             the title should be sufficient in describing this item. -->
4813        <attr name="icon" />
4814
4815        <!-- The alphabetic shortcut key.  This is the shortcut when using a keyboard
4816             with alphabetic keys. -->
4817        <attr name="alphabeticShortcut" format="string" />
4818
4819        <!-- The numeric shortcut key.  This is the shortcut when using a numeric (e.g., 12-key)
4820             keyboard. -->
4821        <attr name="numericShortcut" format="string" />
4822
4823        <!-- Whether the item is capable of displaying a check mark. -->
4824        <attr name="checkable" format="boolean" />
4825
4826        <!-- Whether the item is checked.  Note that you must first have enabled checking with
4827             the checkable attribute or else the check mark will not appear. -->
4828        <attr name="checked" />
4829
4830        <!-- Whether the item is shown/visible. -->
4831        <attr name="visible" />
4832
4833        <!-- Whether the item is enabled. -->
4834        <attr name="enabled" />
4835
4836        <!-- Name of a method on the Context used to inflate the menu that will be
4837             called when the item is clicked. -->
4838        <attr name="onClick" />
4839
4840        <!-- How this item should display in the Action Bar, if present. -->
4841        <attr name="showAsAction">
4842            <!-- Never show this item in an action bar, show it in the overflow menu instead.
4843                 Mutually exclusive with "ifRoom" and "always". -->
4844            <flag name="never" value="0" />
4845            <!-- Show this item in an action bar if there is room for it as determined
4846                 by the system. Favor this option over "always" where possible.
4847                 Mutually exclusive with "never" and "always". -->
4848            <flag name="ifRoom" value="1" />
4849            <!-- Always show this item in an actionbar, even if it would override
4850                 the system's limits of how much stuff to put there. This may make
4851                 your action bar look bad on some screens. In most cases you should
4852                 use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
4853            <flag name="always" value="2" />
4854            <!-- When this item is shown as an action in the action bar, show a text
4855                 label with it even if it has an icon representation. -->
4856            <flag name="withText" value="4" />
4857            <!-- This item's action view collapses to a normal menu
4858                 item. When expanded, the action view takes over a
4859                 larger segment of its container. -->
4860            <flag name="collapseActionView" value="8" />
4861        </attr>
4862
4863        <!-- An optional layout to be used as an action view.
4864             See {@link android.view.MenuItem#setActionView(android.view.View)}
4865             for more info. -->
4866        <attr name="actionLayout" format="reference" />
4867
4868        <!-- The name of an optional View class to instantiate and use as an
4869             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
4870             for more info. -->
4871        <attr name="actionViewClass" format="string" />
4872
4873        <!-- The name of an optional ActionProvider class to instantiate an action view
4874             and perform operations such as default action for that menu item.
4875             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
4876             for more info. -->
4877        <attr name="actionProviderClass" format="string" />
4878
4879    </declare-styleable>
4880
4881    <!-- Attrbitutes for a ActvityChooserView. -->
4882    <declare-styleable name="ActivityChooserView">
4883        <!-- The maximal number of items initially shown in the activity list. -->
4884        <attr name="initialActivityCount" format="string" />
4885        <!-- The drawable to show in the button for expanding the activities overflow popup.
4886             <strong>Note:</strong> Clients would like to set this drawable
4887             as a clue about the action the chosen activity will perform. For
4888             example, if share activity is to be chosen the drawable should
4889             give a clue that sharing is to be performed.
4890         -->
4891        <attr name="expandActivityOverflowButtonDrawable" format="reference" />
4892    </declare-styleable>
4893
4894    <!-- **************************************************************** -->
4895    <!-- Preferences framework. -->
4896    <!-- **************************************************************** -->
4897    <eat-comment />
4898
4899    <!-- Base attributes available to PreferenceGroup. -->
4900    <declare-styleable name="PreferenceGroup">
4901        <!-- Whether to order the Preference under this group as they appear in the XML file.
4902             If this is false, the ordering will follow the Preference order attribute and
4903             default to alphabetic for those without the order attribute. -->
4904        <attr name="orderingFromXml" format="boolean" />
4905    </declare-styleable>
4906
4907    <!-- Attribute for a header describing the item shown in the top-level list
4908         from which the selects the set of preference to dig in to. -->
4909    <declare-styleable name="PreferenceHeader">
4910        <!-- Identifier value for the header. -->
4911        <attr name="id" />
4912        <!-- The title of the item that is shown to the user. -->
4913        <attr name="title" />
4914        <!-- The summary for the item. -->
4915        <attr name="summary" format="string" />
4916        <!-- The title for the bread crumb of this item. -->
4917        <attr name="breadCrumbTitle" format="string" />
4918        <!-- The short title for the bread crumb of this item. -->
4919        <attr name="breadCrumbShortTitle" format="string" />
4920        <!-- An icon for the item. -->
4921        <attr name="icon" />
4922        <!-- The fragment that is displayed when the user selects this item. -->
4923        <attr name="fragment" format="string" />
4924    </declare-styleable>
4925
4926    <!-- WARNING:  If adding attributes to Preference, make sure it does not conflict
4927                   with a View's attributes.  Some subclasses (e.g., EditTextPreference)
4928                   proxy all attributes to its EditText widget. -->
4929    <eat-comment />
4930
4931    <!-- Base attributes available to Preference. -->
4932    <declare-styleable name="Preference">
4933        <!-- The optional icon for the preference -->
4934        <attr name="icon" />
4935        <!-- The key to store the Preference value. -->
4936        <attr name="key" format="string" />
4937        <!-- The title for the Preference in a PreferenceActivity screen. -->
4938        <attr name="title" />
4939        <!-- The summary for the Preference in a PreferenceActivity screen. -->
4940        <attr name="summary" />
4941        <!-- The order for the Preference (lower values are to be ordered first). If this is not
4942             specified, the default orderin will be alphabetic. -->
4943        <attr name="order" format="integer" />
4944        <!-- When used inside of a modern PreferenceActivity, this declares
4945             a new PreferenceFragment to be shown when the user selects this item. -->
4946        <attr name="fragment" />
4947        <!-- The layout for the Preference in a PreferenceActivity screen. This should
4948             rarely need to be changed, look at widgetLayout instead. -->
4949        <attr name="layout" />
4950        <!-- The layout for the controllable widget portion of a Preference. This is inflated
4951             into the layout for a Preference and should be used more frequently than
4952             the layout attribute. For example, a checkbox preference would specify
4953             a custom layout (consisting of just the CheckBox) here. -->
4954        <attr name="widgetLayout" format="reference" />
4955        <!-- Whether the Preference is enabled. -->
4956        <attr name="enabled" />
4957        <!-- Whether the Preference is selectable. -->
4958        <attr name="selectable" format="boolean" />
4959        <!-- The key of another Preference that this Preference will depend on.  If the other
4960             Preference is not set or is off, this Preference will be disabled. -->
4961        <attr name="dependency" format="string" />
4962        <!-- Whether the Preference stores its value to the shared preferences. -->
4963        <attr name="persistent" />
4964        <!-- The default value for the preference, which will be set either if persistence
4965             is off or persistence is on and the preference is not found in the persistent
4966             storage.  -->
4967        <attr name="defaultValue" format="string|boolean|integer|reference|float" />
4968        <!-- Whether the view of this Preference should be disabled when
4969             this Preference is disabled. -->
4970        <attr name="shouldDisableView" format="boolean" />
4971    </declare-styleable>
4972
4973    <!-- Base attributes available to CheckBoxPreference. -->
4974    <declare-styleable name="CheckBoxPreference">
4975        <!-- The summary for the Preference in a PreferenceActivity screen when the
4976             CheckBoxPreference is checked. If separate on/off summaries are not
4977             needed, the summary attribute can be used instead. -->
4978        <attr name="summaryOn" format="string" />
4979        <!-- The summary for the Preference in a PreferenceActivity screen when the
4980             CheckBoxPreference is unchecked. If separate on/off summaries are not
4981             needed, the summary attribute can be used instead. -->
4982        <attr name="summaryOff" format="string" />
4983        <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default,
4984             dependents will be disabled when this is unchecked, so the value of this preference is false. -->
4985        <attr name="disableDependentsState" format="boolean" />
4986    </declare-styleable>
4987
4988    <!-- Base attributes available to DialogPreference. -->
4989    <declare-styleable name="DialogPreference">
4990        <!-- The title in the dialog. -->
4991        <attr name="dialogTitle" format="string" />
4992        <!-- The message in the dialog. If a dialogLayout is provided and contains
4993             a TextView with ID android:id/message, this message will be placed in there. -->
4994        <attr name="dialogMessage" format="string" />
4995        <!-- The icon for the dialog. -->
4996        <attr name="dialogIcon" format="reference" />
4997        <!-- The positive button text for the dialog. Set to @null to hide the positive button. -->
4998        <attr name="positiveButtonText" format="string" />
4999        <!-- The negative button text for the dialog. Set to @null to hide the negative button. -->
5000        <attr name="negativeButtonText" format="string" />
5001        <!-- A layout to be used as the content View for the dialog. By default, this shouldn't
5002             be needed. If a custom DialogPreference is required, this should be set. For example,
5003             the EditTextPreference uses a layout with an EditText as this attribute. -->
5004        <attr name="dialogLayout" format="reference" />
5005    </declare-styleable>
5006
5007    <!-- Base attributes available to ListPreference. -->
5008    <declare-styleable name="ListPreference">
5009        <!-- The human-readable array to present as a list. Each entry must have a corresponding
5010             index in entryValues. -->
5011        <attr name="entries" />
5012        <!-- The array to find the value to save for a preference when an entry from
5013             entries is selected. If a user clicks on the second item in entries, the
5014             second item in this array will be saved to the preference. -->
5015        <attr name="entryValues" format="reference" />
5016    </declare-styleable>
5017
5018    <declare-styleable name="MultiSelectListPreference">
5019        <!-- The human-readable array to present as a list. Each entry must have a corresponding
5020             index in entryValues. -->
5021        <attr name="entries" />
5022        <!-- The array to find the value to save for a preference when an entry from
5023             entries is selected. If a user clicks the second item in entries, the
5024             second item in this array will be saved to the preference. -->
5025        <attr name="entryValues" />
5026    </declare-styleable>
5027
5028    <!-- Base attributes available to RingtonePreference. -->
5029    <declare-styleable name="RingtonePreference">
5030        <!-- Which ringtone type(s) to show in the picker. -->
5031        <attr name="ringtoneType">
5032            <!-- Ringtones. -->
5033            <flag name="ringtone" value="1" />
5034            <!-- Notification sounds. -->
5035            <flag name="notification" value="2" />
5036            <!-- Alarm sounds. -->
5037            <flag name="alarm" value="4" />
5038            <!-- All available ringtone sounds. -->
5039            <flag name="all" value="7" />
5040        </attr>
5041        <!-- Whether to show an item for a default sound. -->
5042        <attr name="showDefault" format="boolean" />
5043        <!-- Whether to show an item for 'Silent'. -->
5044        <attr name="showSilent" format="boolean" />
5045    </declare-styleable>
5046
5047    <!-- Base attributes available to VolumePreference. -->
5048    <declare-styleable name="VolumePreference">
5049        <!-- Different audio stream types. -->
5050        <attr name="streamType">
5051            <enum name="voice" value="0" />
5052            <enum name="system" value="1" />
5053            <enum name="ring" value="2" />
5054            <enum name="music" value="3" />
5055            <enum name="alarm" value="4" />
5056        </attr>
5057    </declare-styleable>
5058
5059    <declare-styleable name="InputMethodService">
5060        <!-- Background to use for entire input method when it is being
5061             shown in fullscreen mode with the extract view, to ensure
5062             that it completely covers the application.  This allows,
5063             for example, the candidate view to be hidden
5064             while in fullscreen mode without having the application show through
5065             behind it.-->
5066        <attr name="imeFullscreenBackground" format="reference|color" />
5067        <!-- Animation to use when showing the fullscreen extract UI after
5068             it had previously been hidden. -->
5069        <attr name="imeExtractEnterAnimation" format="reference" />
5070        <!-- Animation to use when hiding the fullscreen extract UI after
5071             it had previously been shown. -->
5072        <attr name="imeExtractExitAnimation" format="reference" />
5073    </declare-styleable>
5074
5075    <declare-styleable name="KeyboardView">
5076        <!-- Default KeyboardView style. -->
5077        <attr name="keyboardViewStyle" format="reference" />
5078
5079        <!-- Image for the key. This image needs to be a StateListDrawable, with the following
5080             possible states: normal, pressed, checkable, checkable+pressed, checkable+checked,
5081             checkable+checked+pressed. -->
5082        <attr name="keyBackground" format="reference" />
5083
5084        <!-- Size of the text for character keys. -->
5085        <attr name="keyTextSize" format="dimension" />
5086
5087        <!-- Size of the text for custom keys with some text and no icon. -->
5088        <attr name="labelTextSize" format="dimension" />
5089
5090        <!-- Color to use for the label in a key. -->
5091        <attr name="keyTextColor" format="color" />
5092
5093        <!-- Layout resource for key press feedback.-->
5094        <attr name="keyPreviewLayout" format="reference" />
5095
5096        <!-- Vertical offset of the key press feedback from the key. -->
5097        <attr name="keyPreviewOffset" format="dimension" />
5098
5099        <!-- Height of the key press feedback popup. -->
5100        <attr name="keyPreviewHeight" format="dimension" />
5101
5102        <!-- Amount to offset the touch Y coordinate by, for bias correction. -->
5103        <attr name="verticalCorrection" format="dimension" />
5104
5105        <!-- Layout resource for popup keyboards. -->
5106        <attr name="popupLayout" format="reference" />
5107
5108        <attr name="shadowColor" />
5109        <attr name="shadowRadius" />
5110    </declare-styleable>
5111
5112    <declare-styleable name="KeyboardViewPreviewState">
5113        <!-- State for {@link android.inputmethodservice.KeyboardView KeyboardView}
5114                key preview background. -->
5115        <attr name="state_long_pressable" format="boolean" />
5116    </declare-styleable>
5117
5118    <declare-styleable name="Keyboard">
5119        <!-- Default width of a key, in pixels or percentage of display width. -->
5120        <attr name="keyWidth" format="dimension|fraction" />
5121        <!-- Default height of a key, in pixels or percentage of display width. -->
5122        <attr name="keyHeight" format="dimension|fraction" />
5123        <!-- Default horizontal gap between keys. -->
5124        <attr name="horizontalGap" format="dimension|fraction" />
5125        <!-- Default vertical gap between rows of keys. -->
5126        <attr name="verticalGap" format="dimension|fraction" />
5127    </declare-styleable>
5128
5129    <declare-styleable name="Keyboard_Row">
5130        <!-- Row edge flags. -->
5131        <attr name="rowEdgeFlags">
5132            <!-- Row is anchored to the top of the keyboard. -->
5133            <flag name="top" value="4" />
5134            <!-- Row is anchored to the bottom of the keyboard. -->
5135            <flag name="bottom" value="8" />
5136        </attr>
5137        <!-- Mode of the keyboard. If the mode doesn't match the
5138             requested keyboard mode, the row will be skipped. -->
5139        <attr name="keyboardMode" format="reference" />
5140    </declare-styleable>
5141
5142    <declare-styleable name="Keyboard_Key">
5143        <!-- The unicode value or comma-separated values that this key outputs. -->
5144        <attr name="codes" format="integer|string" />
5145        <!-- The XML keyboard layout of any popup keyboard. -->
5146        <attr name="popupKeyboard" format="reference" />
5147        <!-- The characters to display in the popup keyboard. -->
5148        <attr name="popupCharacters" format="string" />
5149        <!-- Key edge flags. -->
5150        <attr name="keyEdgeFlags">
5151            <!-- Key is anchored to the left of the keyboard. -->
5152            <flag name="left" value="1" />
5153            <!-- Key is anchored to the right of the keyboard. -->
5154            <flag name="right" value="2" />
5155        </attr>
5156        <!-- Whether this is a modifier key such as Alt or Shift. -->
5157        <attr name="isModifier" format="boolean" />
5158        <!-- Whether this is a toggle key. -->
5159        <attr name="isSticky" format="boolean" />
5160        <!-- Whether long-pressing on this key will make it repeat. -->
5161        <attr name="isRepeatable" format="boolean" />
5162        <!-- The icon to show in the popup preview. -->
5163        <attr name="iconPreview" format="reference" />
5164        <!-- The string of characters to output when this key is pressed. -->
5165        <attr name="keyOutputText" format="string" />
5166        <!-- The label to display on the key. -->
5167        <attr name="keyLabel" format="string" />
5168        <!-- The icon to display on the key instead of the label. -->
5169        <attr name="keyIcon" format="reference" />
5170        <!-- Mode of the keyboard. If the mode doesn't match the
5171             requested keyboard mode, the key will be skipped. -->
5172        <attr name="keyboardMode" />
5173    </declare-styleable>
5174
5175    <!-- =============================== -->
5176    <!-- AppWidget package class attributes -->
5177    <!-- =============================== -->
5178    <eat-comment />
5179
5180    <!-- Use <code>appwidget-provider</code> as the root tag of the XML resource that
5181         describes an AppWidget provider.  See {@link android.appwidget android.appwidget}
5182         package for more info.
5183     -->
5184    <declare-styleable name="AppWidgetProviderInfo">
5185        <!-- Minimum width of the AppWidget. -->
5186        <attr name="minWidth"/>
5187        <!-- Minimum height of the AppWidget. -->
5188        <attr name="minHeight"/>
5189        <!-- Minimum width that the AppWidget can be resized to. -->
5190        <attr name="minResizeWidth" format="dimension"/>
5191        <!-- Minimum height that the AppWidget can be resized to. -->
5192        <attr name="minResizeHeight" format="dimension"/>
5193        <!-- Update period in milliseconds, or 0 if the AppWidget will update itself. -->
5194        <attr name="updatePeriodMillis" format="integer" />
5195        <!-- A resource id of a layout. -->
5196        <attr name="initialLayout" format="reference" />
5197        <!-- A resource id of a layout. -->
5198        <attr name="initialKeyguardLayout" format="reference" />
5199        <!-- A class name in the AppWidget's package to be launched to configure.
5200             If not supplied, then no activity will be launched. -->
5201        <attr name="configure" format="string" />
5202        <!-- A preview of what the AppWidget will look like after it's configured.
5203              If not supplied, the AppWidget's icon will be used. -->
5204        <attr name="previewImage" format="reference" />
5205        <!-- The view id of the AppWidget subview which should be auto-advanced.
5206             by the widget's host. -->
5207        <attr name="autoAdvanceViewId" format="reference" />
5208        <!-- Optional parameter which indicates if and how this widget can be
5209             resized. Supports combined values using | operator. -->
5210        <attr name="resizeMode" format="integer">
5211            <flag name="none" value="0x0" />
5212            <flag name="horizontal" value="0x1" />
5213            <flag name="vertical" value="0x2" />
5214        </attr>
5215        <!-- Optional parameter which indicates where this widget can be shown,
5216             ie. home screen, keyguard or both.
5217             resized. Supports combined values using | operator. -->
5218        <attr name="widgetCategory" format="integer">
5219            <flag name="home_screen" value="0x1" />
5220            <flag name="keyguard" value="0x2" />
5221        </attr>
5222        <!-- Optional parameter which indicates any feature(s) that this widget
5223             supports. Supports combined values using | operator. -->
5224        <attr name="widgetFeatures" format="integer">
5225            <flag name="none" value="0x0" />
5226            <flag name="clock" value="0x1" />
5227            <flag name="status" value="0x2" />
5228        </attr>
5229    </declare-styleable>
5230
5231    <!-- =============================== -->
5232    <!-- Wallpaper preview attributes    -->
5233    <!-- =============================== -->
5234    <eat-comment />
5235
5236    <!-- Use <code>wallpaper-preview</code> as the root tag of the XML resource that
5237         describes a wallpaper preview. -->
5238    <declare-styleable name="WallpaperPreviewInfo">
5239        <!-- A resource id of a static drawable. -->
5240        <attr name="staticWallpaperPreview" format="reference" />
5241    </declare-styleable>
5242
5243    <!-- =============================== -->
5244    <!-- App package class attributes -->
5245    <!-- =============================== -->
5246    <eat-comment />
5247
5248    <!-- ============================= -->
5249    <!-- View package class attributes -->
5250    <!-- ============================= -->
5251    <eat-comment />
5252
5253    <!-- Attributes that can be used with <code>&lt;fragment&gt;</code>
5254         tags inside of the layout of an Activity.  This instantiates
5255         the given {@link android.app.Fragment} and inserts its content
5256         view into the current location in the layout. -->
5257    <declare-styleable name="Fragment">
5258        <!-- Supply the name of the fragment class to instantiate. -->
5259        <attr name="name" />
5260
5261        <!-- Supply an identifier name for the top-level view, to later retrieve it
5262             with {@link android.view.View#findViewById View.findViewById()} or
5263             {@link android.app.Activity#findViewById Activity.findViewById()}.
5264             This must be a
5265             resource reference; typically you set this using the
5266             <code>@+</code> syntax to create a new ID resources.
5267             For example: <code>android:id="@+id/my_id"</code> which
5268             allows you to later retrieve the view
5269             with <code>findViewById(R.id.my_id)</code>. -->
5270        <attr name="id" />
5271
5272        <!-- Supply a tag for the top-level view containing a String, to be retrieved
5273             later with {@link android.view.View#getTag View.getTag()} or
5274             searched for with {@link android.view.View#findViewWithTag
5275             View.findViewWithTag()}.  It is generally preferable to use
5276             IDs (through the android:id attribute) instead of tags because
5277             they are faster and allow for compile-time type checking. -->
5278        <attr name="tag" />
5279    </declare-styleable>
5280
5281    <!-- Use <code>device-admin</code> as the root tag of the XML resource that
5282         describes a
5283         {@link android.app.admin.DeviceAdminReceiver}, which is
5284         referenced from its
5285         {@link android.app.admin.DeviceAdminReceiver#DEVICE_ADMIN_META_DATA}
5286         meta-data entry.  Described here are the attributes that can be
5287         included in that tag. -->
5288    <declare-styleable name="DeviceAdmin">
5289        <!-- Control whether the admin is visible to the user, even when it
5290             is not enabled.  This is true by default.  You may want to make
5291             it false if your admin does not make sense to be turned on
5292             unless some explicit action happens in your app. -->
5293        <attr name="visible" />
5294    </declare-styleable>
5295
5296    <!-- Use <code>wallpaper</code> as the root tag of the XML resource that
5297         describes an
5298         {@link android.service.wallpaper.WallpaperService}, which is
5299         referenced from its
5300         {@link android.service.wallpaper.WallpaperService#SERVICE_META_DATA}
5301         meta-data entry.  Described here are the attributes that can be
5302         included in that tag. -->
5303    <declare-styleable name="Wallpaper">
5304        <attr name="settingsActivity" />
5305
5306        <!-- Reference to a the wallpaper's thumbnail bitmap. -->
5307        <attr name="thumbnail" format="reference" />
5308
5309        <!-- Name of the author of this component, e.g. Google. -->
5310        <attr name="author" format="reference" />
5311
5312        <!-- Short description of the component's purpose or behavior. -->
5313        <attr name="description" />
5314    </declare-styleable>
5315
5316    <!-- =============================== -->
5317    <!-- Accounts package class attributes -->
5318    <!-- =============================== -->
5319    <eat-comment />
5320
5321    <!-- Use <code>account-authenticator</code> as the root tag of the XML resource that
5322         describes an account authenticator.
5323     -->
5324    <declare-styleable name="AccountAuthenticator">
5325        <!-- The account type this authenticator handles. -->
5326        <attr name="accountType" format="string"/>
5327        <!-- The user-visible name of the authenticator. -->
5328        <attr name="label"/>
5329        <!-- The icon of the authenticator. -->
5330        <attr name="icon"/>
5331        <!-- Smaller icon of the authenticator. -->
5332        <attr name="smallIcon" format="reference"/>
5333        <!-- A preferences.xml file for authenticator-specific settings. -->
5334        <attr name="accountPreferences" format="reference"/>
5335        <!-- Account handles its own token storage and permissions.
5336             Default to false
5337          -->
5338        <attr name="customTokens" format="boolean"/>
5339    </declare-styleable>
5340
5341    <!-- =============================== -->
5342    <!-- Accounts package class attributes -->
5343    <!-- =============================== -->
5344    <eat-comment />
5345
5346    <!-- Use <code>account-authenticator</code> as the root tag of the XML resource that
5347         describes an account authenticator.
5348     -->
5349    <declare-styleable name="SyncAdapter">
5350        <!-- the authority of a content provider. -->
5351        <attr name="contentAuthority" format="string"/>
5352        <attr name="accountType"/>
5353        <attr name="userVisible" format="boolean"/>
5354        <attr name="supportsUploading" format="boolean"/>
5355        <!-- Set to true to tell the SyncManager that this SyncAdapter supports
5356             multiple simultaneous syncs for the same account type and authority.
5357             Otherwise the SyncManager will be sure not to issue a start sync request
5358             to this SyncAdapter if the SyncAdapter is already syncing another account.
5359             Defaults to false.
5360             -->
5361        <attr name="allowParallelSyncs" format="boolean"/>
5362        <!-- Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1)
5363             for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter.
5364             Defaults to false.
5365             -->
5366        <attr name="isAlwaysSyncable" format="boolean"/>
5367        <!-- If provided, specifies the action of the settings
5368             activity for this SyncAdapter.
5369             -->
5370        <attr name="settingsActivity"/>
5371    </declare-styleable>
5372
5373    <!-- =============================== -->
5374    <!-- Contacts meta-data attributes -->
5375    <!-- =============================== -->
5376    <eat-comment />
5377
5378    <!-- TODO: remove this deprecated styleable. -->
5379    <eat-comment />
5380    <declare-styleable name="Icon">
5381        <attr name="icon" />
5382        <attr name="mimeType" />
5383    </declare-styleable>
5384
5385    <!-- TODO: remove this deprecated styleable -->
5386    <eat-comment />
5387    <declare-styleable name="IconDefault">
5388        <attr name="icon" />
5389    </declare-styleable>
5390
5391    <!-- Maps a specific contact data MIME-type to styling information. -->
5392    <declare-styleable name="ContactsDataKind">
5393        <!-- Mime-type handled by this mapping. -->
5394        <attr name="mimeType" />
5395        <!-- Icon used to represent data of this kind. -->
5396        <attr name="icon" />
5397        <!-- Column in data table that summarizes this data. -->
5398        <attr name="summaryColumn" format="string" />
5399        <!-- Column in data table that contains details for this data. -->
5400        <attr name="detailColumn" format="string" />
5401        <!-- Flag indicating that detail should be built from SocialProvider. -->
5402        <attr name="detailSocialSummary" format="boolean" />
5403        <!-- Resource representing the term "All Contacts" (e.g. "All Friends" or
5404        "All connections"). Optional (Default is "All Contacts"). -->
5405        <attr name="allContactsName" format="string" />
5406    </declare-styleable>
5407
5408    <!-- =============================== -->
5409    <!-- TabSelector class attributes -->
5410    <!-- =============================== -->
5411    <eat-comment />
5412
5413    <declare-styleable name="SlidingTab">
5414        <!-- Use "horizontal" for a row, "vertical" for a column.  The default is horizontal. -->
5415        <attr name="orientation" />
5416    </declare-styleable>
5417
5418    <!-- =============================== -->
5419    <!-- GlowPadView class attributes -->
5420    <!-- =============================== -->
5421    <eat-comment />
5422    <declare-styleable name="GlowPadView">
5423        <!-- Reference to an array resource that be shown as targets around a circle. -->
5424        <attr name="targetDrawables"/>
5425
5426        <!-- Reference to an array resource that be used as description for the targets around the circle. -->
5427        <attr name="targetDescriptions"/>
5428
5429        <!-- Reference to an array resource that be used to announce the directions with targets around the circle. -->
5430        <attr name="directionDescriptions"/>
5431
5432        <!-- Sets a drawable as the center. -->
5433        <attr name="handleDrawable"/>
5434
5435        <!-- Drawable to use for wave ripple animation. -->
5436        <attr name="outerRingDrawable" format="reference"/>
5437
5438        <!-- Drawble used for drawing points -->
5439        <attr name="pointDrawable" format="reference" />
5440
5441        <!-- Inner radius of glow area. -->
5442        <attr name="innerRadius"/>
5443
5444        <!-- Outer radius of glow area. Target icons will be drawn on this circle. -->
5445        <attr name="outerRadius"/>
5446
5447        <!-- Radius of glow under finger. -->
5448        <attr name="glowRadius" format="dimension" />
5449
5450        <!-- Tactile feedback duration for actions. Set to '0' for no vibration. -->
5451        <attr name="vibrationDuration"/>
5452
5453        <!-- How close we need to be before snapping to a target. -->
5454        <attr name="snapMargin"/>
5455
5456        <!-- Number of waves/chevrons to show in animation. -->
5457        <attr name="feedbackCount"/>
5458
5459        <!-- Used when the handle shouldn't wait to be hit before following the finger -->
5460        <attr name="alwaysTrackFinger"/>
5461    </declare-styleable>
5462
5463    <!-- =============================== -->
5464    <!-- MultiWaveView class attributes -->
5465    <!-- =============================== -->
5466    <eat-comment />
5467    <declare-styleable name="MultiWaveView">
5468        <!-- Reference to an array resource that be shown as targets around a circle. -->
5469        <attr name="targetDrawables" format="reference"/>
5470
5471        <!-- Reference to an array resource that be used as description for the targets around the circle. -->
5472        <attr name="targetDescriptions" format="reference"/>
5473
5474        <!-- Reference to an array resource that be used to announce the directions with targets around the circle. -->
5475        <attr name="directionDescriptions" format="reference"/>
5476
5477        <!-- Sets a drawable as the drag center. -->
5478        <attr name="handleDrawable" format="reference" />
5479
5480        <!-- Drawables to use for chevron animations. May be null. -->
5481        <attr name="chevronDrawables" format="reference"/>
5482
5483        <!-- Drawable to use for wave ripple animation. -->
5484        <attr name="waveDrawable" format="reference" />
5485
5486        <!-- Outer radius of target circle. Icons will be drawn on this circle. -->
5487        <attr name="outerRadius" format="dimension" />
5488
5489        <!-- Tactile feedback duration for actions. Set to '0' for no vibration. -->
5490        <attr name="vibrationDuration" format="integer"/>
5491
5492        <!-- How close we need to be before snapping to a target. -->
5493        <attr name="snapMargin" format="dimension" />
5494
5495        <!-- Number of waves/chevrons to show in animation. -->
5496        <attr name="feedbackCount" format="integer" />
5497
5498        <!-- Used when the handle shouldn't wait to be hit before following the finger -->
5499        <attr name="alwaysTrackFinger" format="boolean" />
5500    </declare-styleable>
5501
5502    <!-- =============================== -->
5503    <!-- SizeAdaptiveLayout class attributes -->
5504    <!-- =============================== -->
5505    <eat-comment />
5506    <declare-styleable name="SizeAdaptiveLayout_Layout">
5507      <!-- The maximum valid height for this item. -->
5508      <attr name="layout_maxHeight" format="dimension">
5509        <!-- Indicates that the view may be resized arbitrarily large. -->
5510        <enum name="unbounded" value="-1" />
5511      </attr>
5512      <!-- The minimum valid height for this item. -->
5513      <attr name="layout_minHeight" format="dimension" />
5514    </declare-styleable>
5515    <declare-styleable name="SizeAdaptiveLayout" />
5516
5517    <!-- =============================== -->
5518    <!-- LockPatternView class attributes -->
5519    <!-- =============================== -->
5520    <eat-comment />
5521
5522    <declare-styleable name="LockPatternView">
5523        <!-- Aspect to use when drawing LockPatternView. Choices are "square"(default), "lock_width"
5524             or "lock_height" -->
5525        <attr name="aspect" format="string" />
5526    </declare-styleable>
5527
5528    <!-- Use <code>recognition-service</code> as the root tag of the XML resource that
5529         describes a {@link android.speech.RecognitionService}, which is reference from
5530         its {@link android.speech.RecognitionService#SERVICE_META_DATA} meta-data entry.
5531         Described here are the attributes that can be included in that tag. -->
5532    <declare-styleable name="RecognitionService">
5533        <attr name="settingsActivity" />
5534    </declare-styleable>
5535
5536    <!-- Attributes used to style the Action Bar. -->
5537    <declare-styleable name="ActionBar">
5538        <!-- The type of navigation to use. -->
5539        <attr name="navigationMode">
5540            <!-- Normal static title text -->
5541            <enum name="normal" value="0" />
5542            <!-- The action bar will use a selection list for navigation. -->
5543            <enum name="listMode" value="1" />
5544            <!-- The action bar will use a series of horizontal tabs for navigation. -->
5545            <enum name="tabMode" value="2" />
5546        </attr>
5547        <!-- Options affecting how the action bar is displayed. -->
5548        <attr name="displayOptions">
5549            <flag name="none" value="0" />
5550            <flag name="useLogo" value="0x1" />
5551            <flag name="showHome" value="0x2" />
5552            <flag name="homeAsUp" value="0x4" />
5553            <flag name="showTitle" value="0x8" />
5554            <flag name="showCustom" value="0x10" />
5555            <flag name="disableHome" value="0x20" />
5556        </attr>
5557        <!-- Specifies title text used for navigationMode="normal" -->
5558        <attr name="title" />
5559        <!-- Specifies subtitle text used for navigationMode="normal" -->
5560        <attr name="subtitle" format="string" />
5561        <!-- Specifies a style to use for title text. -->
5562        <attr name="titleTextStyle" format="reference" />
5563        <!-- Specifies a style to use for subtitle text. -->
5564        <attr name="subtitleTextStyle" format="reference" />
5565        <!-- Specifies the drawable used for the application icon. -->
5566        <attr name="icon" />
5567        <!-- Specifies the drawable used for the application logo. -->
5568        <attr name="logo" />
5569        <!-- Specifies the drawable used for item dividers. -->
5570        <attr name="divider" />
5571        <!-- Specifies a background drawable for the action bar. -->
5572        <attr name="background" />
5573        <!-- Specifies a background drawable for a second stacked row of the action bar. -->
5574        <attr name="backgroundStacked" format="reference|color" />
5575        <!-- Specifies a background drawable for the bottom component of a split action bar. -->
5576        <attr name="backgroundSplit" format="reference|color" />
5577        <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
5578        <attr name="customNavigationLayout" format="reference" />
5579        <!-- Specifies a fixed height. -->
5580        <attr name="height" />
5581        <!-- Specifies a layout to use for the "home" section of the action bar. -->
5582        <attr name="homeLayout" format="reference" />
5583        <!-- Specifies a style resource to use for an embedded progress bar. -->
5584        <attr name="progressBarStyle" />
5585        <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
5586        <attr name="indeterminateProgressStyle" format="reference" />
5587        <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
5588        <attr name="progressBarPadding" format="dimension" />
5589        <!-- Specifies padding that should be applied to the left and right sides of
5590             system-provided items in the bar. -->
5591        <attr name="itemPadding" format="dimension" />
5592    </declare-styleable>
5593
5594    <declare-styleable name="ActionMode">
5595        <!-- Specifies a style to use for title text. -->
5596        <attr name="titleTextStyle" />
5597        <!-- Specifies a style to use for subtitle text. -->
5598        <attr name="subtitleTextStyle" />
5599        <!-- Specifies a background for the action mode bar. -->
5600        <attr name="background" />
5601        <!-- Specifies a background for the split action mode bar. -->
5602        <attr name="backgroundSplit" />
5603        <!-- Specifies a fixed height for the action mode bar. -->
5604        <attr name="height" />
5605    </declare-styleable>
5606
5607    <declare-styleable name="SearchView">
5608        <!-- The default state of the SearchView. If true, it will be iconified when not in
5609             use and expanded when clicked. -->
5610        <attr name="iconifiedByDefault" format="boolean"/>
5611        <!-- An optional maximum width of the SearchView. -->
5612        <attr name="maxWidth" />
5613        <!-- An optional query hint string to be displayed in the empty query field. -->
5614        <attr name="queryHint" format="string" />
5615        <!-- The IME options to set on the query text field. -->
5616        <attr name="imeOptions" />
5617        <!-- The input type to set on the query text field. -->
5618        <attr name="inputType" />
5619    </declare-styleable>
5620
5621    <declare-styleable name="ActionBar_LayoutParams">
5622        <attr name="layout_gravity" />
5623    </declare-styleable>
5624
5625    <declare-styleable name="Switch">
5626        <!-- Drawable to use as the "thumb" that switches back and forth. -->
5627        <attr name="thumb" />
5628        <!-- Drawable to use as the "track" that the switch thumb slides within. -->
5629        <attr name="track" format="reference" />
5630        <!-- Text to use when the switch is in the checked/"on" state. -->
5631        <attr name="textOn" />
5632        <!-- Text to use when the switch is in the unchecked/"off" state. -->
5633        <attr name="textOff" />
5634        <!-- Amount of padding on either side of text within the switch thumb. -->
5635        <attr name="thumbTextPadding" format="dimension" />
5636        <!-- TextAppearance style for text displayed on the switch thumb. -->
5637        <attr name="switchTextAppearance" format="reference" />
5638        <!-- Minimum width for the switch component -->
5639        <attr name="switchMinWidth" format="dimension" />
5640        <!-- Minimum space between the switch and caption text -->
5641        <attr name="switchPadding" format="dimension" />
5642    </declare-styleable>
5643
5644    <declare-styleable name="Pointer">
5645        <!-- Reference to a pointer icon drawable with STYLE_ARROW -->
5646        <attr name="pointerIconArrow" format="reference" />
5647        <!-- Reference to a pointer icon drawable with STYLE_SPOT_HOVER -->
5648        <attr name="pointerIconSpotHover" format="reference" />
5649        <!-- Reference to a pointer icon drawable with STYLE_SPOT_TOUCH -->
5650        <attr name="pointerIconSpotTouch" format="reference" />
5651        <!-- Reference to a pointer icon drawable with STYLE_SPOT_ANCHOR -->
5652        <attr name="pointerIconSpotAnchor" format="reference" />
5653    </declare-styleable>
5654
5655    <declare-styleable name="PointerIcon">
5656        <!-- Drawable to use as the icon bitmap. -->
5657        <attr name="bitmap" format="reference" />
5658        <!-- X coordinate of the icon hot spot. -->
5659        <attr name="hotSpotX" format="float" />
5660        <!-- Y coordinate of the icon hot spot. -->
5661        <attr name="hotSpotY" format="float" />
5662    </declare-styleable>
5663
5664    <declare-styleable name="Storage">
5665        <!-- path to mount point for the storage -->
5666        <attr name="mountPoint" format="string" />
5667        <!-- user visible description of the storage -->
5668        <attr name="storageDescription" format="string" />
5669        <!-- true if the storage is the primary external storage -->
5670        <attr name="primary" format="boolean" />
5671        <!-- true if the storage is removable -->
5672        <attr name="removable" format="boolean" />
5673        <!-- true if the storage is emulated via the FUSE sdcard daemon -->
5674        <attr name="emulated" format="boolean" />
5675        <!-- number of megabytes of storage MTP should reserve for free storage
5676             (used for emulated storage that is shared with system's data partition) -->
5677        <attr name="mtpReserve" format="integer" />
5678        <!-- true if the storage can be shared via USB mass storage -->
5679        <attr name="allowMassStorage" format="boolean" />
5680        <!-- maximum file size for the volume in megabytes, zero or unspecified if it is unbounded -->
5681        <attr name="maxFileSize" format="integer" />
5682    </declare-styleable>
5683
5684    <declare-styleable name="SwitchPreference">
5685        <!-- The summary for the Preference in a PreferenceActivity screen when the
5686             SwitchPreference is checked. If separate on/off summaries are not
5687             needed, the summary attribute can be used instead. -->
5688        <attr name="summaryOn" />
5689        <!-- The summary for the Preference in a PreferenceActivity screen when the
5690             SwitchPreference is unchecked. If separate on/off summaries are not
5691             needed, the summary attribute can be used instead. -->
5692        <attr name="summaryOff" />
5693        <!-- The text used on the switch itself when in the "on" state.
5694             This should be a very SHORT string, as it appears in a small space. -->
5695        <attr name="switchTextOn" format="string" />
5696        <!-- The text used on the switch itself when in the "off" state.
5697             This should be a very SHORT string, as it appears in a small space. -->
5698        <attr name="switchTextOff" format="string" />
5699        <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default,
5700             dependents will be disabled when this is unchecked, so the value of this preference is false. -->
5701        <attr name="disableDependentsState" />
5702    </declare-styleable>
5703
5704    <!-- Use <code>tts-engine</code> as the root tag of the XML resource that
5705         describes a text to speech engine implemented as a subclass of
5706         {@link android.speech.tts.TextToSpeechService}.
5707
5708         The XML resource must be referenced from its
5709         {@link android.speech.tts.TextToSpeech.Engine#SERVICE_META_DATA} meta-data
5710         entry. -->
5711    <declare-styleable name="TextToSpeechEngine">
5712        <attr name="settingsActivity" />
5713    </declare-styleable>
5714
5715    <!-- Use <code>keyboard-layouts</code> as the root tag of the XML resource that
5716         describes a collection of keyboard layouts provided by an application.
5717         Each keyboard layout is declared by a <code>keyboard-layout</code> tag
5718         with these attributes.
5719
5720         The XML resource that contains the keyboard layouts must be referenced from its
5721         {@link android.hardware.input.InputManager#META_DATA_KEYBOARD_LAYOUTS}
5722         meta-data entry used with broadcast receivers for
5723         {@link android.hardware.input.InputManager#ACTION_QUERY_KEYBOARD_LAYOUTS}. -->
5724    <declare-styleable name="KeyboardLayout">
5725        <!-- The name of the keyboard layout, must be unique in the receiver. -->
5726        <attr name="name" />
5727        <!-- The display label of the keyboard layout. -->
5728        <attr name="label" />
5729        <!-- The key character map file resource. -->
5730        <attr name="keyboardLayout" format="reference" />
5731    </declare-styleable>
5732
5733    <declare-styleable name="MediaRouteButton">
5734        <!-- This drawable is a state list where the "activated" state
5735             indicates active media routing. Non-activated indicates
5736             that media is playing to the local device only.
5737             @hide -->
5738        <attr name="externalRouteEnabledDrawable" format="reference" />
5739
5740        <!-- The types of media routes the button and its resulting
5741             chooser will filter by. -->
5742        <attr name="mediaRouteTypes" format="integer">
5743            <!-- Allow selection of live audio routes. -->
5744            <enum name="liveAudio" value="0x1" />
5745            <!-- Allow selection of user (app-specified) routes. -->
5746            <enum name="user" value="0x800000" />
5747        </attr>
5748
5749        <attr name="minWidth" />
5750        <attr name="minHeight" />
5751    </declare-styleable>
5752
5753    <!-- PagedView specific attributes. These attributes are used to customize
5754         a PagedView view in XML files. -->
5755    <declare-styleable name="PagedView">
5756        <!-- A spacing override for the icons within a page -->
5757        <attr name="pageLayoutWidthGap" format="dimension" />
5758        <attr name="pageLayoutHeightGap" format="dimension" />
5759        <!-- The padding of the pages that are dynamically created per page -->
5760        <attr name="pageLayoutPaddingTop" format="dimension" />
5761        <attr name="pageLayoutPaddingBottom" format="dimension" />
5762        <attr name="pageLayoutPaddingLeft" format="dimension" />
5763        <attr name="pageLayoutPaddingRight" format="dimension" />
5764        <!-- The space between adjacent pages of the PagedView. -->
5765        <attr name="pageSpacing" format="dimension" />
5766        <!-- The padding for the scroll indicator area -->
5767        <attr name="scrollIndicatorPaddingLeft" format="dimension" />
5768        <attr name="scrollIndicatorPaddingRight" format="dimension" />
5769    </declare-styleable>
5770
5771</resources>
5772