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