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