attrs.xml revision b8ea2fdae0572b8803dd55b09e3aaf6713b3a5b5
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        <!-- Specifies that a theme has a light background with dark text on top.  -->
31        <attr name="isLightTheme" format="boolean" />
32
33        <!-- Default color of foreground imagery. -->
34        <attr name="colorForeground" format="color" />
35        <!-- Default color of foreground imagery on an inverted background. -->
36        <attr name="colorForegroundInverse" format="color" />
37        <!-- Default color of background imagery, ex. full-screen windows. -->
38        <attr name="colorBackground" format="color" />
39        <!-- Default color of background imagery for floating components, ex. dialogs, popups, and cards. -->
40        <attr name="colorBackgroundFloating" format="color" />
41        <!-- This is a hint for a solid color that can be used for caching
42             rendered views.  This should be the color of the background when
43             there is a solid background color; it should be null when the
44             background is a texture or translucent.  When a device is able
45             to use accelerated drawing (thus setting state_accelerated), the
46             cache hint is ignored and always assumed to be transparent. -->
47        <attr name="colorBackgroundCacheHint" format="color" />
48
49        <!-- Default highlight color for items that are pressed. -->
50        <attr name="colorPressedHighlight" format="color" />
51        <!-- Default highlight color for items that are long-pressed. -->
52        <attr name="colorLongPressedHighlight" format="color" />
53        <!-- Default highlight color for items that are
54             focused. (Focused meaning cursor-based selection.) -->
55        <attr name="colorFocusedHighlight" format="color" />
56        <!-- Default highlight color for items that are
57             activated. (Activated meaning persistent selection.) -->
58        <attr name="colorActivatedHighlight" format="color" />
59        <!-- Default highlight color for items in multiple selection
60             mode. -->
61        <attr name="colorMultiSelectHighlight" format="color" />
62
63        <!-- Default disabled alpha for widgets that set enabled/disabled alpha programmatically. -->
64        <attr name="disabledAlpha" format="float" />
65        <!-- Default background dim amount when a menu, dialog, or something similar pops up. -->
66        <attr name="backgroundDimAmount" format="float" />
67        <!-- Control whether dimming behind the window is enabled.  The default
68             theme does not set this value, meaning it is based on whether the
69             window is floating. -->
70        <attr name="backgroundDimEnabled" format="boolean" />
71
72        <!-- =========== -->
73        <!-- Text styles -->
74        <!-- =========== -->
75        <eat-comment />
76
77        <!-- Default appearance of text: color, typeface, size, and style. -->
78        <attr name="textAppearance" format="reference" />
79        <!-- Default appearance of text against an inverted background:
80             color, typeface, size, and style. -->
81        <attr name="textAppearanceInverse" format="reference" />
82
83        <!-- The most prominent text color.  -->
84        <attr name="textColorPrimary" format="reference|color" />
85        <!-- Secondary text color. -->
86        <attr name="textColorSecondary" format="reference|color" />
87        <!-- Tertiary text color. -->
88        <attr name="textColorTertiary" format="reference|color" />
89
90        <!-- Primary inverse text color, useful for inverted backgrounds. -->
91        <attr name="textColorPrimaryInverse" format="reference|color" />
92        <!-- Secondary inverse text color, useful for inverted backgrounds. -->
93        <attr name="textColorSecondaryInverse" format="reference|color" />
94        <!-- Tertiary inverse text color, useful for inverted backgrounds. -->
95        <attr name="textColorTertiaryInverse" format="reference|color" />
96
97        <!-- Inverse hint text color. -->
98        <attr name="textColorHintInverse" format="reference|color" />
99
100        <!-- Bright text color. Only differentiates based on the disabled state. -->
101        <attr name="textColorPrimaryDisableOnly" format="reference|color" />
102
103        <!-- Bright inverse text color. Only differentiates based on the disabled state. -->
104        <attr name="textColorPrimaryInverseDisableOnly" format="reference|color" />
105
106        <!-- Bright text color. This does not differentiate the disabled state. As an example,
107             buttons use this since they display the disabled state via the background and not the
108             foreground text color. -->
109        <attr name="textColorPrimaryNoDisable" format="reference|color" />
110        <!-- Dim text color. This does not differentiate the disabled state. -->
111        <attr name="textColorSecondaryNoDisable" format="reference|color" />
112
113        <!-- Bright inverse text color. This does not differentiate the disabled state. -->
114        <attr name="textColorPrimaryInverseNoDisable" format="reference|color" />
115        <!-- Dim inverse text color. This does not differentiate the disabled state. -->
116        <attr name="textColorSecondaryInverseNoDisable" format="reference|color" />
117
118        <!-- Bright text color for use over activated backgrounds. -->
119        <attr name="textColorPrimaryActivated" format="reference|color" />
120        <!-- Dim text color for use over activated backgrounds. -->
121        <attr name="textColorSecondaryActivated" format="reference|color" />
122
123        <!-- Text color for urls in search suggestions, used by things like global search and the browser. @hide -->
124        <attr name="textColorSearchUrl" format="reference|color" />
125
126        <!-- Color of highlighted text, when used in a light theme. -->
127        <attr name="textColorHighlightInverse" format="reference|color" />
128        <!-- Color of link text (URLs), when used in a light theme. -->
129        <attr name="textColorLinkInverse" format="reference|color" />
130
131        <!-- Color of list item text in alert dialogs. -->
132        <attr name="textColorAlertDialogListItem" format="reference|color" />
133
134        <!-- Search widget more corpus result item background. -->
135        <attr name="searchWidgetCorpusItemBackground" format="reference|color" />
136
137        <!-- Text color, typeface, size, and style for "large" text. Defaults to primary text color. -->
138        <attr name="textAppearanceLarge" format="reference" />
139        <!-- Text color, typeface, size, and style for "medium" text. Defaults to primary text color. -->
140        <attr name="textAppearanceMedium" format="reference" />
141        <!-- Text color, typeface, size, and style for "small" text. Defaults to secondary text color. -->
142        <attr name="textAppearanceSmall" format="reference" />
143
144        <!-- Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color. -->
145        <attr name="textAppearanceLargeInverse" format="reference" />
146        <!-- Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color. -->
147        <attr name="textAppearanceMediumInverse" format="reference" />
148        <!-- Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color. -->
149        <attr name="textAppearanceSmallInverse" format="reference" />
150
151        <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
152        <attr name="textAppearanceSearchResultTitle" format="reference" />
153        <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
154        <attr name="textAppearanceSearchResultSubtitle" format="reference" />
155
156        <!-- Text color, typeface, size, and style for the text inside of a button. -->
157        <attr name="textAppearanceButton" format="reference" />
158
159        <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
160        <attr name="textAppearanceLargePopupMenu" format="reference" />
161
162        <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
163        <attr name="textAppearanceSmallPopupMenu" format="reference" />
164
165        <!-- Text color, typeface, size, and style for header text inside of a popup menu. -->
166        <attr name="textAppearancePopupMenuHeader" format="reference" />
167
168        <!-- The underline color and thickness for easy correct suggestion -->
169        <attr name="textAppearanceEasyCorrectSuggestion" format="reference" />
170
171        <!-- The underline color and thickness for misspelled suggestion -->
172        <attr name="textAppearanceMisspelledSuggestion" format="reference" />
173
174        <!-- The underline color and thickness for auto correction suggestion -->
175        <attr name="textAppearanceAutoCorrectionSuggestion" format="reference" />
176
177        <!--  The underline color -->
178        <attr name="textUnderlineColor" format="reference|color" />
179        <!--  The underline thickness -->
180        <attr name="textUnderlineThickness" format="reference|dimension" />
181
182        <!-- EditText text foreground color. -->
183        <attr name="editTextColor" format="reference|color" />
184        <!-- EditText background drawable. -->
185        <attr name="editTextBackground" format="reference" />
186
187        <!-- Popup text displayed in TextView when setError is used. -->
188        <attr name="errorMessageBackground" format="reference" />
189        <!-- Background used instead of errorMessageBackground when the popup has to be above. -->
190        <attr name="errorMessageAboveBackground" format="reference" />
191
192        <!-- A styled string, specifying the style to be used for showing
193             inline candidate text when composing with an input method.  The
194             text itself will be ignored, but the style spans will be applied
195             to the candidate text as it is edited. -->
196        <attr name="candidatesTextStyleSpans" format="reference|string" />
197
198        <!-- Drawable to use for check marks. -->
199        <attr name="textCheckMark" format="reference" />
200        <attr name="textCheckMarkInverse" format="reference" />
201
202        <!-- Drawable to use for multiple choice indicators. -->
203        <attr name="listChoiceIndicatorMultiple" format="reference" />
204
205        <!-- Drawable to use for single choice indicators. -->
206        <attr name="listChoiceIndicatorSingle" format="reference" />
207
208        <!-- Drawable used as a background for selected list items. -->
209        <attr name="listChoiceBackgroundIndicator" format="reference" />
210
211        <!-- Drawable used as a background for activated items. -->
212        <attr name="activatedBackgroundIndicator" format="reference" />
213
214        <!-- ============= -->
215        <!-- Button styles -->
216        <!-- ============= -->
217        <eat-comment />
218
219        <!-- Normal Button style. -->
220        <attr name="buttonStyle" format="reference" />
221
222        <!-- Small Button style. -->
223        <attr name="buttonStyleSmall" format="reference" />
224
225        <!-- Button style to inset into an EditText. -->
226        <attr name="buttonStyleInset" format="reference" />
227
228        <!-- ToggleButton style. -->
229        <attr name="buttonStyleToggle" format="reference" />
230
231        <!-- ============== -->
232        <!-- Gallery styles -->
233        <!-- ============== -->
234        <eat-comment />
235
236        <!-- The preferred background for gallery items. This should be set
237             as the background of any Views you provide from the Adapter. -->
238        <attr name="galleryItemBackground" format="reference" />
239
240        <!-- =========== -->
241        <!-- List styles -->
242        <!-- =========== -->
243        <eat-comment />
244
245        <!-- The preferred list item height. -->
246        <attr name="listPreferredItemHeight" format="dimension" />
247        <!-- A smaller, sleeker list item height. -->
248        <attr name="listPreferredItemHeightSmall" format="dimension" />
249        <!-- A larger, more robust list item height. -->
250        <attr name="listPreferredItemHeightLarge" format="dimension" />
251        <!-- The list item height for search results. @hide -->
252        <attr name="searchResultListItemHeight" format="dimension" />
253
254        <!-- The preferred padding along the left edge of list items. -->
255        <attr name="listPreferredItemPaddingLeft" format="dimension" />
256        <!-- The preferred padding along the right edge of list items. -->
257        <attr name="listPreferredItemPaddingRight" format="dimension" />
258
259        <!-- The preferred TextAppearance for the primary text of list items. -->
260        <attr name="textAppearanceListItem" format="reference" />
261        <!-- The preferred TextAppearance for the secondary text of list items. -->
262        <attr name="textAppearanceListItemSecondary" format="reference" />
263        <!-- The preferred TextAppearance for the primary text of small list items. -->
264        <attr name="textAppearanceListItemSmall" format="reference" />
265
266        <!-- The drawable for the list divider. -->
267        <attr name="listDivider" format="reference" />
268        <!-- The list divider used in alert dialogs. -->
269        <attr name="listDividerAlertDialog" format="reference" />
270        <!-- TextView style for list separators. -->
271        <attr name="listSeparatorTextViewStyle" format="reference" />
272        <!-- The preferred left padding for an expandable list item (for child-specific layouts,
273             use expandableListPreferredChildPaddingLeft). This takes into account
274             the indicator that will be shown to next to the item. -->
275        <attr name="expandableListPreferredItemPaddingLeft" format="dimension" />
276        <!-- The preferred left padding for an expandable list item that is a child.
277             If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft. -->
278        <attr name="expandableListPreferredChildPaddingLeft" format="dimension" />
279        <!-- The preferred left bound for an expandable list item's indicator. For a child-specific
280             indicator, use expandableListPreferredChildIndicatorLeft. -->
281        <attr name="expandableListPreferredItemIndicatorLeft" format="dimension" />
282        <!-- The preferred right bound for an expandable list item's indicator. For a child-specific
283             indicator, use expandableListPreferredChildIndicatorRight. -->
284        <attr name="expandableListPreferredItemIndicatorRight" format="dimension" />
285        <!-- The preferred left bound for an expandable list child's indicator. -->
286        <attr name="expandableListPreferredChildIndicatorLeft" format="dimension" />
287        <!-- The preferred right bound for an expandable list child's indicator. -->
288        <attr name="expandableListPreferredChildIndicatorRight" format="dimension" />
289
290        <!-- The preferred item height for dropdown lists. -->
291        <attr name="dropdownListPreferredItemHeight" format="dimension" />
292
293        <!-- The preferred padding along the start edge of list items. -->
294        <attr name="listPreferredItemPaddingStart" format="dimension" />
295        <!-- The preferred padding along the end edge of list items. -->
296        <attr name="listPreferredItemPaddingEnd" format="dimension" />
297
298        <!-- ============= -->
299        <!-- Window styles -->
300        <!-- ============= -->
301        <eat-comment />
302
303        <!-- Drawable to use as the overall window background.  As of
304             {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may
305             be a selector that uses state_accelerated to pick a non-solid
306             color when running on devices that can draw such a bitmap
307             with complex compositing on top at 60fps.
308
309             <p>There are a few special considerations to use when setting this
310             drawable:
311             <ul>
312             <li> This information will be used to infer the pixel format
313                  for your window's surface.  If the drawable has any
314                  non-opaque pixels, your window will be translucent
315                  (32 bpp).
316             <li> If you want to draw the entire background
317                  yourself, you should set this drawable to some solid
318                  color that closely matches that background (so the
319                  system's preview of your window will match), and
320                  then in code manually set your window's background to
321                  null so it will not be drawn.
322             </ul> -->
323        <attr name="windowBackground" format="reference" />
324        <!-- Drawable to draw selectively within the inset areas when the windowBackground
325             has been set to null. This protects against seeing visual garbage in the
326             surface when the app has not drawn any content into this area. One example is
327             when the user is resizing a window of an activity that has
328             {@link android.R.attr#resizeableActivity} set for multi-window mode. -->
329        <attr name="windowBackgroundFallback" format="reference" />
330        <!-- Drawable to use as a frame around the window. -->
331        <attr name="windowFrame" format="reference" />
332        <!-- Flag indicating whether there should be no title on this window. -->
333        <attr name="windowNoTitle" format="boolean" />
334        <!-- Flag indicating whether this window should fill the entire screen.  Corresponds
335             to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. -->
336        <attr name="windowFullscreen" format="boolean" />
337        <!-- Flag indicating whether this window should extend into overscan region.  Corresponds
338             to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. -->
339        <attr name="windowOverscan" format="boolean" />
340        <!-- Flag indicating whether this is a floating window. -->
341        <attr name="windowIsFloating" format="boolean" />
342        <!-- Flag indicating whether this is a translucent window. If this attribute is unset (but
343             not if set to false), the window might still be considered translucent, if
344             windowSwipeToDismiss is set to true. -->
345        <attr name="windowIsTranslucent" format="boolean" />
346        <!-- Flag indicating that this window's background should be the
347             user's current wallpaper.  Corresponds
348             to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. -->
349        <attr name="windowShowWallpaper" format="boolean" />
350        <!-- This Drawable is overlaid over the foreground of the Window's content area, usually
351             to place a shadow below the title.  -->
352        <attr name="windowContentOverlay" format="reference" />
353        <!-- The style resource to use for a window's title bar height. -->
354        <attr name="windowTitleSize" format="dimension" />
355        <!-- The style resource to use for a window's title text. -->
356        <attr name="windowTitleStyle" format="reference" />
357        <!-- The style resource to use for a window's title area. -->
358        <attr name="windowTitleBackgroundStyle" format="reference" />
359
360        <!-- Reference to a style resource holding
361             the set of window animations to use, which can be
362             any of the attributes defined by
363             {@link android.R.styleable#WindowAnimation}. -->
364        <attr name="windowAnimationStyle" format="reference" />
365
366        <!-- Flag indicating whether this window should have an Action Bar
367             in place of the usual title bar. -->
368        <attr name="windowActionBar" format="boolean" />
369
370        <!-- Flag indicating whether this window's Action Bar should overlay
371             application content. Does nothing if the window would not
372             have an Action Bar. -->
373        <attr name="windowActionBarOverlay" format="boolean" />
374
375        <!-- Flag indicating whether action modes should overlay window content
376             when there is not reserved space for their UI (such as an Action Bar). -->
377        <attr name="windowActionModeOverlay" format="boolean" />
378
379        <!-- Defines the default soft input state that this window would
380             like when it is displayed.  Corresponds
381             to {@link android.view.WindowManager.LayoutParams#softInputMode}. -->
382        <attr name="windowSoftInputMode">
383            <!-- Not specified, use what the system thinks is best.  This
384                 is the default. -->
385            <flag name="stateUnspecified" value="0" />
386            <!-- Leave the soft input window as-is, in whatever state it
387                 last was. -->
388            <flag name="stateUnchanged" value="1" />
389            <!-- Make the soft input area hidden when normally appropriate
390                 (when the user is navigating forward to your window). -->
391            <flag name="stateHidden" value="2" />
392            <!-- Always make the soft input area hidden when this window
393                 has input focus. -->
394            <flag name="stateAlwaysHidden" value="3" />
395            <!-- Make the soft input area visible when normally appropriate
396                 (when the user is navigating forward to your window). -->
397            <flag name="stateVisible" value="4" />
398            <!-- Always make the soft input area visible when this window
399                 has input focus. -->
400            <flag name="stateAlwaysVisible" value="5" />
401
402            <!-- The window resize/pan adjustment has not been specified,
403                 the system will automatically select between resize and pan
404                 modes, depending
405                 on whether the content of the window has any layout views
406                 that can scroll their contents.  If there is such a view,
407                 then the window will be resized, with the assumption being
408                 that the resizeable area can be reduced to make room for
409                 the input UI. -->
410            <flag name="adjustUnspecified" value="0x00" />
411            <!-- Always resize the window: the content area of the window is
412                 reduced to make room for the soft input area. -->
413            <flag name="adjustResize" value="0x10" />
414            <!-- Don't resize the window to make room for the soft input area;
415                 instead pan the contents of the window as focus moves inside
416                 of it so that the user can see what they are typing.  This is
417                 generally less desireable than panning because the user may
418                 need to close the input area to get at and interact with
419                 parts of the window. -->
420            <flag name="adjustPan" value="0x20" />
421            <!-- Don't resize <em>or</em> pan the window to make room for the
422                 soft input area; the window is never adjusted for it. -->
423            <flag name="adjustNothing" value="0x30" />
424        </attr>
425
426        <!-- Flag allowing you to disable the preview animation for a window.
427             The default value is false; if set to true, the system can never
428             use the window's theme to show a preview of it before your
429             actual instance is shown to the user. -->
430        <attr name="windowDisablePreview" format="boolean" />
431
432        <!-- Flag indicating that this window should not be displayed at all.
433             The default value is false; if set to true, and this window is
434             the main window of an Activity, then it will never actually
435             be added to the window manager.  This means that your activity
436             must immediately quit without waiting for user interaction,
437             because there will be no such interaction coming. -->
438        <attr name="windowNoDisplay" format="boolean" />
439
440        <!-- Flag indicating that this window should allow touches to be split
441             across other windows that also support split touch.
442             The default value is true for applications with a targetSdkVersion
443             of Honeycomb or newer; false otherwise.
444             When this flag is false, the first pointer that goes down determines
445             the window to which all subsequent touches go until all pointers go up.
446             When this flag is true, each pointer (not necessarily the first) that
447             goes down determines the window to which all subsequent touches of that
448             pointer will go until that pointers go up thereby enabling touches
449             with multiple pointers to be split across multiple windows. -->
450        <attr name="windowEnableSplitTouch" format="boolean" />
451
452        <!-- Control whether a container should automatically close itself if
453             the user touches outside of it.  This only applies to activities
454             and dialogs.
455
456             <p>Note: this attribute will only be respected for applications
457             that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
458             or later. -->
459        <attr name="windowCloseOnTouchOutside" format="boolean" />
460
461        <!-- Flag indicating whether this window requests a translucent status bar.  Corresponds
462             to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. -->
463        <attr name="windowTranslucentStatus" format="boolean" />
464
465        <!-- Flag indicating whether this window requests a translucent navigation bar.  Corresponds
466             to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. -->
467        <attr name="windowTranslucentNavigation" format="boolean" />
468
469        <!-- Flag to indicate that a window can be swiped away to be dismissed.
470             Corresponds to {@link android.view.Window#FEATURE_SWIPE_TO_DISMISS}. It will also
471             dynamically change translucency of the window, if the windowIsTranslucent is not set.
472             If windowIsTranslucent is set (to either true or false) it will obey that setting. -->
473        <attr name="windowSwipeToDismiss" format="boolean" />
474
475        <!-- Flag indicating whether this window requests that content changes be performed
476             as scene changes with transitions. Corresponds to
477             {@link android.view.Window#FEATURE_CONTENT_TRANSITIONS}. -->
478        <attr name="windowContentTransitions" format="boolean" />
479
480        <!-- Reference to a TransitionManager XML resource defining the desired
481             transitions between different window content. -->
482        <attr name="windowContentTransitionManager" format="reference" />
483
484        <!-- Flag indicating whether this window allows Activity Transitions.
485             Corresponds to {@link android.view.Window#FEATURE_ACTIVITY_TRANSITIONS}. -->
486        <attr name="windowActivityTransitions" format="boolean" />
487
488        <!-- Reference to a Transition XML resource defining the desired Transition
489             used to move Views into the initial Window's content Scene. Corresponds to
490             {@link android.view.Window#setEnterTransition(android.transition.Transition)}. -->
491        <attr name="windowEnterTransition" format="reference"/>
492
493        <!-- Reference to a Transition XML resource defining the desired Transition
494             used to move Views out of the scene when the Window is
495             preparing to close. Corresponds to
496             {@link android.view.Window#setReturnTransition(android.transition.Transition)}. -->
497        <attr name="windowReturnTransition" format="reference"/>
498
499        <!-- Reference to a Transition XML resource defining the desired Transition
500             used to move Views out of the Window's content Scene when launching a new Activity.
501             Corresponds to
502             {@link android.view.Window#setExitTransition(android.transition.Transition)}. -->
503        <attr name="windowExitTransition" format="reference"/>
504
505        <!-- Reference to a Transition XML resource defining the desired Transition
506             used to move Views in to the scene when returning from a previously-started Activity.
507             Corresponds to
508             {@link android.view.Window#setReenterTransition(android.transition.Transition)}. -->
509        <attr name="windowReenterTransition" format="reference"/>
510
511        <!-- Reference to a Transition XML resource defining the desired Transition
512             used to move shared elements transferred into the Window's initial content Scene.
513             Corresponds to {@link android.view.Window#setSharedElementEnterTransition(
514             android.transition.Transition)}. -->
515        <attr name="windowSharedElementEnterTransition" format="reference"/>
516
517        <!-- Reference to a Transition XML resource defining the desired Transition
518             used to move shared elements transferred back to a calling Activity.
519             Corresponds to {@link android.view.Window#setSharedElementReturnTransition(
520             android.transition.Transition)}. -->
521        <attr name="windowSharedElementReturnTransition" format="reference"/>
522
523        <!-- Reference to a Transition XML resource defining the desired Transition
524             used when starting a new Activity to move shared elements prior to transferring
525             to the called Activity.
526             Corresponds to {@link android.view.Window#setSharedElementExitTransition(
527             android.transition.Transition)}. -->
528        <attr name="windowSharedElementExitTransition" format="reference"/>
529
530        <!-- Reference to a Transition XML resource defining the desired Transition
531             used for shared elements transferred back to a calling Activity.
532             Corresponds to {@link android.view.Window#setSharedElementReenterTransition(
533             android.transition.Transition)}. -->
534        <attr name="windowSharedElementReenterTransition" format="reference"/>
535
536        <!-- Flag indicating whether this Window's transition should overlap with
537             the exiting transition of the calling Activity. Corresponds to
538             {@link android.view.Window#setAllowEnterTransitionOverlap(boolean)}. -->
539        <attr name="windowAllowEnterTransitionOverlap" format="boolean"/>
540
541        <!-- Flag indicating whether this Window's transition should overlap with
542             the exiting transition of the called Activity when the called Activity
543             finishes. Corresponds to
544             {@link android.view.Window#setAllowReturnTransitionOverlap(boolean)}. -->
545        <attr name="windowAllowReturnTransitionOverlap" format="boolean"/>
546
547        <!-- Indicates whether or not shared elements should use an overlay
548             during transitions. The default value is true. -->
549        <attr name="windowSharedElementsUseOverlay" format="boolean"/>
550
551        <!-- Internal layout used internally for window decor -->
552        <attr name="windowActionBarFullscreenDecorLayout" format="reference" />
553
554        <!-- The duration, in milliseconds, of the window background fade duration
555             when transitioning into or away from an Activity when called with an
556             Activity Transition. Corresponds to
557             {@link android.view.Window#setTransitionBackgroundFadeDuration(long)}. -->
558        <attr name="windowTransitionBackgroundFadeDuration" format="integer"/>
559
560        <!-- ============ -->
561        <!-- Floating toolbar styles -->
562        <!-- ============ -->
563       <eat-comment />
564       <attr name="floatingToolbarCloseDrawable" format="reference" />
565       <attr name="floatingToolbarForegroundColor" format="reference|color" />
566       <attr name="floatingToolbarItemBackgroundBorderlessDrawable" format="reference" />
567       <attr name="floatingToolbarItemBackgroundDrawable" format="reference" />
568       <attr name="floatingToolbarOpenDrawable" format="reference" />
569       <attr name="floatingToolbarPopupBackgroundDrawable" format="reference" />
570
571        <!-- ============ -->
572        <!-- Alert Dialog styles -->
573        <!-- ============ -->
574        <eat-comment />
575        <attr name="alertDialogStyle" format="reference" />
576        <attr name="alertDialogButtonGroupStyle" format="reference" />
577        <attr name="alertDialogCenterButtons" format="boolean" />
578
579        <!-- ============== -->
580        <!-- Image elements -->
581        <!-- ============== -->
582        <eat-comment />
583i
584        <!-- Background that can be used behind parts of a UI that provide
585             details on data the user is selecting.  For example, this is
586             the background element of PreferenceActivity's embedded
587             preference fragment. -->
588        <attr name="detailsElementBackground" format="reference" />
589
590        <!-- Icon that should be used to indicate that an app is waiting for a fingerprint scan.
591             This should be used whenever an app is requesting the user to place a finger on the
592             fingerprint sensor. It can be combined with other drawables such as colored circles, so
593             the appearance matches the branding of the app requesting the fingerprint scan.-->
594        <attr name="fingerprintAuthDrawable" format="reference" />
595
596        <!-- ============ -->
597        <!-- Panel styles -->
598        <!-- ============ -->
599        <eat-comment />
600
601        <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
602        <attr name="panelBackground" format="reference|color" />
603        <!-- The background of a panel when it extends to the left and right edges of the screen. -->
604        <attr name="panelFullBackground" format="reference|color" />
605        <!-- Default color of foreground panel imagery. -->
606        <attr name="panelColorForeground" format="reference|color" />
607        <!-- Color that matches (as closely as possible) the panel background. -->
608        <attr name="panelColorBackground" format="reference|color" />
609        <!-- Default appearance of panel text. -->
610        <attr name="panelTextAppearance" format="reference" />
611
612        <attr name="panelMenuIsCompact" format="boolean" />
613        <attr name="panelMenuListWidth" format="dimension" />
614        <attr name="panelMenuListTheme" format="reference" />
615
616        <!-- =================== -->
617        <!-- Other widget styles -->
618        <!-- =================== -->
619        <eat-comment />
620
621        <!-- Default AbsListView style. -->
622        <attr name="absListViewStyle" format="reference" />
623        <!-- Default AutoCompleteTextView style. -->
624        <attr name="autoCompleteTextViewStyle" format="reference" />
625        <!-- Default Checkbox style. -->
626        <attr name="checkboxStyle" format="reference" />
627        <!-- Default CheckedTextView style. -->
628        <attr name="checkedTextViewStyle" format="reference" />
629        <!-- Default ListView style for drop downs. -->
630        <attr name="dropDownListViewStyle" format="reference" />
631        <!-- Default EditText style. -->
632        <attr name="editTextStyle" format="reference" />
633        <!-- Default ExpandableListView style. -->
634        <attr name="expandableListViewStyle" format="reference" />
635        <!-- ExpandableListView with white background. -->
636        <attr name="expandableListViewWhiteStyle" format="reference" />
637        <!-- Default Gallery style. -->
638        <attr name="galleryStyle" format="reference" />
639        <!-- Default GestureOverlayView style. -->
640        <attr name="gestureOverlayViewStyle" format="reference" />
641        <!-- Default GridView style. -->
642        <attr name="gridViewStyle" format="reference" />
643        <!-- The style resource to use for an ImageButton. -->
644        <attr name="imageButtonStyle" format="reference" />
645        <!-- The style resource to use for an ImageButton that is an image well. -->
646        <attr name="imageWellStyle" format="reference" />
647        <!-- Default menu-style ListView style. -->
648        <attr name="listMenuViewStyle" format="reference" />
649        <!-- Default ListView style. -->
650        <attr name="listViewStyle" format="reference" />
651        <!-- ListView with white background. -->
652        <attr name="listViewWhiteStyle" format="reference" />
653        <!-- Default PopupWindow style. -->
654        <attr name="popupWindowStyle" format="reference" />
655        <!-- Default ProgressBar style. This is a medium circular progress bar. -->
656        <attr name="progressBarStyle" format="reference" />
657        <!-- Horizontal ProgressBar style. This is a horizontal progress bar. -->
658        <attr name="progressBarStyleHorizontal" format="reference" />
659        <!-- Small ProgressBar style. This is a small circular progress bar. -->
660        <attr name="progressBarStyleSmall" format="reference" />
661        <!-- Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars. -->
662        <attr name="progressBarStyleSmallTitle" format="reference" />
663        <!-- Large ProgressBar style. This is a large circular progress bar. -->
664        <attr name="progressBarStyleLarge" format="reference" />
665        <!-- Inverse ProgressBar style. This is a medium circular progress bar. -->
666        <attr name="progressBarStyleInverse" format="reference" />
667        <!-- Small inverse ProgressBar style. This is a small circular progress bar. -->
668        <attr name="progressBarStyleSmallInverse" format="reference" />
669        <!-- Large inverse ProgressBar style. This is a large circular progress bar. -->
670        <attr name="progressBarStyleLargeInverse" format="reference" />
671        <!-- Default SeekBar style. -->
672        <attr name="seekBarStyle" format="reference" />
673        <!-- Default RatingBar style. -->
674        <attr name="ratingBarStyle" format="reference" />
675        <!-- Indicator RatingBar style. -->
676        <attr name="ratingBarStyleIndicator" format="reference" />
677        <!-- Small indicator RatingBar style. -->
678        <attr name="ratingBarStyleSmall" format="reference" />
679        <!-- Default RadioButton style. -->
680        <attr name="radioButtonStyle" format="reference" />
681        <!-- Default ScrollView style. -->
682        <attr name="scrollViewStyle" format="reference" />
683        <!-- Default HorizontalScrollView style. -->
684        <attr name="horizontalScrollViewStyle" format="reference" />
685        <!-- Default Spinner style. -->
686        <attr name="spinnerStyle" format="reference" />
687        <!-- Default dropdown Spinner style. -->
688        <attr name="dropDownSpinnerStyle" format="reference" />
689        <!-- Default ActionBar dropdown style. -->
690        <attr name="actionDropDownStyle" format="reference" />
691        <!-- Default action button style. -->
692        <attr name="actionButtonStyle" format="reference" />
693        <!-- Default Star style. -->
694        <attr name="starStyle" format="reference" />
695        <!-- Default TabWidget style. -->
696        <attr name="tabWidgetStyle" format="reference" />
697        <!-- Default TextView style. -->
698        <attr name="textViewStyle" format="reference" />
699        <!-- Default WebTextView style. -->
700        <attr name="webTextViewStyle" format="reference" />
701        <!-- Default WebView style. -->
702        <attr name="webViewStyle" format="reference" />
703        <!-- Default style for drop down items. -->
704        <attr name="dropDownItemStyle" format="reference" />
705         <!-- Default style for spinner drop down items. -->
706        <attr name="spinnerDropDownItemStyle" format="reference" />
707        <!-- Default style for drop down hints. -->
708        <attr name="dropDownHintAppearance" format="reference" />
709        <!-- Default spinner item style. -->
710        <attr name="spinnerItemStyle" format="reference" />
711        <!-- Default MapView style. -->
712        <attr name="mapViewStyle" format="reference" />
713        <!-- Drawable used as an overlay on top of quickcontact photos. -->
714        <attr name="quickContactBadgeOverlay" format="reference" />
715        <!-- Default quickcontact badge style with small quickcontact window. -->
716        <attr name="quickContactBadgeStyleWindowSmall" format="reference" />
717        <!-- Default quickcontact badge style with medium quickcontact window. -->
718        <attr name="quickContactBadgeStyleWindowMedium" format="reference" />
719        <!-- Default quickcontact badge style with large quickcontact window. -->
720        <attr name="quickContactBadgeStyleWindowLarge" format="reference" />
721        <!-- Default quickcontact badge style with small quickcontact window. -->
722        <attr name="quickContactBadgeStyleSmallWindowSmall" format="reference" />
723        <!-- Default quickcontact badge style with medium quickcontact window. -->
724        <attr name="quickContactBadgeStyleSmallWindowMedium" format="reference" />
725        <!-- Default quickcontact badge style with large quickcontact window. -->
726        <attr name="quickContactBadgeStyleSmallWindowLarge" format="reference" />
727        <!-- Reference to a style that will be used for the window containing a text
728             selection anchor. -->
729        <attr name="textSelectHandleWindowStyle" format="reference" />
730        <!-- Reference to a style that will be used for the window containing a list of possible
731             text suggestions in an EditText. -->
732        <attr name="textSuggestionsWindowStyle" format="reference" />
733        <!-- Default ListPopupWindow style. -->
734        <attr name="listPopupWindowStyle" format="reference" />
735        <!-- Default PopupMenu style. -->
736        <attr name="popupMenuStyle" format="reference" />
737        <!-- Default context menu PopupMenu style. -->
738        <attr name="contextPopupMenuStyle" format="reference" />
739        <!-- Default StackView style. -->
740        <attr name="stackViewStyle" format="reference" />
741
742        <!-- Default style for the FragmentBreadCrumbs widget. This widget is deprecated
743             starting in API level 21 ({@link android.os.Build.VERSION_CODES#.L}). -->
744        <attr name="fragmentBreadCrumbsStyle" format="reference" />
745
746        <!-- NumberPicker style. -->
747        <attr name="numberPickerStyle" format="reference" />
748
749        <!-- The CalendarView style. -->
750        <attr name="calendarViewStyle" format="reference" />
751
752        <!-- The TimePicker style. -->
753        <attr name="timePickerStyle" format="reference" />
754
755        <!-- The TimePicker dialog theme. -->
756        <attr name="timePickerDialogTheme" format="reference" />
757
758        <!-- The DatePicker style. -->
759        <attr name="datePickerStyle" format="reference" />
760
761        <!-- The DatePicker dialog theme. -->
762        <attr name="datePickerDialogTheme" format="reference" />
763
764        <!-- Default ActivityChooserView style. -->
765        <attr name="activityChooserViewStyle" format="reference" />
766
767        <!-- Default Toolbar style. -->
768        <attr name="toolbarStyle" format="reference" />
769
770        <!-- Fast scroller styles -->
771        <eat-comment />
772
773        <!-- Drawable to use as the fast scroll thumb. -->
774        <attr name="fastScrollThumbDrawable" format="reference" />
775        <!-- Drawable to use as the fast scroll index preview window background
776             when shown on the right. -->
777        <attr name="fastScrollPreviewBackgroundRight" format="reference" />
778        <!-- Drawable to use as the fast scroll index preview window background
779             when shown on the left. -->
780        <attr name="fastScrollPreviewBackgroundLeft" format="reference" />
781        <!-- Drawable to use as the track for the fast scroll thumb.
782             This may be null. -->
783        <attr name="fastScrollTrackDrawable" format="reference" />
784        <!-- Position of the fast scroll index overlay window. -->
785        <attr name="fastScrollOverlayPosition">
786            <enum name="floating" value="0" />
787            <enum name="atThumb" value="1" />
788            <enum name="aboveThumb" value="2" />
789        </attr>
790        <!-- Text color for the fast scroll index overlay. Make sure it
791             plays nicely with fastScrollPreviewBackground[Left|Right]. -->
792        <attr name="fastScrollTextColor" format="color" />
793
794        <!-- =================== -->
795        <!-- Action bar styles   -->
796        <!-- =================== -->
797        <eat-comment />
798        <!-- Default style for tabs within an action bar -->
799        <attr name="actionBarTabStyle" format="reference" />
800        <attr name="actionBarTabBarStyle" format="reference" />
801        <attr name="actionBarTabTextStyle" format="reference" />
802        <attr name="actionOverflowButtonStyle" format="reference" />
803        <attr name="actionOverflowMenuStyle" format="reference" />
804        <!-- Reference to a theme that should be used to inflate popups
805             shown by widgets in the action bar. -->
806        <attr name="actionBarPopupTheme" format="reference" />
807        <!-- Reference to a style for the Action Bar -->
808        <attr name="actionBarStyle" format="reference" />
809        <!-- Reference to a style for the split Action Bar. This style
810             controls the split component that holds the menu/action
811             buttons. actionBarStyle is still used for the primary
812             bar. -->
813        <attr name="actionBarSplitStyle" format="reference" />
814        <!-- Reference to a theme that should be used to inflate the
815             action bar. This will be inherited by any widget inflated
816             into the action bar. -->
817        <attr name="actionBarTheme" format="reference" />
818        <!-- Reference to a theme that should be used to inflate widgets
819             and layouts destined for the action bar. Most of the time
820             this will be a reference to the current theme, but when
821             the action bar has a significantly different contrast
822             profile than the rest of the activity the difference
823             can become important. If this is set to @null the current
824             theme will be used.-->
825        <attr name="actionBarWidgetTheme" format="reference" />
826        <!-- Size of the Action Bar, including the contextual
827             bar used to present Action Modes. -->
828        <attr name="actionBarSize" format="dimension" >
829            <enum name="wrap_content" value="0" />
830        </attr>
831        <!-- Custom divider drawable to use for elements in the action bar. -->
832        <attr name="actionBarDivider" format="reference" />
833        <!-- Custom item state list drawable background for action bar items. -->
834        <attr name="actionBarItemBackground" format="reference" />
835        <!-- TextAppearance style that will be applied to text that
836             appears within action menu items. -->
837        <attr name="actionMenuTextAppearance" format="reference" />
838        <!-- Color for text that appears within action menu items. -->
839        <attr name="actionMenuTextColor" format="color|reference" />
840
841        <!-- =================== -->
842        <!-- Action mode styles  -->
843        <!-- =================== -->
844        <eat-comment />
845        <attr name="actionModeStyle" format="reference" />
846        <attr name="actionModeCloseButtonStyle" format="reference" />
847        <!-- Background drawable to use for action mode UI -->
848        <attr name="actionModeBackground" format="reference" />
849        <!-- Background drawable to use for action mode UI in the lower split bar -->
850        <attr name="actionModeSplitBackground" format="reference" />
851        <!-- Drawable to use for the close action mode button -->
852        <attr name="actionModeCloseDrawable" format="reference" />
853
854        <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
855        <attr name="actionModeCutDrawable" format="reference" />
856        <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
857        <attr name="actionModeCopyDrawable" format="reference" />
858        <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
859        <attr name="actionModePasteDrawable" format="reference" />
860        <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
861        <attr name="actionModeSelectAllDrawable" format="reference" />
862        <!-- Drawable to use for the Share action button in WebView selection action modes -->
863        <attr name="actionModeShareDrawable" format="reference" />
864        <!-- Drawable to use for the Find action button in WebView selection action modes -->
865        <attr name="actionModeFindDrawable" format="reference" />
866        <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
867        <attr name="actionModeWebSearchDrawable" format="reference" />
868
869        <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
870        <attr name="actionModePopupWindowStyle" format="reference" />
871
872        <!-- =================== -->
873        <!-- Preference styles   -->
874        <!-- =================== -->
875        <eat-comment />
876
877        <!-- Default style for PreferenceScreen. -->
878        <attr name="preferenceScreenStyle" format="reference" />
879        <!-- Default style for the PreferenceActivity. -->
880        <attr name="preferenceActivityStyle" format="reference" />
881        <!-- Default style for Headers pane in PreferenceActivity. -->
882        <attr name="preferenceFragmentStyle" format="reference" />
883        <!-- Default style for PreferenceCategory. -->
884        <attr name="preferenceCategoryStyle" format="reference" />
885        <!-- Default style for Preference. -->
886        <attr name="preferenceStyle" format="reference" />
887        <!-- Default style for informational Preference. -->
888        <attr name="preferenceInformationStyle" format="reference" />
889        <!-- Default style for CheckBoxPreference. -->
890        <attr name="checkBoxPreferenceStyle" format="reference" />
891        <!-- Default style for YesNoPreference. -->
892        <attr name="yesNoPreferenceStyle" format="reference" />
893        <!-- Default style for DialogPreference. -->
894        <attr name="dialogPreferenceStyle" format="reference" />
895        <!-- Default style for EditTextPreference. -->
896        <attr name="editTextPreferenceStyle" format="reference" />
897        <!-- @hide Default style for SeekBarDialogPreference. -->
898        <attr name="seekBarDialogPreferenceStyle" format="reference" />
899        <!-- Default style for RingtonePreference. -->
900        <attr name="ringtonePreferenceStyle" format="reference" />
901        <!-- The preference layout that has the child/tabbed effect. -->
902        <attr name="preferenceLayoutChild" format="reference" />
903        <!-- Preference panel style -->
904        <attr name="preferencePanelStyle" format="reference" />
905        <!-- Preference headers panel style -->
906        <attr name="preferenceHeaderPanelStyle" format="reference" />
907        <!-- Preference list style -->
908        <attr name="preferenceListStyle" format="reference" />
909        <!-- Preference fragment list style -->
910        <attr name="preferenceFragmentListStyle" format="reference" />
911        <!-- Preference fragment padding side -->
912        <attr name="preferenceFragmentPaddingSide" format="dimension" />
913        <!-- Default style for switch preferences. -->
914        <attr name="switchPreferenceStyle" format="reference" />
915        <!-- Default style for seekbar preferences. -->
916        <attr name="seekBarPreferenceStyle" format="reference" />
917
918        <!-- ============================ -->
919        <!-- Text selection handle styles -->
920        <!-- ============================ -->
921        <eat-comment />
922
923        <!-- Reference to a drawable that will be used to display a text selection
924             anchor on the left side of a selection region. -->
925        <attr name="textSelectHandleLeft" format="reference" />
926        <!-- Reference to a drawable that will be used to display a text selection
927             anchor on the right side of a selection region. -->
928        <attr name="textSelectHandleRight" format="reference" />
929        <!-- Reference to a drawable that will be used to display a text selection
930             anchor for positioning the cursor within text. -->
931        <attr name="textSelectHandle" format="reference" />
932        <!-- The layout of the view that is displayed on top of the cursor to paste inside a
933             TextEdit field. -->
934        <attr name="textEditPasteWindowLayout" format="reference" />
935        <!-- Variation of textEditPasteWindowLayout displayed when the clipboard is empty. -->
936        <attr name="textEditNoPasteWindowLayout" format="reference" />
937        <!-- Used instead of textEditPasteWindowLayout when the window is moved on the side of the
938             insertion cursor because it would be clipped if it were positioned on top. -->
939        <attr name="textEditSidePasteWindowLayout" format="reference" />
940        <!-- Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. -->
941        <attr name="textEditSideNoPasteWindowLayout" format="reference" />
942
943        <!-- Layout of the TextView item that will populate the suggestion popup window. -->
944        <attr name="textEditSuggestionItemLayout" format="reference" />
945        <!-- Layout of the container of the suggestion popup window. -->
946        <attr name="textEditSuggestionContainerLayout" format="reference" />
947        <!-- Text appearance of the focused words to be replaced by suggested word. -->
948        <attr name="textEditSuggestionHighlightStyle" format="reference" />
949
950        <!-- Theme to use for dialogs spawned from this theme. -->
951        <attr name="dialogTheme" format="reference" />
952        <!-- Window decor layout to use in dialog mode with icons. -->
953        <attr name="dialogTitleIconsDecorLayout" format="reference" />
954        <!-- Window decor layout to use in dialog mode with custom titles. -->
955        <attr name="dialogCustomTitleDecorLayout" format="reference" />
956        <!-- Window decor layout to use in dialog mode with title only. -->
957        <attr name="dialogTitleDecorLayout" format="reference" />
958        <!-- Preferred padding for dialog content. -->
959        <attr name="dialogPreferredPadding" format="dimension" />
960
961        <!-- Theme to use for alert dialogs spawned from this theme. -->
962        <attr name="alertDialogTheme" format="reference" />
963        <!-- Icon drawable to use for alerts -->
964        <attr name="alertDialogIcon" format="reference" />
965
966        <!-- Theme to use for presentations spawned from this theme. -->
967        <attr name="presentationTheme" format="reference" />
968
969        <!-- Drawable to use for generic vertical dividers. -->
970        <attr name="dividerVertical" format="reference" />
971
972        <!-- Drawable to use for generic horizontal dividers. -->
973        <attr name="dividerHorizontal" format="reference" />
974
975        <!-- Style for button bars -->
976        <attr name="buttonBarStyle" format="reference" />
977
978        <!-- Style for buttons within button bars -->
979        <attr name="buttonBarButtonStyle" format="reference" />
980
981        <!-- Style for the "positive" buttons within button bars -->
982        <attr name="buttonBarPositiveButtonStyle" format="reference" />
983
984        <!-- Style for the "negative" buttons within button bars -->
985        <attr name="buttonBarNegativeButtonStyle" format="reference" />
986
987        <!-- Style for the "neutral" buttons within button bars -->
988        <attr name="buttonBarNeutralButtonStyle" format="reference" />
989
990        <!-- Style for the search query widget. -->
991        <attr name="searchViewStyle" format="reference" />
992
993        <!-- Style for segmented buttons - a container that houses several buttons
994             with the appearance of a singel button broken into segments. -->
995        <attr name="segmentedButtonStyle" format="reference" />
996
997        <!-- Background drawable for bordered standalone items that need focus/pressed states. -->
998        <attr name="selectableItemBackground" format="reference" />
999
1000        <!-- Background drawable for borderless standalone items that need focus/pressed states. -->
1001        <attr name="selectableItemBackgroundBorderless" format="reference" />
1002
1003        <!-- Style for buttons without an explicit border, often used in groups. -->
1004        <attr name="borderlessButtonStyle" format="reference" />
1005
1006        <!-- Background to use for toasts -->
1007        <attr name="toastFrameBackground" format="reference" />
1008
1009        <!-- Theme to use for Search Dialogs -->
1010        <attr name="searchDialogTheme" format="reference" />
1011
1012        <!-- Specifies a drawable to use for the 'home as up' indicator. -->
1013        <attr name="homeAsUpIndicator" format="reference" />
1014
1015        <!-- Preference frame layout styles. -->
1016        <attr name="preferenceFrameLayoutStyle" format="reference" />
1017
1018        <!-- Default style for the Switch widget. -->
1019        <attr name="switchStyle" format="reference" />
1020
1021        <!-- Default style for the MediaRouteButton widget. -->
1022        <attr name="mediaRouteButtonStyle" format="reference" />
1023
1024        <!-- ============== -->
1025        <!-- Pointer styles -->
1026        <!-- ============== -->
1027        <eat-comment />
1028
1029        <!-- The drawable for accessibility focused views. -->
1030        <attr name="accessibilityFocusedDrawable" format="reference" />
1031
1032        <!-- Drawable for WebView find-on-page dialogue's "next" button. @hide -->
1033        <attr name="findOnPageNextDrawable" format="reference" />
1034
1035        <!-- Drawable for WebView find-on-page dialogue's "previous" button. @hide -->
1036        <attr name="findOnPagePreviousDrawable" format="reference" />
1037
1038        <!-- ============= -->
1039        <!-- Color palette -->
1040        <!-- ============= -->
1041        <eat-comment />
1042
1043        <!-- The primary branding color for the app. By default, this is the color applied to the
1044             action bar background. -->
1045        <attr name="colorPrimary" format="color" />
1046
1047        <!-- Dark variant of the primary branding color. By default, this is the color applied to
1048             the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
1049        <attr name="colorPrimaryDark" format="color" />
1050
1051        <!-- Bright complement to the primary branding color. By default, this is the color applied
1052             to framework controls (via colorControlActivated). -->
1053        <attr name="colorAccent" format="color" />
1054
1055        <!-- The color applied to framework controls in their normal state. -->
1056        <attr name="colorControlNormal" format="color" />
1057
1058        <!-- The color applied to framework controls in their activated (ex. checked) state. -->
1059        <attr name="colorControlActivated" format="color" />
1060
1061        <!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
1062        <attr name="colorControlHighlight" format="color" />
1063
1064        <!-- The color applied to framework buttons in their normal state. -->
1065        <attr name="colorButtonNormal" format="color" />
1066
1067        <!-- The color applied to framework switch thumbs in their normal state. -->
1068        <attr name="colorSwitchThumbNormal" format="color" />
1069
1070        <!-- The color applied to the edge effect on scrolling containers. -->
1071        <attr name="colorEdgeEffect" format="color" />
1072
1073        <!-- =================== -->
1074        <!-- Lighting properties -->
1075        <!-- =================== -->
1076        <eat-comment />
1077
1078        <!-- @hide The default Y position of the light used to project view shadows. -->
1079        <attr name="lightY" format="dimension" />
1080
1081        <!-- @hide The default Z position of the light used to project view shadows. -->
1082        <attr name="lightZ" format="dimension" />
1083
1084        <!-- @hide The default radius of the light used to project view shadows. -->
1085        <attr name="lightRadius" format="dimension" />
1086
1087        <!-- Alpha value of the ambient shadow projected by elevated views, between 0 and 1. -->
1088        <attr name="ambientShadowAlpha" format="float" />
1089
1090        <!-- Alpha value of the spot shadow projected by elevated views, between 0 and 1. -->
1091        <attr name="spotShadowAlpha" format="float" />
1092    </declare-styleable>
1093
1094    <!-- **************************************************************** -->
1095    <!-- Other non-theme attributes. -->
1096    <!-- **************************************************************** -->
1097    <eat-comment />
1098
1099    <!-- Size of text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp).
1100         Supported values include the following:<p/>
1101    <ul>
1102        <li><b>px</b> Pixels</li>
1103        <li><b>sp</b> Scaled pixels (scaled to relative pixel size on screen). See {@link android.util.DisplayMetrics} for more information.</li>
1104        <li><b>pt</b> Points</li>
1105        <li><b>dip</b> Device independent pixels. See {@link android.util.DisplayMetrics} for more information.</li>
1106    </ul>
1107        -->
1108    <attr name="textSize" format="dimension" />
1109
1110    <!-- Default font family. -->
1111    <attr name="fontFamily" format="string" />
1112
1113    <!-- Default text typeface. -->
1114    <attr name="typeface">
1115        <enum name="normal" value="0" />
1116        <enum name="sans" value="1" />
1117        <enum name="serif" value="2" />
1118        <enum name="monospace" value="3" />
1119    </attr>
1120
1121    <!-- Default text typeface style. -->
1122    <attr name="textStyle">
1123        <flag name="normal" value="0" />
1124        <flag name="bold" value="1" />
1125        <flag name="italic" value="2" />
1126    </attr>
1127
1128    <!-- Color of text (usually same as colorForeground). -->
1129    <attr name="textColor" format="reference|color" />
1130
1131    <!-- Color of highlighted text. -->
1132    <attr name="textColorHighlight" format="reference|color" />
1133
1134    <!-- Color of hint text (displayed when the field is empty). -->
1135    <attr name="textColorHint" format="reference|color" />
1136
1137    <!-- Color of link text (URLs). -->
1138    <attr name="textColorLink" format="reference|color" />
1139
1140    <!-- Reference to a drawable that will be drawn under the insertion cursor. -->
1141    <attr name="textCursorDrawable" format="reference" />
1142
1143    <!-- Indicates that the content of a non-editable TextView can be selected.
1144     Default value is false. EditText content is always selectable. -->
1145    <attr name="textIsSelectable" format="boolean" />
1146
1147    <!-- Where to ellipsize text. -->
1148    <attr name="ellipsize">
1149        <enum name="none" value="0" />
1150        <enum name="start" value="1" />
1151        <enum name="middle" value="2" />
1152        <enum name="end" value="3" />
1153        <enum name="marquee" value="4" />
1154    </attr>
1155
1156    <!-- The type of data being placed in a text field, used to help an
1157         input method decide how to let the user enter text.  The constants
1158         here correspond to those defined by
1159         {@link android.text.InputType}.  Generally you can select
1160         a single value, though some can be combined together as
1161         indicated.  Setting this attribute to anything besides
1162         <var>none</var> also implies that the text is editable. -->
1163    <attr name="inputType">
1164        <!-- There is no content type.  The text is not editable. -->
1165        <flag name="none" value="0x00000000" />
1166        <!-- Just plain old text.  Corresponds to
1167             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1168             {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}. -->
1169        <flag name="text" value="0x00000001" />
1170        <!-- Can be combined with <var>text</var> and its variations to
1171             request capitalization of all characters.  Corresponds to
1172             {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}. -->
1173        <flag name="textCapCharacters" value="0x00001001" />
1174        <!-- Can be combined with <var>text</var> and its variations to
1175             request capitalization of the first character of every word.  Corresponds to
1176             {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}. -->
1177        <flag name="textCapWords" value="0x00002001" />
1178        <!-- Can be combined with <var>text</var> and its variations to
1179             request capitalization of the first character of every sentence.  Corresponds to
1180             {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}. -->
1181        <flag name="textCapSentences" value="0x00004001" />
1182        <!-- Can be combined with <var>text</var> and its variations to
1183             request auto-correction of text being input.  Corresponds to
1184             {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}. -->
1185        <flag name="textAutoCorrect" value="0x00008001" />
1186        <!-- Can be combined with <var>text</var> and its variations to
1187             specify that this field will be doing its own auto-completion and
1188             talking with the input method appropriately.  Corresponds to
1189             {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}. -->
1190        <flag name="textAutoComplete" value="0x00010001" />
1191        <!-- Can be combined with <var>text</var> and its variations to
1192             allow multiple lines of text in the field.  If this flag is not set,
1193             the text field will be constrained to a single line.  Corresponds to
1194             {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}. -->
1195        <flag name="textMultiLine" value="0x00020001" />
1196        <!-- Can be combined with <var>text</var> and its variations to
1197             indicate that though the regular text view should not be multiple
1198             lines, the IME should provide multiple lines if it can.  Corresponds to
1199             {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}. -->
1200        <flag name="textImeMultiLine" value="0x00040001" />
1201        <!-- Can be combined with <var>text</var> and its variations to
1202             indicate that the IME should not show any
1203             dictionary-based word suggestions.  Corresponds to
1204             {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}. -->
1205        <flag name="textNoSuggestions" value="0x00080001" />
1206        <!-- Text that will be used as a URI.  Corresponds to
1207             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1208             {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}. -->
1209        <flag name="textUri" value="0x00000011" />
1210        <!-- Text that will be used as an e-mail address.  Corresponds to
1211             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1212             {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}. -->
1213        <flag name="textEmailAddress" value="0x00000021" />
1214        <!-- Text that is being supplied as the subject of an e-mail.  Corresponds to
1215             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1216             {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}. -->
1217        <flag name="textEmailSubject" value="0x00000031" />
1218        <!-- Text that is the content of a short message.  Corresponds to
1219             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1220             {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}. -->
1221        <flag name="textShortMessage" value="0x00000041" />
1222        <!-- Text that is the content of a long message.  Corresponds to
1223             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1224             {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}. -->
1225        <flag name="textLongMessage" value="0x00000051" />
1226        <!-- Text that is the name of a person.  Corresponds to
1227             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1228             {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}. -->
1229        <flag name="textPersonName" value="0x00000061" />
1230        <!-- Text that is being supplied as a postal mailing address.  Corresponds to
1231             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1232             {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}. -->
1233        <flag name="textPostalAddress" value="0x00000071" />
1234        <!-- Text that is a password.  Corresponds to
1235             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1236             {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}. -->
1237        <flag name="textPassword" value="0x00000081" />
1238        <!-- Text that is a password that should be visible.  Corresponds to
1239             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1240             {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}. -->
1241        <flag name="textVisiblePassword" value="0x00000091" />
1242        <!-- Text that is being supplied as text in a web form.  Corresponds to
1243             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1244             {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}. -->
1245        <flag name="textWebEditText" value="0x000000a1" />
1246        <!-- Text that is filtering some other data.  Corresponds to
1247             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1248             {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}. -->
1249        <flag name="textFilter" value="0x000000b1" />
1250        <!-- Text that is for phonetic pronunciation, such as a phonetic name
1251             field in a contact entry.  Corresponds to
1252             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1253             {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}. -->
1254        <flag name="textPhonetic" value="0x000000c1" />
1255        <!-- Text that will be used as an e-mail address on a web form.  Corresponds to
1256             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1257             {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}. -->
1258        <flag name="textWebEmailAddress" value="0x000000d1" />
1259        <!-- Text that will be used as a password on a web form.  Corresponds to
1260             {@link android.text.InputType#TYPE_CLASS_TEXT} |
1261             {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}. -->
1262        <flag name="textWebPassword" value="0x000000e1" />
1263        <!-- A numeric only field.  Corresponds to
1264             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1265             {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}. -->
1266        <flag name="number" value="0x00000002" />
1267        <!-- Can be combined with <var>number</var> and its other options to
1268             allow a signed number.  Corresponds to
1269             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1270             {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}. -->
1271        <flag name="numberSigned" value="0x00001002" />
1272        <!-- Can be combined with <var>number</var> and its other options to
1273             allow a decimal (fractional) number.  Corresponds to
1274             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1275             {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}. -->
1276        <flag name="numberDecimal" value="0x00002002" />
1277        <!-- A numeric password field.  Corresponds to
1278             {@link android.text.InputType#TYPE_CLASS_NUMBER} |
1279             {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}. -->
1280        <flag name="numberPassword" value="0x00000012" />
1281        <!-- For entering a phone number.  Corresponds to
1282             {@link android.text.InputType#TYPE_CLASS_PHONE}. -->
1283        <flag name="phone" value="0x00000003" />
1284        <!-- For entering a date and time.  Corresponds to
1285             {@link android.text.InputType#TYPE_CLASS_DATETIME} |
1286             {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}. -->
1287        <flag name="datetime" value="0x00000004" />
1288        <!-- For entering a date.  Corresponds to
1289             {@link android.text.InputType#TYPE_CLASS_DATETIME} |
1290             {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}. -->
1291        <flag name="date" value="0x00000014" />
1292        <!-- For entering a time.  Corresponds to
1293             {@link android.text.InputType#TYPE_CLASS_DATETIME} |
1294             {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}. -->
1295        <flag name="time" value="0x00000024" />
1296    </attr>
1297
1298    <!-- Additional features you can enable in an IME associated with an editor
1299         to improve the integration with your application.  The constants
1300         here correspond to those defined by
1301         {@link android.view.inputmethod.EditorInfo#imeOptions}. -->
1302    <attr name="imeOptions">
1303        <!-- There are no special semantics associated with this editor. -->
1304        <flag name="normal" value="0x00000000" />
1305        <!-- There is no specific action associated with this editor, let the
1306             editor come up with its own if it can.
1307             Corresponds to
1308             {@link android.view.inputmethod.EditorInfo#IME_NULL}. -->
1309        <flag name="actionUnspecified" value="0x00000000" />
1310        <!-- This editor has no action associated with it.
1311             Corresponds to
1312             {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}. -->
1313        <flag name="actionNone" value="0x00000001" />
1314        <!-- The action key performs a "go"
1315             operation to take the user to the target of the text they typed.
1316             Typically used, for example, when entering a URL.
1317             Corresponds to
1318             {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}. -->
1319        <flag name="actionGo" value="0x00000002" />
1320        <!-- The action key performs a "search"
1321             operation, taking the user to the results of searching for the text
1322             the have typed (in whatever context is appropriate).
1323             Corresponds to
1324             {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}. -->
1325        <flag name="actionSearch" value="0x00000003" />
1326        <!-- The action key performs a "send"
1327             operation, delivering the text to its target.  This is typically used
1328             when composing a message.
1329             Corresponds to
1330             {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}. -->
1331        <flag name="actionSend" value="0x00000004" />
1332        <!-- The action key performs a "next"
1333             operation, taking the user to the next field that will accept text.
1334             Corresponds to
1335             {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}. -->
1336        <flag name="actionNext" value="0x00000005" />
1337        <!-- The action key performs a "done"
1338             operation, closing the soft input method.
1339             Corresponds to
1340             {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}. -->
1341        <flag name="actionDone" value="0x00000006" />
1342        <!-- The action key performs a "previous"
1343             operation, taking the user to the previous field that will accept text.
1344             Corresponds to
1345             {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}. -->
1346        <flag name="actionPrevious" value="0x00000007" />
1347        <!-- Used to request that the IME never go
1348             into fullscreen mode.  Applications need to be aware that the flag is not
1349             a guarantee, and not all IMEs will respect it.
1350             <p>Corresponds to
1351             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}. -->
1352        <flag name="flagNoFullscreen" value="0x2000000" />
1353        <!-- Like flagNavigateNext, but
1354             specifies there is something interesting that a backward navigation
1355             can focus on.  If the user selects the IME's facility to backward
1356             navigate, this will show up in the application as an actionPrevious
1357             at {@link android.view.inputmethod.InputConnection#performEditorAction(int)
1358             InputConnection.performEditorAction(int)}.
1359             <p>Corresponds to
1360             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}. -->
1361        <flag name="flagNavigatePrevious" value="0x4000000" />
1362        <!-- Used to specify that there is something
1363             interesting that a forward navigation can focus on. This is like using
1364             actionNext, except allows the IME to be multiline (with
1365             an enter key) as well as provide forward navigation.  Note that some
1366             IMEs may not be able to do this, especially when running on a small
1367             screen where there is little space.  In that case it does not need to
1368             present a UI for this option.  Like actionNext, if the
1369             user selects the IME's facility to forward navigate, this will show up
1370             in the application at
1371             {@link android.view.inputmethod.InputConnection#performEditorAction(int)
1372             InputConnection.performEditorAction(int)}.
1373             <p>Corresponds to
1374             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}. -->
1375        <flag name="flagNavigateNext" value="0x8000000" />
1376        <!-- Used to specify that the IME does not need
1377             to show its extracted text UI.  For input methods that may be fullscreen,
1378             often when in landscape mode, this allows them to be smaller and let part
1379             of the application be shown behind.  Though there will likely be limited
1380             access to the application available from the user, it can make the
1381             experience of a (mostly) fullscreen IME less jarring.  Note that when
1382             this flag is specified the IME may <em>not</em> be set up to be able
1383             to display text, so it should only be used in situations where this is
1384             not needed.
1385             <p>Corresponds to
1386             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}. -->
1387        <flag name="flagNoExtractUi" value="0x10000000" />
1388        <!-- Used in conjunction with a custom action, this indicates that the
1389             action should not be available as an accessory button when the
1390             input method is full-screen.
1391             Note that by setting this flag, there can be cases where the action
1392             is simply never available to the user.  Setting this generally means
1393             that you think showing text being edited is more important than the
1394             action you have supplied.
1395             <p>Corresponds to
1396             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}. -->
1397        <flag name="flagNoAccessoryAction" value="0x20000000" />
1398        <!-- Used in conjunction with a custom action,
1399             this indicates that the action should not be available in-line as
1400             a replacement for the "enter" key.  Typically this is
1401             because the action has such a significant impact or is not recoverable
1402             enough that accidentally hitting it should be avoided, such as sending
1403             a message.    Note that {@link android.widget.TextView} will
1404             automatically set this flag for you on multi-line text views.
1405             <p>Corresponds to
1406             {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}. -->
1407        <flag name="flagNoEnterAction" value="0x40000000" />
1408        <!-- Used to request that the IME should be capable of inputting ASCII
1409             characters.  The intention of this flag is to ensure that the user
1410             can type Roman alphabet characters in a {@link android.widget.TextView}
1411             used for, typically, account ID or password input.  It is expected that IMEs
1412             normally are able to input ASCII even without being told so (such IMEs
1413             already respect this flag in a sense), but there could be some cases they
1414             aren't when, for instance, only non-ASCII input languagaes like Arabic,
1415             Greek, Hebrew, Russian are enabled in the IME.  Applications need to be
1416             aware that the flag is not a guarantee, and not all IMEs will respect it.
1417             However, it is strongly recommended for IME authors to respect this flag
1418             especially when their IME could end up with a state that has only non-ASCII
1419             input languages enabled.
1420             <p>Corresponds to
1421             {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}. -->
1422        <flag name="flagForceAscii" value="0x80000000" />
1423    </attr>
1424
1425    <!-- A coordinate in the X dimension. -->
1426    <attr name="x" format="dimension" />
1427    <!-- A coordinate in the Y dimension. -->
1428    <attr name="y" format="dimension" />
1429
1430    <!-- Specifies how an object should position its content, on both the X and Y axes,
1431         within its own bounds.  -->
1432    <attr name="gravity">
1433        <!-- Push object to the top of its container, not changing its size. -->
1434        <flag name="top" value="0x30" />
1435        <!-- Push object to the bottom of its container, not changing its size. -->
1436        <flag name="bottom" value="0x50" />
1437        <!-- Push object to the left of its container, not changing its size. -->
1438        <flag name="left" value="0x03" />
1439        <!-- Push object to the right of its container, not changing its size. -->
1440        <flag name="right" value="0x05" />
1441        <!-- Place object in the vertical center of its container, not changing its size. -->
1442        <flag name="center_vertical" value="0x10" />
1443        <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
1444        <flag name="fill_vertical" value="0x70" />
1445        <!-- Place object in the horizontal center of its container, not changing its size. -->
1446        <flag name="center_horizontal" value="0x01" />
1447        <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
1448        <flag name="fill_horizontal" value="0x07" />
1449        <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
1450        <flag name="center" value="0x11" />
1451        <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
1452        <flag name="fill" value="0x77" />
1453        <!-- Additional option that can be set to have the top and/or bottom edges of
1454             the child clipped to its container's bounds.
1455             The clip will be based on the vertical gravity: a top gravity will clip the bottom
1456             edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
1457        <flag name="clip_vertical" value="0x80" />
1458        <!-- Additional option that can be set to have the left and/or right edges of
1459             the child clipped to its container's bounds.
1460             The clip will be based on the horizontal gravity: a left gravity will clip the right
1461             edge, a right gravity will clip the left edge, and neither will clip both edges. -->
1462        <flag name="clip_horizontal" value="0x08" />
1463        <!-- Push object to the beginning of its container, not changing its size. -->
1464        <flag name="start" value="0x00800003" />
1465        <!-- Push object to the end of its container, not changing its size. -->
1466        <flag name="end" value="0x00800005" />
1467    </attr>
1468
1469    <!-- Controls whether links such as urls and email addresses are
1470         automatically found and converted to clickable links.  The default
1471         value is "none", disabling this feature. -->
1472    <attr name="autoLink">
1473        <!-- Match no patterns (default). -->
1474        <flag name="none" value="0x00" />
1475        <!-- Match Web URLs. -->
1476        <flag name="web" value="0x01" />
1477        <!-- Match email addresses. -->
1478        <flag name="email" value="0x02" />
1479        <!-- Match phone numbers. -->
1480        <flag name="phone" value="0x04" />
1481        <!-- Match map addresses. -->
1482        <flag name="map" value="0x08" />
1483        <!-- Match all patterns (equivalent to web|email|phone|map). -->
1484        <flag name="all" value="0x0f" />
1485    </attr>
1486
1487    <!-- Reference to an array resource that will populate a list/adapter. -->
1488    <attr name="entries" format="reference" />
1489
1490    <!-- Standard gravity constant that a child supplies to its parent.
1491         Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. -->
1492    <attr name="layout_gravity">
1493        <!-- Push object to the top of its container, not changing its size. -->
1494        <flag name="top" value="0x30" />
1495        <!-- Push object to the bottom of its container, not changing its size. -->
1496        <flag name="bottom" value="0x50" />
1497        <!-- Push object to the left of its container, not changing its size. -->
1498        <flag name="left" value="0x03" />
1499        <!-- Push object to the right of its container, not changing its size. -->
1500        <flag name="right" value="0x05" />
1501        <!-- Place object in the vertical center of its container, not changing its size. -->
1502        <flag name="center_vertical" value="0x10" />
1503        <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
1504        <flag name="fill_vertical" value="0x70" />
1505        <!-- Place object in the horizontal center of its container, not changing its size. -->
1506        <flag name="center_horizontal" value="0x01" />
1507        <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
1508        <flag name="fill_horizontal" value="0x07" />
1509        <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
1510        <flag name="center" value="0x11" />
1511        <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
1512        <flag name="fill" value="0x77" />
1513        <!-- Additional option that can be set to have the top and/or bottom edges of
1514             the child clipped to its container's bounds.
1515             The clip will be based on the vertical gravity: a top gravity will clip the bottom
1516             edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
1517        <flag name="clip_vertical" value="0x80" />
1518        <!-- Additional option that can be set to have the left and/or right edges of
1519             the child clipped to its container's bounds.
1520             The clip will be based on the horizontal gravity: a left gravity will clip the right
1521             edge, a right gravity will clip the left edge, and neither will clip both edges. -->
1522        <flag name="clip_horizontal" value="0x08" />
1523        <!-- Push object to the beginning of its container, not changing its size. -->
1524        <flag name="start" value="0x00800003" />
1525        <!-- Push object to the end of its container, not changing its size. -->
1526        <flag name="end" value="0x00800005" />
1527    </attr>
1528
1529    <!-- Standard orientation constant. -->
1530    <attr name="orientation">
1531        <!-- Defines an horizontal widget. -->
1532        <enum name="horizontal" value="0" />
1533        <!-- Defines a vertical widget. -->
1534        <enum name="vertical" value="1" />
1535    </attr>
1536
1537    <!-- Alignment constants. -->
1538    <attr name="alignmentMode">
1539        <!-- Align the bounds of the children.
1540        See {@link android.widget.GridLayout#ALIGN_BOUNDS}. -->
1541        <enum name="alignBounds" value="0" />
1542        <!-- Align the margins of the children.
1543        See {@link android.widget.GridLayout#ALIGN_MARGINS}. -->
1544        <enum name="alignMargins" value="1" />
1545    </attr>
1546
1547    <!-- ========================== -->
1548    <!-- Key Codes                  -->
1549    <!-- ========================== -->
1550    <eat-comment />
1551
1552    <!-- This enum provides the same keycode values as can be found in
1553        {@link android.view.KeyEvent}. -->
1554    <attr name="keycode">
1555        <enum name="KEYCODE_UNKNOWN" value="0" />
1556        <enum name="KEYCODE_SOFT_LEFT" value="1" />
1557        <enum name="KEYCODE_SOFT_RIGHT" value="2" />
1558        <enum name="KEYCODE_HOME" value="3" />
1559        <enum name="KEYCODE_BACK" value="4" />
1560        <enum name="KEYCODE_CALL" value="5" />
1561        <enum name="KEYCODE_ENDCALL" value="6" />
1562        <enum name="KEYCODE_0" value="7" />
1563        <enum name="KEYCODE_1" value="8" />
1564        <enum name="KEYCODE_2" value="9" />
1565        <enum name="KEYCODE_3" value="10" />
1566        <enum name="KEYCODE_4" value="11" />
1567        <enum name="KEYCODE_5" value="12" />
1568        <enum name="KEYCODE_6" value="13" />
1569        <enum name="KEYCODE_7" value="14" />
1570        <enum name="KEYCODE_8" value="15" />
1571        <enum name="KEYCODE_9" value="16" />
1572        <enum name="KEYCODE_STAR" value="17" />
1573        <enum name="KEYCODE_POUND" value="18" />
1574        <enum name="KEYCODE_DPAD_UP" value="19" />
1575        <enum name="KEYCODE_DPAD_DOWN" value="20" />
1576        <enum name="KEYCODE_DPAD_LEFT" value="21" />
1577        <enum name="KEYCODE_DPAD_RIGHT" value="22" />
1578        <enum name="KEYCODE_DPAD_CENTER" value="23" />
1579        <enum name="KEYCODE_VOLUME_UP" value="24" />
1580        <enum name="KEYCODE_VOLUME_DOWN" value="25" />
1581        <enum name="KEYCODE_POWER" value="26" />
1582        <enum name="KEYCODE_CAMERA" value="27" />
1583        <enum name="KEYCODE_CLEAR" value="28" />
1584        <enum name="KEYCODE_A" value="29" />
1585        <enum name="KEYCODE_B" value="30" />
1586        <enum name="KEYCODE_C" value="31" />
1587        <enum name="KEYCODE_D" value="32" />
1588        <enum name="KEYCODE_E" value="33" />
1589        <enum name="KEYCODE_F" value="34" />
1590        <enum name="KEYCODE_G" value="35" />
1591        <enum name="KEYCODE_H" value="36" />
1592        <enum name="KEYCODE_I" value="37" />
1593        <enum name="KEYCODE_J" value="38" />
1594        <enum name="KEYCODE_K" value="39" />
1595        <enum name="KEYCODE_L" value="40" />
1596        <enum name="KEYCODE_M" value="41" />
1597        <enum name="KEYCODE_N" value="42" />
1598        <enum name="KEYCODE_O" value="43" />
1599        <enum name="KEYCODE_P" value="44" />
1600        <enum name="KEYCODE_Q" value="45" />
1601        <enum name="KEYCODE_R" value="46" />
1602        <enum name="KEYCODE_S" value="47" />
1603        <enum name="KEYCODE_T" value="48" />
1604        <enum name="KEYCODE_U" value="49" />
1605        <enum name="KEYCODE_V" value="50" />
1606        <enum name="KEYCODE_W" value="51" />
1607        <enum name="KEYCODE_X" value="52" />
1608        <enum name="KEYCODE_Y" value="53" />
1609        <enum name="KEYCODE_Z" value="54" />
1610        <enum name="KEYCODE_COMMA" value="55" />
1611        <enum name="KEYCODE_PERIOD" value="56" />
1612        <enum name="KEYCODE_ALT_LEFT" value="57" />
1613        <enum name="KEYCODE_ALT_RIGHT" value="58" />
1614        <enum name="KEYCODE_SHIFT_LEFT" value="59" />
1615        <enum name="KEYCODE_SHIFT_RIGHT" value="60" />
1616        <enum name="KEYCODE_TAB" value="61" />
1617        <enum name="KEYCODE_SPACE" value="62" />
1618        <enum name="KEYCODE_SYM" value="63" />
1619        <enum name="KEYCODE_EXPLORER" value="64" />
1620        <enum name="KEYCODE_ENVELOPE" value="65" />
1621        <enum name="KEYCODE_ENTER" value="66" />
1622        <enum name="KEYCODE_DEL" value="67" />
1623        <enum name="KEYCODE_GRAVE" value="68" />
1624        <enum name="KEYCODE_MINUS" value="69" />
1625        <enum name="KEYCODE_EQUALS" value="70" />
1626        <enum name="KEYCODE_LEFT_BRACKET" value="71" />
1627        <enum name="KEYCODE_RIGHT_BRACKET" value="72" />
1628        <enum name="KEYCODE_BACKSLASH" value="73" />
1629        <enum name="KEYCODE_SEMICOLON" value="74" />
1630        <enum name="KEYCODE_APOSTROPHE" value="75" />
1631        <enum name="KEYCODE_SLASH" value="76" />
1632        <enum name="KEYCODE_AT" value="77" />
1633        <enum name="KEYCODE_NUM" value="78" />
1634        <enum name="KEYCODE_HEADSETHOOK" value="79" />
1635        <enum name="KEYCODE_FOCUS" value="80" />
1636        <enum name="KEYCODE_PLUS" value="81" />
1637        <enum name="KEYCODE_MENU" value="82" />
1638        <enum name="KEYCODE_NOTIFICATION" value="83" />
1639        <enum name="KEYCODE_SEARCH" value="84" />
1640        <enum name="KEYCODE_MEDIA_PLAY_PAUSE" value="85" />
1641        <enum name="KEYCODE_MEDIA_STOP" value="86" />
1642        <enum name="KEYCODE_MEDIA_NEXT" value="87" />
1643        <enum name="KEYCODE_MEDIA_PREVIOUS" value="88" />
1644        <enum name="KEYCODE_MEDIA_REWIND" value="89" />
1645        <enum name="KEYCODE_MEDIA_FAST_FORWARD" value="90" />
1646        <enum name="KEYCODE_MUTE" value="91" />
1647        <enum name="KEYCODE_PAGE_UP" value="92" />
1648        <enum name="KEYCODE_PAGE_DOWN" value="93" />
1649        <enum name="KEYCODE_PICTSYMBOLS" value="94" />
1650        <enum name="KEYCODE_SWITCH_CHARSET" value="95" />
1651        <enum name="KEYCODE_BUTTON_A" value="96" />
1652        <enum name="KEYCODE_BUTTON_B" value="97" />
1653        <enum name="KEYCODE_BUTTON_C" value="98" />
1654        <enum name="KEYCODE_BUTTON_X" value="99" />
1655        <enum name="KEYCODE_BUTTON_Y" value="100" />
1656        <enum name="KEYCODE_BUTTON_Z" value="101" />
1657        <enum name="KEYCODE_BUTTON_L1" value="102" />
1658        <enum name="KEYCODE_BUTTON_R1" value="103" />
1659        <enum name="KEYCODE_BUTTON_L2" value="104" />
1660        <enum name="KEYCODE_BUTTON_R2" value="105" />
1661        <enum name="KEYCODE_BUTTON_THUMBL" value="106" />
1662        <enum name="KEYCODE_BUTTON_THUMBR" value="107" />
1663        <enum name="KEYCODE_BUTTON_START" value="108" />
1664        <enum name="KEYCODE_BUTTON_SELECT" value="109" />
1665        <enum name="KEYCODE_BUTTON_MODE" value="110" />
1666        <enum name="KEYCODE_ESCAPE" value="111" />
1667        <enum name="KEYCODE_FORWARD_DEL" value="112" />
1668        <enum name="KEYCODE_CTRL_LEFT" value="113" />
1669        <enum name="KEYCODE_CTRL_RIGHT" value="114" />
1670        <enum name="KEYCODE_CAPS_LOCK" value="115" />
1671        <enum name="KEYCODE_SCROLL_LOCK" value="116" />
1672        <enum name="KEYCODE_META_LEFT" value="117" />
1673        <enum name="KEYCODE_META_RIGHT" value="118" />
1674        <enum name="KEYCODE_FUNCTION" value="119" />
1675        <enum name="KEYCODE_SYSRQ" value="120" />
1676        <enum name="KEYCODE_BREAK" value="121" />
1677        <enum name="KEYCODE_MOVE_HOME" value="122" />
1678        <enum name="KEYCODE_MOVE_END" value="123" />
1679        <enum name="KEYCODE_INSERT" value="124" />
1680        <enum name="KEYCODE_FORWARD" value="125" />
1681        <enum name="KEYCODE_MEDIA_PLAY" value="126" />
1682        <enum name="KEYCODE_MEDIA_PAUSE" value="127" />
1683        <enum name="KEYCODE_MEDIA_CLOSE" value="128" />
1684        <enum name="KEYCODE_MEDIA_EJECT" value="129" />
1685        <enum name="KEYCODE_MEDIA_RECORD" value="130" />
1686        <enum name="KEYCODE_F1" value="131" />
1687        <enum name="KEYCODE_F2" value="132" />
1688        <enum name="KEYCODE_F3" value="133" />
1689        <enum name="KEYCODE_F4" value="134" />
1690        <enum name="KEYCODE_F5" value="135" />
1691        <enum name="KEYCODE_F6" value="136" />
1692        <enum name="KEYCODE_F7" value="137" />
1693        <enum name="KEYCODE_F8" value="138" />
1694        <enum name="KEYCODE_F9" value="139" />
1695        <enum name="KEYCODE_F10" value="140" />
1696        <enum name="KEYCODE_F11" value="141" />
1697        <enum name="KEYCODE_F12" value="142" />
1698        <enum name="KEYCODE_NUM_LOCK" value="143" />
1699        <enum name="KEYCODE_NUMPAD_0" value="144" />
1700        <enum name="KEYCODE_NUMPAD_1" value="145" />
1701        <enum name="KEYCODE_NUMPAD_2" value="146" />
1702        <enum name="KEYCODE_NUMPAD_3" value="147" />
1703        <enum name="KEYCODE_NUMPAD_4" value="148" />
1704        <enum name="KEYCODE_NUMPAD_5" value="149" />
1705        <enum name="KEYCODE_NUMPAD_6" value="150" />
1706        <enum name="KEYCODE_NUMPAD_7" value="151" />
1707        <enum name="KEYCODE_NUMPAD_8" value="152" />
1708        <enum name="KEYCODE_NUMPAD_9" value="153" />
1709        <enum name="KEYCODE_NUMPAD_DIVIDE" value="154" />
1710        <enum name="KEYCODE_NUMPAD_MULTIPLY" value="155" />
1711        <enum name="KEYCODE_NUMPAD_SUBTRACT" value="156" />
1712        <enum name="KEYCODE_NUMPAD_ADD" value="157" />
1713        <enum name="KEYCODE_NUMPAD_DOT" value="158" />
1714        <enum name="KEYCODE_NUMPAD_COMMA" value="159" />
1715        <enum name="KEYCODE_NUMPAD_ENTER" value="160" />
1716        <enum name="KEYCODE_NUMPAD_EQUALS" value="161" />
1717        <enum name="KEYCODE_NUMPAD_LEFT_PAREN" value="162" />
1718        <enum name="KEYCODE_NUMPAD_RIGHT_PAREN" value="163" />
1719        <enum name="KEYCODE_VOLUME_MUTE" value="164" />
1720        <enum name="KEYCODE_INFO" value="165" />
1721        <enum name="KEYCODE_CHANNEL_UP" value="166" />
1722        <enum name="KEYCODE_CHANNEL_DOWN" value="167" />
1723        <enum name="KEYCODE_ZOOM_IN" value="168" />
1724        <enum name="KEYCODE_ZOOM_OUT" value="169" />
1725        <enum name="KEYCODE_TV" value="170" />
1726        <enum name="KEYCODE_WINDOW" value="171" />
1727        <enum name="KEYCODE_GUIDE" value="172" />
1728        <enum name="KEYCODE_DVR" value="173" />
1729        <enum name="KEYCODE_BOOKMARK" value="174" />
1730        <enum name="KEYCODE_CAPTIONS" value="175" />
1731        <enum name="KEYCODE_SETTINGS" value="176" />
1732        <enum name="KEYCODE_TV_POWER" value="177" />
1733        <enum name="KEYCODE_TV_INPUT" value="178" />
1734        <enum name="KEYCODE_STB_POWER" value="179" />
1735        <enum name="KEYCODE_STB_INPUT" value="180" />
1736        <enum name="KEYCODE_AVR_POWER" value="181" />
1737        <enum name="KEYCODE_AVR_INPUT" value="182" />
1738        <enum name="KEYCODE_PROG_GRED" value="183" />
1739        <enum name="KEYCODE_PROG_GREEN" value="184" />
1740        <enum name="KEYCODE_PROG_YELLOW" value="185" />
1741        <enum name="KEYCODE_PROG_BLUE" value="186" />
1742        <enum name="KEYCODE_APP_SWITCH" value="187" />
1743        <enum name="KEYCODE_BUTTON_1" value="188" />
1744        <enum name="KEYCODE_BUTTON_2" value="189" />
1745        <enum name="KEYCODE_BUTTON_3" value="190" />
1746        <enum name="KEYCODE_BUTTON_4" value="191" />
1747        <enum name="KEYCODE_BUTTON_5" value="192" />
1748        <enum name="KEYCODE_BUTTON_6" value="193" />
1749        <enum name="KEYCODE_BUTTON_7" value="194" />
1750        <enum name="KEYCODE_BUTTON_8" value="195" />
1751        <enum name="KEYCODE_BUTTON_9" value="196" />
1752        <enum name="KEYCODE_BUTTON_10" value="197" />
1753        <enum name="KEYCODE_BUTTON_11" value="198" />
1754        <enum name="KEYCODE_BUTTON_12" value="199" />
1755        <enum name="KEYCODE_BUTTON_13" value="200" />
1756        <enum name="KEYCODE_BUTTON_14" value="201" />
1757        <enum name="KEYCODE_BUTTON_15" value="202" />
1758        <enum name="KEYCODE_BUTTON_16" value="203" />
1759        <enum name="KEYCODE_LANGUAGE_SWITCH" value="204" />
1760        <enum name="KEYCODE_MANNER_MODE" value="205" />
1761        <enum name="KEYCODE_3D_MODE" value="206" />
1762        <enum name="KEYCODE_CONTACTS" value="207" />
1763        <enum name="KEYCODE_CALENDAR" value="208" />
1764        <enum name="KEYCODE_MUSIC" value="209" />
1765        <enum name="KEYCODE_CALCULATOR" value="210" />
1766        <enum name="KEYCODE_ZENKAKU_HANKAKU" value="211" />
1767        <enum name="KEYCODE_EISU" value="212" />
1768        <enum name="KEYCODE_MUHENKAN" value="213" />
1769        <enum name="KEYCODE_HENKAN" value="214" />
1770        <enum name="KEYCODE_KATAKANA_HIRAGANA" value="215" />
1771        <enum name="KEYCODE_YEN" value="216" />
1772        <enum name="KEYCODE_RO" value="217" />
1773        <enum name="KEYCODE_KANA" value="218" />
1774        <enum name="KEYCODE_ASSIST" value="219" />
1775        <enum name="KEYCODE_BRIGHTNESS_DOWN" value="220" />
1776        <enum name="KEYCODE_BRIGHTNESS_UP" value="221" />
1777        <enum name="KEYCODE_MEDIA_AUDIO_TRACK" value="222" />
1778        <enum name="KEYCODE_MEDIA_SLEEP" value="223" />
1779        <enum name="KEYCODE_MEDIA_WAKEUP" value="224" />
1780        <enum name="KEYCODE_PAIRING" value="225" />
1781        <enum name="KEYCODE_MEDIA_TOP_MENU" value="226" />
1782        <enum name="KEYCODE_11" value="227" />
1783        <enum name="KEYCODE_12" value="228" />
1784        <enum name="KEYCODE_LAST_CHANNEL" value="229" />
1785        <enum name="KEYCODE_TV_DATA_SERVICE" value="230" />
1786        <enum name="KEYCODE_VOICE_ASSIST" value="231" />
1787        <enum name="KEYCODE_TV_RADIO_SERVICE" value="232" />
1788        <enum name="KEYCODE_TV_TELETEXT" value="233" />
1789        <enum name="KEYCODE_TV_NUMBER_ENTRY" value="234" />
1790        <enum name="KEYCODE_TV_TERRESTRIAL_ANALOG" value="235" />
1791        <enum name="KEYCODE_TV_TERRESTRIAL_DIGITAL" value="236" />
1792        <enum name="KEYCODE_TV_SATELLITE" value="237" />
1793        <enum name="KEYCODE_TV_SATELLITE_BS" value="238" />
1794        <enum name="KEYCODE_TV_SATELLITE_CS" value="239" />
1795        <enum name="KEYCODE_TV_SATELLITE_SERVICE" value="240" />
1796        <enum name="KEYCODE_TV_NETWORK" value="241" />
1797        <enum name="KEYCODE_TV_ANTENNA_CABLE" value="242" />
1798        <enum name="KEYCODE_TV_INPUT_HDMI_1" value="243" />
1799        <enum name="KEYCODE_TV_INPUT_HDMI_2" value="244" />
1800        <enum name="KEYCODE_TV_INPUT_HDMI_3" value="245" />
1801        <enum name="KEYCODE_TV_INPUT_HDMI_4" value="246" />
1802        <enum name="KEYCODE_TV_INPUT_COMPOSITE_1" value="247" />
1803        <enum name="KEYCODE_TV_INPUT_COMPOSITE_2" value="248" />
1804        <enum name="KEYCODE_TV_INPUT_COMPONENT_1" value="249" />
1805        <enum name="KEYCODE_TV_INPUT_COMPONENT_2" value="250" />
1806        <enum name="KEYCODE_TV_INPUT_VGA_1" value="251" />
1807        <enum name="KEYCODE_TV_AUDIO_DESCRIPTION" value="252" />
1808        <enum name="KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP" value="253" />
1809        <enum name="KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN" value="254" />
1810        <enum name="KEYCODE_TV_ZOOM_MODE" value="255" />
1811        <enum name="KEYCODE_TV_CONTENTS_MENU" value="256" />
1812        <enum name="KEYCODE_TV_MEDIA_CONTEXT_MENU" value="257" />
1813        <enum name="KEYCODE_TV_TIMER_PROGRAMMING" value="258" />
1814        <enum name="KEYCODE_HELP" value="259" />
1815        <enum name="KEYCODE_NAVIGATE_PREVIOUS" value="260" />
1816        <enum name="KEYCODE_NAVIGATE_NEXT" value="261" />
1817        <enum name="KEYCODE_NAVIGATE_IN" value="262" />
1818        <enum name="KEYCODE_NAVIGATE_OUT" value="263" />
1819        <enum name="KEYCODE_STEM_PRIMARY" value="264" />
1820        <enum name="KEYCODE_STEM_1" value="265" />
1821        <enum name="KEYCODE_STEM_2" value="266" />
1822        <enum name="KEYCODE_STEM_3" value="267" />
1823        <enum name="KEYCODE_DPAD_UP_LEFT" value="268" />
1824        <enum name="KEYCODE_DPAD_DOWN_LEFT" value="269" />
1825        <enum name="KEYCODE_DPAD_UP_RIGHT" value="270" />
1826        <enum name="KEYCODE_DPAD_DOWN_RIGHT" value="271" />
1827        <enum name="KEYCODE_MEDIA_SKIP_FORWARD" value="272" />
1828        <enum name="KEYCODE_MEDIA_SKIP_BACKWARD" value="273" />
1829        <enum name="KEYCODE_MEDIA_STEP_FORWARD" value="274" />
1830        <enum name="KEYCODE_MEDIA_STEP_BACKWARD" value="275" />
1831        <enum name="KEYCODE_SOFT_SLEEP" value="276" />
1832        <enum name="KEYCODE_CUT" value="277" />
1833        <enum name="KEYCODE_COPY" value="278" />
1834        <enum name="KEYCODE_PASTE" value="279" />
1835        <enum name="KEYCODE_FP_NAV_UP" value="280" />
1836        <enum name="KEYCODE_FP_NAV_DOWN" value="281" />
1837        <enum name="KEYCODE_FP_NAV_LEFT" value="282" />
1838        <enum name="KEYCODE_FP_NAV_RIGHT" value="283" />
1839    </attr>
1840
1841    <!-- ***************************************************************** -->
1842    <!-- These define collections of attributes that can are with classes. -->
1843    <!-- ***************************************************************** -->
1844
1845    <!-- ========================== -->
1846    <!-- Special attribute classes. -->
1847    <!-- ========================== -->
1848    <eat-comment />
1849
1850    <!-- The set of attributes that describe a Windows's theme. -->
1851    <declare-styleable name="Window">
1852        <attr name="windowBackground" />
1853        <attr name="windowBackgroundFallback" />
1854        <attr name="windowContentOverlay" />
1855        <attr name="windowFrame" />
1856        <attr name="windowNoTitle" />
1857        <attr name="windowFullscreen" />
1858        <attr name="windowOverscan" />
1859        <attr name="windowIsFloating" />
1860        <attr name="windowIsTranslucent" />
1861        <attr name="windowShowWallpaper" />
1862        <attr name="windowAnimationStyle" />
1863        <attr name="windowSoftInputMode" />
1864        <attr name="windowDisablePreview" />
1865        <attr name="windowNoDisplay" />
1866        <attr name="textColor" />
1867        <attr name="backgroundDimEnabled" />
1868        <attr name="backgroundDimAmount" />
1869        <attr name="windowActionBar" />
1870        <attr name="windowActionModeOverlay" />
1871        <attr name="windowActionBarOverlay" />
1872        <attr name="windowEnableSplitTouch" />
1873        <attr name="windowCloseOnTouchOutside" />
1874        <attr name="windowTranslucentStatus" />
1875        <attr name="windowTranslucentNavigation" />
1876        <attr name="windowSwipeToDismiss" />
1877        <attr name="windowContentTransitions" />
1878        <attr name="windowActivityTransitions" />
1879        <attr name="windowContentTransitionManager" />
1880        <attr name="windowActionBarFullscreenDecorLayout" />
1881
1882        <!-- The minimum width the window is allowed to be, along the major
1883             axis of the screen.  That is, when in landscape.  Can be either
1884             an absolute dimension or a fraction of the screen size in that
1885             dimension. -->
1886        <attr name="windowMinWidthMajor" format="dimension|fraction" />
1887        <!-- The minimum width the window is allowed to be, along the minor
1888             axis of the screen.  That is, when in portrait.  Can be either
1889             an absolute dimension or a fraction of the screen size in that
1890             dimension. -->
1891        <attr name="windowMinWidthMinor" format="dimension|fraction" />
1892
1893        <!-- A fixed width for the window along the major axis of the screen,
1894             that is, when in landscape. Can be either an absolute dimension
1895             or a fraction of the screen size in that dimension. -->
1896        <attr name="windowFixedWidthMajor" format="dimension|fraction" />
1897        <!-- A fixed height for the window along the minor axis of the screen,
1898             that is, when in landscape. Can be either an absolute dimension
1899             or a fraction of the screen size in that dimension. -->
1900        <attr name="windowFixedHeightMinor" format="dimension|fraction" />
1901
1902        <!-- A fixed width for the window along the minor axis of the screen,
1903             that is, when in portrait. Can be either an absolute dimension
1904             or a fraction of the screen size in that dimension. -->
1905        <attr name="windowFixedWidthMinor" format="dimension|fraction" />
1906        <!-- A fixed height for the window along the major axis of the screen,
1907             that is, when in portrait. Can be either an absolute dimension
1908             or a fraction of the screen size in that dimension. -->
1909        <attr name="windowFixedHeightMajor" format="dimension|fraction" />
1910        <attr name="windowOutsetBottom" format="dimension" />
1911        <!-- Reference to a Transition XML resource defining the desired Transition
1912             used to move Views into the initial Window's content Scene. Corresponds to
1913             {@link android.view.Window#setEnterTransition(android.transition.Transition)}. -->
1914        <attr name="windowEnterTransition"/>
1915
1916        <!-- Reference to a Transition XML resource defining the desired Transition
1917             used to move Views out of the scene when the Window is
1918             preparing to close. Corresponds to
1919             {@link android.view.Window#setReturnTransition(android.transition.Transition)}. -->
1920        <attr name="windowReturnTransition"/>
1921
1922        <!-- Reference to a Transition XML resource defining the desired Transition
1923             used to move Views out of the Window's content Scene when launching a new Activity.
1924             Corresponds to
1925             {@link android.view.Window#setExitTransition(android.transition.Transition)}. -->
1926        <attr name="windowExitTransition"/>
1927
1928        <!-- Reference to a Transition XML resource defining the desired Transition
1929             used to move Views in to the scene when returning from a previously-started Activity.
1930             Corresponds to
1931             {@link android.view.Window#setReenterTransition(android.transition.Transition)}. -->
1932        <attr name="windowReenterTransition"/>
1933
1934        <!-- Reference to a Transition XML resource defining the desired Transition
1935             used to move shared elements transferred into the Window's initial content Scene.
1936             Corresponds to {@link android.view.Window#setSharedElementEnterTransition(
1937             android.transition.Transition)}. -->
1938        <attr name="windowSharedElementEnterTransition"/>
1939
1940        <!-- Reference to a Transition XML resource defining the desired Transition
1941             used to move shared elements transferred back to a calling Activity.
1942             Corresponds to {@link android.view.Window#setSharedElementReturnTransition(
1943             android.transition.Transition)}. -->
1944        <attr name="windowSharedElementReturnTransition"/>
1945
1946        <!-- Reference to a Transition XML resource defining the desired Transition
1947             used when starting a new Activity to move shared elements prior to transferring
1948             to the called Activity.
1949             Corresponds to {@link android.view.Window#setSharedElementExitTransition(
1950             android.transition.Transition)}. -->
1951        <attr name="windowSharedElementExitTransition"/>
1952
1953        <!-- Reference to a Transition XML resource defining the desired Transition
1954             used for shared elements transferred back to a calling Activity.
1955             Corresponds to {@link android.view.Window#setSharedElementReenterTransition(
1956             android.transition.Transition)}. -->
1957        <attr name="windowSharedElementReenterTransition"/>
1958
1959
1960        <!-- Flag indicating whether this Window's transition should overlap with
1961             the exiting transition of the calling Activity. Corresponds to
1962             {@link android.view.Window#setAllowEnterTransitionOverlap(boolean)}. -->
1963        <attr name="windowAllowEnterTransitionOverlap"/>
1964
1965        <!-- Flag indicating whether this Window's transition should overlap with
1966             the exiting transition of the called Activity when the called Activity
1967             finishes. Corresponds to
1968             {@link android.view.Window#setAllowReturnTransitionOverlap(boolean)}. -->
1969        <attr name="windowAllowReturnTransitionOverlap"/>
1970
1971        <!-- Indicates whether or not shared elements should use an overlay
1972             during transitions. The default value is true. -->
1973        <attr name="windowSharedElementsUseOverlay"/>
1974
1975        <!-- Flag indicating whether this Window is responsible for drawing the background for the
1976             system bars. If true and the window is not floating, the system bars are drawn with a
1977             transparent background and the corresponding areas in this window are filled with the
1978             colors specified in {@link android.R.attr#statusBarColor} and
1979             {@link android.R.attr#navigationBarColor}. Corresponds to
1980             {@link android.view.WindowManager.LayoutParams#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS}. -->
1981        <attr name="windowDrawsSystemBarBackgrounds" format="boolean" />
1982
1983        <!-- The color for the status bar. If the color is not opaque, consider setting
1984             {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
1985             {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}.
1986             For this to take effect, the window must be drawing the system bar backgrounds with
1987             {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the status bar must not
1988             have been requested to be translucent with
1989             {@link android.R.attr#windowTranslucentStatus}.
1990             Corresponds to {@link android.view.Window#setStatusBarColor(int)}. -->
1991        <attr name="statusBarColor" format="color" />
1992
1993        <!-- The color for the navigation bar. If the color is not opaque, consider setting
1994             {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
1995             {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}.
1996             For this to take effect, the window must be drawing the system bar backgrounds with
1997             {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the navigation bar must not
1998             have been requested to be translucent with
1999             {@link android.R.attr#windowTranslucentNavigation}.
2000             Corresponds to {@link android.view.Window#setNavigationBarColor(int)}. -->
2001        <attr name="navigationBarColor" format="color" />
2002
2003        <!-- The duration, in milliseconds, of the window background fade duration
2004             when transitioning into or away from an Activity when called with an
2005             Activity Transition. Corresponds to
2006             {@link android.view.Window#setTransitionBackgroundFadeDuration(long)}. -->
2007        <attr name="windowTransitionBackgroundFadeDuration" />
2008
2009        <!-- Elevation to use for the window. -->
2010        <attr name="windowElevation" format="dimension" />
2011
2012        <!-- Whether to clip window content to the outline of the window background. -->
2013        <attr name="windowClipToOutline" format="boolean" />
2014
2015        <!-- If set, the status bar will be drawn such that it is compatible with a light
2016             status bar background.
2017             <p>For this to take effect, the window must be drawing the system bar backgrounds with
2018             {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the status bar must not
2019             have been requested to be translucent with
2020             {@link android.R.attr#windowTranslucentStatus}.
2021             Corresponds to setting {@link android.view.View#SYSTEM_UI_FLAG_LIGHT_STATUS_BAR} on
2022             the decor view. -->
2023        <attr name="windowLightStatusBar" format="boolean" />
2024    </declare-styleable>
2025
2026    <!-- The set of attributes that describe a AlertDialog's theme. -->
2027    <declare-styleable name="AlertDialog">
2028        <attr name="fullDark" format="reference|color" />
2029        <attr name="topDark" format="reference|color" />
2030        <attr name="centerDark" format="reference|color" />
2031        <attr name="bottomDark" format="reference|color" />
2032        <attr name="fullBright" format="reference|color" />
2033        <attr name="topBright" format="reference|color" />
2034        <attr name="centerBright" format="reference|color" />
2035        <attr name="bottomBright" format="reference|color" />
2036        <attr name="bottomMedium" format="reference|color" />
2037        <attr name="centerMedium" format="reference|color" />
2038        <attr name="layout" />
2039        <attr name="buttonPanelSideLayout" format="reference" />
2040        <attr name="listLayout" format="reference" />
2041        <attr name="multiChoiceItemLayout" format="reference" />
2042        <attr name="singleChoiceItemLayout" format="reference" />
2043        <attr name="listItemLayout" format="reference" />
2044        <attr name="progressLayout" format="reference" />
2045        <attr name="horizontalProgressLayout" format="reference" />
2046        <!-- @hide Not ready for public use. -->
2047        <attr name="showTitle" format="boolean" />
2048        <!-- @hide Whether fullDark, etc. should use default values if null. -->
2049        <attr name="needsDefaultBackgrounds" format="boolean" />
2050        <!-- @hide Workaround until we replace AlertController with custom layout. -->
2051        <attr name="controllerType">
2052            <!-- The default controller. -->
2053            <enum name="normal" value="0" />
2054            <!-- Controller for micro specific layout. -->
2055            <enum name="micro" value="1" />
2056        </attr>
2057    </declare-styleable>
2058
2059    <!-- @hide -->
2060    <declare-styleable name="ButtonBarLayout">
2061        <!-- Whether to automatically stack the buttons when there is not
2062             enough space to lay them out side-by-side. -->
2063        <attr name="allowStacking" format="boolean" />
2064    </declare-styleable>
2065
2066    <!-- Fragment animation class attributes. -->
2067    <declare-styleable name="FragmentAnimation">
2068        <attr name="fragmentOpenEnterAnimation" format="reference" />
2069        <attr name="fragmentOpenExitAnimation" format="reference" />
2070        <attr name="fragmentCloseEnterAnimation" format="reference" />
2071        <attr name="fragmentCloseExitAnimation" format="reference" />
2072        <attr name="fragmentFadeEnterAnimation" format="reference" />
2073        <attr name="fragmentFadeExitAnimation" format="reference" />
2074    </declare-styleable>
2075
2076    <!-- Window animation class attributes. -->
2077    <declare-styleable name="WindowAnimation">
2078        <!-- The animation used when a window is being added. -->
2079        <attr name="windowEnterAnimation" format="reference" />
2080        <!-- The animation used when a window is being removed. -->
2081        <attr name="windowExitAnimation" format="reference" />
2082        <!-- The animation used when a window is going from INVISIBLE to VISIBLE. -->
2083        <attr name="windowShowAnimation" format="reference" />
2084        <!-- The animation used when a window is going from VISIBLE to INVISIBLE. -->
2085        <attr name="windowHideAnimation" format="reference" />
2086
2087        <!--  When opening a new activity, this is the animation that is
2088              run on the next activity (which is entering the screen). -->
2089        <attr name="activityOpenEnterAnimation" format="reference" />
2090        <!--  When opening a new activity, this is the animation that is
2091              run on the previous activity (which is exiting the screen). -->
2092        <attr name="activityOpenExitAnimation" format="reference" />
2093        <!--  When closing the current activity, this is the animation that is
2094              run on the next activity (which is entering the screen). -->
2095        <attr name="activityCloseEnterAnimation" format="reference" />
2096        <!--  When closing the current activity, this is the animation that is
2097              run on the current activity (which is exiting the screen). -->
2098        <attr name="activityCloseExitAnimation" format="reference" />
2099        <!--  When opening an activity in a new task, this is the animation that is
2100              run on the activity of the new task (which is entering the screen). -->
2101        <attr name="taskOpenEnterAnimation" format="reference" />
2102        <!--  When opening an activity in a new task, this is the animation that is
2103              run on the activity of the old task (which is exiting the screen). -->
2104        <attr name="taskOpenExitAnimation" format="reference" />
2105        <!--  When opening an activity in a new task using Intent/FLAG_ACTIVITY_LAUNCH_BEHIND,
2106              this is the animation that is run on the activity of the new task (which is
2107              entering the screen and then leaving). -->
2108        <attr name="launchTaskBehindTargetAnimation" format="reference" />
2109        <!--  When opening an activity in a new task using Intent.FLAG_ACTIVITY_LAUNCH_BEHIND,
2110              this is the animation that is run on the activity of the old task (which is
2111              already on the screen and then stays on). -->
2112        <attr name="launchTaskBehindSourceAnimation" format="reference" />
2113        <!--  When closing the last activity of a task, this is the animation that is
2114              run on the activity of the next task (which is entering the screen). -->
2115        <attr name="taskCloseEnterAnimation" format="reference" />
2116        <!--  When opening an activity in a new task, this is the animation that is
2117              run on the activity of the old task (which is exiting the screen). -->
2118        <attr name="taskCloseExitAnimation" format="reference" />
2119        <!--  When bringing an existing task to the foreground, this is the
2120              animation that is run on the top activity of the task being brought
2121              to the foreground (which is entering the screen). -->
2122        <attr name="taskToFrontEnterAnimation" format="reference" />
2123        <!--  When bringing an existing task to the foreground, this is the
2124              animation that is run on the current foreground activity
2125              (which is exiting the screen). -->
2126        <attr name="taskToFrontExitAnimation" format="reference" />
2127        <!--  When sending the current task to the background, this is the
2128              animation that is run on the top activity of the task behind
2129              it (which is entering the screen). -->
2130        <attr name="taskToBackEnterAnimation" format="reference" />
2131        <!--  When sending the current task to the background, this is the
2132              animation that is run on the top activity of the current task
2133              (which is exiting the screen). -->
2134        <attr name="taskToBackExitAnimation" format="reference" />
2135
2136        <!--  When opening a new activity that shows the wallpaper, while
2137              currently not showing the wallpaper, this is the animation that
2138              is run on the new wallpaper activity (which is entering the screen). -->
2139        <attr name="wallpaperOpenEnterAnimation" format="reference" />
2140        <!--  When opening a new activity that shows the wallpaper, while
2141              currently not showing the wallpaper, this is the animation that
2142              is run on the current activity (which is exiting the screen). -->
2143        <attr name="wallpaperOpenExitAnimation" format="reference" />
2144        <!--  When opening a new activity that hides the wallpaper, while
2145              currently showing the wallpaper, this is the animation that
2146              is run on the new activity (which is entering the screen). -->
2147        <attr name="wallpaperCloseEnterAnimation" format="reference" />
2148        <!--  When opening a new activity that hides the wallpaper, while
2149              currently showing the wallpaper, this is the animation that
2150              is run on the old wallpaper activity (which is exiting the screen). -->
2151        <attr name="wallpaperCloseExitAnimation" format="reference" />
2152
2153        <!--  When opening a new activity that is on top of the wallpaper
2154              when the current activity is also on top of the wallpaper,
2155              this is the animation that is run on the new activity
2156              (which is entering the screen).  The wallpaper remains
2157              static behind the animation. -->
2158        <attr name="wallpaperIntraOpenEnterAnimation" format="reference" />
2159        <!--  When opening a new activity that is on top of the wallpaper
2160              when the current activity is also on top of the wallpaper,
2161              this is the animation that is run on the current activity
2162              (which is exiting the screen).  The wallpaper remains
2163              static behind the animation. -->
2164        <attr name="wallpaperIntraOpenExitAnimation" format="reference" />
2165        <!--  When closing a foreround activity that is on top of the wallpaper
2166              when the previous activity is also on top of the wallpaper,
2167              this is the animation that is run on the previous activity
2168              (which is entering the screen).  The wallpaper remains
2169              static behind the animation. -->
2170        <attr name="wallpaperIntraCloseEnterAnimation" format="reference" />
2171        <!--  When closing a foreround activity that is on top of the wallpaper
2172              when the previous activity is also on top of the wallpaper,
2173              this is the animation that is run on the current activity
2174              (which is exiting the screen).  The wallpaper remains
2175              static behind the animation. -->
2176        <attr name="wallpaperIntraCloseExitAnimation" format="reference" />
2177
2178        <!--  When opening a new activity from a RemoteViews, this is the
2179              animation that is run on the next activity (which is entering the
2180              screen). Requires config_overrideRemoteViewsActivityTransition to
2181              be true. -->
2182        <attr name="activityOpenRemoteViewsEnterAnimation" format="reference" />
2183
2184    </declare-styleable>
2185
2186    <!-- ============================= -->
2187    <!-- View package class attributes -->
2188    <!-- ============================= -->
2189    <eat-comment />
2190
2191    <!-- Attributes that can be used with {@link android.view.View} or
2192         any of its subclasses.  Also see {@link #ViewGroup_Layout} for
2193         attributes that are processed by the view's parent. -->
2194    <declare-styleable name="View">
2195        <!-- Supply an identifier name for this view, to later retrieve it
2196             with {@link android.view.View#findViewById View.findViewById()} or
2197             {@link android.app.Activity#findViewById Activity.findViewById()}.
2198             This must be a
2199             resource reference; typically you set this using the
2200             <code>@+</code> syntax to create a new ID resources.
2201             For example: <code>android:id="@+id/my_id"</code> which
2202             allows you to later retrieve the view
2203             with <code>findViewById(R.id.my_id)</code>. -->
2204        <attr name="id" format="reference" />
2205
2206        <!-- Supply a tag for this view containing a String, to be retrieved
2207             later with {@link android.view.View#getTag View.getTag()} or
2208             searched for with {@link android.view.View#findViewWithTag
2209             View.findViewWithTag()}.  It is generally preferable to use
2210             IDs (through the android:id attribute) instead of tags because
2211             they are faster and allow for compile-time type checking. -->
2212        <attr name="tag" format="string" />
2213
2214        <!-- The initial horizontal scroll offset, in pixels.-->
2215        <attr name="scrollX" format="dimension" />
2216
2217        <!-- The initial vertical scroll offset, in pixels. -->
2218        <attr name="scrollY" format="dimension" />
2219
2220        <!-- A drawable to use as the background.  This can be either a reference
2221             to a full drawable resource (such as a PNG image, 9-patch,
2222             XML state list description, etc), or a solid color such as "#ff000000"
2223            (black). -->
2224        <attr name="background" format="reference|color" />
2225
2226        <!-- Sets the padding, in pixels, of all four edges.  Padding is defined as
2227             space between the edges of the view and the view's content. A views size
2228             will include it's padding.  If a {@link android.R.attr#background}
2229             is provided, the padding will initially be set to that (0 if the
2230             drawable does not have padding).  Explicitly setting a padding value
2231             will override the corresponding padding found in the background. -->
2232        <attr name="padding" format="dimension" />
2233        <!-- Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}. -->
2234        <attr name="paddingLeft" format="dimension" />
2235        <!-- Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}. -->
2236        <attr name="paddingTop" format="dimension" />
2237        <!-- Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}. -->
2238        <attr name="paddingRight" format="dimension" />
2239        <!-- Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}. -->
2240        <attr name="paddingBottom" format="dimension" />
2241        <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
2242        <attr name="paddingStart" format="dimension" />
2243        <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
2244        <attr name="paddingEnd" format="dimension" />
2245
2246        <!-- Boolean that controls whether a view can take focus.  By default the user can not
2247             move focus to a view; by setting this attribute to true the view is
2248             allowed to take focus.  This value does not impact the behavior of
2249             directly calling {@link android.view.View#requestFocus}, which will
2250             always request focus regardless of this view.  It only impacts where
2251             focus navigation will try to move focus. -->
2252        <attr name="focusable" format="boolean" />
2253
2254        <!-- Boolean that controls whether a view can take focus while in touch mode.
2255             If this is true for a view, that view can gain focus when clicked on, and can keep
2256             focus if another view is clicked on that doesn't have this attribute set to true. -->
2257        <attr name="focusableInTouchMode" format="boolean" />
2258
2259        <!-- Controls the initial visibility of the view.  -->
2260        <attr name="visibility">
2261            <!-- Visible on screen; the default value. -->
2262            <enum name="visible" value="0" />
2263            <!-- Not displayed, but taken into account during layout (space is left for it). -->
2264            <enum name="invisible" value="1" />
2265            <!-- Completely hidden, as if the view had not been added. -->
2266            <enum name="gone" value="2" />
2267        </attr>
2268
2269        <!-- Boolean internal attribute to adjust view layout based on
2270             system windows such as the status bar.
2271             If true, adjusts the padding of this view to leave space for the system windows.
2272             Will only take effect if this view is in a non-embedded activity. -->
2273        <attr name="fitsSystemWindows" format="boolean" />
2274
2275        <!-- Defines which scrollbars should be displayed on scrolling or not. -->
2276        <attr name="scrollbars">
2277            <!-- No scrollbar is displayed. -->
2278            <flag name="none" value="0x00000000" />
2279            <!-- Displays horizontal scrollbar only. -->
2280            <flag name="horizontal" value="0x00000100" />
2281            <!-- Displays vertical scrollbar only. -->
2282            <flag name="vertical" value="0x00000200" />
2283        </attr>
2284
2285        <!-- Controls the scrollbar style and position. The scrollbars can be overlaid or
2286             inset. When inset, they add to the padding of the view. And the
2287             scrollbars can be drawn inside the padding area or on the edge of
2288             the view. For example, if a view has a background drawable and you
2289             want to draw the scrollbars inside the padding specified by the
2290             drawable, you can use insideOverlay or insideInset. If you want them
2291             to appear at the edge of the view, ignoring the padding, then you can
2292             use outsideOverlay or outsideInset.-->
2293        <attr name="scrollbarStyle">
2294            <!-- Inside the padding and overlaid -->
2295            <enum name="insideOverlay" value="0x0" />
2296            <!-- Inside the padding and inset -->
2297            <enum name="insideInset" value="0x01000000" />
2298            <!-- Edge of the view and overlaid -->
2299            <enum name="outsideOverlay" value="0x02000000" />
2300            <!-- Edge of the view and inset -->
2301            <enum name="outsideInset" value="0x03000000" />
2302        </attr>
2303
2304        <!-- Set this if the view will serve as a scrolling container, meaning
2305             that it can be resized to shrink its overall window so that there
2306             will be space for an input method.  If not set, the default
2307             value will be true if "scrollbars" has the vertical scrollbar
2308             set, else it will be false. -->
2309        <attr name="isScrollContainer" format="boolean" />
2310
2311          <!-- Defines whether to fade out scrollbars when they are not in use. -->
2312         <attr name="fadeScrollbars" format="boolean" />
2313         <!-- Defines the delay in milliseconds that a scrollbar takes to fade out. -->
2314         <attr name="scrollbarFadeDuration" format="integer" />
2315         <!-- Defines the delay in milliseconds that a scrollbar waits before fade out. -->
2316        <attr name="scrollbarDefaultDelayBeforeFade" format="integer" />
2317        <!-- Sets the width of vertical scrollbars and height of horizontal scrollbars. -->
2318        <attr name="scrollbarSize" format="dimension" />
2319        <!-- Defines the horizontal scrollbar thumb drawable. -->
2320        <attr name="scrollbarThumbHorizontal" format="reference" />
2321        <!-- Defines the vertical scrollbar thumb drawable. -->
2322        <attr name="scrollbarThumbVertical" format="reference" />
2323        <!-- Defines the horizontal scrollbar track drawable. -->
2324        <attr name="scrollbarTrackHorizontal" format="reference" />
2325        <!-- Defines the vertical scrollbar track drawable. -->
2326        <attr name="scrollbarTrackVertical" format="reference" />
2327        <!-- Defines whether the horizontal scrollbar track should always be drawn. -->
2328        <attr name="scrollbarAlwaysDrawHorizontalTrack" format="boolean" />
2329        <!-- Defines whether the vertical scrollbar track should always be drawn. -->
2330        <attr name="scrollbarAlwaysDrawVerticalTrack" format="boolean" />
2331
2332        <!-- This attribute is deprecated and will be ignored as of
2333             API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}).
2334             Using fading edges may introduce noticeable performance
2335             degradations and should be used only when required by the application's
2336             visual design. To request fading edges with API level 14 and above,
2337             use the <code>android:requiresFadingEdge</code> attribute instead. -->
2338        <attr name="fadingEdge">
2339            <!-- No edge is faded. -->
2340            <flag name="none" value="0x00000000" />
2341            <!-- Fades horizontal edges only. -->
2342            <flag name="horizontal" value="0x00001000" />
2343            <!-- Fades vertical edges only. -->
2344            <flag name="vertical" value="0x00002000" />
2345        </attr>
2346        <!-- Defines which edges should be faded on scrolling. -->
2347        <attr name="requiresFadingEdge">
2348            <!-- No edge is faded. -->
2349            <flag name="none" value="0x00000000" />
2350            <!-- Fades horizontal edges only. -->
2351            <flag name="horizontal" value="0x00001000" />
2352            <!-- Fades vertical edges only. -->
2353            <flag name="vertical" value="0x00002000" />
2354        </attr>
2355        <!-- Defines the length of the fading edges. -->
2356        <attr name="fadingEdgeLength" format="dimension" />
2357
2358        <!-- Defines the next view to give focus to when the next focus is
2359             {@link android.view.View#FOCUS_LEFT}.
2360
2361             If the reference refers to a view that does not exist or is part
2362             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
2363             will result when the reference is accessed.-->
2364        <attr name="nextFocusLeft" format="reference"/>
2365
2366        <!-- Defines the next view to give focus to when the next focus is
2367             {@link android.view.View#FOCUS_RIGHT}
2368
2369             If the reference refers to a view that does not exist or is part
2370             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
2371             will result when the reference is accessed.-->
2372        <attr name="nextFocusRight" format="reference"/>
2373
2374        <!-- Defines the next view to give focus to when the next focus is
2375             {@link android.view.View#FOCUS_UP}
2376
2377             If the reference refers to a view that does not exist or is part
2378             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
2379             will result when the reference is accessed.-->
2380        <attr name="nextFocusUp" format="reference"/>
2381
2382        <!-- Defines the next view to give focus to when the next focus is
2383             {@link android.view.View#FOCUS_DOWN}
2384
2385             If the reference refers to a view that does not exist or is part
2386             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
2387             will result when the reference is accessed.-->
2388        <attr name="nextFocusDown" format="reference"/>
2389
2390        <!-- Defines the next view to give focus to when the next focus is
2391             {@link android.view.View#FOCUS_FORWARD}
2392
2393             If the reference refers to a view that does not exist or is part
2394             of a hierarchy that is invisible, a {@link java.lang.RuntimeException}
2395             will result when the reference is accessed.-->
2396        <attr name="nextFocusForward" format="reference"/>
2397
2398        <!-- Defines whether this view reacts to click events. -->
2399        <attr name="clickable" format="boolean" />
2400
2401        <!-- Defines whether this view reacts to long click events. -->
2402        <attr name="longClickable" format="boolean" />
2403
2404        <!--  Defines whether this view reacts to context click events. -->
2405        <attr name="contextClickable" format="boolean" />
2406
2407        <!-- If false, no state will be saved for this view when it is being
2408             frozen. The default is true, allowing the view to be saved
2409             (however it also must have an ID assigned to it for its
2410             state to be saved).  Setting this to false only disables the
2411             state for this view, not for its children which may still
2412             be saved. -->
2413        <attr name="saveEnabled" format="boolean" />
2414
2415        <!-- Specifies whether to filter touches when the view's window is obscured by
2416             another visible window.  When set to true, the view will not receive touches
2417             whenever a toast, dialog or other window appears above the view's window.
2418             Refer to the {@link android.view.View} security documentation for more details. -->
2419        <attr name="filterTouchesWhenObscured" format="boolean" />
2420
2421        <!-- Defines the quality of translucent drawing caches. This property is used
2422             only when the drawing cache is enabled and translucent. The default value is auto. -->
2423        <attr name="drawingCacheQuality">
2424            <!-- Lets the framework decide what quality level should be used
2425                 for the drawing cache. -->
2426            <enum name="auto" value="0" />
2427            <!-- Low quality. When set to low quality, the drawing cache uses a lower color
2428                 depth, thus losing precision in rendering gradients, but uses less memory. -->
2429            <enum name="low" value="1" />
2430            <!-- High quality. When set to high quality, the drawing cache uses a higher
2431                 color depth but uses more memory. -->
2432            <enum name="high" value="2" />
2433        </attr>
2434
2435        <!-- Controls whether the view's window should keep the screen on
2436             while visible. -->
2437        <attr name="keepScreenOn" format="boolean" />
2438
2439        <!-- When this attribute is set to true, the view gets its drawable state
2440             (focused, pressed, etc.) from its direct parent rather than from itself. -->
2441        <attr name="duplicateParentState" format="boolean" />
2442
2443        <!-- Defines the minimum height of the view. It is not guaranteed
2444             the view will be able to achieve this minimum height (for example,
2445             if its parent layout constrains it with less available height). -->
2446        <attr name="minHeight" />
2447
2448        <!-- Defines the minimum width of the view. It is not guaranteed
2449             the view will be able to achieve this minimum width (for example,
2450             if its parent layout constrains it with less available width). -->
2451        <attr name="minWidth" />
2452
2453        <!-- Boolean that controls whether a view should have sound effects
2454             enabled for events such as clicking and touching. -->
2455        <attr name="soundEffectsEnabled" format="boolean" />
2456
2457        <!-- Boolean that controls whether a view should have haptic feedback
2458             enabled for events such as long presses. -->
2459        <attr name="hapticFeedbackEnabled" format="boolean" />
2460
2461        <!-- Defines text that briefly describes content of the view. This property is used
2462             primarily for accessibility. Since some views do not have textual
2463             representation this attribute can be used for providing such. -->
2464        <attr name="contentDescription" format="string" localization="suggested" />
2465
2466        <!-- Sets the id of a view before which this one is visited in accessibility traversal.
2467             A screen-reader must visit the content of this view before the content of the one
2468             it precedes.
2469             @see android.view.View#setAccessibilityTraversalBefore(int)} -->
2470        <attr name="accessibilityTraversalBefore" format="integer" />
2471
2472        <!-- Sets the id of a view after which this one is visited in accessibility traversal.
2473             A screen-reader must visit the content of the other view before the content of
2474             this one.
2475             @see android.view.View#setAccessibilityTraversalAfter(int)} -->
2476        <attr name="accessibilityTraversalAfter" format="integer" />
2477
2478        <!-- Name of the method in this View's context to invoke when the view is
2479             clicked. This name must correspond to a public method that takes
2480             exactly one parameter of type View. For instance, if you specify
2481             <code>android:onClick="sayHello"</code>, you must declare a
2482             <code>public void sayHello(View v)</code> method of your context
2483             (typically, your Activity). -->
2484        <attr name="onClick" format="string" />
2485
2486        <!-- Defines over-scrolling behavior. This property is used only if the
2487             View is scrollable. Over-scrolling is the ability for the user to
2488             receive feedback when attempting to scroll beyond meaningful content. -->
2489        <attr name="overScrollMode">
2490            <!-- Always show over-scroll effects, even if the content fits entirely
2491                 within the available space. -->
2492            <enum name="always" value="0" />
2493            <!-- Only show over-scroll effects if the content is large
2494                 enough to meaningfully scroll. -->
2495            <enum name="ifContentScrolls" value="1" />
2496            <!-- Never show over-scroll effects. -->
2497            <enum name="never" value="2" />
2498        </attr>
2499
2500        <!-- alpha property of the view, as a value between 0 (completely transparent) and 1
2501             (completely opaque). -->
2502        <attr name="alpha" format="float" />
2503
2504        <!-- base z depth of the view -->
2505        <attr name="elevation" format="dimension" />
2506
2507        <!-- translation in x of the view. This value is added post-layout to the left
2508             property of the view, which is set by its layout. -->
2509        <attr name="translationX" format="dimension" />
2510
2511        <!-- translation in y of the view. This value is added post-layout to the top
2512             property of the view, which is set by its layout. -->
2513        <attr name="translationY" format="dimension" />
2514
2515        <!-- translation in z of the view. This value is added to its elevation. -->
2516        <attr name="translationZ" format="dimension" />
2517
2518        <!-- x location of the pivot point around which the view will rotate and scale.
2519             This xml attribute sets the pivotX property of the View. -->
2520        <attr name="transformPivotX" format="dimension" />
2521
2522        <!-- y location of the pivot point around which the view will rotate and scale.
2523             This xml attribute sets the pivotY property of the View. -->
2524        <attr name="transformPivotY" format="dimension" />
2525
2526        <!-- rotation of the view, in degrees. -->
2527        <attr name="rotation" format="float" />
2528
2529        <!-- rotation of the view around the x axis, in degrees. -->
2530        <attr name="rotationX" format="float" />
2531
2532        <!-- rotation of the view around the y axis, in degrees. -->
2533        <attr name="rotationY" format="float" />
2534
2535        <!-- scale of the view in the x direction. -->
2536        <attr name="scaleX" format="float" />
2537
2538        <!-- scale of the view in the y direction. -->
2539        <attr name="scaleY" format="float" />
2540
2541        <!-- Determines which side the vertical scroll bar should be placed on. -->
2542        <attr name="verticalScrollbarPosition">
2543            <!-- Place the scroll bar wherever the system default determines. -->
2544            <enum name="defaultPosition" value="0" />
2545            <!-- Place the scroll bar on the left. -->
2546            <enum name="left" value="1" />
2547            <!-- Place the scroll bar on the right. -->
2548            <enum name="right" value="2" />
2549        </attr>
2550
2551        <!-- Specifies the type of layer backing this view. The default value is none.
2552             Refer to {@link android.view.View#setLayerType(int, android.graphics.Paint)}
2553             for more information.-->
2554        <attr name="layerType">
2555            <!-- Don't use a layer. -->
2556            <enum name="none" value="0" />
2557            <!-- Use a software layer. Refer to
2558                 {@link android.view.View#setLayerType(int, android.graphics.Paint)} for
2559                 more information. -->
2560            <enum name="software" value="1" />
2561            <!-- Use a hardware layer. Refer to
2562                 {@link android.view.View#setLayerType(int, android.graphics.Paint)} for
2563                 more information. -->
2564            <enum name="hardware" value="2" />
2565        </attr>
2566
2567        <!-- Defines the direction of layout drawing. This typically is associated with writing
2568             direction of the language script used. The possible values are "ltr" for Left-to-Right,
2569             "rtl" for Right-to-Left, "locale" and "inherit" from parent view. If there is nothing
2570             to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction
2571             used in "en-US". The default for this attribute is "inherit". -->
2572        <attr name="layoutDirection">
2573            <!-- Left-to-Right -->
2574            <enum name="ltr" value="0" />
2575            <!-- Right-to-Left -->
2576            <enum name="rtl" value="1" />
2577            <!-- Inherit from parent -->
2578            <enum name="inherit" value="2" />
2579            <!-- Locale -->
2580            <enum name="locale" value="3" />
2581        </attr>
2582
2583        <!-- Defines the direction of the text. A heuristic is used to determine the resolved text
2584              direction of paragraphs. -->
2585         <attr name="textDirection" format="integer">
2586            <!-- Default -->
2587            <enum name="inherit" value="0" />
2588            <!-- Default for the root view. The first strong directional character determines the
2589                 paragraph direction.  If there is no strong directional character, the paragraph
2590                 direction is the view’s resolved layout direction. -->
2591            <enum name="firstStrong" value="1" />
2592            <!-- The paragraph direction is RTL if it contains any strong RTL character, otherwise
2593                 it is LTR if it contains any strong LTR characters.  If there are neither, the
2594                 paragraph direction is the view’s resolved layout direction. -->
2595            <enum name="anyRtl" value="2" />
2596            <!-- The paragraph direction is left to right. -->
2597            <enum name="ltr" value="3" />
2598            <!-- The paragraph direction is right to left. -->
2599            <enum name="rtl" value="4" />
2600            <!-- The paragraph direction is coming from the system Locale. -->
2601            <enum name="locale" value="5" />
2602            <!-- The first strong directional character determines the paragraph direction. If
2603                 there is no strong directional character, the paragraph direction is LTR. -->
2604            <enum name="firstStrongLtr" value="6" />
2605            <!-- The first strong directional character determines the paragraph direction. If
2606                 there is no strong directional character, the paragraph direction is RTL. -->
2607            <enum name="firstStrongRtl" value="7" />
2608        </attr>
2609
2610        <!-- Defines the alignment of the text. A heuristic is used to determine the resolved
2611            text alignment. -->
2612        <attr name="textAlignment" format="integer">
2613            <!-- Default -->
2614            <enum name="inherit" value="0" />
2615            <!-- Default for the root view. The gravity determines the alignment, ALIGN_NORMAL,
2616                ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s
2617                text direction -->
2618            <enum name="gravity" value="1" />
2619            <!-- Align to the start of the paragraph, e.g. ALIGN_NORMAL. -->
2620            <enum name="textStart" value="2" />
2621            <!-- Align to the end of the paragraph, e.g. ALIGN_OPPOSITE. -->
2622            <enum name="textEnd" value="3" />
2623            <!-- Center the paragraph, e.g. ALIGN_CENTER. -->
2624            <enum name="center" value="4" />
2625            <!-- Align to the start of the view, which is ALIGN_LEFT if the view’s resolved
2626                layoutDirection is LTR, and ALIGN_RIGHT otherwise. -->
2627            <enum name="viewStart" value="5" />
2628            <!-- Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved
2629                layoutDirection is LTR, and ALIGN_LEFT otherwise -->
2630            <enum name="viewEnd" value="6" />
2631        </attr>
2632
2633        <!-- Controls how this View is important for accessibility which is if it fires
2634             accessibility events and if it is reported to accessibility services that
2635             query the screen. Note: While not recommended, an accessibility service may
2636             decide to ignore this attribute and operate on all views in the view tree. -->
2637        <attr name="importantForAccessibility" format="integer">
2638            <!-- The system determines whether the view is important for accessibility - default
2639                 (recommended). -->
2640            <enum name="auto" value="0" />
2641            <!-- The view is important for accessibility. -->
2642            <enum name="yes" value="1" />
2643            <!-- The view is not important for accessibility. -->
2644            <enum name="no" value="2" />
2645            <!-- The view is not important for accessibility, nor are any of its descendant
2646                 views. -->
2647            <enum name="noHideDescendants" value="4" />
2648        </attr>
2649
2650        <!-- Indicates to accessibility services whether the user should be notified when
2651             this view changes. -->
2652        <attr name="accessibilityLiveRegion" format="integer">
2653            <!-- Accessibility services should not announce changes to this view. -->
2654            <enum name="none" value="0" />
2655            <!-- Accessibility services should announce changes to this view. -->
2656            <enum name="polite" value="1" />
2657            <!-- Accessibility services should interrupt ongoing speech to immediately
2658                 announce changes to this view. -->
2659            <enum name="assertive" value="2" />
2660        </attr>
2661
2662        <!-- Specifies the id of a view for which this view serves as a label for
2663             accessibility purposes. For example, a TextView before an EditText in
2664             the UI usually specifies what infomation is contained in the EditText.
2665             Hence, the TextView is a label for the EditText. -->
2666        <attr name="labelFor" format="reference" />
2667
2668        <!-- Specifies a theme override for a view. When a theme override is set, the
2669             view will be inflated using a {@link android.content.Context} themed with
2670             the specified resource. During XML inflation, any child views under the
2671             view with a theme override will inherit the themed context. -->
2672        <attr name="theme" />
2673
2674        <!-- Names a View such that it can be identified for Transitions. Names should be
2675             unique in the View hierarchy. -->
2676        <attr name="transitionName" format="string" />
2677
2678        <!-- Specifies that this view should permit nested scrolling within a compatible
2679             ancestor view. -->
2680        <attr name="nestedScrollingEnabled" format="boolean" />
2681
2682        <!-- Sets the state-based animator for the View. -->
2683        <attr name="stateListAnimator" format="reference"/>
2684
2685        <!-- Tint to apply to the background. -->
2686        <attr name="backgroundTint" format="color" />
2687
2688        <!-- Blending mode used to apply the background tint. -->
2689        <attr name="backgroundTintMode">
2690            <!-- The tint is drawn on top of the drawable.
2691                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
2692            <enum name="src_over" value="3" />
2693            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
2694                 color channels are thrown out. [Sa * Da, Sc * Da] -->
2695            <enum name="src_in" value="5" />
2696            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
2697                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
2698            <enum name="src_atop" value="9" />
2699            <!-- Multiplies the color and alpha channels of the drawable with those of
2700                 the tint. [Sa * Da, Sc * Dc] -->
2701            <enum name="multiply" value="14" />
2702            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
2703            <enum name="screen" value="15" />
2704            <!-- Combines the tint and drawable color and alpha channels, clamping the
2705                 result to valid color values. Saturate(S + D) -->
2706            <enum name="add" value="16" />
2707        </attr>
2708
2709        <!-- ViewOutlineProvider used to determine the View's Outline. -->
2710        <attr name="outlineProvider">
2711            <!-- Default, background drawable-driven outline. -->
2712            <enum name="background" value="0" />
2713            <!-- No outline provider. -->
2714            <enum name="none" value="1" />
2715            <!-- Generates an opaque outline for the bounds of the view. -->
2716            <enum name="bounds" value="2" />
2717            <!-- Generates an opaque outline for the padded bounds of the view. -->
2718            <enum name="paddedBounds" value="3" />
2719        </attr>
2720
2721        <!-- Defines the drawable to draw over the content. This can be used as an overlay.
2722             The foreground drawable participates in the padding of the content if the gravity
2723             is set to fill. -->
2724        <attr name="foreground" format="reference|color" />
2725        <!-- Defines the gravity to apply to the foreground drawable. The gravity defaults
2726             to fill. -->
2727        <attr name="foregroundGravity">
2728            <!-- Push object to the top of its container, not changing its size. -->
2729            <flag name="top" value="0x30" />
2730            <!-- Push object to the bottom of its container, not changing its size. -->
2731            <flag name="bottom" value="0x50" />
2732            <!-- Push object to the left of its container, not changing its size. -->
2733            <flag name="left" value="0x03" />
2734            <!-- Push object to the right of its container, not changing its size. -->
2735            <flag name="right" value="0x05" />
2736            <!-- Place object in the vertical center of its container, not changing its size. -->
2737            <flag name="center_vertical" value="0x10" />
2738            <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
2739            <flag name="fill_vertical" value="0x70" />
2740            <!-- Place object in the horizontal center of its container, not changing its size. -->
2741            <flag name="center_horizontal" value="0x01" />
2742            <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
2743            <flag name="fill_horizontal" value="0x07" />
2744            <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
2745            <flag name="center" value="0x11" />
2746            <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
2747            <flag name="fill" value="0x77" />
2748            <!-- Additional option that can be set to have the top and/or bottom edges of
2749                 the child clipped to its container's bounds.
2750                 The clip will be based on the vertical gravity: a top gravity will clip the bottom
2751                 edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
2752            <flag name="clip_vertical" value="0x80" />
2753            <!-- Additional option that can be set to have the left and/or right edges of
2754                 the child clipped to its container's bounds.
2755                 The clip will be based on the horizontal gravity: a left gravity will clip the right
2756                 edge, a right gravity will clip the left edge, and neither will clip both edges. -->
2757            <flag name="clip_horizontal" value="0x08" />
2758        </attr>
2759        <!-- Defines whether the foreground drawable should be drawn inside the padding.
2760             This property is turned on by default. -->
2761        <attr name="foregroundInsidePadding" format="boolean" />
2762        <!-- Tint to apply to the foreground. -->
2763        <attr name="foregroundTint" format="color" />
2764        <!-- Blending mode used to apply the foreground tint. -->
2765        <attr name="foregroundTintMode">
2766            <!-- The tint is drawn on top of the drawable.
2767                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
2768            <enum name="src_over" value="3" />
2769            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
2770                 color channels are thrown out. [Sa * Da, Sc * Da] -->
2771            <enum name="src_in" value="5" />
2772            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
2773                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
2774            <enum name="src_atop" value="9" />
2775            <!-- Multiplies the color and alpha channels of the drawable with those of
2776                 the tint. [Sa * Da, Sc * Dc] -->
2777            <enum name="multiply" value="14" />
2778            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
2779            <enum name="screen" value="15" />
2780            <!-- Combines the tint and drawable color and alpha channels, clamping the
2781                 result to valid color values. Saturate(S + D) -->
2782            <enum name="add" value="16" />
2783        </attr>
2784
2785        <!-- Defines which scroll indicators should be displayed when the view
2786             can be scrolled. Multiple values may be combined using logical OR,
2787             for example "top|bottom". -->
2788        <attr name="scrollIndicators">
2789            <!-- No scroll indicators are displayed. -->
2790            <flag name="none" value="0x00" />
2791            <!-- Displays top scroll indicator when view can be scrolled up. -->
2792            <flag name="top" value="0x01" />
2793            <!-- Displays bottom scroll indicator when vew can be scrolled down. -->
2794            <flag name="bottom" value="0x02" />
2795            <!-- Displays left scroll indicator when vew can be scrolled left. -->
2796            <flag name="left" value="0x04" />
2797            <!-- Displays right scroll indicator when vew can be scrolled right. -->
2798            <flag name="right" value="0x08" />
2799            <!-- Displays right scroll indicator when vew can be scrolled in the
2800                 start direction. -->
2801            <flag name="start" value="0x10" />
2802            <!-- Displays right scroll indicator when vew can be scrolled in the
2803                 end direction. -->
2804            <flag name="end" value="0x20" />
2805        </attr>
2806
2807        <attr name="pointerIcon">
2808            <!-- Null icon, pointer becomes invisible. -->
2809            <enum name="none" value="0" />
2810            <!-- The default icon of arrow pointer. -->
2811            <enum name="arrow" value="1000" />
2812            <!-- Pointer icon indicating context-menu will appear. -->
2813            <enum name="context_menu" value="1001" />
2814            <!-- Pointer icon of a hand with the index finger. -->
2815            <enum name="hand" value="1002" />
2816            <!-- Pointer icon indicating help. -->
2817            <enum name="help" value="1003" />
2818            <!-- Pointer icon indicating something is going on and waiting. -->
2819            <enum name="wait" value="1004" />
2820            <!-- Pointer icon for cell and grid. -->
2821            <enum name="cell" value="1006" />
2822            <!-- Pointer icon of crosshair, indicating to spot a location. -->
2823            <enum name="crosshair" value="1007" />
2824            <!-- Pointer icon of I-beam, usually for text. -->
2825            <enum name="text" value="1008" />
2826            <!-- Pointer icon of I-beam with 90-degree rotated, for vertical text. -->
2827            <enum name="vertical_text" value="1009" />
2828            <!-- Pointer icon of 'alias', indicating an alias of/shortcut to something is to be
2829                 created. -->
2830            <enum name="alias" value="1010" />
2831            <!-- Pointer icon of 'copy', used for drag/drop. -->
2832            <enum name="copy" value="1011" />
2833            <!-- Pointer icon of 'no-drop', indicating the drop will not be accepted at the
2834                 current location. -->
2835            <enum name="no_drop" value="1012" />
2836            <!-- Pointer icon of four-way arrows, indicating scrolling all direction. -->
2837            <enum name="all_scroll" value="1013" />
2838            <!-- Pointer icon of horizontal double arrow, indicating horizontal resize. -->
2839            <enum name="horizontal_double_arrow" value="1014" />
2840            <!-- Pointer icon of vertical double arrow, indicating vertical resize. -->
2841            <enum name="vertical_double_arrow" value="1015" />
2842            <!-- Pointer icon of diagonal double arrow, starting from top-right to bottom-left.
2843                 Indicating freeform resize. -->
2844            <enum name="top_right_diagonal_double_arrow" value="1016" />
2845            <!-- Pointer icon of diagonal double arrow, starting from top-left to bottom-right.
2846                 Indicating freeform resize. -->
2847            <enum name="top_left_diagonal_double_arrow" value="1017" />
2848            <!-- Pointer icon indicating zoom-in. -->
2849            <enum name="zoom_in" value="1018" />
2850            <!-- Pointer icon indicating zoom-out. -->
2851            <enum name="zoom_out" value="1019" />
2852            <!-- Pointer icon of a hand sign to grab something. -->
2853            <enum name="grab" value="1020" />
2854            <!-- Pointer icon of a hand sign while grabbing something. -->
2855            <enum name="grabbing" value="1021" />
2856        </attr>
2857
2858        <!-- Whether this view has elements that may overlap when drawn. See
2859             {@link android.view.View#forceHasOverlappingRendering(boolean)}. -->
2860        <attr name="forceHasOverlappingRendering" format="boolean" />
2861
2862    </declare-styleable>
2863
2864    <!-- Attributes that can be assigned to a tag for a particular View. -->
2865    <declare-styleable name="ViewTag">
2866        <!-- Specifies the key identifying a tag. This must be a resource reference. -->
2867        <attr name="id" />
2868        <!-- Specifies the value with which to tag the view. -->
2869        <attr name="value" />
2870    </declare-styleable>
2871
2872    <!-- Attributes that can be assigned to an &lt;include&gt; tag.
2873         @hide -->
2874    <declare-styleable name="Include">
2875        <attr name="id" />
2876        <attr name="visibility" />
2877    </declare-styleable>
2878
2879    <!-- Attributes that can be used with a {@link android.view.ViewGroup} or any
2880         of its subclasses.  Also see {@link #ViewGroup_Layout} for
2881         attributes that this class processes in its children. -->
2882    <declare-styleable name="ViewGroup">
2883        <!-- Defines whether changes in layout (caused by adding and removing items) should
2884             cause a LayoutTransition to run. When this flag is set to true, a default
2885             LayoutTransition object will be set on the ViewGroup container and default
2886             animations will run when these layout changes occur.-->
2887        <attr name="animateLayoutChanges" format="boolean" />
2888        <!-- Defines whether a child is limited to draw inside of its bounds or not.
2889             This is useful with animations that scale the size of the children to more
2890             than 100% for instance. In such a case, this property should be set to false
2891             to allow the children to draw outside of their bounds. The default value of
2892             this property is true. -->
2893        <attr name="clipChildren" format="boolean" />
2894        <!-- Defines whether the ViewGroup will clip its children and resize (but not clip) any
2895             EdgeEffect to its padding, if padding is not zero. This property is set to true by
2896             default. -->
2897        <attr name="clipToPadding" format="boolean" />
2898        <!-- Defines the layout animation to use the first time the ViewGroup is laid out.
2899             Layout animations can also be started manually after the first layout. -->
2900        <attr name="layoutAnimation" format="reference" />
2901        <!-- Defines whether layout animations should create a drawing cache for their
2902             children. Enabling the animation cache consumes more memory and requires
2903             a longer initialization but provides better performance. The animation
2904             cache is enabled by default. -->
2905        <attr name="animationCache" format="boolean" />
2906        <!-- Defines the persistence of the drawing cache. The drawing cache might be
2907             enabled by a ViewGroup for all its children in specific situations (for
2908             instance during a scrolling.) This property lets you persist the cache
2909             in memory after its initial usage. Persisting the cache consumes more
2910             memory but may prevent frequent garbage collection is the cache is created
2911             over and over again. By default the persistence is set to scrolling. -->
2912        <attr name="persistentDrawingCache">
2913            <!-- The drawing cache is not persisted after use. -->
2914            <flag name="none" value="0x0" />
2915            <!-- The drawing cache is persisted after a layout animation. -->
2916            <flag name="animation" value="0x1" />
2917            <!-- The drawing cache is persisted after a scroll. -->
2918            <flag name="scrolling" value="0x2" />
2919            <!-- The drawing cache is always persisted. -->
2920            <flag name="all" value="0x3" />
2921        </attr>
2922        <!-- Defines whether the ViewGroup should always draw its children using their
2923             drawing cache or not. The default value is true. -->
2924        <attr name="alwaysDrawnWithCache" format="boolean" />
2925        <!-- Sets whether this ViewGroup's drawable states also include
2926             its children's drawable states.  This is used, for example, to
2927             make a group appear to be focused when its child EditText or button
2928             is focused. -->
2929        <attr name="addStatesFromChildren" format="boolean" />
2930
2931        <!-- Defines the relationship between the ViewGroup and its descendants
2932             when looking for a View to take focus. -->
2933        <attr name="descendantFocusability">
2934            <!-- The ViewGroup will get focus before any of its descendants. -->
2935            <enum name="beforeDescendants" value="0" />
2936            <!-- The ViewGroup will get focus only if none of its descendants want it. -->
2937            <enum name="afterDescendants" value="1" />
2938            <!-- The ViewGroup will block its descendants from receiving focus. -->
2939            <enum name="blocksDescendants" value="2" />
2940        </attr>
2941
2942        <!-- Set to true if this ViewGroup blocks focus in the presence of a touchscreen. -->
2943        <attr name="touchscreenBlocksFocus" format="boolean" />
2944
2945        <!-- Sets whether this ViewGroup should split MotionEvents
2946             to separate child views during touch event dispatch.
2947             If false (default), touch events will be dispatched to
2948             the child view where the first pointer went down until
2949             the last pointer goes up.
2950             If true, touch events may be dispatched to multiple children.
2951             MotionEvents for each pointer will be dispatched to the child
2952             view where the initial ACTION_DOWN event happened.
2953             See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)}
2954             for more information. -->
2955        <attr name="splitMotionEvents" format="boolean" />
2956
2957        <!-- Defines the layout mode of this ViewGroup. -->
2958        <attr name="layoutMode">
2959            <!-- Use the children's clip bounds when laying out this container. -->
2960            <enum name="clipBounds" value="0" />
2961            <!-- Use the children's optical bounds when laying out this container. -->
2962            <enum name="opticalBounds" value="1" />
2963        </attr>
2964
2965        <!-- Sets whether or not this ViewGroup should be treated as a single entity
2966             when doing an Activity transition. Typically, the elements inside a
2967             ViewGroup are each transitioned from the scene individually. The default
2968             for a ViewGroup is false unless it has a background. See
2969             {@link android.app.ActivityOptions#makeSceneTransitionAnimation(android.app.Activity,
2970             android.view.View, String)} for more information. Corresponds to
2971             {@link android.view.ViewGroup#setTransitionGroup(boolean)}.-->
2972        <attr name="transitionGroup" format="boolean" />
2973    </declare-styleable>
2974
2975    <!-- A {@link android.view.ViewStub} lets you lazily include other XML layouts
2976         inside your application at runtime. -->
2977    <declare-styleable name="ViewStub">
2978        <!-- Supply an identifier name for this view. -->
2979        <attr name="id" />
2980        <!-- Supply an identifier for the layout resource to inflate when the ViewStub
2981             becomes visible or when forced to do so. The layout resource must be a
2982             valid reference to a layout. -->
2983        <attr name="layout" format="reference" />
2984        <!-- Overrides the id of the inflated View with this value. -->
2985        <attr name="inflatedId" format="reference" />
2986    </declare-styleable>
2987
2988    <!-- ===================================== -->
2989    <!-- View package parent layout attributes -->
2990    <!-- ===================================== -->
2991    <eat-comment />
2992
2993    <!-- This is the basic set of layout attributes that are common to all
2994         layout managers.  These attributes are specified with the rest of
2995         a view's normal attributes (such as {@link android.R.attr#background},
2996         but will be parsed by the view's parent and ignored by the child.
2997        <p>The values defined here correspond to the base layout attribute
2998        class {@link android.view.ViewGroup.LayoutParams}. -->
2999    <declare-styleable name="ViewGroup_Layout">
3000        <!-- Specifies the basic width of the view.  This is a required attribute
3001             for any view inside of a containing layout manager.  Its value may
3002             be a dimension (such as "12dip") for a constant width or one of
3003             the special constants. -->
3004        <attr name="layout_width" format="dimension">
3005            <!-- The view should be as big as its parent (minus padding).
3006                 This constant is deprecated starting from API Level 8 and
3007                 is replaced by {@code match_parent}. -->
3008            <enum name="fill_parent" value="-1" />
3009            <!-- The view should be as big as its parent (minus padding).
3010                 Introduced in API Level 8. -->
3011            <enum name="match_parent" value="-1" />
3012            <!-- The view should be only big enough to enclose its content (plus padding). -->
3013            <enum name="wrap_content" value="-2" />
3014        </attr>
3015
3016        <!-- Specifies the basic height of the view.  This is a required attribute
3017             for any view inside of a containing layout manager.  Its value may
3018             be a dimension (such as "12dip") for a constant height or one of
3019             the special constants. -->
3020        <attr name="layout_height" format="dimension">
3021            <!-- The view should be as big as its parent (minus padding).
3022                 This constant is deprecated starting from API Level 8 and
3023                 is replaced by {@code match_parent}. -->
3024            <enum name="fill_parent" value="-1" />
3025            <!-- The view should be as big as its parent (minus padding).
3026                 Introduced in API Level 8. -->
3027            <enum name="match_parent" value="-1" />
3028            <!-- The view should be only big enough to enclose its content (plus padding). -->
3029            <enum name="wrap_content" value="-2" />
3030        </attr>
3031    </declare-styleable>
3032
3033    <!-- This is the basic set of layout attributes for layout managers that
3034         wish to place margins around their child views.
3035         These attributes are specified with the rest of
3036         a view's normal attributes (such as {@link android.R.attr#background},
3037         but will be parsed by the view's parent and ignored by the child.
3038        <p>The values defined here correspond to the base layout attribute
3039        class {@link android.view.ViewGroup.MarginLayoutParams}. -->
3040    <declare-styleable name="ViewGroup_MarginLayout">
3041        <attr name="layout_width" />
3042        <attr name="layout_height" />
3043        <!--  Specifies extra space on the left, top, right and bottom
3044              sides of this view. This space is outside this view's bounds.
3045              Margin values should be positive. -->
3046        <attr name="layout_margin" format="dimension"  />
3047        <!--  Specifies extra space on the left side of this view.
3048              This space is outside this view's bounds.
3049              Margin values should be positive. -->
3050        <attr name="layout_marginLeft" format="dimension"  />
3051        <!--  Specifies extra space on the top side of this view.
3052              This space is outside this view's bounds.
3053              Margin values should be positive.-->
3054        <attr name="layout_marginTop" format="dimension" />
3055        <!--  Specifies extra space on the right side of this view.
3056              This space is outside this view's bounds.
3057              Margin values should be positive.-->
3058        <attr name="layout_marginRight" format="dimension"  />
3059        <!--  Specifies extra space on the bottom side of this view.
3060              This space is outside this view's bounds.
3061              Margin values should be positive.-->
3062        <attr name="layout_marginBottom" format="dimension"  />
3063        <!--  Specifies extra space on the start side of this view.
3064              This space is outside this view's bounds.
3065              Margin values should be positive.-->
3066        <attr name="layout_marginStart" format="dimension"  />
3067        <!--  Specifies extra space on the end side of this view.
3068              This space is outside this view's bounds.
3069              Margin values should be positive.-->
3070        <attr name="layout_marginEnd" format="dimension"  />
3071    </declare-styleable>
3072
3073    <!-- Use <code>input-method</code> as the root tag of the XML resource that
3074         describes an
3075         {@link android.view.inputmethod.InputMethod} service, which is
3076         referenced from its
3077         {@link android.view.inputmethod.InputMethod#SERVICE_META_DATA}
3078         meta-data entry.  Described here are the attributes that can be
3079         included in that tag. -->
3080    <declare-styleable name="InputMethod">
3081        <!-- Component name of an activity that allows the user to modify
3082             the settings for this service. -->
3083        <attr name="settingsActivity" format="string" />
3084        <!-- Set to true in all of the configurations for which this input
3085             method should be considered an option as the default. -->
3086        <attr name="isDefault" format="boolean" />
3087        <!-- Set to true if this input method supports ways to switch to
3088             a next input method (e.g. a globe key.). When this is true and
3089             InputMethodManager#shouldOfferSwitchingToNextInputMethod() returns true,
3090             the IME has to offer ways to invoke InputMethodManager#switchToNextInputMethod()
3091             accordingly.
3092             <p> Note that the system determines the most appropriate next input method
3093             and subtype in order to provide the consistent user experience in switching
3094             between IMEs and subtypes. -->
3095        <attr name="supportsSwitchingToNextInputMethod" format="boolean" />
3096    </declare-styleable>
3097
3098    <!-- This is the subtype of InputMethod. Subtype can describe locales (e.g. en_US, fr_FR...)
3099         and modes (e.g. voice, keyboard...), and is used for IME switch. This subtype allows
3100         the system to call the specified subtype of the IME directly. -->
3101    <declare-styleable name="InputMethod_Subtype">
3102        <!-- The name of the subtype. -->
3103        <attr name="label" />
3104        <!-- The icon of the subtype. -->
3105        <attr name="icon" />
3106        <!-- The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...)
3107             and will be passed to the IME when the framework calls the IME
3108             with the subtype. This is also used by the framework to know the supported locales
3109             of the IME.  -->
3110        <attr name="imeSubtypeLocale" format="string" />
3111        <!-- The mode of the subtype. This string can be a mode (e.g. voice, keyboard...) and this
3112             string will be passed to the IME when the framework calls the IME with the
3113             subtype.  {@link android.view.inputmethod.InputMethodSubtype#getLocale()} returns the
3114             value specified in this attribute.  -->
3115        <attr name="imeSubtypeMode" format="string" />
3116        <!-- Set true if the subtype is auxiliary.  An auxiliary subtype won't be shown in the
3117             input method selection list in the settings app.
3118             InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it
3119             chooses a target subtype. -->
3120        <attr name="isAuxiliary" format="boolean" />
3121        <!-- Set true when this subtype should be selected by default if no other subtypes are
3122             selected explicitly. Note that a subtype with this parameter being true will
3123             not be shown in the subtypes list. -->
3124        <attr name="overridesImplicitlyEnabledSubtype" format="boolean" />
3125        <!-- The extra value of the subtype. This string can be any string and will be passed to
3126             the IME when the framework calls the IME with the subtype.  -->
3127        <attr name="imeSubtypeExtraValue" format="string" />
3128        <!-- The unique id for the subtype. The input method framework keeps track of enabled
3129             subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even
3130             if other attributes are different. If the ID is unspecified (by calling the other
3131             constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue,
3132             isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead. -->
3133        <attr name="subtypeId" format="integer"/>
3134        <!-- Set to true if this subtype is ASCII capable. If the subtype is ASCII
3135             capable, it should guarantee that the user can input ASCII characters with
3136             this subtype. This is important because many password fields only allow
3137             ASCII-characters. -->
3138        <attr name="isAsciiCapable" format="boolean" />
3139        <!-- The BCP-47 Language Tag of the subtype.  This replaces
3140        {@link android.R.styleable#InputMethod_Subtype_imeSubtypeLocale}.  -->
3141        <attr name="languageTag" format="string" />
3142    </declare-styleable>
3143
3144    <!-- Use <code>spell-checker</code> as the root tag of the XML resource that
3145         describes an
3146         {@link android.service.textservice.SpellCheckerService} service, which is
3147         referenced from its
3148         {@link android.view.textservice.SpellCheckerSession#SERVICE_META_DATA}
3149         meta-data entry.  Described here are the attributes that can be
3150         included in that tag. -->
3151    <declare-styleable name="SpellChecker">
3152        <!-- The name of the spell checker. -->
3153        <attr name="label" />
3154        <!-- Component name of an activity that allows the user to modify
3155             the settings for this service. -->
3156        <attr name="settingsActivity"/>
3157    </declare-styleable>
3158
3159    <!-- This is the subtype of the spell checker. Subtype can describe locales (e.g. en_US, fr_FR...) -->
3160    <declare-styleable name="SpellChecker_Subtype">
3161        <!-- The name of the subtype. -->
3162        <attr name="label" />
3163        <!-- The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...)
3164             This is also used by the framework to know the supported locales
3165             of the spell checker. {@link android.view.textservice.SpellCheckerSubtype#getLocale()}
3166             returns the value specified in this attribute.  -->
3167        <attr name="subtypeLocale" format="string" />
3168        <!-- The extra value of the subtype. This string can be any string and will be passed to
3169             the SpellChecker.  -->
3170        <attr name="subtypeExtraValue" format="string" />
3171        <!-- The unique id for the subtype. The text service (spell checker) framework keeps track
3172             of enabled subtypes by ID. When the spell checker package gets upgraded, enabled IDs
3173             will stay enabled even if other attributes are different. If the ID is unspecified or
3174             or explicitly specified to 0 in XML resources,
3175             {@code Arrays.hashCode(new Object[] {subtypeLocale, extraValue}) will be used instead.
3176              -->
3177        <attr name="subtypeId" />
3178        <!-- The BCP-47 Language Tag of the subtype.  This replaces
3179        {@link android.R.styleable#SpellChecker_Subtype_subtypeLocale}.  -->
3180        <attr name="languageTag" />
3181    </declare-styleable>
3182
3183    <!-- Use <code>accessibility-service</code> as the root tag of the XML resource that
3184         describes an {@link android.accessibilityservice.AccessibilityService} service,
3185         which is referenced from its
3186         {@link android.accessibilityservice.AccessibilityService#SERVICE_META_DATA}
3187         meta-data entry. -->
3188    <declare-styleable name="AccessibilityService">
3189        <!-- The event types this serivce would like to receive as specified in
3190             {@link android.view.accessibility.AccessibilityEvent}. This setting
3191             can be changed at runtime by calling
3192             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
3193             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
3194        <attr name="accessibilityEventTypes">
3195            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} events.-->
3196            <flag name="typeViewClicked" value="0x00000001" />
3197            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_LONG_CLICKED} events. -->
3198            <flag name="typeViewLongClicked" value="0x00000002" />
3199            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SELECTED} events. -->
3200            <flag name="typeViewSelected" value="0x00000004" />
3201            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_FOCUSED} events. -->
3202            <flag name="typeViewFocused" value="0x00000008" />
3203            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_CHANGED} events. -->
3204            <flag name="typeViewTextChanged" value="0x00000010" />
3205            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_STATE_CHANGED} events. -->
3206            <flag name="typeWindowStateChanged" value="0x00000020" />
3207            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_NOTIFICATION_STATE_CHANGED} events. -->
3208            <flag name="typeNotificationStateChanged" value="0x00000040" />
3209            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER} events. -->
3210            <flag name="typeViewHoverEnter" value="0x00000080" />
3211            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_EXIT} events. -->
3212            <flag name="typeViewHoverExit" value="0x00000100" />
3213            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_START} events. -->
3214            <flag name="typeTouchExplorationGestureStart" value="0x00000200" />
3215            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_END} events. -->
3216            <flag name="typeTouchExplorationGestureEnd" value="0x00000400" />
3217            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} events. -->
3218            <flag name="typeWindowContentChanged" value="0x00000800" />
3219            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SCROLLED} events. -->
3220            <flag name="typeViewScrolled" value="0x000001000" />
3221            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_SELECTION_CHANGED} events. -->
3222            <flag name="typeViewTextSelectionChanged" value="0x000002000" />
3223            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_ANNOUNCEMENT} events. -->
3224            <flag name="typeAnnouncement" value="0x00004000" />
3225            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_ACCESSIBILITY_FOCUSED} events. -->
3226            <flag name="typeViewAccessibilityFocused" value="0x00008000" />
3227            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_ACCESSIBILITY_FOCUS_CLEARED} events. -->
3228            <flag name="typeViewAccessibilityFocusCleared" value="0x00010000" />
3229            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY} events. -->
3230            <flag name="typeViewTextTraversedAtMovementGranularity" value="0x00020000" />
3231            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_GESTURE_DETECTION_START} events. -->
3232            <flag name="typeGestureDetectionStart" value="0x00040000" />
3233            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_GESTURE_DETECTION_END} events. -->
3234            <flag name="typeGestureDetectionEnd" value="0x00080000" />
3235            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_INTERACTION_START} events. -->
3236            <flag name="typeTouchInteractionStart" value="0x00100000" />
3237            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_INTERACTION_END} events. -->
3238            <flag name="typeTouchInteractionEnd" value="0x00200000" />
3239            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOWS_CHANGED} events. -->
3240            <flag name="typeWindowsChanged" value="0x00400000" />
3241            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CONTEXT_CLICKED} events. -->
3242            <flag name="typeContextClicked" value="0x00800000" />
3243            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_ASSIST_READING_CONTEXT} events. -->
3244            <flag name="typeAssistReadingContext" value="0x01000000" />
3245            <!-- Receives {@link android.view.accessibility.AccessibilityEvent#TYPES_ALL_MASK} i.e. all events. -->
3246            <flag name="typeAllMask" value="0xffffffff" />
3247        </attr>
3248        <!-- Comma separated package names from which this serivce would like to receive events (leave out for all packages).
3249             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
3250             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
3251        <attr name="packageNames" format="string" />
3252        <!-- The feedback types this serivce provides as specified in
3253             {@link android.accessibilityservice.AccessibilityServiceInfo}. This setting
3254             can be changed at runtime by calling
3255             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
3256             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
3257        <attr name="accessibilityFeedbackType">
3258            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_SPOKEN} feedback. -->
3259            <flag name="feedbackSpoken" value="0x00000001" />
3260            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_HAPTIC} feedback. -->
3261            <flag name="feedbackHaptic" value="0x00000002" />
3262            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_AUDIBLE} feedback. -->
3263            <flag name="feedbackAudible" value="0x00000004" />
3264            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_VISUAL} feedback. -->
3265            <flag name="feedbackVisual" value="0x00000008" />
3266            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_GENERIC} feedback. -->
3267            <flag name="feedbackGeneric" value="0x00000010" />
3268            <!-- Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_ALL_MASK} feedback. -->
3269            <flag name="feedbackAllMask" value="0xffffffff" />
3270        </attr>
3271        <!-- The minimal period in milliseconds between two accessibility events of the same type
3272             are sent to this serivce. This setting can be changed at runtime by calling
3273             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
3274             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
3275        <attr name="notificationTimeout" format="integer" />
3276        <!-- Additional flags as specified in
3277             {@link android.accessibilityservice.AccessibilityServiceInfo}.
3278             This setting can be changed at runtime by calling
3279             {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
3280             android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -->
3281        <attr name="accessibilityFlags">
3282            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#DEFAULT} -->
3283            <flag name="flagDefault" value="0x00000001" />
3284            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS} -->
3285            <flag name="flagIncludeNotImportantViews" value="0x00000002" />
3286            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} -->
3287            <flag name="flagRequestTouchExplorationMode" value="0x00000004" />
3288            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY} -->
3289            <flag name="flagRequestEnhancedWebAccessibility" value="0x00000008" />
3290            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REPORT_VIEW_IDS} -->
3291            <flag name="flagReportViewIds" value="0x00000010" />
3292            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} -->
3293            <flag name="flagRequestFilterKeyEvents" value="0x00000020" />
3294            <!-- Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_RETRIEVE_INTERACTIVE_WINDOWS} -->
3295            <flag name="flagRetrieveInteractiveWindows" value="0x00000040" />
3296        </attr>
3297        <!-- Component name of an activity that allows the user to modify
3298             the settings for this service. This setting cannot be changed at runtime. -->
3299        <attr name="settingsActivity" />
3300        <!-- Attribute whether the accessibility service wants to be able to retrieve the
3301             active window content. This setting cannot be changed at runtime. -->
3302        <attr name="canRetrieveWindowContent" format="boolean" />
3303        <!-- Attribute whether the accessibility service wants to be able to request touch
3304             exploration mode in which touched items are spoken aloud and the UI can be
3305             explored via gestures.
3306             <p>
3307             Required to allow setting the {@link android.accessibilityservice
3308             #AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} flag.
3309             </p>
3310         -->
3311        <attr name="canRequestTouchExplorationMode" format="boolean" />
3312        <!-- Attribute whether the accessibility service wants to be able to request enhanced
3313             web accessibility enhancements. For example, installing scripts to make app
3314             content more accessible.
3315             <p>
3316             Required to allow setting the {@link android.accessibilityservice
3317             #AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY} flag.
3318             </p>
3319         -->
3320        <attr name="canRequestEnhancedWebAccessibility" format="boolean" />
3321        <!-- Attribute whether the accessibility service wants to be able to request to
3322             filter key events.
3323             <p>
3324             Required to allow setting the {@link android.accessibilityservice
3325             #AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} flag.
3326             </p>
3327         -->
3328        <attr name="canRequestFilterKeyEvents" format="boolean" />
3329        <!-- Attribute whether the accessibility service wants to be able to control
3330             display magnification.
3331             <p>
3332             Required to allow setting the {@link android.accessibilityservice
3333             #AccessibilityServiceInfo#FLAG_CAN_CONTROL_MAGNIFICATION} flag.
3334             </p>
3335         -->
3336        <attr name="canControlMagnification" format="boolean" />
3337        <!-- Attribute whether the accessibility service wants to be able to perform gestures.
3338             <p>
3339             Required to allow setting the {@link android.accessibilityservice
3340             #AccessibilityServiceInfo#FLAG_CAN_PERFORM_GESTURES} flag.
3341             </p>
3342         -->
3343        <attr name="canPerformGestures" format="boolean" />
3344        <!-- Short description of the accessibility service purpose or behavior.-->
3345        <attr name="description" />
3346    </declare-styleable>
3347
3348    <!-- Use <code>print-service</code> as the root tag of the XML resource that
3349         describes an {@link android.printservice.PrintService} service, which is
3350         referenced from its {@link android.printservice.PrintService#SERVICE_META_DATA}
3351         meta-data entry. -->
3352    <declare-styleable name="PrintService">
3353        <!-- Fully qualified class name of an activity that allows the user to modify
3354             the settings for this service. -->
3355        <attr name="settingsActivity" />
3356        <!-- Fully qualified class name of an activity that allows the user to manually
3357             add printers to this print service. -->
3358        <attr name="addPrintersActivity" format="string"/>
3359        <!-- Fully qualified class name of an activity with advanced print options
3360             specific to this print service. -->
3361        <attr name="advancedPrintOptionsActivity" format="string"/>
3362        <!-- The vendor name if this print service is vendor specific. -->
3363        <attr name="vendor" format="string"/>
3364    </declare-styleable>
3365
3366    <!-- Use <code>host-apdu-service</code> as the root tag of the XML resource that
3367         describes an {@link android.nfc.cardemulation.HostApduService} service, which
3368         is referenced from its {@link android.nfc.cardemulation.HostApduService#SERVICE_META_DATA}
3369         entry. -->
3370    <declare-styleable name="HostApduService">
3371        <!-- Short description of the functionality the service implements. This attribute
3372             is mandatory.-->
3373        <attr name="description" />
3374        <!-- Whether the device must be unlocked before routing data to this service.
3375             The default is false.-->
3376        <attr name="requireDeviceUnlock" format="boolean"/>
3377        <!-- A drawable that can be rendered in Android's system UI for representing
3378             the service. -->
3379        <attr name="apduServiceBanner" format="reference"/>
3380        <!-- Component name of an activity that allows the user to modify
3381             the settings for this service. -->
3382        <attr name="settingsActivity"/>
3383    </declare-styleable>
3384
3385    <!-- Use <code>offhost-apdu-service</code> as the root tag of the XML resource that
3386         describes an {@link android.nfc.cardemulation.OffHostApduService}
3387         service, which is referenced from its
3388         {@link android.nfc.cardemulation.OffHostApduService#SERVICE_META_DATA} entry. -->
3389    <declare-styleable name="OffHostApduService">
3390        <!-- Short description of the functionality the service implements. This attribute
3391             is mandatory.-->
3392        <attr name="description" />
3393        <!-- A drawable that can be rendered in Android's system UI for representing
3394             the service. -->
3395        <attr name="apduServiceBanner"/>
3396        <!-- Component name of an activity that allows the user to modify
3397             the settings for this service. -->
3398        <attr name="settingsActivity"/>
3399    </declare-styleable>
3400
3401    <!-- Specify one or more <code>aid-group</code> elements inside a
3402         <code>host-apdu-service</code> or <code>offhost-apdu-service</code>
3403         element to define a group of ISO7816 Application ID (AIDs) that
3404         your service can handle.-->
3405    <declare-styleable name="AidGroup">
3406        <!-- Short description of what the AID group implements. This attribute is mandatory.-->
3407        <attr name="description" />
3408        <!-- The category attribute will be used by the Android platform to present
3409             multiple applications that register ISO 7816 Application IDs (AIDs) in the
3410             same category uniformly.
3411             Additionally, when a category is specified, Android will ensure that either
3412             all AIDs in this group are routed to this application, or none at all.
3413             This attribute is optional.-->
3414        <attr name="category" format="string" />
3415    </declare-styleable>
3416
3417    <!-- Specify one or more <code>aid-filter</code> elements inside a
3418         <code>aid-group</code> element to specify an ISO7816 Application ID (AID)
3419         your service can handle. -->
3420    <declare-styleable name="AidFilter">
3421        <!-- The ISO7816 Application ID. This attribute is mandatory. -->
3422        <attr name="name" />
3423    </declare-styleable>
3424
3425    <!-- Specify one or more <code>aid-prefix-filter</code> elements inside a
3426         <code>aid-group</code> element to specify an ISO7816 Application ID (AID)
3427         prefix your service can handle. -->
3428    <declare-styleable name="AidPrefixFilter">
3429        <!-- The ISO7816 Application ID. This attribute is mandatory. -->
3430        <attr name="name" />
3431    </declare-styleable>
3432
3433    <!-- Use <code>host-nfcf-service</code> as the root tag of the XML resource that
3434         describes an {@link android.nfc.cardemulation.HostNfcFService} service, which
3435         is referenced from its {@link android.nfc.cardemulation.HostNfcFService#SERVICE_META_DATA}
3436         entry. -->
3437    <declare-styleable name="HostNfcFService">
3438        <!-- Short description of the functionality the service implements. This attribute
3439             is mandatory.-->
3440        <attr name="description" />
3441    </declare-styleable>
3442
3443    <!-- Specify one or more <code>system-code-filter</code> elements inside a
3444         <code>host-nfcf-service</code> element to specify a System Code
3445         your service can handle. -->
3446    <declare-styleable name="SystemCodeFilter">
3447        <!-- The System Code. This attribute is mandatory. -->
3448        <attr name="name" />
3449    </declare-styleable>
3450
3451    <!-- Specify one or more <code>nfcid2-filter</code> elements inside a
3452         <code>host-nfcf-service</code> element to specify a NFCID2
3453         your service can handle. -->
3454    <declare-styleable name="Nfcid2Filter">
3455        <!-- The NFCID2. This attribute is mandatory. -->
3456        <attr name="name" />
3457    </declare-styleable>
3458
3459    <declare-styleable name="ActionMenuItemView">
3460        <attr name="minWidth" />
3461    </declare-styleable>
3462
3463    <!-- =============================== -->
3464    <!-- Widget package class attributes -->
3465    <!-- =============================== -->
3466    <eat-comment />
3467
3468    <declare-styleable name="AbsListView">
3469         <!-- Drawable used to indicate the currently selected item in the list. -->
3470        <attr name="listSelector" format="color|reference" />
3471        <!-- When set to true, the selector will be drawn over the selected item.
3472             Otherwise the selector is drawn behind the selected item. The default
3473             value is false. -->
3474        <attr name="drawSelectorOnTop" format="boolean" />
3475        <!-- Used by ListView and GridView to stack their content from the bottom. -->
3476        <attr name="stackFromBottom" format="boolean" />
3477        <!-- When set to true, the list uses a drawing cache during scrolling.
3478             This makes the rendering faster but uses more memory. The default
3479             value is true. -->
3480        <attr name="scrollingCache" format="boolean" />
3481        <!-- When set to true, the list will filter results as the user types. The
3482             List's adapter must support the Filterable interface for this to work. -->
3483        <attr name="textFilterEnabled" format="boolean" />
3484        <!-- Sets the transcript mode for the list. In transcript mode, the list
3485             scrolls to the bottom to make new items visible when they are added. -->
3486        <attr name="transcriptMode">
3487            <!-- Disables transcript mode. This is the default value. -->
3488            <enum name="disabled" value="0"/>
3489            <!-- The list will automatically scroll to the bottom when
3490                 a data set change notification is received and only if the last item is
3491                 already visible on screen. -->
3492            <enum name="normal" value="1" />
3493            <!-- The list will automatically scroll to the bottom, no matter what items
3494                 are currently visible. -->
3495            <enum name="alwaysScroll" value="2" />
3496        </attr>
3497        <!-- Indicates that this list will always be drawn on top of solid, single-color
3498             opaque background. This allows the list to optimize drawing. -->
3499        <attr name="cacheColorHint" format="color" />
3500        <!-- Enables the fast scroll thumb that can be dragged to quickly scroll through
3501             the list. -->
3502        <attr name="fastScrollEnabled" format="boolean" />
3503        <!-- Specifies the style of the fast scroll decorations. -->
3504        <attr name="fastScrollStyle" format="reference" />
3505        <!-- When set to true, the list will use a more refined calculation
3506             method based on the pixels height of the items visible on screen. This
3507             property is set to true by default but should be set to false if your adapter
3508             will display items of varying heights. When this property is set to true and
3509             your adapter displays items of varying heights, the scrollbar thumb will
3510             change size as the user scrolls through the list. When set to false, the list
3511             will use only the number of items in the adapter and the number of items visible
3512             on screen to determine the scrollbar's properties. -->
3513        <attr name="smoothScrollbar" format="boolean" />
3514        <!-- Defines the choice behavior for the view. By default, lists do not have
3515             any choice behavior. By setting the choiceMode to singleChoice, the list
3516             allows up to one item to be in a chosen state. By setting the choiceMode to
3517             multipleChoice, the list allows any number of items to be chosen.
3518             Finally, by setting the choiceMode to multipleChoiceModal the list allows
3519             any number of items to be chosen in a special selection mode.
3520             The application will supply a
3521             {@link android.widget.AbsListView.MultiChoiceModeListener} using
3522             {@link android.widget.AbsListView#setMultiChoiceModeListener} to control the
3523             selection mode. This uses the {@link android.view.ActionMode} API. -->
3524        <attr name="choiceMode">
3525            <!-- Normal list that does not indicate choices. -->
3526            <enum name="none" value="0" />
3527            <!-- The list allows up to one choice. -->
3528            <enum name="singleChoice" value="1" />
3529            <!-- The list allows multiple choices. -->
3530            <enum name="multipleChoice" value="2" />
3531            <!-- The list allows multiple choices in a custom selection mode. -->
3532            <enum name="multipleChoiceModal" value="3" />
3533        </attr>
3534
3535        <!-- When set to true, the list will always show the fast scroll interface.
3536             This setting implies fastScrollEnabled. -->
3537        <attr name="fastScrollAlwaysVisible" format="boolean" />
3538    </declare-styleable>
3539    <!-- @hide -->
3540    <declare-styleable name="RecycleListView">
3541        <!-- Bottom padding to use when no buttons are present. -->
3542        <attr name="paddingBottomNoButtons" format="dimension" />
3543        <!-- Top padding to use when no title is present. -->
3544        <attr name="paddingTopNoTitle" format="dimension" />
3545    </declare-styleable>
3546    <declare-styleable name="AbsSpinner">
3547        <!-- Reference to an array resource that will populate the Spinner.  For static content,
3548             this is simpler than populating the Spinner programmatically. -->
3549        <attr name="entries" />
3550    </declare-styleable>
3551    <declare-styleable name="AnalogClock">
3552        <attr name="dial" format="reference"/>
3553        <attr name="hand_hour" format="reference"/>
3554        <attr name="hand_minute" format="reference"/>
3555    </declare-styleable>
3556    <declare-styleable name="Button">
3557    </declare-styleable>
3558    <declare-styleable name="Chronometer">
3559        <!-- Format string: if specified, the Chronometer will display this
3560             string, with the first "%s" replaced by the current timer value
3561             in "MM:SS" or "H:MM:SS" form.
3562             If no format string is specified, the Chronometer will simply display
3563             "MM:SS" or "H:MM:SS". -->
3564        <attr name="format" format="string" localization="suggested" />
3565        <!-- Specifies whether this Chronometer counts down or counts up from the base.
3566              If not specified this is false and the Chronometer counts up. -->
3567        <attr name="countDown" format="boolean" />
3568    </declare-styleable>
3569    <declare-styleable name="CompoundButton">
3570        <!-- Indicates the initial checked state of this button. -->
3571        <attr name="checked" format="boolean" />
3572        <!-- Drawable used for the button graphic (e.g. checkbox, radio button, etc). -->
3573        <attr name="button" format="reference" />
3574        <!-- Tint to apply to the button graphic. -->
3575        <attr name="buttonTint" format="color" />
3576        <!-- Blending mode used to apply the button graphic tint. -->
3577        <attr name="buttonTintMode">
3578            <!-- The tint is drawn on top of the drawable.
3579                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
3580            <enum name="src_over" value="3" />
3581            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
3582                 color channels are thrown out. [Sa * Da, Sc * Da] -->
3583            <enum name="src_in" value="5" />
3584            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
3585                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
3586            <enum name="src_atop" value="9" />
3587            <!-- Multiplies the color and alpha channels of the drawable with those of
3588                 the tint. [Sa * Da, Sc * Dc] -->
3589            <enum name="multiply" value="14" />
3590            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
3591            <enum name="screen" value="15" />
3592            <!-- Combines the tint and drawable color and alpha channels, clamping the
3593                 result to valid color values. Saturate(S + D) -->
3594            <enum name="add" value="16" />
3595        </attr>
3596    </declare-styleable>
3597    <declare-styleable name="CheckedTextView">
3598        <!-- Indicates the initial checked state of this text. -->
3599        <attr name="checked" />
3600        <!-- Drawable used for the check mark graphic. -->
3601        <attr name="checkMark" format="reference"/>
3602        <!-- Tint to apply to the check mark. -->
3603        <attr name="checkMarkTint" format="color" />
3604        <!-- Blending mode used to apply the check mark tint. -->
3605        <attr name="checkMarkTintMode">
3606            <!-- The tint is drawn on top of the drawable.
3607                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
3608            <enum name="src_over" value="3" />
3609            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
3610                 color channels are thrown out. [Sa * Da, Sc * Da] -->
3611            <enum name="src_in" value="5" />
3612            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
3613                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
3614            <enum name="src_atop" value="9" />
3615            <!-- Multiplies the color and alpha channels of the drawable with those of
3616                 the tint. [Sa * Da, Sc * Dc] -->
3617            <enum name="multiply" value="14" />
3618            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
3619            <enum name="screen" value="15" />
3620            <!-- Combines the tint and drawable color and alpha channels, clamping the
3621                 result to valid color values. Saturate(S + D) -->
3622            <enum name="add" value="16" />
3623        </attr>
3624        <!-- Gravity for aligning a CheckedTextView's checkmark to one side or the other. -->
3625        <attr name="checkMarkGravity">
3626            <!-- Push object to the left of its container, not changing its size. -->
3627            <flag name="left" value="0x03" />
3628            <!-- Push object to the right of its container, not changing its size. -->
3629            <flag name="right" value="0x05" />
3630            <!-- Push object to the beginning of its container, not changing its size. -->
3631            <flag name="start" value="0x00800003" />
3632            <!-- Push object to the end of its container, not changing its size. -->
3633            <flag name="end" value="0x00800005" />
3634        </attr>
3635    </declare-styleable>
3636    <declare-styleable name="EditText">
3637    </declare-styleable>
3638    <declare-styleable name="FastScroll">
3639        <!-- Drawable used for the scroll bar thumb. -->
3640        <attr name="thumbDrawable" format="reference" />
3641        <!-- Minimum width of the thumb. -->
3642        <attr name="thumbMinWidth" format="dimension" />
3643        <!-- Minimum height of the thumb. -->
3644        <attr name="thumbMinHeight" format="dimension" />
3645        <!-- Drawable used for the scroll bar track. -->
3646        <attr name="trackDrawable" format="reference" />
3647        <!-- Drawable used for the section header preview when right-aligned. -->
3648        <attr name="backgroundRight" format="reference" />
3649        <!-- Drawable used for the section header preview when left-aligned. -->
3650        <attr name="backgroundLeft" format="reference" />
3651        <!-- Position of section header preview. -->
3652        <attr name="position">
3653            <!-- Floating at the top of the content. -->
3654            <enum name="floating" value="0" />
3655            <!-- Pinned to the thumb, vertically centered with the middle of the thumb. -->
3656            <enum name="atThumb" value="1" />
3657            <!-- Pinned to the thumb, vertically centered with the top edge of the thumb. -->
3658            <enum name="aboveThumb" value="2" />
3659        </attr>
3660        <attr name="textAppearance" />
3661        <attr name="textColor" />
3662        <attr name="textSize" />
3663        <!-- Minimum width of the section header preview. -->
3664        <attr name="minWidth" />
3665        <!-- Minimum height of the section header preview. -->
3666        <attr name="minHeight" />
3667        <!-- Padding for the section header preview. -->
3668        <attr name="padding" />
3669        <!-- Position of thumb in relation to the track. -->
3670        <attr name="thumbPosition">
3671            <!-- The thumb's midpoint is anchored to the track. At its
3672                 extremes, the thumb will extend half-way outside the
3673                 track. -->
3674            <enum name="midpoint" value="0" />
3675            <!-- The thumb is entirely inside the track. At its extremes,
3676                 the thumb will be contained entirely within the track. -->
3677            <enum name="inside" value="1" />
3678        </attr>
3679    </declare-styleable>
3680    <declare-styleable name="FrameLayout">
3681        <!-- Determines whether to measure all children or just those in
3682             the VISIBLE or INVISIBLE state when measuring. Defaults to false. -->
3683        <attr name="measureAllChildren" format="boolean" />
3684    </declare-styleable>
3685    <declare-styleable name="ExpandableListView">
3686        <!-- Indicator shown beside the group View. This can be a stateful Drawable. -->
3687        <attr name="groupIndicator" format="reference" />
3688        <!-- Indicator shown beside the child View. This can be a stateful Drawable. -->
3689        <attr name="childIndicator" format="reference" />
3690        <!-- The left bound for an item's indicator. To specify a left bound specific to children,
3691             use childIndicatorLeft. -->
3692        <attr name="indicatorLeft" format="dimension" />
3693        <!-- The right bound for an item's indicator. To specify a right bound specific to children,
3694             use childIndicatorRight. -->
3695        <attr name="indicatorRight" format="dimension" />
3696        <!-- The left bound for a child's indicator. -->
3697        <attr name="childIndicatorLeft" format="dimension" />
3698        <!-- The right bound for a child's indicator. -->
3699        <attr name="childIndicatorRight" format="dimension" />
3700        <!-- Drawable or color that is used as a divider for children. (It will drawn
3701             below and above child items.) The height of this will be the same as
3702             the height of the normal list item divider. -->
3703        <attr name="childDivider" format="reference|color" />
3704        <!-- The start bound for an item's indicator. To specify a start bound specific to children,
3705             use childIndicatorStart. -->
3706        <attr name="indicatorStart" format="dimension" />
3707        <!-- The end bound for an item's indicator. To specify a right bound specific to children,
3708             use childIndicatorEnd. -->
3709        <attr name="indicatorEnd" format="dimension" />
3710        <!-- The start bound for a child's indicator. -->
3711        <attr name="childIndicatorStart" format="dimension" />
3712        <!-- The end bound for a child's indicator. -->
3713        <attr name="childIndicatorEnd" format="dimension" />
3714    </declare-styleable>
3715    <declare-styleable name="Gallery">
3716        <attr name="gravity" />
3717        <!-- Sets how long a transition animation should run (in milliseconds)
3718             when layout has changed.  Only relevant if animation is turned on. -->
3719        <attr name="animationDuration" format="integer" min="0" />
3720        <attr name="spacing" format="dimension" />
3721        <!-- Sets the alpha on the items that are not selected. -->
3722        <attr name="unselectedAlpha" format="float" />
3723    </declare-styleable>
3724    <declare-styleable name="GridView">
3725        <!-- Defines the default horizontal spacing between columns. -->
3726        <attr name="horizontalSpacing" format="dimension" />
3727        <!-- Defines the default vertical spacing between rows. -->
3728        <attr name="verticalSpacing" format="dimension" />
3729        <!-- Defines how columns should stretch to fill the available empty space, if any. -->
3730        <attr name="stretchMode">
3731            <!-- Stretching is disabled. -->
3732            <enum name="none" value="0"/>
3733            <!-- The spacing between each column is stretched. -->
3734            <enum name="spacingWidth" value="1" />
3735            <!-- Each column is stretched equally. -->
3736            <enum name="columnWidth" value="2" />
3737            <!-- The spacing between each column is uniformly stretched.. -->
3738            <enum name="spacingWidthUniform" value="3" />
3739        </attr>
3740        <!-- Specifies the fixed width for each column. -->
3741        <attr name="columnWidth" format="dimension" />
3742        <!-- Defines how many columns to show. -->
3743        <attr name="numColumns" format="integer" min="0">
3744            <!-- Display as many columns as possible to fill the available space. -->
3745            <enum name="auto_fit" value="-1" />
3746        </attr>
3747        <!-- Specifies the gravity within each cell. -->
3748        <attr name="gravity" />
3749    </declare-styleable>
3750    <declare-styleable name="ImageSwitcher">
3751    </declare-styleable>
3752    <declare-styleable name="ImageView">
3753        <!-- Sets a drawable as the content of this ImageView. -->
3754        <attr name="src" format="reference|color" />
3755        <!-- Controls how the image should be resized or moved to match the size
3756             of this ImageView.  See {@link android.widget.ImageView.ScaleType} -->
3757        <attr name="scaleType">
3758            <!-- Scale using the image matrix when drawing. See
3759                 {@link android.widget.ImageView#setImageMatrix(Matrix)}. -->
3760            <enum name="matrix" value="0" />
3761            <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}. -->
3762            <enum name="fitXY" value="1" />
3763            <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}. -->
3764            <enum name="fitStart" value="2" />
3765            <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}. -->
3766            <enum name="fitCenter" value="3" />
3767            <!-- Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}. -->
3768            <enum name="fitEnd" value="4" />
3769            <!-- Center the image in the view, but perform no scaling. -->
3770            <enum name="center" value="5" />
3771            <!-- Scale the image uniformly (maintain the image's aspect ratio) so both dimensions
3772                 (width and height) of the image will be equal to or larger than the corresponding
3773                 dimension of the view (minus padding). The image is then centered in the view. -->
3774            <enum name="centerCrop" value="6" />
3775            <!-- Scale the image uniformly (maintain the image's aspect ratio) so that both
3776                 dimensions (width and height) of the image will be equal to or less than the
3777                 corresponding dimension of the view (minus padding). The image is then centered in
3778                 the view. -->
3779            <enum name="centerInside" value="7" />
3780        </attr>
3781        <!-- Set this to true if you want the ImageView to adjust its bounds
3782             to preserve the aspect ratio of its drawable. -->
3783        <attr name="adjustViewBounds" format="boolean" />
3784        <!-- An optional argument to supply a maximum width for this view.
3785             See {see android.widget.ImageView#setMaxWidth} for details. -->
3786        <attr name="maxWidth" format="dimension" />
3787        <!-- An optional argument to supply a maximum height for this view.
3788             See {see android.widget.ImageView#setMaxHeight} for details. -->
3789        <attr name="maxHeight" format="dimension" />
3790        <!-- Set a tinting color for the image. By default, the tint will blend using SRC_ATOP mode. -->
3791        <attr name="tint" format="color" />
3792        <!-- If true, the image view will be baseline aligned with based on its
3793             bottom edge. -->
3794        <attr name="baselineAlignBottom" format="boolean" />
3795         <!-- If true, the image will be cropped to fit within its padding. -->
3796        <attr name="cropToPadding" format="boolean" />
3797        <!-- The offset of the baseline within this view. See {see android.view.View#getBaseline}
3798             for details -->
3799        <attr name="baseline" format="dimension" />
3800        <!-- @hide The alpha value (0-255) set on the ImageView's drawable. Equivalent
3801             to calling ImageView.setAlpha(int), not the same as View.setAlpha(float). -->
3802        <attr name="drawableAlpha" format="integer" />
3803        <!-- Blending mode used to apply the image tint. -->
3804        <attr name="tintMode" />
3805    </declare-styleable>
3806    <declare-styleable name="ToggleButton">
3807        <!-- The text for the button when it is checked. -->
3808        <attr name="textOn" format="string" />
3809        <!-- The text for the button when it is not checked. -->
3810        <attr name="textOff" format="string" />
3811        <!-- The alpha to apply to the indicator when disabled. -->
3812        <attr name="disabledAlpha" />
3813    </declare-styleable>
3814    <declare-styleable name="RelativeLayout">
3815        <attr name="gravity" />
3816        <!-- Indicates what view should not be affected by gravity. -->
3817        <attr name="ignoreGravity" format="reference" />
3818    </declare-styleable>
3819    <declare-styleable name="LinearLayout">
3820        <!-- Should the layout be a column or a row?  Use "horizontal"
3821             for a row, "vertical" for a column.  The default is
3822             horizontal. -->
3823        <attr name="orientation" />
3824        <attr name="gravity" />
3825        <!-- When set to false, prevents the layout from aligning its children's
3826             baselines. This attribute is particularly useful when the children
3827             use different values for gravity. The default value is true. -->
3828        <attr name="baselineAligned" format="boolean" />
3829        <!-- When a linear layout is part of another layout that is baseline
3830          aligned, it can specify which of its children to baseline align to
3831          (that is, which child TextView).-->
3832        <attr name="baselineAlignedChildIndex" format="integer" min="0"/>
3833        <!-- Defines the maximum weight sum. If unspecified, the sum is computed
3834             by adding the layout_weight of all of the children. This can be
3835             used for instance to give a single child 50% of the total available
3836             space by giving it a layout_weight of 0.5 and setting the weightSum
3837             to 1.0. -->
3838        <attr name="weightSum" format="float" />
3839        <!-- When set to true, all children with a weight will be considered having
3840             the minimum size of the largest child. If false, all children are
3841             measured normally. -->
3842        <attr name="measureWithLargestChild" format="boolean" />
3843        <!-- Drawable to use as a vertical divider between buttons. -->
3844        <attr name="divider" />
3845        <!-- Setting for which dividers to show. -->
3846        <attr name="showDividers">
3847            <flag name="none" value="0" />
3848            <flag name="beginning" value="1" />
3849            <flag name="middle" value="2" />
3850            <flag name="end" value="4" />
3851        </attr>
3852        <!-- Size of padding on either end of a divider. -->
3853        <attr name="dividerPadding" format="dimension" />
3854    </declare-styleable>
3855    <declare-styleable name="GridLayout">
3856        <!-- The orientation property is not used during layout. It is only used to
3857        allocate row and column parameters when they are not specified by its children's
3858        layout paramters. GridLayout works like LinearLayout in this case;
3859        putting all the components either in a single row or in a single column -
3860        depending on the value of this flag. In the horizontal case, a columnCount
3861        property may be additionally supplied to force new rows to be created when a
3862        row is full. The rowCount attribute may be used similarly in the vertical case.
3863        The default is horizontal. -->
3864        <attr name="orientation" />
3865        <!-- The maxmimum number of rows to create when automatically positioning children. -->
3866        <attr name="rowCount" format="integer" />
3867        <!-- The maxmimum number of columns to create when automatically positioning children. -->
3868        <attr name="columnCount" format="integer" />
3869        <!-- When set to true, tells GridLayout to use default margins when none are specified
3870        in a view's layout parameters.
3871        The default value is false.
3872        See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}.-->
3873        <attr name="useDefaultMargins" format="boolean" />
3874        <!-- When set to alignMargins, causes alignment to take place between the outer
3875        boundary of a view, as defined by its margins. When set to alignBounds,
3876        causes alignment to take place between the edges of the view.
3877        The default is alignMargins.
3878        See {@link android.widget.GridLayout#setAlignmentMode(int)}.-->
3879        <attr name="alignmentMode" />
3880        <!-- When set to true, forces row boundaries to appear in the same order
3881        as row indices.
3882        The default is true.
3883        See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}.-->
3884        <attr name="rowOrderPreserved" format="boolean" />
3885        <!-- When set to true, forces column boundaries to appear in the same order
3886        as column indices.
3887        The default is true.
3888        See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}.-->
3889        <attr name="columnOrderPreserved" format="boolean" />
3890    </declare-styleable>
3891    <declare-styleable name="ListView">
3892        <!-- Reference to an array resource that will populate the ListView.  For static content,
3893             this is simpler than populating the ListView programmatically. -->
3894        <attr name="entries" />
3895        <!-- Drawable or color to draw between list items. -->
3896        <attr name="divider" format="reference|color" />
3897        <!-- Height of the divider. Will use the intrinsic height of the divider if this
3898             is not specified. -->
3899        <attr name="dividerHeight" format="dimension" />
3900        <!-- When set to false, the ListView will not draw the divider after each header view.
3901             The default value is true. -->
3902        <attr name="headerDividersEnabled" format="boolean" />
3903        <!-- When set to false, the ListView will not draw the divider before each footer view.
3904             The default value is true. -->
3905        <attr name="footerDividersEnabled" format="boolean" />
3906        <!-- Drawable to draw above list content. -->
3907        <attr name="overScrollHeader" format="reference|color" />
3908        <!-- Drawable to draw below list content. -->
3909        <attr name="overScrollFooter" format="reference|color" />
3910    </declare-styleable>
3911    <declare-styleable name="PreferenceFrameLayout">
3912        <!-- Padding to use at the top of the prefs content. -->
3913        <attr name="borderTop" format="dimension" />
3914        <!-- Padding to use at the bottom of the prefs content. -->
3915        <attr name="borderBottom" format="dimension" />
3916        <!-- Padding to use at the left of the prefs content. -->
3917        <attr name="borderLeft" format="dimension" />
3918        <!-- Padding to use at the right of the prefs content. -->
3919        <attr name="borderRight" format="dimension" />
3920    </declare-styleable>
3921    <declare-styleable name="PreferenceFrameLayout_Layout">
3922        <!-- Padding to use at the top of the prefs content. -->
3923        <attr name="layout_removeBorders" format="boolean" />
3924    </declare-styleable>
3925    <declare-styleable name="MenuView">
3926        <!-- Default appearance of menu item text. -->
3927        <attr name="itemTextAppearance" format="reference" />
3928        <!-- Default horizontal divider between rows of menu items. -->
3929        <attr name="horizontalDivider" format="reference" />
3930        <!-- Default vertical divider between menu items. -->
3931        <attr name="verticalDivider" format="reference" />
3932        <!-- Default background for the menu header. -->
3933        <attr name="headerBackground" format="color|reference" />
3934        <!-- Default background for each menu item. -->
3935        <attr name="itemBackground" format="color|reference" />
3936        <!-- Default animations for the menu. -->
3937        <attr name="windowAnimationStyle" />
3938        <!-- Default disabled icon alpha for each menu item that shows an icon. -->
3939        <attr name="itemIconDisabledAlpha" format="float" />
3940        <!-- Whether space should be reserved in layout when an icon is missing. -->
3941        <attr name="preserveIconSpacing" format="boolean" />
3942        <!-- Drawable for the arrow icon indicating a particular item is a submenu. -->
3943        <attr name="subMenuArrow" format="reference" />
3944    </declare-styleable>
3945    <declare-styleable name="IconMenuView">
3946        <!-- Defines the height of each row. -->
3947        <attr name="rowHeight" format="dimension" />
3948        <!-- Defines the maximum number of rows displayed. -->
3949        <attr name="maxRows" format="integer" />
3950        <!-- Defines the maximum number of items per row. -->
3951        <attr name="maxItemsPerRow" format="integer" />
3952        <!-- Defines the maximum number of items to show. -->
3953        <attr name="maxItems" format="integer" />
3954        <!-- 'More' icon. -->
3955        <attr name="moreIcon" format="reference" />
3956    </declare-styleable>
3957
3958    <declare-styleable name="ProgressBar">
3959        <!-- Defines the maximum value the progress can take. -->
3960        <attr name="max" format="integer" />
3961        <!-- Defines the default progress value, between 0 and max. -->
3962        <attr name="progress" format="integer" />
3963        <!-- Defines the secondary progress value, between 0 and max. This progress is drawn between
3964             the primary progress and the background.  It can be ideal for media scenarios such as
3965             showing the buffering progress while the default progress shows the play progress. -->
3966        <attr name="secondaryProgress" format="integer" />
3967        <!-- Allows to enable the indeterminate mode. In this mode the progress
3968         bar plays an infinite looping animation. -->
3969        <attr name="indeterminate" format="boolean" />
3970        <!-- Restricts to ONLY indeterminate mode (state-keeping progress mode will not work). -->
3971        <attr name="indeterminateOnly" format="boolean" />
3972        <!-- Drawable used for the indeterminate mode. -->
3973        <attr name="indeterminateDrawable" format="reference" />
3974        <!-- Drawable used for the progress mode. -->
3975        <attr name="progressDrawable" format="reference" />
3976        <!-- Duration of the indeterminate animation. -->
3977        <attr name="indeterminateDuration" format="integer" min="1" />
3978        <!-- Defines how the indeterminate mode should behave when the progress
3979        reaches max. -->
3980        <attr name="indeterminateBehavior">
3981            <!-- Progress starts over from 0. -->
3982            <enum name="repeat" value="1" />
3983            <!-- Progress keeps the current value and goes back to 0. -->
3984            <enum name="cycle" value="2" />
3985        </attr>
3986        <attr name="minWidth" format="dimension" />
3987        <attr name="maxWidth" />
3988        <attr name="minHeight" format="dimension" />
3989        <attr name="maxHeight" />
3990        <attr name="interpolator" format="reference" />
3991        <!-- Timeout between frames of animation in milliseconds
3992             {@deprecated Not used by the framework.} -->
3993        <attr name="animationResolution" format="integer" />
3994        <!-- Defines if the associated drawables need to be mirrored when in RTL mode.
3995             Default is false -->
3996        <attr name="mirrorForRtl" format="boolean" />
3997        <!-- Tint to apply to the progress indicator. -->
3998        <attr name="progressTint" format="color" />
3999        <!-- Blending mode used to apply the progress indicator tint. -->
4000        <attr name="progressTintMode">
4001            <!-- The tint is drawn on top of the drawable.
4002                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4003            <enum name="src_over" value="3" />
4004            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4005                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4006            <enum name="src_in" value="5" />
4007            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4008                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4009            <enum name="src_atop" value="9" />
4010            <!-- Multiplies the color and alpha channels of the drawable with those of
4011                 the tint. [Sa * Da, Sc * Dc] -->
4012            <enum name="multiply" value="14" />
4013            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4014            <enum name="screen" value="15" />
4015            <!-- Combines the tint and drawable color and alpha channels, clamping the
4016                 result to valid color values. Saturate(S + D) -->
4017            <enum name="add" value="16" />
4018        </attr>
4019        <!-- Tint to apply to the progress indicator background. -->
4020        <attr name="progressBackgroundTint" format="color" />
4021        <!-- Blending mode used to apply the progress indicator background tint. -->
4022        <attr name="progressBackgroundTintMode">
4023            <!-- The tint is drawn on top of the drawable.
4024                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4025            <enum name="src_over" value="3" />
4026            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4027                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4028            <enum name="src_in" value="5" />
4029            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4030                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4031            <enum name="src_atop" value="9" />
4032            <!-- Multiplies the color and alpha channels of the drawable with those of
4033                 the tint. [Sa * Da, Sc * Dc] -->
4034            <enum name="multiply" value="14" />
4035            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4036            <enum name="screen" value="15" />
4037            <!-- Combines the tint and drawable color and alpha channels, clamping the
4038                 result to valid color values. Saturate(S + D) -->
4039            <enum name="add" value="16" />
4040        </attr>
4041        <!-- Tint to apply to the secondary progress indicator. -->
4042        <attr name="secondaryProgressTint" format="color" />
4043        <!-- Blending mode used to apply the secondary progress indicator tint. -->
4044        <attr name="secondaryProgressTintMode">
4045            <!-- The tint is drawn on top of the drawable.
4046                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4047            <enum name="src_over" value="3" />
4048            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4049                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4050            <enum name="src_in" value="5" />
4051            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4052                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4053            <enum name="src_atop" value="9" />
4054            <!-- Multiplies the color and alpha channels of the drawable with those of
4055                 the tint. [Sa * Da, Sc * Dc] -->
4056            <enum name="multiply" value="14" />
4057            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4058            <enum name="screen" value="15" />
4059            <!-- Combines the tint and drawable color and alpha channels, clamping the
4060                 result to valid color values. Saturate(S + D) -->
4061            <enum name="add" value="16" />
4062        </attr>
4063        <!-- Tint to apply to the indeterminate progress indicator. -->
4064        <attr name="indeterminateTint" format="color" />
4065        <!-- Blending mode used to apply the indeterminate progress indicator tint. -->
4066        <attr name="indeterminateTintMode">
4067            <!-- The tint is drawn on top of the drawable.
4068                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4069            <enum name="src_over" value="3" />
4070            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4071                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4072            <enum name="src_in" value="5" />
4073            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4074                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4075            <enum name="src_atop" value="9" />
4076            <!-- Multiplies the color and alpha channels of the drawable with those of
4077                 the tint. [Sa * Da, Sc * Dc] -->
4078            <enum name="multiply" value="14" />
4079            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4080            <enum name="screen" value="15" />
4081            <!-- Combines the tint and drawable color and alpha channels, clamping the
4082                 result to valid color values. Saturate(S + D) -->
4083            <enum name="add" value="16" />
4084        </attr>
4085        <!-- Tint to apply to the background. -->
4086        <attr name="backgroundTint" />
4087        <!-- Blending mode used to apply the background tint. -->
4088        <attr name="backgroundTintMode" />
4089    </declare-styleable>
4090
4091    <declare-styleable name="SeekBar">
4092        <!-- Draws the thumb on a seekbar. -->
4093        <attr name="thumb" format="reference" />
4094        <!-- An offset for the thumb that allows it to extend out of the range of the track. -->
4095        <attr name="thumbOffset" format="dimension" />
4096        <!-- Whether to split the track and leave a gap for the thumb drawable. -->
4097        <attr name="splitTrack" format="boolean" />
4098        <!-- Whether to force the track's alpha to ?android:attr/disabledAlpha
4099             when disabled. This is required for Holo and Gingerbread, but
4100             should always be false for Material and  beyond.
4101             @hide Developers shouldn't need to change this. -->
4102        <attr name="useDisabledAlpha" format="boolean" />
4103        <!-- Tint to apply to the thumb drawable. -->
4104        <attr name="thumbTint" format="color" />
4105        <!-- Blending mode used to apply the thumb tint. -->
4106        <attr name="thumbTintMode">
4107            <!-- The tint is drawn on top of the drawable.
4108                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4109            <enum name="src_over" value="3" />
4110            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4111                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4112            <enum name="src_in" value="5" />
4113            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4114                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4115            <enum name="src_atop" value="9" />
4116            <!-- Multiplies the color and alpha channels of the drawable with those of
4117                 the tint. [Sa * Da, Sc * Dc] -->
4118            <enum name="multiply" value="14" />
4119            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4120            <enum name="screen" value="15" />
4121            <!-- Combines the tint and drawable color and alpha channels, clamping the
4122                 result to valid color values. Saturate(S + D) -->
4123            <enum name="add" value="16" />
4124        </attr>
4125        <!-- Drawable displayed at each progress position on a seekbar. -->
4126        <attr name="tickMark" format="reference" />
4127        <!-- Tint to apply to the tick mark drawable. -->
4128        <attr name="tickMarkTint" format="color" />
4129        <!-- Blending mode used to apply the tick mark tint. -->
4130        <attr name="tickMarkTintMode">
4131            <!-- The tint is drawn on top of the drawable.
4132                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4133            <enum name="src_over" value="3" />
4134            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4135                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4136            <enum name="src_in" value="5" />
4137            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4138                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4139            <enum name="src_atop" value="9" />
4140            <!-- Multiplies the color and alpha channels of the drawable with those of
4141                 the tint. [Sa * Da, Sc * Dc] -->
4142            <enum name="multiply" value="14" />
4143            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4144            <enum name="screen" value="15" />
4145            <!-- Combines the tint and drawable color and alpha channels, clamping the
4146                 result to valid color values. Saturate(S + D) -->
4147            <enum name="add" value="16" />
4148        </attr>
4149    </declare-styleable>
4150
4151    <declare-styleable name="StackView">
4152        <!-- Color of the res-out outline. -->
4153        <attr name="resOutColor" format="color" />
4154        <!-- Color of the outline of click feedback. -->
4155        <attr name="clickColor" format="color" />
4156    </declare-styleable>
4157
4158    <declare-styleable name="RatingBar">
4159        <!-- The number of stars (or rating items) to show. -->
4160        <attr name="numStars" format="integer" />
4161        <!-- The rating to set by default. -->
4162        <attr name="rating" format="float" />
4163        <!-- The step size of the rating. -->
4164        <attr name="stepSize" format="float" />
4165        <!-- Whether this rating bar is an indicator (and non-changeable by the user). -->
4166        <attr name="isIndicator" format="boolean" />
4167    </declare-styleable>
4168
4169    <declare-styleable name="RadioGroup">
4170        <!-- The id of the child radio button that should be checked by default
4171             within this radio group. -->
4172        <attr name="checkedButton" format="integer" />
4173        <!-- Should the radio group be a column or a row?  Use "horizontal"
4174             for a row, "vertical" for a column.  The default is
4175             vertical. -->
4176        <attr name="orientation" />
4177    </declare-styleable>
4178    <declare-styleable name="TableLayout">
4179        <!-- The zero-based index of the columns to stretch. The column indices
4180             must be separated by a comma: 1, 2, 5. Illegal and duplicate
4181             indices are ignored. You can stretch all columns by using the
4182             value "*" instead. Note that a column can be marked stretchable
4183             and shrinkable at the same time. -->
4184        <attr name="stretchColumns" format="string" />
4185       <!-- The zero-based index of the columns to shrink. The column indices
4186             must be separated by a comma: 1, 2, 5. Illegal and duplicate
4187             indices are ignored. You can shrink all columns by using the
4188             value "*" instead. Note that a column can be marked stretchable
4189             and shrinkable at the same time. -->
4190        <attr name="shrinkColumns" format="string" />
4191        <!-- The zero-based index of the columns to collapse. The column indices
4192             must be separated by a comma: 1, 2, 5. Illegal and duplicate
4193             indices are ignored. -->
4194        <attr name="collapseColumns" format="string" />
4195    </declare-styleable>
4196    <declare-styleable name="TableRow">
4197
4198    </declare-styleable>
4199    <declare-styleable name="TableRow_Cell">
4200        <!-- The index of the column in which this child should be. -->
4201        <attr name="layout_column" format="integer" />
4202        <!-- Defines how many columns this child should span.  Must be >= 1.-->
4203        <attr name="layout_span" format="integer" />
4204    </declare-styleable>
4205    <declare-styleable name="TabWidget">
4206        <!-- Drawable used to draw the divider between tabs. -->
4207        <attr name="divider" />
4208        <!-- Determines whether the strip under the tab indicators is drawn or not. -->
4209        <attr name="tabStripEnabled" format="boolean" />
4210        <!-- Drawable used to draw the left part of the strip underneath the tabs. -->
4211        <attr name="tabStripLeft" format="reference" />
4212        <!-- Drawable used to draw the right part of the strip underneath the tabs. -->
4213        <attr name="tabStripRight" format="reference" />
4214        <!-- Layout used to organize each tab's content. -->
4215        <attr name="tabLayout" format="reference" />
4216    </declare-styleable>
4217    <declare-styleable name="TextAppearance">
4218        <!-- Text color. -->
4219        <attr name="textColor" />
4220        <!-- Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). -->
4221        <attr name="textSize" />
4222        <!-- Style (bold, italic, bolditalic) for the text. -->
4223        <attr name="textStyle" />
4224        <!-- Typeface (normal, sans, serif, monospace) for the text. -->
4225        <attr name="typeface" />
4226        <!-- Font family (named by string) for the text. -->
4227        <attr name="fontFamily" />
4228        <!-- Color of the text selection highlight. -->
4229        <attr name="textColorHighlight" />
4230        <!-- Color of the hint text. -->
4231        <attr name="textColorHint" />
4232        <!-- Color of the links. -->
4233        <attr name="textColorLink" />
4234        <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
4235        <attr name="textAllCaps" format="boolean" />
4236        <!-- Place a blurred shadow of text underneath the text, drawn with the
4237             specified color. The text shadow produced does not interact with
4238             properties on View that are responsible for real time shadows,
4239             {@link android.R.styleable#View_elevation elevation} and
4240             {@link android.R.styleable#View_translationZ translationZ}. -->
4241        <attr name="shadowColor" format="color" />
4242        <!-- Horizontal offset of the text shadow. -->
4243        <attr name="shadowDx" format="float" />
4244        <!-- Vertical offset of the text shadow. -->
4245        <attr name="shadowDy" format="float" />
4246        <!-- Blur radius of the text shadow. -->
4247        <attr name="shadowRadius" format="float" />
4248        <!-- Elegant text height, especially for less compacted complex script text. -->
4249        <attr name="elegantTextHeight" format="boolean" />
4250        <!-- Text letter-spacing. -->
4251        <attr name="letterSpacing" format="float" />
4252        <!-- Font feature settings. -->
4253        <attr name="fontFeatureSettings" format="string" />
4254    </declare-styleable>
4255    <declare-styleable name="TextClock">
4256        <!-- Specifies the formatting pattern used to show the time and/or date
4257             in 12-hour mode. Please refer to {@link android.text.format.DateFormat}
4258             for a complete description of accepted formatting patterns.
4259             The default pattern is a locale-appropriate equivalent of "h:mm a". -->
4260        <attr name="format12Hour" format="string"/>
4261        <!-- Specifies the formatting pattern used to show the time and/or date
4262             in 24-hour mode. Please refer to {@link android.text.format.DateFormat}
4263             for a complete description of accepted formatting patterns.
4264             The default pattern is a locale-appropriate equivalent of "H:mm". -->
4265        <attr name="format24Hour" format="string"/>
4266        <!-- Specifies the time zone to use. When this attribute is specified, the
4267             TextClock will ignore the time zone of the system. To use the user's
4268             time zone, do not specify this attribute. The default value is the
4269             user's time zone. Please refer to {@link java.util.TimeZone} for more
4270             information about time zone ids. -->
4271        <attr name="timeZone" format="string"/>
4272    </declare-styleable>
4273    <declare-styleable name="TextSwitcher">
4274    </declare-styleable>
4275    <declare-styleable name="TextView">
4276        <!-- Determines the minimum type that getText() will return.
4277             The default is "normal".
4278             Note that EditText and LogTextBox always return Editable,
4279             even if you specify something less powerful here. -->
4280        <attr name="bufferType">
4281            <!-- Can return any CharSequence, possibly a
4282             Spanned one if the source text was Spanned. -->
4283            <enum name="normal" value="0" />
4284            <!-- Can only return Spannable. -->
4285            <enum name="spannable" value="1" />
4286            <!-- Can only return Spannable and Editable. -->
4287            <enum name="editable" value="2" />
4288        </attr>
4289        <!-- Text to display. -->
4290        <attr name="text" format="string" localization="suggested" />
4291        <!-- Hint text to display when the text is empty. -->
4292        <attr name="hint" format="string" />
4293        <!-- Text color. -->
4294        <attr name="textColor" />
4295        <!-- Color of the text selection highlight. -->
4296        <attr name="textColorHighlight" />
4297        <!-- Color of the hint text. -->
4298        <attr name="textColorHint" />
4299        <!-- Base text color, typeface, size, and style. -->
4300        <attr name="textAppearance" />
4301        <!-- Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). -->
4302        <attr name="textSize" />
4303        <!-- Sets the horizontal scaling factor for the text. -->
4304        <attr name="textScaleX" format="float" />
4305        <!-- Typeface (normal, sans, serif, monospace) for the text. -->
4306        <attr name="typeface" />
4307        <!-- Style (bold, italic, bolditalic) for the text. -->
4308        <attr name="textStyle" />
4309        <!-- Font family (named by string) for the text. -->
4310        <attr name="fontFamily" />
4311        <!-- Text color for links. -->
4312        <attr name="textColorLink" />
4313        <!-- Makes the cursor visible (the default) or invisible. -->
4314        <attr name="cursorVisible" format="boolean" />
4315        <!-- Makes the TextView be at most this many lines tall.
4316
4317        When used on an editable text, the <code>inputType</code> attribute's value must be
4318        combined with the <code>textMultiLine</code> flag for the maxLines attribute to apply. -->
4319        <attr name="maxLines" format="integer" min="0" />
4320        <!-- Makes the TextView be at most this many pixels tall. -->
4321        <attr name="maxHeight" />
4322        <!-- Makes the TextView be exactly this many lines tall. -->
4323        <attr name="lines" format="integer" min="0" />
4324        <!-- Makes the TextView be exactly this many pixels tall.
4325             You could get the same effect by specifying this number in the
4326             layout parameters. -->
4327        <attr name="height" format="dimension" />
4328        <!-- Makes the TextView be at least this many lines tall.
4329
4330        When used on an editable text, the <code>inputType</code> attribute's value must be
4331        combined with the <code>textMultiLine</code> flag for the minLines attribute to apply. -->
4332        <attr name="minLines" format="integer" min="0" />
4333        <!-- Makes the TextView be at least this many pixels tall. -->
4334        <attr name="minHeight" />
4335        <!-- Makes the TextView be at most this many ems wide. -->
4336        <attr name="maxEms" format="integer" min="0" />
4337        <!-- Makes the TextView be at most this many pixels wide. -->
4338        <attr name="maxWidth" />
4339        <!-- Makes the TextView be exactly this many ems wide. -->
4340        <attr name="ems" format="integer" min="0" />
4341        <!-- Makes the TextView be exactly this many pixels wide.
4342             You could get the same effect by specifying this number in the
4343             layout parameters. -->
4344        <attr name="width" format="dimension" />
4345        <!-- Makes the TextView be at least this many ems wide. -->
4346        <attr name="minEms" format="integer" min="0" />
4347        <!-- Makes the TextView be at least this many pixels wide. -->
4348        <attr name="minWidth" />
4349        <!-- Specifies how to align the text by the view's x- and/or y-axis
4350             when the text is smaller than the view. -->
4351        <attr name="gravity" />
4352        <!-- Whether the text is allowed to be wider than the view (and
4353             therefore can be scrolled horizontally). -->
4354        <attr name="scrollHorizontally" format="boolean" />
4355        <!-- Whether the characters of the field are displayed as
4356             password dots instead of themselves.
4357             {@deprecated Use inputType instead.} -->
4358        <attr name="password" format="boolean" />
4359        <!-- Constrains the text to a single horizontally scrolling line
4360             instead of letting it wrap onto multiple lines, and advances
4361             focus instead of inserting a newline when you press the
4362             enter key.
4363
4364             The default value is false (multi-line wrapped text mode) for non-editable text, but if
4365             you specify any value for inputType, the default is true (single-line input field mode).
4366
4367             {@deprecated This attribute is deprecated. Use <code>maxLines</code> instead to change
4368             the layout of a static text, and use the <code>textMultiLine</code> flag in the
4369             inputType attribute instead for editable text views (if both singleLine and inputType
4370             are supplied, the inputType flags will override the value of singleLine). } -->
4371        <attr name="singleLine" format="boolean" />
4372        <!-- Specifies whether the widget is enabled. The interpretation of the enabled state varies by subclass.
4373             For example, a non-enabled EditText prevents the user from editing the contained text, and
4374             a non-enabled Button prevents the user from tapping the button.
4375             The appearance of enabled and non-enabled widgets may differ, if the drawables referenced
4376             from evaluating state_enabled differ. -->
4377        <attr name="enabled" format="boolean" />
4378        <!-- If the text is selectable, select it all when the view takes
4379             focus. -->
4380        <attr name="selectAllOnFocus" format="boolean" />
4381        <!-- Leave enough room for ascenders and descenders instead of
4382             using the font ascent and descent strictly.  (Normally true). -->
4383        <attr name="includeFontPadding" format="boolean" />
4384        <!-- Set an input filter to constrain the text length to the
4385             specified number. -->
4386        <attr name="maxLength" format="integer" min="0" />
4387        <!-- Place a blurred shadow of text underneath the text, drawn with the
4388             specified color. The text shadow produced does not interact with
4389             properties on View that are responsible for real time shadows,
4390             {@link android.R.styleable#View_elevation elevation} and
4391             {@link android.R.styleable#View_translationZ translationZ}. -->
4392        <attr name="shadowColor" />
4393        <!-- Horizontal offset of the text shadow. -->
4394        <attr name="shadowDx" />
4395        <!-- Vertical offset of the text shadow. -->
4396        <attr name="shadowDy" />
4397        <!-- Blur radius of the text shadow. -->
4398        <attr name="shadowRadius" />
4399        <attr name="autoLink" />
4400        <!-- If set to false, keeps the movement method from being set
4401             to the link movement method even if autoLink causes links
4402             to be found. -->
4403        <attr name="linksClickable" format="boolean" />
4404        <!-- If set, specifies that this TextView has a numeric input method.
4405             The default is false.
4406             {@deprecated Use inputType instead.} -->
4407        <attr name="numeric">
4408            <!-- Input is numeric. -->
4409            <flag name="integer" value="0x01" />
4410            <!-- Input is numeric, with sign allowed. -->
4411            <flag name="signed" value="0x03" />
4412            <!-- Input is numeric, with decimals allowed. -->
4413            <flag name="decimal" value="0x05" />
4414        </attr>
4415        <!-- If set, specifies that this TextView has a numeric input method
4416             and that these specific characters are the ones that it will
4417             accept.
4418             If this is set, numeric is implied to be true.
4419             The default is false. -->
4420        <attr name="digits" format="string" />
4421        <!-- If set, specifies that this TextView has a phone number input
4422             method. The default is false.
4423             {@deprecated Use inputType instead.} -->
4424        <attr name="phoneNumber" format="boolean" />
4425        <!-- If set, specifies that this TextView should use the specified
4426             input method (specified by fully-qualified class name).
4427             {@deprecated Use inputType instead.} -->
4428        <attr name="inputMethod" format="string" />
4429        <!-- If set, specifies that this TextView has a textual input method
4430             and should automatically capitalize what the user types.
4431             The default is "none".
4432             {@deprecated Use inputType instead.} -->
4433        <attr name="capitalize">
4434            <!-- Don't automatically capitalize anything. -->
4435            <enum name="none" value="0" />
4436            <!-- Capitalize the first word of each sentence. -->
4437            <enum name="sentences" value="1" />
4438            <!-- Capitalize the first letter of every word. -->
4439            <enum name="words" value="2" />
4440            <!-- Capitalize every character. -->
4441            <enum name="characters" value="3" />
4442        </attr>
4443        <!-- If set, specifies that this TextView has a textual input method
4444             and automatically corrects some common spelling errors.
4445             The default is "false".
4446             {@deprecated Use inputType instead.} -->
4447        <attr name="autoText" format="boolean" />
4448        <!-- If set, specifies that this TextView has an input method.
4449             It will be a textual one unless it has otherwise been specified.
4450             For TextView, this is false by default.  For EditText, it is
4451             true by default.
4452             {@deprecated Use inputType instead.} -->
4453        <attr name="editable" format="boolean" />
4454        <!-- If set, the text view will include its current complete text
4455             inside of its frozen icicle in addition to meta-data such as
4456             the current cursor position.  By default this is disabled;
4457             it can be useful when the contents of a text view is not stored
4458             in a persistent place such as a content provider. For
4459             {@link android.widget.EditText} it is always enabled, regardless
4460             of the value of the attribute. -->
4461        <attr name="freezesText" format="boolean" />
4462        <!-- If set, causes words that are longer than the view is wide
4463             to be ellipsized instead of broken in the middle.
4464             You will often also want to set scrollHorizontally or singleLine
4465             as well so that the text as a whole is also constrained to
4466             a single line instead of still allowed to be broken onto
4467             multiple lines. -->
4468        <attr name="ellipsize" />
4469        <!-- The drawable to be drawn above the text. -->
4470        <attr name="drawableTop" format="reference|color" />
4471        <!-- The drawable to be drawn below the text. -->
4472        <attr name="drawableBottom" format="reference|color" />
4473        <!-- The drawable to be drawn to the left of the text. -->
4474        <attr name="drawableLeft" format="reference|color" />
4475        <!-- The drawable to be drawn to the right of the text. -->
4476        <attr name="drawableRight" format="reference|color" />
4477        <!-- The drawable to be drawn to the start of the text. -->
4478        <attr name="drawableStart" format="reference|color" />
4479        <!-- The drawable to be drawn to the end of the text. -->
4480        <attr name="drawableEnd" format="reference|color" />
4481        <!-- The padding between the drawables and the text. -->
4482        <attr name="drawablePadding" format="dimension" />
4483        <!-- Tint to apply to the compound (left, top, etc.) drawables. -->
4484        <attr name="drawableTint" format="color" />
4485        <!-- Blending mode used to apply the compound (left, top, etc.) drawables tint. -->
4486        <attr name="drawableTintMode">
4487            <!-- The tint is drawn on top of the drawable.
4488                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
4489            <enum name="src_over" value="3" />
4490            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
4491                 color channels are thrown out. [Sa * Da, Sc * Da] -->
4492            <enum name="src_in" value="5" />
4493            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
4494                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
4495            <enum name="src_atop" value="9" />
4496            <!-- Multiplies the color and alpha channels of the drawable with those of
4497                 the tint. [Sa * Da, Sc * Dc] -->
4498            <enum name="multiply" value="14" />
4499            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
4500            <enum name="screen" value="15" />
4501            <!-- Combines the tint and drawable color and alpha channels, clamping the
4502                 result to valid color values. Saturate(S + D) -->
4503            <enum name="add" value="16" />
4504        </attr>
4505        <!-- Extra spacing between lines of text. -->
4506        <attr name="lineSpacingExtra" format="dimension" />
4507        <!-- Extra spacing between lines of text, as a multiplier. -->
4508        <attr name="lineSpacingMultiplier" format="float" />
4509        <!-- The number of times to repeat the marquee animation. Only applied if the
4510             TextView has marquee enabled. -->
4511        <attr name="marqueeRepeatLimit" format="integer">
4512            <!-- Indicates that marquee should repeat indefinitely. -->
4513            <enum name="marquee_forever" value="-1" />
4514        </attr>
4515        <attr name="inputType" />
4516        <!-- Whether undo should be allowed for editable text. Defaults to true. -->
4517        <attr name="allowUndo" format="boolean" />
4518        <attr name="imeOptions" />
4519        <!-- An addition content type description to supply to the input
4520             method attached to the text view, which is private to the
4521             implementation of the input method.  This simply fills in
4522             the {@link android.view.inputmethod.EditorInfo#privateImeOptions
4523             EditorInfo.privateImeOptions} field when the input
4524             method is connected. -->
4525        <attr name="privateImeOptions" format="string" />
4526        <!-- Supply a value for
4527             {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel}
4528             used when an input method is connected to the text view. -->
4529        <attr name="imeActionLabel" format="string" />
4530        <!-- Supply a value for
4531             {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId}
4532             used when an input method is connected to the text view. -->
4533        <attr name="imeActionId" format="integer" />
4534        <!-- Reference to an
4535             {@link android.R.styleable#InputExtras &lt;input-extras&gt;}
4536             XML resource containing additional data to
4537             supply to an input method, which is private to the implementation
4538             of the input method.  This simply fills in
4539             the {@link android.view.inputmethod.EditorInfo#extras
4540             EditorInfo.extras} field when the input
4541             method is connected. -->
4542        <attr name="editorExtras" format="reference" />
4543
4544        <!-- Reference to a drawable that will be used to display a text selection
4545             anchor on the left side of a selection region. -->
4546        <attr name="textSelectHandleLeft" />
4547        <!-- Reference to a drawable that will be used to display a text selection
4548             anchor on the right side of a selection region. -->
4549        <attr name="textSelectHandleRight" />
4550        <!-- Reference to a drawable that will be used to display a text selection
4551             anchor for positioning the cursor within text. -->
4552        <attr name="textSelectHandle" />
4553        <!-- The layout of the view that is displayed on top of the cursor to paste inside a
4554             TextEdit field. -->
4555        <attr name="textEditPasteWindowLayout" />
4556        <!-- Variation of textEditPasteWindowLayout displayed when the clipboard is empty. -->
4557        <attr name="textEditNoPasteWindowLayout" />
4558        <!-- Used instead of textEditPasteWindowLayout when the window is moved on the side of the
4559             insertion cursor because it would be clipped if it were positioned on top. -->
4560        <attr name="textEditSidePasteWindowLayout" />
4561        <!-- Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. -->
4562        <attr name="textEditSideNoPasteWindowLayout" />
4563
4564        <!-- Layout of the TextView item that will populate the suggestion popup window. -->
4565        <attr name="textEditSuggestionItemLayout" />
4566        <!-- Layout of the container of the suggestion popup window. -->
4567        <attr name="textEditSuggestionContainerLayout" />
4568        <!-- Style of the highlighted string in the suggestion popup window. -->
4569        <attr name="textEditSuggestionHighlightStyle" />
4570
4571
4572        <!-- Reference to a drawable that will be drawn under the insertion cursor. -->
4573        <attr name="textCursorDrawable" />
4574
4575        <!-- Indicates that the content of a non-editable text can be selected. -->
4576        <attr name="textIsSelectable" />
4577        <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
4578        <attr name="textAllCaps" />
4579        <!-- Elegant text height, especially for less compacted complex script text. -->
4580        <attr name="elegantTextHeight" />
4581        <!-- Text letter-spacing. -->
4582        <attr name="letterSpacing" />
4583        <!-- Font feature settings. -->
4584        <attr name="fontFeatureSettings" />
4585        <!-- Break strategy (control over paragraph layout). -->
4586        <attr name="breakStrategy">
4587            <!-- Line breaking uses simple strategy. -->
4588            <enum name="simple" value="0" />
4589            <!-- Line breaking uses high-quality strategy, including hyphenation. -->
4590            <enum name="high_quality" value="1" />
4591            <!-- Line breaking strategy balances line lengths. -->
4592            <enum name="balanced" value="2" />
4593        </attr>
4594        <!-- Frequency of automatic hyphenation. -->
4595        <attr name="hyphenationFrequency">
4596            <!-- No hyphenation. -->
4597            <enum name="none" value="0" />
4598            <!-- Less frequent hyphenation, useful for informal use cases, such
4599            as chat messages. -->
4600            <enum name="normal" value="1" />
4601            <!-- Standard amount of hyphenation, useful for running text and for
4602            screens with limited space for text. -->
4603            <enum name="full" value="2" />
4604        </attr>
4605    </declare-styleable>
4606    <declare-styleable name="TextViewAppearance">
4607        <!-- Base text color, typeface, size, and style. -->
4608        <attr name="textAppearance" />
4609    </declare-styleable>
4610    <declare-styleable name="SelectionModeDrawables">
4611        <attr name="actionModeSelectAllDrawable" />
4612        <attr name="actionModeCutDrawable" />
4613        <attr name="actionModeCopyDrawable" />
4614        <attr name="actionModePasteDrawable" />
4615    </declare-styleable>
4616    <declare-styleable name="SuggestionSpan">
4617        <attr name="textUnderlineColor" />
4618        <attr name="textUnderlineThickness" />
4619    </declare-styleable>
4620    <!-- An <code>input-extras</code> is a container for extra data to supply to
4621         an input method.  Contains
4622         one more more {@link #Extra <extra>} tags.  -->
4623    <declare-styleable name="InputExtras">
4624    </declare-styleable>
4625    <declare-styleable name="AutoCompleteTextView">
4626        <!-- Defines the hint displayed in the drop down menu. -->
4627        <attr name="completionHint" format="string" />
4628        <!-- Defines the hint view displayed in the drop down menu. -->
4629        <attr name="completionHintView" format="reference" />
4630        <!-- Defines the number of characters that the user must type before
4631         completion suggestions are displayed in a drop down menu. -->
4632        <attr name="completionThreshold" format="integer" min="1" />
4633        <!-- Selector in a drop down list. -->
4634        <attr name="dropDownSelector" format="reference|color" />
4635        <!-- View to anchor the auto-complete dropdown to. If not specified, the text view itself
4636             is used. -->
4637        <attr name="dropDownAnchor" format="reference" />
4638        <!-- Specifies the basic width of the dropdown. Its value may
4639             be a dimension (such as "12dip") for a constant width,
4640             fill_parent or match_parent to match the width of the
4641             screen, or wrap_content to match the width of
4642             the anchored view. -->
4643        <attr name="dropDownWidth" format="dimension">
4644            <!-- The dropdown should fill the width of the screen.
4645                 This constant is deprecated starting from API Level 8 and
4646                 is replaced by {@code match_parent}. -->
4647            <enum name="fill_parent" value="-1" />
4648            <!-- The dropdown should fit the width of the screen.
4649                 Introduced in API Level 8. -->
4650            <enum name="match_parent" value="-1" />
4651            <!-- The dropdown should fit the width of its anchor. -->
4652            <enum name="wrap_content" value="-2" />
4653        </attr>
4654        <!-- Specifies the basic height of the dropdown. Its value may
4655             be a dimension (such as "12dip") for a constant height,
4656             fill_parent or match_parent to fill the height of the
4657             screen, or wrap_content to match the height of
4658             the content of the drop down. -->
4659        <attr name="dropDownHeight" format="dimension">
4660            <!-- The dropdown should fit the height of the screen.
4661                 This constant is deprecated starting from API Level 8 and
4662                 is replaced by {@code match_parent}. -->
4663            <enum name="fill_parent" value="-1" />
4664            <!-- The dropdown should fit the height of the screen.
4665                 Introduced in API Level 8. -->
4666            <enum name="match_parent" value="-1" />
4667            <!-- The dropdown should fit the height of the content. -->
4668            <enum name="wrap_content" value="-2" />
4669        </attr>
4670        <attr name="inputType" />
4671        <!-- Theme to use for the completion popup window. -->
4672        <attr name="popupTheme" />
4673    </declare-styleable>
4674    <declare-styleable name="PopupWindow">
4675        <!-- The background to use for the popup window. -->
4676        <attr name="popupBackground" format="reference|color" />
4677        <!-- Window elevation to use for the popup window. -->
4678        <attr name="popupElevation" format="dimension" />
4679        <!-- The animation style to use for the popup window. -->
4680        <attr name="popupAnimationStyle" format="reference" />
4681        <!-- Whether the popup window should overlap its anchor view. -->
4682        <attr name="overlapAnchor" format="boolean" />
4683        <!-- Transition used to move views into the popup window. -->
4684        <attr name="popupEnterTransition" format="reference" />
4685        <!-- Transition used to move views out of the popup window. -->
4686        <attr name="popupExitTransition" format="reference" />
4687    </declare-styleable>
4688    <declare-styleable name="ListPopupWindow">
4689        <!-- Amount of pixels by which the drop down should be offset vertically. -->
4690        <attr name="dropDownVerticalOffset" format="dimension" />
4691        <!-- Amount of pixels by which the drop down should be offset horizontally. -->
4692        <attr name="dropDownHorizontalOffset" format="dimension" />
4693    </declare-styleable>
4694    <declare-styleable name="ViewAnimator">
4695        <!-- Identifier for the animation to use when a view is shown. -->
4696        <attr name="inAnimation" format="reference" />
4697        <!-- Identifier for the animation to use when a view is hidden. -->
4698        <attr name="outAnimation" format="reference" />
4699        <!-- Defines whether to animate the current View when the ViewAnimation
4700             is first displayed. -->
4701        <attr name="animateFirstView" format="boolean" />
4702    </declare-styleable>
4703    <declare-styleable name="ViewFlipper">
4704        <attr name="flipInterval" format="integer" min="0" />
4705        <!-- When true, automatically start animating -->
4706        <attr name="autoStart" format="boolean" />
4707    </declare-styleable>
4708    <declare-styleable name="AdapterViewAnimator">
4709        <!-- Identifier for the animation to use when a view is shown. -->
4710        <attr name="inAnimation" />
4711        <!-- Identifier for the animation to use when a view is hidden. -->
4712        <attr name="outAnimation" />
4713        <!--Defines whether the animator loops to the first view once it
4714        has reached the end of the list. -->
4715        <attr name="loopViews" format="boolean" />
4716        <!-- Defines whether to animate the current View when the ViewAnimation
4717        is first displayed. -->
4718        <attr name="animateFirstView" />
4719    </declare-styleable>
4720    <declare-styleable name="AdapterViewFlipper">
4721        <attr name="flipInterval" />
4722        <!-- When true, automatically start animating -->
4723        <attr name="autoStart" />
4724    </declare-styleable>
4725    <declare-styleable name="ViewSwitcher">
4726    </declare-styleable>
4727    <declare-styleable name="ScrollView">
4728        <!-- Defines whether the scrollview should stretch its content to fill the viewport. -->
4729        <attr name="fillViewport" format="boolean" />
4730    </declare-styleable>
4731    <declare-styleable name="HorizontalScrollView">
4732        <!-- Defines whether the scrollview should stretch its content to fill the viewport. -->
4733        <attr name="fillViewport" />
4734    </declare-styleable>
4735    <declare-styleable name="Spinner">
4736        <!-- The prompt to display when the spinner's dialog is shown. -->
4737        <attr name="prompt" format="reference" />
4738        <!-- Display mode for spinner options. -->
4739        <attr name="spinnerMode" format="enum">
4740            <!-- Spinner options will be presented to the user as a dialog window. -->
4741            <enum name="dialog" value="0" />
4742            <!-- Spinner options will be presented to the user as an inline dropdown
4743                 anchored to the spinner widget itself. -->
4744            <enum name="dropdown" value="1" />
4745        </attr>
4746        <!-- List selector to use for spinnerMode="dropdown" display. -->
4747        <attr name="dropDownSelector" />
4748        <!-- Theme to use for the drop-down or dialog popup window. -->
4749        <attr name="popupTheme" />
4750        <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
4751        <attr name="popupBackground" />
4752        <!-- Window elevation to use for the dropdown in spinnerMode="dropdown". -->
4753        <attr name="popupElevation" />
4754        <!-- Width of the dropdown in spinnerMode="dropdown". -->
4755        <attr name="dropDownWidth" />
4756        <!-- Reference to a layout to use for displaying a prompt in the dropdown for
4757             spinnerMode="dropdown". This layout must contain a TextView with the id
4758             {@code @android:id/text1} to be populated with the prompt text. -->
4759        <attr name="popupPromptView" format="reference" />
4760        <!-- Gravity setting for positioning the currently selected item. -->
4761        <attr name="gravity" />
4762        <!-- Whether this spinner should mark child views as enabled/disabled when
4763             the spinner itself is enabled/disabled. -->
4764        <attr name="disableChildrenWhenDisabled" format="boolean" />
4765    </declare-styleable>
4766
4767    <declare-styleable name="DatePicker">
4768        <!-- The first day of week according to {@link java.util.Calendar}. -->
4769        <attr name="firstDayOfWeek" />
4770        <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
4771        <attr name="minDate" format="string" />
4772        <!-- The maximal date shown by this calendar view in mm/dd/yyyy format. -->
4773        <attr name="maxDate" format="string" />
4774
4775        <!-- Whether the spinners are shown. Only valid for "spinner" mode. -->
4776        <attr name="spinnersShown" format="boolean" />
4777        <!-- Whether the calendar view is shown. Only valid for "spinner" mode. -->
4778        <attr name="calendarViewShown" format="boolean" />
4779
4780        <!-- @hide The layout of the date picker. -->
4781        <attr name="internalLayout" format="reference"  />
4782        <!-- @hide The layout of the legacy DatePicker. -->
4783        <attr name="legacyLayout" />
4784
4785        <!-- The text color for the selected date header text, ex. "2014" or
4786             "Tue, Mar 18". This should be a color state list where the
4787             activated state will be used when the year picker or day picker is
4788             active.-->
4789        <attr name="headerTextColor" format="color" />
4790        <!-- The background for the selected date header. -->
4791        <attr name="headerBackground" />
4792
4793        <!-- The list year's text appearance in the list.
4794             {@deprecated Use yearListTextColor. }-->
4795        <attr name="yearListItemTextAppearance" format="reference" />
4796        <!-- @hide The list year's text appearance in the list when activated. -->
4797        <attr name="yearListItemActivatedTextAppearance" format="reference" />
4798        <!-- The text color list of the calendar. -->
4799        <attr name="calendarTextColor" format="color" />
4800
4801        <!-- Defines the look of the widget. Prior to the L release, the only choice was
4802             spinner. As of L, with the Material theme selected, the default layout is calendar,
4803             but this attribute can be used to force spinner to be used instead. -->
4804        <attr name="datePickerMode">
4805            <!-- Date picker with spinner controls to select the date. -->
4806            <enum name="spinner" value="1" />
4807            <!-- Date picker with calendar to select the date. -->
4808            <enum name="calendar" value="2" />
4809        </attr>
4810
4811        <!-- The first year (inclusive), for example "1940".
4812             {@deprecated Use minDate instead.} -->
4813        <attr name="startYear" format="integer" />
4814        <!-- The last year (inclusive), for example "2010".
4815             {@deprecated Use maxDate instead.} -->
4816        <attr name="endYear" format="integer" />
4817        <!-- The text appearance for the month (ex. May) in the selected date header.
4818             {@deprecated Use headerTextColor instead.} -->
4819        <attr name="headerMonthTextAppearance" format="reference" />
4820        <!-- The text appearance for the day of month (ex. 28) in the selected date header.
4821             {@deprecated Use headerTextColor instead.} -->
4822        <attr name="headerDayOfMonthTextAppearance" format="reference" />
4823        <!-- The text appearance for the year (ex. 2014) in the selected date header.
4824             {@deprecated Use headerTextColor instead.} -->
4825        <attr name="headerYearTextAppearance" format="reference" />
4826        <!-- The background color for the header's day of week.
4827             {@deprecated No longer displayed.} -->
4828        <attr name="dayOfWeekBackground" format="color" />
4829        <!-- The text color for the header's day of week.
4830             {@deprecated No longer displayed.} -->
4831        <attr name="dayOfWeekTextAppearance" format="reference" />
4832        <!-- The list year's selected circle color in the list.
4833             {@deprecated No longer displayed.} -->
4834        <attr name="yearListSelectorColor" format="color" />
4835    </declare-styleable>
4836
4837    <declare-styleable name="TwoLineListItem">
4838        <attr name="mode">
4839            <!-- Always show only the first line. -->
4840            <enum name="oneLine" value="1" />
4841            <!-- When selected show both lines, otherwise show only the first line.
4842                 This is the default mode. -->
4843            <enum name="collapsing" value="2" />
4844            <!-- Always show both lines. -->
4845            <enum name="twoLine" value="3" />
4846        </attr>
4847    </declare-styleable>
4848
4849    <!-- SlidingDrawer specific attributes. These attributes are used to configure
4850         a SlidingDrawer from XML. -->
4851    <declare-styleable name="SlidingDrawer">
4852        <!-- Identifier for the child that represents the drawer's handle. -->
4853        <attr name="handle" format="reference" />
4854        <!-- Identifier for the child that represents the drawer's content. -->
4855        <attr name="content" format="reference" />
4856        <!-- Orientation of the SlidingDrawer. -->
4857        <attr name="orientation" />
4858        <!-- Extra offset for the handle at the bottom of the SlidingDrawer. -->
4859        <attr name="bottomOffset" format="dimension"  />
4860        <!-- Extra offset for the handle at the top of the SlidingDrawer. -->
4861        <attr name="topOffset" format="dimension"  />
4862        <!-- Indicates whether the drawer can be opened/closed by a single tap
4863             on the handle.  (If false, the user must drag or fling, or click
4864             using the trackball, to open/close the drawer.)  Default is true. -->
4865        <attr name="allowSingleTap" format="boolean" />
4866        <!-- Indicates whether the drawer should be opened/closed with an animation
4867             when the user clicks the handle. Default is true. -->
4868        <attr name="animateOnClick" format="boolean" />
4869    </declare-styleable>
4870
4871    <!-- GestureOverlayView specific attributes. These attributes are used to configure
4872         a GestureOverlayView from XML. -->
4873    <declare-styleable name="GestureOverlayView">
4874        <!-- Width of the stroke used to draw the gesture. -->
4875        <attr name="gestureStrokeWidth" format="float" />
4876        <!-- Color used to draw a gesture. -->
4877        <attr name="gestureColor" format="color" />
4878        <!-- Color used to draw the user's strokes until we are sure it's a gesture. -->
4879        <attr name="uncertainGestureColor" format="color" />
4880        <!-- Time, in milliseconds, to wait before the gesture fades out after the user
4881             is done drawing it. -->
4882        <attr name="fadeOffset" format="integer" />
4883        <!-- Duration, in milliseconds, of the fade out effect after the user is done
4884             drawing a gesture. -->
4885        <attr name="fadeDuration" format="integer" />
4886        <!-- Defines the type of strokes that define a gesture. -->
4887        <attr name="gestureStrokeType">
4888            <!-- A gesture is made of only one stroke. -->
4889            <enum name="single" value="0" />
4890            <!-- A gesture is made of multiple strokes. -->
4891            <enum name="multiple" value="1" />
4892        </attr>
4893        <!-- Minimum length of a stroke before it is recognized as a gesture. -->
4894        <attr name="gestureStrokeLengthThreshold" format="float" />
4895        <!-- Squareness threshold of a stroke before it is recognized as a gesture. -->
4896        <attr name="gestureStrokeSquarenessThreshold" format="float" />
4897        <!-- Minimum curve angle a stroke must contain before it is recognized as a gesture. -->
4898        <attr name="gestureStrokeAngleThreshold" format="float" />
4899        <!-- Defines whether the overlay should intercept the motion events when a gesture
4900             is recognized. -->
4901        <attr name="eventsInterceptionEnabled" format="boolean" />
4902        <!-- Defines whether the gesture will automatically fade out after being recognized. -->
4903        <attr name="fadeEnabled" format="boolean" />
4904        <!-- Indicates whether horizontal (when the orientation is vertical) or vertical
4905             (when orientation is horizontal) strokes automatically define a gesture. -->
4906        <attr name="orientation" />
4907    </declare-styleable>
4908
4909    <declare-styleable name="QuickContactBadge">
4910        <attr name="quickContactWindowSize">
4911            <enum name="modeSmall" value="1" />
4912            <enum name="modeMedium" value="2" />
4913            <enum name="modeLarge" value="3" />
4914        </attr>
4915    </declare-styleable>
4916
4917    <!-- ======================================= -->
4918    <!-- Widget package parent layout attributes -->
4919    <!-- ======================================= -->
4920    <eat-comment />
4921
4922    <declare-styleable name="AbsoluteLayout_Layout">
4923        <attr name="layout_x" format="dimension" />
4924        <attr name="layout_y" format="dimension" />
4925    </declare-styleable>
4926    <declare-styleable name="LinearLayout_Layout">
4927        <attr name="layout_width" />
4928        <attr name="layout_height" />
4929        <attr name="layout_weight" format="float" />
4930        <attr name="layout_gravity" />
4931    </declare-styleable>
4932    <declare-styleable name="GridLayout_Layout">
4933        <!-- The row boundary delimiting the top of the group of cells
4934        occupied by this view. -->
4935        <attr name="layout_row" format="integer" />
4936        <!-- The row span: the difference between the top and bottom
4937        boundaries delimiting the group of cells occupied by this view.
4938        The default is one.
4939        See {@link android.widget.GridLayout.Spec}. -->
4940        <attr name="layout_rowSpan" format="integer" min="1" />
4941        <!-- The relative proportion of vertical space that should be allocated to this view
4942        during excess space distribution. -->
4943        <attr name="layout_rowWeight" format="float" />
4944        <!-- The column boundary delimiting the left of the group of cells
4945        occupied by this view. -->
4946        <attr name="layout_column" />
4947        <!-- The column span: the difference between the right and left
4948        boundaries delimiting the group of cells occupied by this view.
4949        The default is one.
4950        See {@link android.widget.GridLayout.Spec}. -->
4951        <attr name="layout_columnSpan" format="integer" min="1" />
4952        <!-- The relative proportion of horizontal space that should be allocated to this view
4953        during excess space distribution. -->
4954        <attr name="layout_columnWeight" format="float" />
4955        <!-- Gravity specifies how a component should be placed in its group of cells.
4956        The default is LEFT | BASELINE.
4957        See {@link android.widget.GridLayout.LayoutParams#setGravity(int)}. -->
4958        <attr name="layout_gravity" />
4959    </declare-styleable>
4960    <declare-styleable name="FrameLayout_Layout">
4961        <attr name="layout_gravity" />
4962    </declare-styleable>
4963    <declare-styleable name="RelativeLayout_Layout">
4964        <!-- Positions the right edge of this view to the left of the given anchor view ID.
4965             Accommodates right margin of this view and left margin of anchor view. -->
4966        <attr name="layout_toLeftOf" format="reference" />
4967        <!-- Positions the left edge of this view to the right of the given anchor view ID.
4968            Accommodates left margin of this view and right margin of anchor view. -->
4969        <attr name="layout_toRightOf" format="reference" />
4970        <!-- Positions the bottom edge of this view above the given anchor view ID.
4971            Accommodates bottom margin of this view and top margin of anchor view. -->
4972        <attr name="layout_above" format="reference" />
4973        <!-- Positions the top edge of this view below the given anchor view ID.
4974            Accommodates top margin of this view and bottom margin of anchor view. -->
4975        <attr name="layout_below" format="reference" />
4976        <!-- Positions the baseline of this view on the baseline of the given anchor view ID. -->
4977        <attr name="layout_alignBaseline" format="reference" />
4978        <!-- Makes the left edge of this view match the left edge of the given anchor view ID.
4979            Accommodates left margin. -->
4980        <attr name="layout_alignLeft" format="reference" />
4981        <!-- Makes the top edge of this view match the top edge of the given anchor view ID.
4982            Accommodates top margin. -->
4983        <attr name="layout_alignTop" format="reference" />
4984        <!-- Makes the right edge of this view match the right edge of the given anchor view ID.
4985            Accommodates right margin. -->
4986        <attr name="layout_alignRight" format="reference" />
4987        <!-- Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
4988            Accommodates bottom margin. -->
4989        <attr name="layout_alignBottom" format="reference" />
4990        <!-- If true, makes the left edge of this view match the left edge of the parent.
4991            Accommodates left margin. -->
4992        <attr name="layout_alignParentLeft" format="boolean" />
4993        <!-- If true, makes the top edge of this view match the top edge of the parent.
4994            Accommodates top margin. -->
4995        <attr name="layout_alignParentTop" format="boolean" />
4996        <!-- If true, makes the right edge of this view match the right edge of the parent.
4997            Accommodates right margin. -->
4998        <attr name="layout_alignParentRight" format="boolean" />
4999        <!-- If true, makes the bottom edge of this view match the bottom edge of the parent.
5000            Accommodates bottom margin. -->
5001        <attr name="layout_alignParentBottom" format="boolean" />
5002        <!-- If true, centers this child horizontally and vertically within its parent. -->
5003        <attr name="layout_centerInParent" format="boolean" />
5004        <!-- If true, centers this child horizontally within its parent. -->
5005        <attr name="layout_centerHorizontal" format="boolean" />
5006        <!-- If true, centers this child vertically within its parent. -->
5007        <attr name="layout_centerVertical" format="boolean" />
5008        <!-- If set to true, the parent will be used as the anchor when the anchor cannot be
5009             be found for layout_toLeftOf, layout_toRightOf, etc. -->
5010        <attr name="layout_alignWithParentIfMissing" format="boolean" />
5011        <!-- Positions the end edge of this view to the start of the given anchor view ID.
5012             Accommodates end margin of this view and start margin of anchor view. -->
5013        <attr name="layout_toStartOf" format="reference" />
5014        <!-- Positions the start edge of this view to the end of the given anchor view ID.
5015             Accommodates start margin of this view and end margin of anchor view. -->
5016        <attr name="layout_toEndOf" format="reference" />
5017        <!-- Makes the start edge of this view match the start edge of the given anchor view ID.
5018            Accommodates start margin. -->
5019        <attr name="layout_alignStart" format="reference" />
5020        <!-- Makes the end edge of this view match the end edge of the given anchor view ID.
5021            Accommodates end margin. -->
5022        <attr name="layout_alignEnd" format="reference" />
5023        <!-- If true, makes the start edge of this view match the start edge of the parent.
5024            Accommodates start margin. -->
5025        <attr name="layout_alignParentStart" format="boolean" />
5026        <!-- If true, makes the end edge of this view match the end edge of the parent.
5027            Accommodates end margin. -->
5028        <attr name="layout_alignParentEnd" format="boolean" />
5029    </declare-styleable>
5030    <declare-styleable name="VerticalSlider_Layout">
5031        <attr name="layout_scale" format="float" />
5032    </declare-styleable>
5033
5034    <!-- attributes for internal rotary widget used in lock screen and phone app
5035      @hide -->
5036    <declare-styleable name="RotarySelector">
5037        <!-- Use "horizontal" or "vertical".  The default is horizontal. -->
5038        <attr name="orientation" />
5039    </declare-styleable>
5040
5041    <!-- @hide -->
5042    <declare-styleable name="WeightedLinearLayout">
5043        <attr name="majorWeightMin" format="float" />
5044        <attr name="minorWeightMin" format="float" />
5045        <attr name="majorWeightMax" format="float" />
5046        <attr name="minorWeightMax" format="float" />
5047    </declare-styleable>
5048
5049    <declare-styleable name="CalendarView">
5050        <!-- The first day of week according to {@link java.util.Calendar}. -->
5051        <attr name="firstDayOfWeek" format="integer" />
5052        <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
5053        <attr name="minDate" />
5054        <!-- The maximal date shown by this calendar view in mm/dd/yyyy format. -->
5055        <attr name="maxDate" />
5056        <!-- The text appearance for the month and year in the calendar header. -->
5057        <attr name="monthTextAppearance" format="reference" />
5058        <!-- The text appearance for the week day abbreviation in the calendar header. -->
5059        <attr name="weekDayTextAppearance" format="reference" />
5060        <!-- The text appearance for the day numbers in the calendar grid. -->
5061        <attr name="dateTextAppearance" format="reference" />
5062        <!-- @hide The background color used for the day selection indicator. -->
5063        <attr name="daySelectorColor" format="color" />
5064        <!-- @hide The background color used for the day highlight indicator. -->
5065        <attr name="dayHighlightColor" format="color" />
5066        <!-- @hide Which style of calendar delegate to use. -->
5067        <attr name="calendarViewMode">
5068            <enum name="holo" value="0" />
5069            <enum name="material" value="1" />
5070        </attr>
5071
5072        <!-- @deprecated Whether do show week numbers. -->
5073        <attr name="showWeekNumber" format="boolean" />
5074        <!-- @deprecated The number of weeks to be shown. -->
5075        <attr name="shownWeekCount" format="integer"/>
5076        <!-- @deprecated The background color for the selected week. -->
5077        <attr name="selectedWeekBackgroundColor" format="color|reference" />
5078        <!-- @deprecated The color for the dates of the focused month. -->
5079        <attr name="focusedMonthDateColor" format="color|reference" />
5080        <!-- @deprecated The color for the dates of an unfocused month. -->
5081        <attr name="unfocusedMonthDateColor" format="color|reference" />
5082        <!-- @deprecated The color for the week numbers. -->
5083        <attr name="weekNumberColor" format="color|reference" />
5084        <!-- @deprecated The color for the separator line between weeks. -->
5085        <attr name="weekSeparatorLineColor" format="color|reference" />
5086        <!-- @deprecated Drawable for the vertical bar shown at the beginning and at the end of the selected date. -->
5087        <attr name="selectedDateVerticalBar" format="reference" />
5088    </declare-styleable>
5089
5090    <declare-styleable name="NumberPicker">
5091        <!-- @hide Color for the solid color background if such for optimized rendering. -->
5092        <attr name="solidColor" format="color|reference" />
5093        <!-- @hide The divider for making the selection area. -->
5094        <attr name="selectionDivider" format="reference" />
5095        <!-- @hide The height of the selection divider. -->
5096        <attr name="selectionDividerHeight" format="dimension" />
5097        <!-- @hide The distance between the two selection dividers. -->
5098        <attr name="selectionDividersDistance" format="dimension" />
5099        <!-- @hide The min height of the NumberPicker. -->
5100        <attr name="internalMinHeight" format="dimension" />
5101        <!-- @hide The max height of the NumberPicker. -->
5102        <attr name="internalMaxHeight" format="dimension" />
5103        <!-- @hide The min width of the NumberPicker. -->
5104        <attr name="internalMinWidth" format="dimension" />
5105        <!-- @hide The max width of the NumberPicker. -->
5106        <attr name="internalMaxWidth" format="dimension" />
5107        <!-- @hide The layout of the number picker. -->
5108        <attr name="internalLayout" />
5109        <!-- @hide The drawable for pressed virtual (increment/decrement) buttons. -->
5110        <attr name="virtualButtonPressedDrawable" format="reference"/>
5111        <!-- @hide If true then the selector wheel is hidden until the picker has focus. -->
5112        <attr name="hideWheelUntilFocused" format="boolean"/>
5113    </declare-styleable>
5114
5115    <declare-styleable name="TimePicker">
5116        <!-- @hide The layout of the legacy time picker. -->
5117        <attr name="legacyLayout" format="reference" />
5118        <!-- @hide The layout of the time picker. -->
5119        <attr name="internalLayout" />
5120
5121        <!-- The text color for the selected time header text, ex. "12" or
5122             "PM". This should be a color state list where the activated state
5123             will be used when the minute picker or hour picker is active.-->
5124        <attr name="headerTextColor" />
5125        <!-- The background for the header containing the currently selected time. -->
5126        <attr name="headerBackground" />
5127
5128        <!-- The color for the hours/minutes numbers. This should be a color
5129             state list where the activated state will be used when the number
5130             is active.-->
5131        <attr name="numbersTextColor" format="color" />
5132        <!-- The color for the inner hours numbers used in 24-hour mode. This
5133             should be a color state list where the activated state will be
5134             used when the number is active.-->
5135        <attr name="numbersInnerTextColor" format="color" />
5136        <!-- The background color for the hours/minutes numbers. -->
5137        <attr name="numbersBackgroundColor" format="color" />
5138        <!-- The color for the hours/minutes selector. -->
5139        <attr name="numbersSelectorColor" format="color" />
5140
5141        <!-- Defines the look of the widget. Prior to the L release, the only choice was
5142             spinner. As of L, with the Material theme selected, the default layout is clock,
5143             but this attribute can be used to force spinner to be used instead. -->
5144        <attr name="timePickerMode">
5145            <!-- Time picker with spinner controls to select the time. -->
5146            <enum name="spinner" value="1" />
5147            <!-- Time picker with clock face to select the time. -->
5148            <enum name="clock" value="2" />
5149        </attr>
5150
5151        <!-- The text appearance for the AM/PM header.
5152             @deprecated Use headerTextColor instead. -->
5153        <attr name="headerAmPmTextAppearance" format="reference" />
5154        <!-- The text appearance for the time header.
5155             @deprecated Use headerTextColor instead. -->
5156        <attr name="headerTimeTextAppearance" format="reference" />
5157        <!-- The color for the AM/PM selectors.
5158             {@deprecated Use headerTextColor instead.}-->
5159        <attr name="amPmTextColor" format="color" />
5160        <!-- The background color state list for the AM/PM selectors.
5161             {@deprecated Use headerBackground instead.}-->
5162        <attr name="amPmBackgroundColor" format="color" />
5163    </declare-styleable>
5164
5165    <!-- ========================= -->
5166    <!-- Drawable class attributes -->
5167    <!-- ========================= -->
5168    <eat-comment />
5169
5170    <!-- Base attributes that are available to all Drawable objects. -->
5171    <declare-styleable name="Drawable">
5172        <!-- Provides initial visibility state of the drawable; the default
5173             value is false.  See
5174             {@link android.graphics.drawable.Drawable#setVisible}. -->
5175        <attr name="visible" format="boolean" />
5176        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5177             RTL (right-to-left).  See
5178             {@link android.graphics.drawable.Drawable#setAutoMirrored}. -->
5179        <attr name="autoMirrored" format="boolean" />
5180    </declare-styleable>
5181
5182    <!-- Drawable class used to wrap other drawables. -->
5183    <declare-styleable name="DrawableWrapper">
5184        <!-- The wrapped drawable. -->
5185        <attr name="drawable" />
5186    </declare-styleable>
5187
5188    <!-- Drawable used to render several states. Each state is represented by
5189         a child drawable. -->
5190    <declare-styleable name="StateListDrawable">
5191        <!-- Indicates whether the drawable should be initially visible. -->
5192        <attr name="visible" />
5193        <!-- If true, allows the drawable's padding to change based on the
5194             current state that is selected.  If false, the padding will
5195             stay the same (based on the maximum padding of all the states).
5196             Enabling this feature requires that the owner of the drawable
5197             deal with performing layout when the state changes, which is
5198             often not supported. -->
5199        <attr name="variablePadding" format="boolean" />
5200        <!-- If true, the drawable's reported internal size will remain
5201             constant as the state changes; the size is the maximum of all
5202             of the states.  If false, the size will vary based on the
5203             current state. -->
5204        <attr name="constantSize" format="boolean" />
5205        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
5206             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
5207             an RGB 565 screen). -->
5208        <attr name="dither" format="boolean" />
5209        <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
5210        <attr name="enterFadeDuration" format="integer" />
5211        <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
5212        <attr name="exitFadeDuration" format="integer" />
5213        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5214             RTL (right-to-left). -->
5215        <attr name="autoMirrored"/>
5216    </declare-styleable>
5217
5218    <!-- Drawable used to render several states with animated transitions. Each state
5219         is represented by a child drawable with an optional keyframe ID. -->
5220    <declare-styleable name="AnimatedStateListDrawable">
5221        <!-- Indicates whether the drawable should be initially visible. -->
5222        <attr name="visible" />
5223        <!-- If true, allows the drawable's padding to change based on the
5224             current state that is selected.  If false, the padding will
5225             stay the same (based on the maximum padding of all the states).
5226             Enabling this feature requires that the owner of the drawable
5227             deal with performing layout when the state changes, which is
5228             often not supported. -->
5229        <attr name="variablePadding" />
5230        <!-- If true, the drawable's reported internal size will remain
5231             constant as the state changes; the size is the maximum of all
5232             of the states.  If false, the size will vary based on the
5233             current state. -->
5234        <attr name="constantSize" />
5235        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
5236             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
5237             an RGB 565 screen). -->
5238        <attr name="dither" />
5239        <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
5240        <attr name="enterFadeDuration" />
5241        <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
5242        <attr name="exitFadeDuration" />
5243        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5244             RTL (right-to-left). -->
5245        <attr name="autoMirrored"/>
5246    </declare-styleable>
5247
5248    <!-- Represents a single state inside a StateListDrawable. -->
5249    <declare-styleable name="StateListDrawableItem">
5250        <!-- Reference to a drawable resource to use for the state. If not
5251             given, the drawable must be defined by the first child tag. -->
5252        <attr name="drawable" />
5253    </declare-styleable>
5254
5255    <!-- Transition used to animate between states with keyframe IDs. -->
5256    <declare-styleable name="AnimatedStateListDrawableItem">
5257        <!-- Reference to a drawable resource to use for the frame.  If not
5258             given, the drawable must be defined by the first child tag. -->
5259        <attr name="drawable" />
5260        <!-- Keyframe identifier for use in specifying transitions. -->
5261        <attr name="id" />
5262    </declare-styleable>
5263
5264    <!-- Transition used to animate between states with keyframe IDs. -->
5265    <declare-styleable name="AnimatedStateListDrawableTransition">
5266        <!-- Keyframe identifier for the starting state. -->
5267        <attr name="fromId" format="reference" />
5268        <!-- Keyframe identifier for the ending state. -->
5269        <attr name="toId" format="reference" />
5270        <!-- Reference to a animation drawable resource to use for the frame.  If not
5271             given, the animation drawable must be defined by the first child tag. -->
5272        <attr name="drawable" />
5273        <!-- Whether this transition is reversible. -->
5274        <attr name="reversible" format="boolean" />
5275    </declare-styleable>
5276
5277    <!-- Drawable used to render several animated frames. -->
5278    <declare-styleable name="AnimationDrawable">
5279        <attr name="visible" />
5280        <attr name="variablePadding" />
5281        <!-- If true, the animation will only run a single time and then
5282             stop.  If false (the default), it will continually run,
5283             restarting at the first frame after the last has finished. -->
5284        <attr name="oneshot" format="boolean" />
5285    </declare-styleable>
5286
5287    <!-- Represents a single frame inside an AnimationDrawable. -->
5288    <declare-styleable name="AnimationDrawableItem">
5289        <!-- Amount of time (in milliseconds) to display this frame. -->
5290        <attr name="duration" format="integer" />
5291        <!-- Reference to a drawable resource to use for the frame.  If not
5292             given, the drawable must be defined by the first child tag. -->
5293        <attr name="drawable" format="reference" />
5294    </declare-styleable>
5295
5296    <!-- Attributes that can be assigned to a StateListAnimator item. -->
5297    <declare-styleable name="StateListAnimatorItem">
5298        <attr name="animation"/>
5299    </declare-styleable>
5300
5301    <!-- Attributes that can be assigned to a ColorStateList item. -->
5302    <declare-styleable name="ColorStateListItem">
5303        <!-- Base color for this state. -->
5304        <attr name="color" />
5305        <!-- Alpha multiplier applied to the base color. -->
5306        <attr name="alpha" />
5307    </declare-styleable>
5308
5309    <!-- Drawable used to render a geometric shape, with a gradient or a solid color. -->
5310    <declare-styleable name="GradientDrawable">
5311        <!-- Indicates whether the drawable should intially be visible. -->
5312        <attr name="visible" />
5313        <!-- Enables or disables dithering. -->
5314        <attr name="dither" />
5315        <!-- Indicates what shape to fill with a gradient. -->
5316        <attr name="shape">
5317            <!-- Rectangle shape, with optional rounder corners. -->
5318            <enum name="rectangle" value="0" />
5319            <!-- Oval shape. -->
5320            <enum name="oval" value="1" />
5321            <!-- Line shape. -->
5322            <enum name="line" value="2" />
5323            <!-- Ring shape. -->
5324            <enum name="ring" value="3" />
5325        </attr>
5326        <!-- Inner radius of the ring expressed as a ratio of the ring's width. For instance,
5327             if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9.
5328             This value is ignored if innerRadius is defined. Default value is 9. -->
5329        <attr name="innerRadiusRatio" format="float" />
5330        <!-- Thickness of the ring expressed as a ratio of the ring's width. For instance,
5331             if thicknessRatio=3, then the thickness equals the ring's width divided by 3.
5332             This value is ignored if innerRadius is defined. Default value is 3. -->
5333        <attr name="thicknessRatio" format="float" />
5334        <!-- Inner radius of the ring. When defined, innerRadiusRatio is ignored. -->
5335        <attr name="innerRadius" format="dimension" />
5336        <!-- Thickness of the ring. When defined, thicknessRatio is ignored. -->
5337        <attr name="thickness" format="dimension" />
5338        <!-- Indicates whether the drawable's level affects the way the gradient is drawn. -->
5339        <attr name="useLevel" />
5340        <!-- If set, specifies the color to apply to the drawable as a tint. By default,
5341             no tint is applied. May be a color state list. -->
5342        <attr name="tint" />
5343        <!-- When a tint color is set, specifies its Porter-Duff blending mode. The
5344             default value is src_in, which treats the drawable as an alpha mask. -->
5345        <attr name="tintMode" />
5346        <!-- Left optical inset.
5347             @hide Until optical insets are fully supported. -->
5348        <attr name="opticalInsetLeft" />
5349        <!-- Top optical inset.
5350             @hide Until optical insets are fully supported. -->
5351        <attr name="opticalInsetTop" />
5352        <!-- Right optical inset.
5353             @hide Until optical insets are fully supported. -->
5354        <attr name="opticalInsetRight" />
5355        <!-- Bottom optical inset.
5356             @hide Until optical insets are fully supported. -->
5357        <attr name="opticalInsetBottom" />
5358    </declare-styleable>
5359
5360    <!-- Used to specify the size of the shape for GradientDrawable. -->
5361    <declare-styleable name="GradientDrawableSize">
5362        <!-- Width of the gradient shape. -->
5363        <attr name="width" />
5364        <!-- Height of the gradient shape. -->
5365        <attr name="height" />
5366    </declare-styleable>
5367
5368    <!-- Used to describe the gradient used to fill the shape of a GradientDrawable. -->
5369    <declare-styleable name="GradientDrawableGradient">
5370        <!-- Start color of the gradient. -->
5371        <attr name="startColor" format="color" />
5372        <!-- Optional center color. For linear gradients, use centerX or centerY
5373             to place the center color. -->
5374        <attr name="centerColor" format="color" />
5375        <!-- End color of the gradient. -->
5376        <attr name="endColor" format="color" />
5377        <attr name="useLevel" format="boolean" />
5378        <!-- Angle of the gradient. -->
5379        <attr name="angle" format="float" />
5380        <!-- Type of gradient. The default type is linear. -->
5381        <attr name="type">
5382            <!-- Linear gradient. -->
5383            <enum name="linear" value="0" />
5384            <!-- Radial, or circular, gradient. -->
5385            <enum name="radial" value="1" />
5386            <!-- Sweep, or angled or diamond, gradient. -->
5387            <enum name="sweep"  value="2" />
5388        </attr>
5389        <!-- X coordinate of the origin of the gradient within the shape. -->
5390        <attr name="centerX" format="float|fraction" />
5391        <!-- Y coordinate of the origin of the gradient within the shape. -->
5392        <attr name="centerY" format="float|fraction" />
5393        <!-- Radius of the gradient, used only with radial gradient. -->
5394        <attr name="gradientRadius" format="float|fraction|dimension" />
5395    </declare-styleable>
5396
5397    <!-- Used to fill the shape of GradientDrawable with a solid color. -->
5398    <declare-styleable name="GradientDrawableSolid">
5399        <!-- Solid color for the gradient shape. -->
5400        <attr name="color" format="color" />
5401    </declare-styleable>
5402
5403    <!-- Used to describe the optional stroke of a GradientDrawable. -->
5404    <declare-styleable name="GradientDrawableStroke">
5405        <!-- Width of the gradient shape's stroke. -->
5406        <attr name="width" />
5407        <!-- Color of the gradient shape's stroke. -->
5408        <attr name="color" />
5409        <!-- Length of a dash in the stroke. -->
5410        <attr name="dashWidth" format="dimension" />
5411        <!-- Gap between dashes in the stroke. -->
5412        <attr name="dashGap" format="dimension" />
5413    </declare-styleable>
5414
5415    <!-- Describes the corners for the rectangle shape of a GradientDrawable.
5416         This can be used to render rounded corners. -->
5417    <declare-styleable name="DrawableCorners">
5418        <!-- Defines the radius of the four corners. -->
5419        <attr name="radius" format="dimension" />
5420        <!-- Radius of the top left corner. -->
5421        <attr name="topLeftRadius" format="dimension" />
5422        <!-- Radius of the top right corner. -->
5423        <attr name="topRightRadius" format="dimension" />
5424        <!-- Radius of the bottom left corner. -->
5425        <attr name="bottomLeftRadius" format="dimension" />
5426        <!-- Radius of the bottom right corner. -->
5427        <attr name="bottomRightRadius" format="dimension" />
5428    </declare-styleable>
5429
5430    <!-- Used to specify the optional padding of a GradientDrawable. -->
5431    <declare-styleable name="GradientDrawablePadding">
5432        <!-- Amount of left padding inside the gradient shape. -->
5433        <attr name="left" format="dimension" />
5434        <!-- Amount of top padding inside the gradient shape. -->
5435        <attr name="top" format="dimension" />
5436        <!-- Amount of right padding inside the gradient shape. -->
5437        <attr name="right" format="dimension" />
5438        <!-- Amount of bottom padding inside the gradient shape. -->
5439        <attr name="bottom" format="dimension" />
5440    </declare-styleable>
5441
5442    <!-- Drawable used to render several drawables stacked on top of each other.
5443         Each child drawable can be controlled individually. -->
5444    <declare-styleable name="LayerDrawable">
5445        <!-- Indicates the opacity of the layer. This can be useful to allow the
5446              system to enable drawing optimizations. The default value is
5447              translucent. -->
5448        <attr name="opacity">
5449            <!-- Indicates that the layer is opaque and contains no transparent
5450                 nor translucent pixels. -->
5451            <enum name="opaque" value="-1" />
5452            <!-- The layer is completely transparent (no pixel will be drawn.) -->
5453            <enum name="transparent" value="-2" />
5454            <!-- The layer has translucent pixels. -->
5455            <enum name="translucent" value="-3" />
5456        </attr>
5457        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5458             RTL (right-to-left). -->
5459        <attr name="autoMirrored" />
5460        <!-- Indicates how layer padding should affect the bounds of subsequent layers.
5461             The default padding mode value is nest. -->
5462        <attr name="paddingMode">
5463            <!-- Nest each layer inside the padding of the previous layer. -->
5464            <enum name="nest" value="0" />
5465            <!-- Stack each layer directly atop the previous layer. -->
5466            <enum name="stack" value="1" />
5467        </attr>
5468        <!-- Explicit top padding. Overrides child padding. -->
5469        <attr name="paddingTop" />
5470        <!-- Explicit bottom padding. Overrides child padding. -->
5471        <attr name="paddingBottom" />
5472        <!-- Explicit left padding. Overrides child padding. -->
5473        <attr name="paddingLeft" />
5474        <!-- Explicit right padding. Overrides child padding. -->
5475        <attr name="paddingRight" />
5476        <!-- Explicit start padding. Overrides child padding. Takes precedence
5477             over absolute padding (e.g. left when layout direction is LTR). -->
5478        <attr name="paddingStart" />
5479        <!-- Explicit end padding. Overrides child padding. Takes precedence
5480             over absolute padding (e.g. right when layout direction is LTR). -->
5481        <attr name="paddingEnd" />
5482    </declare-styleable>
5483
5484    <!-- Describes an item (or child) of a LayerDrawable. -->
5485    <declare-styleable name="LayerDrawableItem">
5486        <!-- Left inset to apply to the layer. -->
5487        <attr name="left" />
5488        <!-- Top inset to apply to the layer. -->
5489        <attr name="top" />
5490        <!-- Right inset to apply to the layer. -->
5491        <attr name="right" />
5492        <!-- Bottom inset to apply to the layer. -->
5493        <attr name="bottom" />
5494        <!-- Start inset to apply to the layer. Overrides {@code left} or
5495             {@code right} depending on layout direction. -->
5496        <attr name="start" format="dimension" />
5497        <!-- End inset to apply to the layer. Overrides {@code left} or
5498             {@code right} depending on layout direction. -->
5499        <attr name="end" format="dimension" />
5500        <!-- Width of the layer. Defaults to the layer's intrinsic width. -->
5501        <attr name="width" />
5502        <!-- Height of the layer. Defaults to the layer's intrinsic height -->
5503        <attr name="height" />
5504        <!-- Gravity used to align the layer within its container. If no value
5505             is specified, the default behavior depends on whether an explicit
5506             width or height has been set, If no dimension is set, gravity in
5507             that direction defaults to {@code fill_horizontal} or
5508             {@code fill_vertical}; otherwise, it defaults to {@code left} or
5509             {@code top}. -->
5510        <attr name="gravity" />
5511        <!-- Drawable used to render the layer. -->
5512        <attr name="drawable" />
5513        <!-- Identifier of the layer. This can be used to retrieve the layer
5514             from a drawable container. -->
5515        <attr name="id" />
5516    </declare-styleable>
5517
5518    <declare-styleable name="LevelListDrawableItem">
5519        <!-- The minimum level allowed for this item. -->
5520        <attr name="minLevel" format="integer" />
5521        <!-- The maximum level allowed for this item. -->
5522        <attr name="maxLevel" format="integer" />
5523        <attr name="drawable" />
5524    </declare-styleable>
5525
5526    <!-- Drawable used to rotate another drawable. -->
5527    <declare-styleable name="RotateDrawable">
5528        <attr name="visible" />
5529        <attr name="fromDegrees" format="float" />
5530        <attr name="toDegrees" format="float" />
5531        <attr name="pivotX" format="float|fraction" />
5532        <attr name="pivotY" format="float|fraction" />
5533        <attr name="drawable" />
5534    </declare-styleable>
5535
5536    <declare-styleable name="AnimatedRotateDrawable">
5537        <attr name="visible" />
5538        <attr name="frameDuration" format="integer" />
5539        <attr name="framesCount" format="integer" />
5540        <attr name="pivotX" />
5541        <attr name="pivotY" />
5542        <attr name="drawable" />
5543    </declare-styleable>
5544
5545    <!-- Drawable used to render the Material progress indicator. -->
5546    <declare-styleable name="MaterialProgressDrawable">
5547        <attr name="visible" />
5548        <attr name="thickness" />
5549        <attr name="innerRadius" />
5550        <attr name="width" />
5551        <attr name="height" />
5552        <attr name="color" />
5553    </declare-styleable>
5554
5555    <!-- Drawable used to wrap and inset another drawable. -->
5556    <declare-styleable name="InsetDrawable">
5557        <attr name="visible" />
5558        <attr name="drawable" />
5559        <attr name="inset"  format="dimension"/>
5560        <attr name="insetLeft" format="dimension" />
5561        <attr name="insetRight" format="dimension" />
5562        <attr name="insetTop" format="dimension" />
5563        <attr name="insetBottom" format="dimension" />
5564    </declare-styleable>
5565
5566    <!-- Drawable used to draw bitmaps. -->
5567    <declare-styleable name="BitmapDrawable">
5568        <!-- Identifier of the bitmap file. This attribute is mandatory. -->
5569        <attr name="src" />
5570        <!-- Enables or disables antialiasing. Antialiasing can be used to smooth the
5571             edges of a bitmap when rotated. Default value is false. -->
5572        <attr name="antialias" format="boolean" />
5573        <!-- Enables or disables bitmap filtering. Filtering is used when the bitmap is
5574             shrunk or stretched to smooth its apperance. Default value is true. -->
5575        <attr name="filter" format="boolean" />
5576        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
5577             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
5578             an RGB 565 screen). Default value is true. -->
5579        <attr name="dither" />
5580        <!-- Defines the gravity for the bitmap. The gravity indicates where to position
5581             the drawable in its container if the bitmap is smaller than the container. -->
5582        <attr name="gravity" />
5583        <!-- Defines the tile mode. When the tile mode is enabled, the bitmap is repeated.
5584             Gravity is ignored when the tile mode is enabled. Default value is "disabled". -->
5585        <attr name="tileMode">
5586            <!-- Do not tile the bitmap. This is the default value. -->
5587            <enum name="disabled" value="-1" />
5588            <!-- Replicates the edge color. -->
5589            <enum name="clamp" value="0" />
5590            <!-- Repeats the bitmap in both direction. -->
5591            <enum name="repeat" value="1" />
5592            <!-- Repeats the shader's image horizontally and vertically, alternating
5593                 mirror images so that adjacent images always seam. -->
5594            <enum name="mirror" value="2" />
5595        </attr>
5596        <!-- Defines the horizontal tile mode. When the tile mode is enabled, the bitmap is repeated.
5597             Gravity is ignored when the tile mode is enabled. Default value is "disabled". -->
5598        <attr name="tileModeX">
5599            <!-- Do not tile the bitmap. This is the default value. -->
5600            <enum name="disabled" value="-1" />
5601            <!-- Replicates the edge color. -->
5602            <enum name="clamp" value="0" />
5603            <!-- Repeats the bitmap horizontally. -->
5604            <enum name="repeat" value="1" />
5605            <!-- Repeats the shader's image horizontally, alternating
5606                 mirror images so that adjacent images always seam. -->
5607            <enum name="mirror" value="2" />
5608        </attr>
5609        <!-- Defines the vertical tile mode. When the tile mode is enabled, the bitmap is repeated.
5610             Gravity is ignored when the tile mode is enabled. Default value is "disabled". -->
5611        <attr name="tileModeY">
5612            <!-- Do not tile the bitmap. This is the default value. -->
5613            <enum name="disabled" value="-1" />
5614            <!-- Replicates the edge color. -->
5615            <enum name="clamp" value="0" />
5616            <!-- Repeats the bitmap vertically. -->
5617            <enum name="repeat" value="1" />
5618            <!-- Repeats the shader's image vertically, alternating
5619                 mirror images so that adjacent images always seam. -->
5620            <enum name="mirror" value="2" />
5621        </attr>
5622        <!-- Enables or disables the mipmap hint. See
5623            {@link android.graphics.Bitmap#setHasMipMap(boolean)} for more information.
5624            Default value is false. -->
5625        <attr name="mipMap" format="boolean" />
5626        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5627             RTL (right-to-left). -->
5628        <attr name="autoMirrored" />
5629        <!-- If set, specifies the color to apply to the drawable as a tint. By default,
5630             no tint is applied. May be a color state list. -->
5631        <attr name="tint" />
5632        <!-- When a tint color is set, specifies its Porter-Duff blending mode. The
5633             default value is src_in, which treats the drawable as an alpha mask. -->
5634        <attr name="tintMode">
5635            <!-- The tint is drawn on top of the drawable.
5636                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
5637            <enum name="src_over" value="3" />
5638            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
5639                 color channels are thrown out. [Sa * Da, Sc * Da] -->
5640            <enum name="src_in" value="5" />
5641            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
5642                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
5643            <enum name="src_atop" value="9" />
5644            <!-- Multiplies the color and alpha channels of the drawable with those of
5645                 the tint. [Sa * Da, Sc * Dc] -->
5646            <enum name="multiply" value="14" />
5647            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
5648            <enum name="screen" value="15" />
5649            <!-- Combines the tint and drawable color and alpha channels, clamping the
5650                 result to valid color values. Saturate(S + D) -->
5651            <enum name="add" value="16" />
5652        </attr>
5653        <!-- Specifies the alpha multiplier to apply to the base drawable. -->
5654        <attr name="alpha" />
5655    </declare-styleable>
5656
5657    <!-- Drawable used to draw 9-patches. -->
5658    <declare-styleable name="NinePatchDrawable">
5659        <!-- Identifier of the bitmap file. This attribute is mandatory. -->
5660        <attr name="src" />
5661        <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
5662             same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
5663             an RGB 565 screen). -->
5664        <attr name="dither" />
5665        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5666             RTL (right-to-left). -->
5667        <attr name="autoMirrored" />
5668        <!-- If set, specifies the color to apply to the drawable as a tint. By default,
5669             no tint is applied. May be a color state list. -->
5670        <attr name="tint" />
5671        <!-- When a tint color is set, specifies its Porter-Duff blending mode. The
5672             default value is src_in, which treats the drawable as an alpha mask. -->
5673        <attr name="tintMode" />
5674        <!-- Specifies the alpha multiplier to apply to the base drawable. -->
5675        <attr name="alpha" />
5676    </declare-styleable>
5677
5678    <!-- Drawable used to draw a single color. -->
5679    <declare-styleable name="ColorDrawable">
5680        <!-- The color to use. -->
5681        <attr name="color" />
5682    </declare-styleable>
5683
5684    <!-- Drawable used to show animated touch feedback. -->
5685    <declare-styleable name="RippleDrawable">
5686        <!-- The color to use for ripple effects. This attribute is required. -->
5687        <attr name="color" />
5688        <!-- The radius of the ripple when fully expanded. By default, the
5689             radius is computed based on the size of the ripple's container. -->
5690        <attr name="radius" />
5691    </declare-styleable>
5692
5693    <declare-styleable name="ScaleDrawable">
5694        <!-- Scale width, expressed as a percentage of the drawable's bound. The value's
5695             format is XX%. For instance: 100%, 12.5%, etc.-->
5696        <attr name="scaleWidth" format="string" />
5697        <!-- Scale height, expressed as a percentage of the drawable's bound. The value's
5698             format is XX%. For instance: 100%, 12.5%, etc.-->
5699        <attr name="scaleHeight" format="string" />
5700        <!-- Specifies where the drawable is positioned after scaling. The default value is
5701             left. -->
5702        <attr name="scaleGravity">
5703            <!-- Push object to the top of its container, not changing its size. -->
5704            <flag name="top" value="0x30" />
5705            <!-- Push object to the bottom of its container, not changing its size. -->
5706            <flag name="bottom" value="0x50" />
5707            <!-- Push object to the left of its container, not changing its size. -->
5708            <flag name="left" value="0x03" />
5709            <!-- Push object to the right of its container, not changing its size. -->
5710            <flag name="right" value="0x05" />
5711            <!-- Place object in the vertical center of its container, not changing its size. -->
5712            <flag name="center_vertical" value="0x10" />
5713            <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
5714            <flag name="fill_vertical" value="0x70" />
5715            <!-- Place object in the horizontal center of its container, not changing its size. -->
5716            <flag name="center_horizontal" value="0x01" />
5717            <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
5718            <flag name="fill_horizontal" value="0x07" />
5719            <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
5720            <flag name="center" value="0x11" />
5721            <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
5722            <flag name="fill" value="0x77" />
5723            <!-- Additional option that can be set to have the top and/or bottom edges of
5724                 the child clipped to its container's bounds.
5725                 The clip will be based on the vertical gravity: a top gravity will clip the bottom
5726                 edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
5727            <flag name="clip_vertical" value="0x80" />
5728            <!-- Additional option that can be set to have the left and/or right edges of
5729                 the child clipped to its container's bounds.
5730                 The clip will be based on the horizontal gravity: a left gravity will clip the right
5731                 edge, a right gravity will clip the left edge, and neither will clip both edges. -->
5732            <flag name="clip_horizontal" value="0x08" />
5733            <!-- Push object to the beginning of its container, not changing its size. -->
5734            <flag name="start" value="0x00800003" />
5735            <!-- Push object to the end of its container, not changing its size. -->
5736            <flag name="end" value="0x00800005" />
5737        </attr>
5738        <!-- Specifies the initial drawable level in the range 0 to 10000. -->
5739        <attr name="level" format="integer" />
5740        <!-- Reference to a drawable resource to draw with the specified scale. -->
5741        <attr name="drawable" />
5742        <!-- Use the drawable's intrinsic width and height as minimum size values.
5743             Useful if the target drawable is a 9-patch or otherwise should not be scaled
5744             down beyond a minimum size. -->
5745        <attr name="useIntrinsicSizeAsMinimum" format="boolean" />
5746    </declare-styleable>
5747
5748    <declare-styleable name="ClipDrawable">
5749        <!-- The orientation for the clip. -->
5750        <attr name="clipOrientation">
5751            <!-- Clip the drawable horizontally. -->
5752            <flag name="horizontal" value="1" />
5753            <!-- Clip the drawable vertically. -->
5754            <flag name="vertical" value="2" />
5755        </attr>
5756        <!-- Specifies where to clip within the drawable. The default value is
5757             left. -->
5758        <attr name="gravity" />
5759        <!-- Reference to a drawable resource to draw with the specified scale. -->
5760        <attr name="drawable" />
5761    </declare-styleable>
5762
5763    <!-- Defines the padding of a ShapeDrawable. -->
5764    <declare-styleable name="ShapeDrawablePadding">
5765        <!-- Left padding. -->
5766        <attr name="left" />
5767        <!-- Top padding. -->
5768        <attr name="top" />
5769        <!-- Right padding. -->
5770        <attr name="right" />
5771        <!-- Bottom padding. -->
5772        <attr name="bottom" />
5773    </declare-styleable>
5774
5775    <!-- Drawable used to draw shapes. -->
5776    <declare-styleable name="ShapeDrawable">
5777        <!-- Defines the color of the shape. -->
5778        <attr name="color" />
5779        <!-- Defines the width of the shape. -->
5780        <attr name="width" />
5781        <!-- Defines the height of the shape. -->
5782        <attr name="height" />
5783        <!-- Enables or disables dithering. -->
5784        <attr name="dither" />
5785        <!-- If set, specifies the color to apply to the drawable as a tint. By default,
5786             no tint is applied. May be a color state list. -->
5787        <attr name="tint" />
5788        <!-- When a tint color is set, specifies its Porter-Duff blending mode. The
5789             default value is src_in, which treats the drawable as an alpha mask. -->
5790        <attr name="tintMode" />
5791    </declare-styleable>
5792
5793    <!-- ========================== -->
5794    <!--   VectorDrawable class   -->
5795    <!-- ========================== -->
5796    <eat-comment />
5797
5798    <!-- Drawable used to draw vector paths. -->
5799    <declare-styleable name="VectorDrawable">
5800        <!-- If set, specifies the color to apply to the drawable as a tint. By default,
5801             no tint is applied. May be a color state list. -->
5802        <attr name="tint" />
5803        <!-- When a tint color is set, specifies its Porter-Duff blending mode. The
5804             default value is src_in, which treats the drawable as an alpha mask. -->
5805        <attr name="tintMode" />
5806        <!-- Indicates if the drawable needs to be mirrored when its layout direction is
5807             RTL (right-to-left). -->
5808        <attr name="autoMirrored" />
5809        <!-- The intrinsic width of the Vector Drawable. -->
5810        <attr name="width" />
5811        <!-- The intrinsic height of the Vector Drawable. -->
5812        <attr name="height" />
5813        <!-- The width of the canvas the drawing is on. -->
5814        <attr name="viewportWidth" format="float"/>
5815        <!-- The height of the canvas the drawing is on. -->
5816        <attr name="viewportHeight" format="float"/>
5817        <!-- The name of this vector drawable -->
5818        <attr name="name" />
5819        <!-- The opacity of the whole vector drawable, as a value between 0
5820             (completely transparent) and 1 (completely opaque). -->
5821        <attr name="alpha" />
5822        <!-- Left optical inset.
5823             @hide Until optical insets are fully supported. -->
5824        <attr name="opticalInsetLeft" format="dimension" />
5825        <!-- Top optical inset.
5826             @hide Until optical insets are fully supported. -->
5827        <attr name="opticalInsetTop" format="dimension" />
5828        <!-- Right optical inset.
5829             @hide Until optical insets are fully supported. -->
5830        <attr name="opticalInsetRight" format="dimension" />
5831        <!-- Bottom optical inset.
5832             @hide Until optical insets are fully supported. -->
5833        <attr name="opticalInsetBottom" format="dimension" />
5834    </declare-styleable>
5835
5836    <!-- Defines the group used in VectorDrawables. -->
5837    <declare-styleable name="VectorDrawableGroup">
5838        <!-- The name of this group -->
5839        <attr name="name" />
5840        <!-- The amount to rotate the group -->
5841        <attr name="rotation" />
5842        <!-- The X coordinate of the center of rotation of a group -->
5843        <attr name="pivotX" />
5844        <!-- The Y coordinate of the center of rotation of a group -->
5845        <attr name="pivotY" />
5846        <!-- The amount to translate the group on X coordinate -->
5847        <attr name="translateX" format="float"/>
5848        <!-- The amount to translate the group on Y coordinate -->
5849        <attr name="translateY" format="float"/>
5850        <!-- The amount to scale the group on X coordinate -->
5851        <attr name="scaleX" />
5852        <!-- The amount to scale the group on X coordinate -->
5853        <attr name="scaleY" />
5854    </declare-styleable>
5855
5856    <!-- Defines the path used in VectorDrawables. -->
5857    <declare-styleable name="VectorDrawablePath">
5858        <!-- The name of this path -->
5859        <attr name="name" />
5860        <!-- The width a path stroke -->
5861        <attr name="strokeWidth" format="float" />
5862        <!-- The color to stroke the path if not defined implies no stroke-->
5863        <attr name="strokeColor" format="color" />
5864        <!-- The opacity of a path stroke, as a value between 0 (completely transparent)
5865             and 1 (completely opaque) -->
5866        <attr name="strokeAlpha" format="float" />
5867        <!-- The color to fill the path if not defined implies no fill-->
5868        <attr name="fillColor" format="color" />
5869        <!-- The alpha of the path fill, as a value between 0 (completely transparent)
5870             and 1 (completely opaque)-->
5871        <attr name="fillAlpha" format="float" />
5872        <!-- The specification of the operations that define the path  -->
5873        <attr name="pathData" format="string" />
5874        <!-- The fraction of the path to trim from the start from 0 to 1 -->
5875        <attr name="trimPathStart" format="float" />
5876        <!-- The fraction of the path to trim from the end from 0 to 1  -->
5877        <attr name="trimPathEnd" format="float" />
5878        <!-- Shift trim region (allows visible region to include the start and end) from 0 to 1  -->
5879        <attr name="trimPathOffset" format="float" />
5880        <!-- sets the linecap for a stroked path -->
5881        <attr name="strokeLineCap" format="enum">
5882            <enum name="butt" value="0"/>
5883            <enum name="round" value="1"/>
5884            <enum name="square" value="2"/>
5885        </attr>
5886        <!-- sets the lineJoin for a stroked path -->
5887        <attr name="strokeLineJoin" format="enum">
5888            <enum name="miter" value="0"/>
5889            <enum name="round" value="1"/>
5890            <enum name="bevel" value="2"/>
5891        </attr>
5892        <!-- sets the Miter limit for a stroked path -->
5893        <attr name="strokeMiterLimit" format="float"/>
5894        <!-- sets the fillType for a path. It is the same as SVG's "fill-rule" properties.
5895             For more details, see https://www.w3.org/TR/SVG/painting.html#FillRuleProperty -->
5896        <attr name="fillType" format="enum">
5897            <enum name="nonZero" value="0"/>
5898            <enum name="evenOdd" value="1"/>
5899        </attr>
5900    </declare-styleable>
5901
5902    <!-- Defines the clip path used in VectorDrawables. -->
5903    <declare-styleable name="VectorDrawableClipPath">
5904        <!-- The Name of this path -->
5905        <attr name="name" />
5906        <!-- The specification of the operations that define the path  -->
5907        <attr name="pathData"/>
5908    </declare-styleable>
5909
5910    <!-- ========================== -->
5911    <!--   AnimatedVectorDrawable class   -->
5912    <!-- ========================== -->
5913    <eat-comment />
5914
5915    <!-- Define the AnimatedVectorDrawable. -->
5916    <declare-styleable name="AnimatedVectorDrawable">
5917        <!-- The static vector drawable. -->
5918        <attr name="drawable" />
5919    </declare-styleable>
5920
5921    <!-- Defines the target used in the AnimatedVectorDrawable. -->
5922    <declare-styleable name="AnimatedVectorDrawableTarget">
5923        <!-- The name of the target path, group or vector drawable -->
5924        <attr name="name" />
5925        <!-- The animation for the target path, group or vector drawable -->
5926        <attr name="animation" />
5927    </declare-styleable>
5928
5929    <!-- ========================== -->
5930    <!-- Animation class attributes -->
5931    <!-- ========================== -->
5932    <eat-comment />
5933
5934    <declare-styleable name="Animation">
5935        <!-- Defines the interpolator used to smooth the animation movement in time. -->
5936        <attr name="interpolator" />
5937        <!-- When set to true, the value of fillBefore is taken into account. -->
5938        <attr name="fillEnabled" format="boolean" />
5939        <!-- When set to true or when fillEnabled is not set to true, the animation transformation
5940             is applied before the animation has started. The default value is true. -->
5941        <attr name="fillBefore" format="boolean" />
5942        <!-- When set to true, the animation transformation is applied after the animation is
5943             over. The default value is false. If fillEnabled is not set to true and the
5944             animation is not set on a View, fillAfter is assumed to be true.-->
5945        <attr name="fillAfter" format="boolean" />
5946        <!-- Amount of time (in milliseconds) for the animation to run. -->
5947        <attr name="duration" />
5948        <!-- Delay in milliseconds before the animation runs, once start time is reached. -->
5949        <attr name="startOffset" format="integer" />
5950        <!-- Defines how many times the animation should repeat. The default value is 0. -->
5951        <attr name="repeatCount" format="integer">
5952            <enum name="infinite" value="-1" />
5953        </attr>
5954        <!-- Defines the animation behavior when it reaches the end and the repeat count is
5955             greater than 0 or infinite. The default value is restart. -->
5956        <attr name="repeatMode">
5957            <!-- The animation starts again from the beginning. -->
5958            <enum name="restart" value="1" />
5959            <!-- The animation plays backward. -->
5960            <enum name="reverse" value="2" />
5961        </attr>
5962        <!-- Allows for an adjustment of the Z ordering of the content being
5963             animated for the duration of the animation.  The default value is normal. -->
5964        <attr name="zAdjustment">
5965            <!-- The content being animated be kept in its current Z order. -->
5966            <enum name="normal" value="0" />
5967            <!-- The content being animated is forced on top of all other
5968                 content for the duration of the animation. -->
5969            <enum name="top" value="1" />
5970            <!-- The content being animated is forced under all other
5971                 content for the duration of the animation. -->
5972            <enum name="bottom" value="-1" />
5973        </attr>
5974        <!-- Special background behind animation.  Only for use with window
5975             animations.  Can only be a color, and only black.  If 0, the
5976             default, there is no background. -->
5977        <attr name="background" />
5978        <!-- Special option for window animations: if this window is on top
5979             of a wallpaper, don't animate the wallpaper with it. -->
5980        <attr name="detachWallpaper" format="boolean" />
5981    </declare-styleable>
5982
5983    <declare-styleable name="AnimationSet">
5984        <attr name="shareInterpolator" format="boolean" />
5985        <attr name="fillBefore" />
5986        <attr name="fillAfter" />
5987        <attr name="duration" />
5988        <attr name="startOffset" />
5989        <attr name="repeatMode" />
5990    </declare-styleable>
5991
5992    <declare-styleable name="RotateAnimation">
5993        <attr name="fromDegrees" />
5994        <attr name="toDegrees" />
5995        <attr name="pivotX" />
5996        <attr name="pivotY" />
5997    </declare-styleable>
5998
5999    <declare-styleable name="ScaleAnimation">
6000        <attr name="fromXScale" format="float|fraction|dimension" />
6001        <attr name="toXScale" format="float|fraction|dimension" />
6002        <attr name="fromYScale" format="float|fraction|dimension" />
6003        <attr name="toYScale" format="float|fraction|dimension" />
6004        <attr name="pivotX" />
6005        <attr name="pivotY" />
6006    </declare-styleable>
6007
6008    <declare-styleable name="TranslateAnimation">
6009        <attr name="fromXDelta" format="float|fraction" />
6010        <attr name="toXDelta" format="float|fraction" />
6011        <attr name="fromYDelta" format="float|fraction" />
6012        <attr name="toYDelta" format="float|fraction" />
6013    </declare-styleable>
6014
6015    <declare-styleable name="AlphaAnimation">
6016        <attr name="fromAlpha" format="float" />
6017        <attr name="toAlpha" format="float" />
6018    </declare-styleable>
6019
6020    <declare-styleable name="LayoutAnimation">
6021        <!-- Fraction of the animation duration used to delay the beginning of
6022         the animation of each child. -->
6023        <attr name="delay" format="float|fraction" />
6024        <!-- Animation to use on each child. -->
6025        <attr name="animation" format="reference" />
6026        <!-- The order in which the animations will be started. -->
6027        <attr name="animationOrder">
6028            <!-- Animations are started in the natural order. -->
6029            <enum name="normal" value="0" />
6030            <!-- Animations are started in the reverse order. -->
6031            <enum name="reverse" value="1" />
6032            <!-- Animations are started randomly. -->
6033            <enum name="random" value="2" />
6034        </attr>
6035        <!-- Interpolator used to interpolate the delay between the start of
6036         each animation. -->
6037        <attr name="interpolator" />
6038    </declare-styleable>
6039
6040    <declare-styleable name="GridLayoutAnimation">
6041        <!-- Fraction of the animation duration used to delay the beginning of
6042         the animation of each column. -->
6043        <attr name="columnDelay" format="float|fraction" />
6044        <!-- Fraction of the animation duration used to delay the beginning of
6045         the animation of each row. -->
6046        <attr name="rowDelay" format="float|fraction" />
6047        <!-- Direction of the animation in the grid. -->
6048        <attr name="direction">
6049            <!-- Animates columns from left to right. -->
6050            <flag name="left_to_right" value="0x0" />
6051            <!-- Animates columns from right to left. -->
6052            <flag name="right_to_left" value="0x1" />
6053            <!-- Animates rows from top to bottom. -->
6054            <flag name="top_to_bottom" value="0x0" />
6055            <!-- Animates rows from bottom to top. -->
6056            <flag name="bottom_to_top" value="0x2" />
6057        </attr>
6058        <!-- Priority of the rows and columns. When the priority is none,
6059         both rows and columns have the same priority. When the priority is
6060         column, the animations will be applied on the columns first. The same
6061         goes for rows. -->
6062        <attr name="directionPriority">
6063            <!-- Rows and columns are animated at the same time. -->
6064            <enum name="none"   value="0" />
6065            <!-- Columns are animated first. -->
6066            <enum name="column" value="1" />
6067            <!-- Rows are animated first. -->
6068            <enum name="row"    value="2" />
6069        </attr>
6070    </declare-styleable>
6071
6072    <declare-styleable name="AccelerateInterpolator">
6073        <!-- This is the amount of deceleration to add when easing in. -->
6074        <attr name="factor" format="float" />
6075    </declare-styleable>
6076
6077    <declare-styleable name="DecelerateInterpolator">
6078        <!-- This is the amount of acceleration to add when easing out. -->
6079        <attr name="factor" />
6080    </declare-styleable>
6081
6082    <declare-styleable name="CycleInterpolator">
6083        <attr name="cycles" format="float" />
6084    </declare-styleable>
6085
6086    <declare-styleable name="AnticipateInterpolator">
6087        <!-- This is the amount of tension. -->
6088        <attr name="tension" format="float" />
6089    </declare-styleable>
6090
6091    <declare-styleable name="OvershootInterpolator">
6092        <!-- This is the amount of tension. -->
6093        <attr name="tension" />
6094    </declare-styleable>
6095
6096    <declare-styleable name="AnticipateOvershootInterpolator">
6097        <!-- This is the amount of tension. -->
6098        <attr name="tension" />
6099        <!-- This is the amount by which to multiply the tension. -->
6100        <attr name="extraTension" format="float" />
6101    </declare-styleable>
6102
6103    <declare-styleable name="PathInterpolator">
6104        <!-- The x coordinate of the first control point of the cubic Bezier -->
6105        <attr name="controlX1" format="float" />
6106        <!-- The y coordinate of the first control point of the cubic Bezier -->
6107        <attr name="controlY1" format="float" />
6108        <!-- The x coordinate of the second control point of the cubic Bezier -->
6109        <attr name="controlX2" format="float" />
6110        <!-- The y coordinate of the second control point of the cubic Bezier -->
6111        <attr name="controlY2" format="float" />
6112        <!-- The control points defined as a path.
6113             When pathData is defined, then both of the control points of the
6114             cubic Bezier will be ignored. -->
6115        <attr name="pathData"/>
6116    </declare-styleable>
6117
6118    <!-- ========================== -->
6119    <!-- Transition attributes -->
6120    <!-- ========================== -->
6121    <eat-comment />
6122
6123    <!-- Use specific transition subclass names as the root tag of the XML resource that
6124         describes a {@link android.transition.Transition Transition},
6125         such as <code>changeBounds</code>, <code>fade</code>, and <code>transitionSet</code>. -->
6126    <declare-styleable name="Transition">
6127        <!-- Amount of time (in milliseconds) that the transition should run. -->
6128        <attr name="duration" />
6129        <!-- Delay in milliseconds before the transition starts. -->
6130        <attr name="startDelay" format="integer" />
6131        <!-- Interpolator to be used in the animations spawned by this transition. -->
6132        <attr name="interpolator" />
6133        <!-- The match order to use for the transition. This is a comma-separated
6134             list of values, containing one or more of the following:
6135             id, itemId, name, instance. These correspond to
6136             {@link android.transition.Transition#MATCH_ID},
6137             {@link android.transition.Transition#MATCH_ITEM_ID},
6138             {@link android.transition.Transition#MATCH_NAME}, and
6139             {@link android.transition.Transition#MATCH_INSTANCE}, respectively.
6140             This corresponds to {@link android.transition.Transition#setMatchOrder(int...)}. -->
6141        <attr name="matchOrder" format="string" />
6142    </declare-styleable>
6143
6144    <!-- @hide For internal use only. Use only as directed. -->
6145    <declare-styleable name="EpicenterTranslateClipReveal">
6146        <attr name="interpolatorX" format="reference" />
6147        <attr name="interpolatorY" format="reference" />
6148        <attr name="interpolatorZ" format="reference" />
6149    </declare-styleable>
6150
6151    <!-- Use <code>fade</code>as the root tag of the XML resource that
6152         describes a {@link android.transition.Fade Fade} transition.
6153         The attributes of the {@link android.R.styleable#Transition Transition}
6154         resource are available in addition to the specific attributes of Fade
6155         described here. -->
6156    <declare-styleable name="Fade">
6157        <!-- Equivalent to <code>transitionVisibilityMode</code>, fadingMode works only
6158             with the Fade transition. -->
6159        <attr name="fadingMode">
6160            <!-- Fade will only fade appearing items in. -->
6161            <enum name="fade_in" value="1" />
6162            <!-- Fade will only fade disappearing items out. -->
6163            <enum name="fade_out" value="2" />
6164            <!-- Fade will fade appearing items in and disappearing items out. -->
6165            <enum name="fade_in_out" value="3" />
6166        </attr>
6167    </declare-styleable>
6168
6169    <!-- Use <code>slide</code>as the root tag of the XML resource that
6170         describes a {@link android.transition.Slide Slide} transition.
6171         The attributes of the {@link android.R.styleable#Transition Transition}
6172         resource are available in addition to the specific attributes of Slide
6173         described here. -->
6174    <declare-styleable name="Slide">
6175        <attr name="slideEdge">
6176            <!-- Slide to and from the left edge of the Scene. -->
6177            <enum name="left" value="0x03" />
6178            <!-- Slide to and from the top edge of the Scene. -->
6179            <enum name="top" value="0x30" />
6180            <!-- Slide to and from the right edge of the Scene. -->
6181            <enum name="right" value="0x05" />
6182            <!-- Slide to and from the bottom edge of the Scene. -->
6183            <enum name="bottom" value="0x50" />
6184            <!-- Slide to and from the x-axis position at the start of the Scene root. -->
6185            <enum name="start" value="0x00800003"/>
6186            <!-- Slide to and from the x-axis position at the end of the Scene root. -->
6187            <enum name="end" value="0x00800005"/>
6188        </attr>
6189    </declare-styleable>
6190
6191    <!-- Use with {@link android.transition.Visibility} transitions, such as
6192         <code>slide</code>, <code>explode</code>, and <code>fade</code> to mark which
6193         views are supported. -->
6194    <declare-styleable name="VisibilityTransition">
6195        <!-- Changes whether the transition supports appearing and/or disappearing Views.
6196             Corresponds to {@link android.transition.Visibility#setMode(int)}. -->
6197        <attr name="transitionVisibilityMode">
6198            <!-- Only appearing Views will be supported. -->
6199            <flag name="mode_in" value="1" />
6200            <!-- Only disappearing Views will be supported. -->
6201            <flag name="mode_out" value="2" />
6202        </attr>
6203    </declare-styleable>
6204    <!-- Use <code>target</code> as the root tag of the XML resource that
6205     describes a {@link android.transition.Transition#addTarget(int)
6206     targetId} of a transition. There can be one or more targets inside
6207     a <code>targets</code> tag, which is itself inside an appropriate
6208     {@link android.R.styleable#Transition Transition} tag.
6209     -->
6210    <declare-styleable name="TransitionTarget">
6211        <!-- The id of a target on which this transition will animate changes. -->
6212        <attr name="targetId" format="reference" />
6213        <!-- The id of a target to exclude from this transition. -->
6214        <attr name="excludeId" format="reference" />
6215        <!-- The fully-qualified name of the Class to include in this transition. -->
6216        <attr name="targetClass" />
6217        <!-- The fully-qualified name of the Class to exclude from this transition. -->
6218        <attr name="excludeClass" format="string" />
6219        <!-- The transitionName of the target on which this transition will animation changes. -->
6220        <attr name="targetName" format="string" />
6221        <!-- The transitionName of the target to exclude from this transition. -->
6222        <attr name="excludeName" format="string" />
6223    </declare-styleable>
6224
6225    <!-- Use <code>set</code> as the root tag of the XML resource that
6226         describes a {@link android.transition.TransitionSet
6227         TransitionSet} transition. -->
6228    <declare-styleable name="TransitionSet">
6229        <attr name="transitionOrdering">
6230            <!-- child transitions should be played together. -->
6231            <enum name="together" value="0" />
6232            <!-- child transitions should be played sequentially, in the same order
6233            as the xml. -->
6234            <enum name="sequential" value="1" />
6235        </attr>
6236    </declare-styleable>
6237
6238    <!-- Use <code>changeTransform</code> as the root tag of the XML resource that
6239         describes a {@link android.transition.ChangeTransform} transition. -->
6240    <declare-styleable name="ChangeTransform">
6241        <!-- A parent change should use an overlay or affect the transform of the
6242             transitionining View. Default is true. Corresponds to
6243             {@link android.transition.ChangeTransform#setReparentWithOverlay(boolean)}. -->
6244        <attr name="reparentWithOverlay" format="boolean"/>
6245
6246        <!-- Tells ChangeTransform to track parent changes. Default is true. Corresponds to
6247             {@link android.transition.ChangeTransform#setReparent(boolean)}. -->
6248        <attr name="reparent" format="boolean"/>
6249    </declare-styleable>
6250
6251    <!-- Use <code>changeBounds</code>as the root tag of the XML resource that
6252         describes a {@link android.transition.ChangeBounds} transition.
6253         The attributes of the {@link android.R.styleable#Transition Transition}
6254         resource are available in addition to the specific attributes of ChangeBounds
6255         described here. -->
6256    <declare-styleable name="ChangeBounds">
6257        <!-- Resize the view by adjusting the clipBounds rather than changing the
6258             dimensions of the view itself. The default value is false. -->
6259        <attr name="resizeClip" format="boolean"/>
6260    </declare-styleable>
6261
6262    <!-- Use <code>transitionManager</code> as the root tag of the XML resource that
6263         describes a {@link android.transition.TransitionManager
6264         TransitionManager}. -->
6265    <declare-styleable name="TransitionManager">
6266        <!-- The id of a transition to be used in a particular scene change. -->
6267        <attr name="transition" format="reference" />
6268        <!-- The originating scene in this scene change. -->
6269        <attr name="fromScene" format="reference" />
6270        <!-- The destination scene in this scene change. -->
6271        <attr name="toScene" format="reference" />
6272    </declare-styleable>
6273
6274    <!-- Use <code>arcMotion</code> as the root tag of the XML resource that
6275         describes a {@link android.transition.ArcMotion}. This must be used
6276         within a transition with which the PathMotion should be associated. -->
6277    <declare-styleable name="ArcMotion">
6278        <!-- The minimum arc angle in degrees between the start and end points when
6279             they are close to horizontal. -->
6280        <attr name="minimumHorizontalAngle" format="float" />
6281        <!-- The minimum arc angle in degrees between the start and end points when
6282             they are close to vertical. -->
6283        <attr name="minimumVerticalAngle" format="float" />
6284        <!-- The maximum arc angle in degrees between the start and end points. -->
6285        <attr name="maximumAngle" format="float" />
6286    </declare-styleable>
6287
6288    <!-- Use <code>patternPathMotion</code> as the root tag of the XML resource that
6289         describes a {@link android.transition.PatternPathMotion}. This must be used
6290         within a transition with which the PathMotion should be associated. -->
6291    <declare-styleable name="PatternPathMotion">
6292        <!-- The path string describing the pattern to use for the PathPathMotion. -->
6293        <attr name="patternPathData" format="string" />
6294    </declare-styleable>
6295
6296    <!-- ========================== -->
6297    <!-- ValueAnimator class attributes -->
6298    <!-- ========================== -->
6299    <eat-comment />
6300
6301    <declare-styleable name="Animator">
6302        <!-- Defines the interpolator used to smooth the animation movement in time. -->
6303        <attr name="interpolator" />
6304        <!-- Amount of time (in milliseconds) for the animation to run. -->
6305        <attr name="duration" />
6306        <!-- Delay in milliseconds before the animation runs, once start time is reached. -->
6307        <attr name="startOffset"/>
6308        <!-- Defines how many times the animation should repeat. The default value is 0. -->
6309        <attr name="repeatCount"/>
6310        <!-- Defines the animation behavior when it reaches the end and the repeat count is
6311             greater than 0 or infinite. The default value is restart. -->
6312        <attr name="repeatMode"/>
6313        <!-- Value the animation starts from. -->
6314        <attr name="valueFrom" format="float|integer|color|dimension|string"/>
6315        <!-- Value the animation animates to. -->
6316        <attr name="valueTo" format="float|integer|color|dimension|string"/>
6317        <!-- The type of valueFrom and valueTo. -->
6318        <attr name="valueType">
6319            <!-- The given values are floats. This is the default value if valueType is
6320                 unspecified. Note that if any value attribute has a color value
6321                 (beginning with "#"), then this attribute is ignored and the color values are
6322                 interpreted as integers. -->
6323            <enum name="floatType" value="0" />
6324            <!-- values are integers. -->
6325            <enum name="intType"   value="1" />
6326            <!-- values are paths defined as strings.
6327                 This type is used for path morphing in AnimatedVectorDrawable. -->
6328            <enum name="pathType"   value="2" />
6329            <!-- values are colors, which are integers starting with "#". -->
6330            <enum name="colorType"   value="3" />
6331        </attr>
6332        <!-- Placeholder for a deleted attribute. This should be removed before M release. -->
6333        <attr name="removeBeforeMRelease" format="integer" />
6334    </declare-styleable>
6335
6336    <declare-styleable name="PropertyValuesHolder">
6337        <attr name="valueType" />
6338        <attr name="propertyName" />
6339        <attr name="valueFrom" />
6340        <attr name="valueTo" />
6341    </declare-styleable>
6342
6343    <declare-styleable name="Keyframe">
6344        <attr name="valueType" />
6345        <attr name="value" />
6346        <attr name="fraction" format="float" />
6347        <!-- Defines a per-interval interpolator for this keyframe. This interpolator will be used
6348             to interpolate between this keyframe and the previous keyframe.-->
6349        <attr name="interpolator" />
6350    </declare-styleable>
6351
6352    <!-- ========================== -->
6353    <!-- ObjectAnimator class attributes -->
6354    <!-- ========================== -->
6355    <eat-comment />
6356
6357    <declare-styleable name="PropertyAnimator">
6358        <!-- Name of the property being animated. -->
6359        <attr name="propertyName" format="string"/>
6360        <!-- Name of the property being animated as the X coordinate of the pathData. -->
6361        <attr name="propertyXName" format="string"/>
6362        <!-- Name of the property being animated as the Y coordinate of the pathData. -->
6363        <attr name="propertyYName" format="string"/>
6364        <!-- The path used to animate the properties in the ObjectAnimator -->
6365        <attr name="pathData"/>
6366    </declare-styleable>
6367
6368
6369    <!-- ========================== -->
6370    <!-- AnimatorSet class attributes -->
6371    <!-- ========================== -->
6372    <eat-comment />
6373
6374    <declare-styleable name="AnimatorSet">
6375        <!-- Name of the property being animated. -->
6376        <attr name="ordering">
6377            <!-- child animations should be played together. -->
6378            <enum name="together" value="0" />
6379            <!-- child animations should be played sequentially, in the same order as the xml. -->
6380            <enum name="sequentially" value="1" />
6381        </attr>
6382    </declare-styleable>
6383
6384    <!-- ========================== -->
6385    <!-- State attributes           -->
6386    <!-- ========================== -->
6387    <eat-comment />
6388
6389    <!-- Set of framework-provided states that may be specified on a Drawable. Actual usage of
6390         states may vary between view implementations, as documented on the individual state
6391         attributes. -->
6392    <declare-styleable name="DrawableStates">
6393        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6394             set when a view has input focus. -->
6395        <attr name="state_focused" format="boolean" />
6396        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6397             set when a view's window has input focus. -->
6398        <attr name="state_window_focused" format="boolean" />
6399        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6400             set when a view is enabled. -->
6401        <attr name="state_enabled" format="boolean" />
6402        <!-- State identifier indicating that the object <var>may</var> display a check mark. See
6403             {@link android.R.attr#state_checked} for the identifier that indicates whether it is
6404             actually checked. -->
6405        <attr name="state_checkable" format="boolean"/>
6406        <!-- State identifier indicating that the object is currently checked.  See
6407             {@link android.R.attr#state_checkable} for an additional identifier that can indicate
6408             if any object may ever display a check, regardless of whether state_checked is
6409             currently set. -->
6410        <attr name="state_checked" format="boolean"/>
6411        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6412             set when a view (or one of its parents) is currently selected. -->
6413        <attr name="state_selected" format="boolean" />
6414        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6415             set when the user is pressing down in a view. -->
6416        <attr name="state_pressed" format="boolean" />
6417        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6418             set when a view or its parent has been "activated" meaning the user has currently
6419             marked it as being of interest.  This is an alternative representation of
6420             state_checked for when the state should be propagated down the view hierarchy. -->
6421        <attr name="state_activated" format="boolean" />
6422        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6423             set when a view or drawable is considered "active" by its host. Actual usage may vary
6424             between views. Consult the host view documentation for details. -->
6425        <attr name="state_active" format="boolean" />
6426        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6427             set when a view or drawable is considered "single" by its host. Actual usage may vary
6428             between views. Consult the host view documentation for details. -->
6429        <attr name="state_single" format="boolean" />
6430        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6431             set when a view or drawable is in the first position in an ordered set. Actual usage
6432             may vary between views. Consult the host view documentation for details. -->
6433        <attr name="state_first" format="boolean" />
6434        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6435             set when a view or drawable is in the middle position in an ordered set. Actual usage
6436             may vary between views. Consult the host view documentation for details. -->
6437        <attr name="state_middle" format="boolean" />
6438        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6439             set when a view or drawable is in the last position in an ordered set. Actual usage
6440             may vary between views. Consult the host view documentation for details. -->
6441        <attr name="state_last" format="boolean" />
6442        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6443             indicating that the Drawable is in a view that is hardware accelerated.
6444             This means that the device can at least render a full-screen scaled
6445             bitmap with one layer of text and bitmaps composited on top of it
6446             at 60fps.  When this is set, the colorBackgroundCacheHint will be
6447             ignored even if it specifies a solid color, since that optimization
6448             is not needed. -->
6449        <attr name="state_accelerated" format="boolean" />
6450        <!-- State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
6451             set when a pointer is hovering over the view. -->
6452        <attr name="state_hovered" format="boolean" />
6453        <!-- State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
6454             indicating that the Drawable is in a view that is capable of accepting a drop of
6455             the content currently being manipulated in a drag-and-drop operation. -->
6456        <attr name="state_drag_can_accept" format="boolean" />
6457        <!-- State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
6458             indicating that a drag operation (for which the Drawable's view is a valid recipient)
6459             is currently positioned over the Drawable. -->
6460        <attr name="state_drag_hovered" format="boolean" />
6461        <!-- State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
6462             indicating that a View has accessibility focus. -->
6463        <attr name="state_accessibility_focused" format="boolean" />
6464    </declare-styleable>
6465    <declare-styleable name="ViewDrawableStates">
6466        <attr name="state_pressed" />
6467        <attr name="state_focused" />
6468        <attr name="state_selected" />
6469        <attr name="state_window_focused" />
6470        <attr name="state_enabled" />
6471        <attr name="state_activated" />
6472        <attr name="state_accelerated" />
6473        <attr name="state_hovered" />
6474        <attr name="state_drag_can_accept" />
6475        <attr name="state_drag_hovered" />
6476    </declare-styleable>
6477    <!-- State array representing a menu item that is currently checked. -->
6478    <declare-styleable name="MenuItemCheckedState">
6479        <attr name="state_checkable" />
6480        <attr name="state_checked" />
6481    </declare-styleable>
6482    <!-- State array representing a menu item that is checkable but is not currently checked. -->
6483    <declare-styleable name="MenuItemUncheckedState">
6484        <attr name="state_checkable" />
6485    </declare-styleable>
6486    <!-- State array representing a menu item that is currently focused and checked. -->
6487    <declare-styleable name="MenuItemCheckedFocusedState">
6488        <attr name="state_checkable" />
6489        <attr name="state_checked" />
6490        <attr name="state_focused" />
6491    </declare-styleable>
6492    <!-- State array representing a menu item that is focused and checkable but is not currently checked. -->
6493    <declare-styleable name="MenuItemUncheckedFocusedState">
6494        <attr name="state_checkable" />
6495        <attr name="state_focused" />
6496    </declare-styleable>
6497    <!-- State array representing an expandable list child's indicator. -->
6498    <declare-styleable name="ExpandableListChildIndicatorState">
6499        <!-- State identifier indicating the child is the last child within its group. -->
6500        <attr name="state_last" />
6501    </declare-styleable>
6502    <!-- State array representing an expandable list group's indicator. -->
6503    <declare-styleable name="ExpandableListGroupIndicatorState">
6504        <!-- State identifier indicating the group is expanded. -->
6505        <attr name="state_expanded" format="boolean" />
6506        <!-- State identifier indicating the group is empty (has no children). -->
6507        <attr name="state_empty" format="boolean" />
6508    </declare-styleable>
6509    <declare-styleable name="PopupWindowBackgroundState">
6510        <!-- State identifier indicating the popup will be above the anchor. -->
6511        <attr name="state_above_anchor" format="boolean" />
6512    </declare-styleable>
6513    <declare-styleable name="TextViewMultiLineBackgroundState">
6514        <!-- State identifier indicating a TextView has a multi-line layout. -->
6515        <attr name="state_multiline" format="boolean" />
6516    </declare-styleable>
6517
6518    <!-- ***************************************************************** -->
6519    <!-- Support for Searchable activities. -->
6520    <!-- ***************************************************************** -->
6521    <eat-comment />
6522
6523    <!-- Searchable activities and applications must provide search configuration information
6524        in an XML file, typically called searchable.xml.  This file is referenced in your manifest.
6525        For a more in-depth discussion of search configuration, please refer to
6526        {@link android.app.SearchManager}. -->
6527    <declare-styleable name="Searchable">
6528          <!--<strong>This is deprecated.</strong><br/>The default
6529              application icon is now always used, so this attribute is
6530              obsolete.-->
6531        <attr name="icon" />
6532        <!-- This is the user-displayed name of the searchable activity.  <i>Required
6533            attribute.</i> -->
6534        <attr name="label" />
6535        <!-- If supplied, this string will be displayed as a hint to the user.  <i>Optional
6536            attribute.</i> -->
6537        <attr name="hint" />
6538        <!-- If supplied, this string will be displayed as the text of the "Search" button.
6539          <i>Optional attribute.</i>
6540          {@deprecated This will create a non-standard UI appearance, because the search bar UI is
6541                       changing to use only icons for its buttons.}-->
6542        <attr name="searchButtonText" format="string" />
6543        <attr name="inputType" />
6544        <attr name="imeOptions" />
6545
6546        <!-- Additional features are controlled by mode bits in this field.  Omitting
6547            this field, or setting to zero, provides default behavior.  <i>Optional attribute.</i>
6548        -->
6549        <attr name="searchMode">
6550          <!-- If set, this flag enables the display of the search target (label) within the
6551               search bar.  If neither bad mode is selected, no badge will be shown. -->
6552          <flag name="showSearchLabelAsBadge" value="0x04" />
6553          <!--<strong>This is deprecated.</strong><br/>The default
6554              application icon is now always used, so this option is
6555              obsolete.-->
6556          <flag name="showSearchIconAsBadge" value="0x08" />
6557          <!-- If set, this flag causes the suggestion column SUGGEST_COLUMN_INTENT_DATA to
6558               be considered as the text for suggestion query rewriting.  This should only
6559               be used when the values in SUGGEST_COLUMN_INTENT_DATA are suitable for user
6560               inspection and editing - typically, HTTP/HTTPS Uri's. -->
6561          <flag name="queryRewriteFromData" value="0x10" />
6562          <!-- If set, this flag causes the suggestion column SUGGEST_COLUMN_TEXT_1 to
6563               be considered as the text for suggestion query rewriting.  This should be used
6564               for suggestions in which no query text is provided and the SUGGEST_COLUMN_INTENT_DATA
6565               values are not suitable for user inspection and editing. -->
6566          <flag name="queryRewriteFromText" value="0x20" />
6567        </attr>
6568
6569        <!-- Voice search features are controlled by mode bits in this field.  Omitting
6570            this field, or setting to zero, provides default behavior.
6571            If showVoiceSearchButton is set, then launchWebSearch or launchRecognizer must
6572            also be set.  <i>Optional attribute.</i>
6573        -->
6574        <attr name="voiceSearchMode">
6575          <!-- If set, display a voice search button.  This only takes effect if voice search is
6576               available on the device. -->
6577          <flag name="showVoiceSearchButton" value="0x01" />
6578          <!-- If set, the voice search button will take the user directly to a built-in
6579               voice web search activity.  Most applications will not use this flag, as it
6580               will take the user away from the activity in which search was invoked. -->
6581          <flag name="launchWebSearch" value="0x02" />
6582          <!-- If set, the voice search button will take the user directly to a built-in
6583               voice recording activity.  This activity will prompt the user to speak,
6584               transcribe the spoken text, and forward the resulting query
6585               text to the searchable activity, just as if the user had typed it into
6586               the search UI and clicked the search button. -->
6587          <flag name="launchRecognizer" value="0x04" />
6588        </attr>
6589
6590        <!-- If provided, this specifies the language model that should be used by the
6591             voice recognition system.  See
6592             {@link android.speech.RecognizerIntent#EXTRA_LANGUAGE_MODEL } for more information.
6593             If not provided, the default value
6594             {@link android.speech.RecognizerIntent#LANGUAGE_MODEL_FREE_FORM } will be used. -->
6595        <attr name="voiceLanguageModel" format="string" />
6596        <!-- If provided, this specifies a prompt that will be displayed during voice input. -->
6597        <attr name="voicePromptText" format="string" />
6598        <!-- If provided, this specifies the spoken language to be expected, and that it will be
6599             different than the one set in the {@link java.util.Locale#getDefault()}. -->
6600        <attr name="voiceLanguage" format="string" />
6601        <!-- If provided, enforces the maximum number of results to return, including the "best"
6602             result which will always be provided as the SEARCH intent's primary query.  Must be one
6603             or greater.  If not provided, the recognizer will choose how many results to return.
6604             -->
6605        <attr name="voiceMaxResults" format="integer" />
6606
6607        <!-- If provided, this is the trigger indicating that the searchable activity
6608            provides suggestions as well.  The value must be a fully-qualified content provider
6609            authority (e.g. "com.example.android.apis.SuggestionProvider") and should match the
6610            "android:authorities" tag in your content provider's manifest entry.  <i>Optional
6611            attribute.</i> -->
6612        <attr name="searchSuggestAuthority" format="string" />
6613        <!-- If provided, this will be inserted in the suggestions query Uri, after the authority
6614            you have provide but before the standard suggestions path. <i>Optional attribute.</i>
6615            -->
6616        <attr name="searchSuggestPath" format="string" />
6617        <!-- If provided, suggestion queries will be passed into your query function
6618            as the <i>selection</i> parameter.  Typically this will be a WHERE clause for your
6619            database, and will contain a single question mark, which represents the actual query
6620            string that has been typed by the user.  If not provided, then the user query text
6621            will be appended to the query Uri (after an additional "/".)  <i>Optional
6622            attribute.</i> -->
6623        <attr name="searchSuggestSelection" format="string" />
6624
6625        <!-- If provided, and not overridden by an action in the selected suggestion, this
6626            string will be placed in the action field of the {@link android.content.Intent Intent}
6627            when the user clicks a suggestion.  <i>Optional attribute.</i> -->
6628        <attr name="searchSuggestIntentAction" format="string" />
6629        <!-- If provided, and not overridden by an action in the selected suggestion, this
6630            string will be placed in the data field of the {@link android.content.Intent Intent}
6631            when the user clicks a suggestion.  <i>Optional attribute.</i> -->
6632        <attr name="searchSuggestIntentData" format="string" />
6633
6634        <!-- If provided, this is the minimum number of characters needed to trigger
6635             search suggestions. The default value is 0. <i>Optional attribute.</i> -->
6636        <attr name="searchSuggestThreshold" format="integer" />
6637
6638        <!-- If provided and <code>true</code>, this searchable activity will be
6639             included in any global lists of search targets.
6640             The default value is <code>false</code>. <i>Optional attribute.</i>. -->
6641        <attr name="includeInGlobalSearch" format="boolean" />
6642
6643        <!-- If provided and <code>true</code>, this searchable activity will be invoked for all
6644             queries in a particular session. If set to <code>false</code> and the activity
6645             returned zero results for a query, it will not be invoked again in that session for
6646             supersets of that zero-results query. For example, if the activity returned zero
6647             results for "bo", it would not be queried again for "bob".
6648             The default value is <code>false</code>. <i>Optional attribute.</i>. -->
6649        <attr name="queryAfterZeroResults" format="boolean" />
6650        <!-- If provided, this string will be used to describe the searchable item in the
6651             searchable items settings within system search settings. <i>Optional
6652             attribute.</i> -->
6653        <attr name="searchSettingsDescription" format="string" />
6654
6655        <!-- If provided and <code>true</code>, URLs entered in the search dialog while searching
6656             within this activity would be detected and treated as URLs (show a 'go' button in the
6657             keyboard and invoke the browser directly when user launches the URL instead of passing
6658             the URL to the activity). If set to <code>false</code> any URLs entered are treated as
6659             normal query text.
6660             The default value is <code>false</code>. <i>Optional attribute.</i>. -->
6661        <attr name="autoUrlDetect" format="boolean" />
6662
6663    </declare-styleable>
6664
6665    <!-- In order to process special action keys during search, you must define them using
6666            one or more "ActionKey" elements in your Searchable metadata.  For a more in-depth
6667            discussion of action code handling, please refer to {@link android.app.SearchManager}.
6668    -->
6669    <declare-styleable name="SearchableActionKey">
6670        <!-- This attribute denotes the action key you wish to respond to.  Note that not
6671            all action keys are actually supported using this mechanism, as many of them are
6672            used for typing, navigation, or system functions.  This will be added to the
6673            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
6674            searchable activity.  To examine the key code, use
6675            {@link android.content.Intent#getIntExtra getIntExtra(SearchManager.ACTION_KEY)}.
6676            <p>Note, in addition to the keycode, you must also provide one or more of the action
6677            specifier attributes.  <i>Required attribute.</i> -->
6678        <attr name="keycode" />
6679
6680        <!-- If you wish to handle an action key during normal search query entry, you
6681            must define an action string here.  This will be added to the
6682            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
6683            searchable activity.  To examine the string, use
6684            {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}.
6685            <i>Optional attribute.</i> -->
6686        <attr name="queryActionMsg"  format="string" />
6687
6688        <!-- If you wish to handle an action key while a suggestion is being displayed <i>and
6689            selected</i>, there are two ways to handle this.  If <i>all</i> of your suggestions
6690            can handle the action key, you can simply define the action message using this
6691            attribute.  This will be added to the
6692            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
6693            searchable activity.  To examine the string, use
6694            {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}.
6695            <i>Optional attribute.</i> -->
6696        <attr name="suggestActionMsg"  format="string" />
6697
6698        <!-- If you wish to handle an action key while a suggestion is being displayed <i>and
6699            selected</i>, but you do not wish to enable this action key for every suggestion,
6700            then you can use this attribute to control it on a suggestion-by-suggestion basis.
6701            First, you must define a column (and name it here) where your suggestions will include
6702            the action string.  Then, in your content provider, you must provide this column, and
6703            when desired, provide data in this column.
6704            The search manager will look at your suggestion cursor, using the string
6705            provided here in order to select a column, and will use that to select a string from
6706            the cursor.  That string will be added to the
6707            {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to
6708            your searchable activity.  To examine the string, use
6709            {@link android.content.Intent#getStringExtra
6710            getStringExtra(SearchManager.ACTION_MSG)}.  <i>If the data does not exist for the
6711            selection suggestion, the action key will be ignored.</i><i>Optional attribute.</i> -->
6712        <attr name="suggestActionMsgColumn" format="string" />
6713
6714    </declare-styleable>
6715
6716    <!-- ***************************************************************** -->
6717    <!-- Support for MapView. -->
6718    <!-- ***************************************************************** -->
6719    <eat-comment />
6720
6721    <!-- The set of attributes for a MapView. -->
6722    <declare-styleable name="MapView">
6723        <!-- Value is a string that specifies the Maps API Key to use. -->
6724        <attr name="apiKey" format="string" />
6725    </declare-styleable>
6726
6727    <!-- **************************************************************** -->
6728    <!-- Menu XML inflation. -->
6729    <!-- **************************************************************** -->
6730    <eat-comment />
6731
6732    <!-- Base attributes that are available to all Menu objects. -->
6733    <declare-styleable name="Menu">
6734    </declare-styleable>
6735
6736    <!-- Base attributes that are available to all groups. -->
6737    <declare-styleable name="MenuGroup">
6738
6739        <!-- The ID of the group. -->
6740        <attr name="id" />
6741
6742        <!-- The category applied to all items within this group.
6743             (This will be or'ed with the orderInCategory attribute.) -->
6744        <attr name="menuCategory">
6745            <!-- Items are part of a container. -->
6746            <enum name="container" value="0x00010000" />
6747            <!-- Items are provided by the system. -->
6748            <enum name="system" value="0x00020000" />
6749            <!-- Items are user-supplied secondary (infrequently used). -->
6750            <enum name="secondary" value="0x00030000" />
6751            <!-- Items are alternative actions. -->
6752            <enum name="alternative" value="0x00040000" />
6753        </attr>
6754
6755        <!-- The order within the category applied to all items within this group.
6756             (This will be or'ed with the category attribute.) -->
6757        <attr name="orderInCategory" format="integer" />
6758
6759        <!-- Whether the items are capable of displaying a check mark. -->
6760        <attr name="checkableBehavior">
6761            <!-- The items are not checkable. -->
6762            <enum name="none" value="0" />
6763            <!-- The items are all checkable. -->
6764            <enum name="all" value="1" />
6765            <!-- The items are checkable and there will only be a single checked item in
6766                 this group. -->
6767            <enum name="single" value="2" />
6768        </attr>
6769
6770        <!-- Whether the items are shown/visible. -->
6771        <attr name="visible" />
6772
6773        <!-- Whether the items are enabled. -->
6774        <attr name="enabled" />
6775
6776    </declare-styleable>
6777
6778    <!-- Base attributes that are available to all Item objects. -->
6779    <declare-styleable name="MenuItem">
6780
6781        <!-- The ID of the item. -->
6782        <attr name="id" />
6783
6784        <!-- The category applied to the item.
6785             (This will be or'ed with the orderInCategory attribute.) -->
6786        <attr name="menuCategory" />
6787
6788        <!-- The order within the category applied to the item.
6789             (This will be or'ed with the category attribute.) -->
6790        <attr name="orderInCategory" />
6791
6792        <!-- The title associated with the item. -->
6793        <attr name="title" format="string" />
6794
6795        <!-- The condensed title associated with the item.  This is used in situations where the
6796             normal title may be too long to be displayed. -->
6797        <attr name="titleCondensed" format="string" />
6798
6799        <!-- The icon associated with this item.  This icon will not always be shown, so
6800             the title should be sufficient in describing this item. -->
6801        <attr name="icon" />
6802
6803        <!-- The alphabetic shortcut key.  This is the shortcut when using a keyboard
6804             with alphabetic keys. -->
6805        <attr name="alphabeticShortcut" format="string" />
6806
6807        <!-- The numeric shortcut key.  This is the shortcut when using a numeric (e.g., 12-key)
6808             keyboard. -->
6809        <attr name="numericShortcut" format="string" />
6810
6811        <!-- Whether the item is capable of displaying a check mark. -->
6812        <attr name="checkable" format="boolean" />
6813
6814        <!-- Whether the item is checked.  Note that you must first have enabled checking with
6815             the checkable attribute or else the check mark will not appear. -->
6816        <attr name="checked" />
6817
6818        <!-- Whether the item is shown/visible. -->
6819        <attr name="visible" />
6820
6821        <!-- Whether the item is enabled. -->
6822        <attr name="enabled" />
6823
6824        <!-- Name of a method on the Context used to inflate the menu that will be
6825             called when the item is clicked. -->
6826        <attr name="onClick" />
6827
6828        <!-- How this item should display in the Action Bar, if present. -->
6829        <attr name="showAsAction">
6830            <!-- Never show this item in an action bar, show it in the overflow menu instead.
6831                 Mutually exclusive with "ifRoom" and "always". -->
6832            <flag name="never" value="0" />
6833            <!-- Show this item in an action bar if there is room for it as determined
6834                 by the system. Favor this option over "always" where possible.
6835                 Mutually exclusive with "never" and "always". -->
6836            <flag name="ifRoom" value="1" />
6837            <!-- Always show this item in an actionbar, even if it would override
6838                 the system's limits of how much stuff to put there. This may make
6839                 your action bar look bad on some screens. In most cases you should
6840                 use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
6841            <flag name="always" value="2" />
6842            <!-- When this item is shown as an action in the action bar, show a text
6843                 label with it even if it has an icon representation. -->
6844            <flag name="withText" value="4" />
6845            <!-- This item's action view collapses to a normal menu
6846                 item. When expanded, the action view takes over a
6847                 larger segment of its container. -->
6848            <flag name="collapseActionView" value="8" />
6849        </attr>
6850
6851        <!-- An optional layout to be used as an action view.
6852             See {@link android.view.MenuItem#setActionView(android.view.View)}
6853             for more info. -->
6854        <attr name="actionLayout" format="reference" />
6855
6856        <!-- The name of an optional View class to instantiate and use as an
6857             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
6858             for more info. -->
6859        <attr name="actionViewClass" format="string" />
6860
6861        <!-- The name of an optional ActionProvider class to instantiate an action view
6862             and perform operations such as default action for that menu item.
6863             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
6864             for more info. -->
6865        <attr name="actionProviderClass" format="string" />
6866
6867    </declare-styleable>
6868
6869    <!-- Attrbitutes for a ActvityChooserView. -->
6870    <declare-styleable name="ActivityChooserView">
6871        <!-- The maximal number of items initially shown in the activity list. -->
6872        <attr name="initialActivityCount" format="string" />
6873        <!-- The drawable to show in the button for expanding the activities overflow popup.
6874             <strong>Note:</strong> Clients would like to set this drawable
6875             as a clue about the action the chosen activity will perform. For
6876             example, if share activity is to be chosen the drawable should
6877             give a clue that sharing is to be performed.
6878         -->
6879        <attr name="expandActivityOverflowButtonDrawable" format="reference" />
6880    </declare-styleable>
6881
6882    <!-- **************************************************************** -->
6883    <!-- Preferences framework. -->
6884    <!-- **************************************************************** -->
6885    <eat-comment />
6886
6887    <!-- Base attributes available to PreferenceGroup. -->
6888    <declare-styleable name="PreferenceGroup">
6889        <!-- Whether to order the Preference under this group as they appear in the XML file.
6890             If this is false, the ordering will follow the Preference order attribute and
6891             default to alphabetic for those without the order attribute. -->
6892        <attr name="orderingFromXml" format="boolean" />
6893    </declare-styleable>
6894
6895    <!-- Attribute for a header describing the item shown in the top-level list
6896         from which the selects the set of preference to dig in to. -->
6897    <declare-styleable name="PreferenceHeader">
6898        <!-- Identifier value for the header. -->
6899        <attr name="id" />
6900        <!-- The title of the item that is shown to the user. -->
6901        <attr name="title" />
6902        <!-- The summary for the item. -->
6903        <attr name="summary" format="string" />
6904        <!-- The title for the bread crumb of this item. -->
6905        <attr name="breadCrumbTitle" format="string" />
6906        <!-- The short title for the bread crumb of this item. -->
6907        <attr name="breadCrumbShortTitle" format="string" />
6908        <!-- An icon for the item. -->
6909        <attr name="icon" />
6910        <!-- The fragment that is displayed when the user selects this item. -->
6911        <attr name="fragment" format="string" />
6912    </declare-styleable>
6913
6914    <!-- WARNING:  If adding attributes to Preference, make sure it does not conflict
6915                   with a View's attributes.  Some subclasses (e.g., EditTextPreference)
6916                   proxy all attributes to its EditText widget. -->
6917    <eat-comment />
6918
6919    <!-- Base attributes available to Preference. -->
6920    <declare-styleable name="Preference">
6921        <!-- The optional icon for the preference -->
6922        <attr name="icon" />
6923        <!-- The key to store the Preference value. -->
6924        <attr name="key" format="string" />
6925        <!-- The title for the Preference in a PreferenceActivity screen. -->
6926        <attr name="title" />
6927        <!-- The summary for the Preference in a PreferenceActivity screen. -->
6928        <attr name="summary" />
6929        <!-- The order for the Preference (lower values are to be ordered first). If this is not
6930             specified, the default ordering will be alphabetic. -->
6931        <attr name="order" format="integer" />
6932        <!-- When used inside of a modern PreferenceActivity, this declares
6933             a new PreferenceFragment to be shown when the user selects this item. -->
6934        <attr name="fragment" />
6935        <!-- The layout for the Preference in a PreferenceActivity screen. This should
6936             rarely need to be changed, look at widgetLayout instead. -->
6937        <attr name="layout" />
6938        <!-- The layout for the controllable widget portion of a Preference. This is inflated
6939             into the layout for a Preference and should be used more frequently than
6940             the layout attribute. For example, a checkbox preference would specify
6941             a custom layout (consisting of just the CheckBox) here. -->
6942        <attr name="widgetLayout" format="reference" />
6943        <!-- Whether the Preference is enabled. -->
6944        <attr name="enabled" />
6945        <!-- Whether the Preference is selectable. -->
6946        <attr name="selectable" format="boolean" />
6947        <!-- The key of another Preference that this Preference will depend on.  If the other
6948             Preference is not set or is off, this Preference will be disabled. -->
6949        <attr name="dependency" format="string" />
6950        <!-- Whether the Preference stores its value to the shared preferences. -->
6951        <attr name="persistent" />
6952        <!-- The default value for the preference, which will be set either if persistence
6953             is off or persistence is on and the preference is not found in the persistent
6954             storage.  -->
6955        <attr name="defaultValue" format="string|boolean|integer|reference|float" />
6956        <!-- Whether the view of this Preference should be disabled when
6957             this Preference is disabled. -->
6958        <attr name="shouldDisableView" format="boolean" />
6959    </declare-styleable>
6960
6961    <!-- Base attributes available to CheckBoxPreference. -->
6962    <declare-styleable name="CheckBoxPreference">
6963        <!-- The summary for the Preference in a PreferenceActivity screen when the
6964             CheckBoxPreference is checked. If separate on/off summaries are not
6965             needed, the summary attribute can be used instead. -->
6966        <attr name="summaryOn" format="string" />
6967        <!-- The summary for the Preference in a PreferenceActivity screen when the
6968             CheckBoxPreference is unchecked. If separate on/off summaries are not
6969             needed, the summary attribute can be used instead. -->
6970        <attr name="summaryOff" format="string" />
6971        <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default,
6972             dependents will be disabled when this is unchecked, so the value of this preference is false. -->
6973        <attr name="disableDependentsState" format="boolean" />
6974    </declare-styleable>
6975
6976    <!-- Base attributes available to DialogPreference. -->
6977    <declare-styleable name="DialogPreference">
6978        <!-- The title in the dialog. -->
6979        <attr name="dialogTitle" format="string" />
6980        <!-- The message in the dialog. If a dialogLayout is provided and contains
6981             a TextView with ID android:id/message, this message will be placed in there. -->
6982        <attr name="dialogMessage" format="string" />
6983        <!-- The icon for the dialog. -->
6984        <attr name="dialogIcon" format="reference" />
6985        <!-- The positive button text for the dialog. Set to @null to hide the positive button. -->
6986        <attr name="positiveButtonText" format="string" />
6987        <!-- The negative button text for the dialog. Set to @null to hide the negative button. -->
6988        <attr name="negativeButtonText" format="string" />
6989        <!-- A layout to be used as the content View for the dialog. By default, this shouldn't
6990             be needed. If a custom DialogPreference is required, this should be set. For example,
6991             the EditTextPreference uses a layout with an EditText as this attribute. -->
6992        <attr name="dialogLayout" format="reference" />
6993    </declare-styleable>
6994
6995    <!-- Base attributes available to ListPreference. -->
6996    <declare-styleable name="ListPreference">
6997        <!-- The human-readable array to present as a list. Each entry must have a corresponding
6998             index in entryValues. -->
6999        <attr name="entries" />
7000        <!-- The array to find the value to save for a preference when an entry from
7001             entries is selected. If a user clicks on the second item in entries, the
7002             second item in this array will be saved to the preference. -->
7003        <attr name="entryValues" format="reference" />
7004    </declare-styleable>
7005
7006    <declare-styleable name="MultiSelectListPreference">
7007        <!-- The human-readable array to present as a list. Each entry must have a corresponding
7008             index in entryValues. -->
7009        <attr name="entries" />
7010        <!-- The array to find the value to save for a preference when an entry from
7011             entries is selected. If a user clicks the second item in entries, the
7012             second item in this array will be saved to the preference. -->
7013        <attr name="entryValues" />
7014    </declare-styleable>
7015
7016    <!-- Base attributes available to RingtonePreference. -->
7017    <declare-styleable name="RingtonePreference">
7018        <!-- Which ringtone type(s) to show in the picker. -->
7019        <attr name="ringtoneType">
7020            <!-- Ringtones. -->
7021            <flag name="ringtone" value="1" />
7022            <!-- Notification sounds. -->
7023            <flag name="notification" value="2" />
7024            <!-- Alarm sounds. -->
7025            <flag name="alarm" value="4" />
7026            <!-- All available ringtone sounds. -->
7027            <flag name="all" value="7" />
7028        </attr>
7029        <!-- Whether to show an item for a default sound. -->
7030        <attr name="showDefault" format="boolean" />
7031        <!-- Whether to show an item for 'Silent'. -->
7032        <attr name="showSilent" format="boolean" />
7033    </declare-styleable>
7034
7035    <!-- Base attributes available to VolumePreference. -->
7036    <declare-styleable name="VolumePreference">
7037        <!-- Different audio stream types. -->
7038        <attr name="streamType">
7039            <enum name="voice" value="0" />
7040            <enum name="system" value="1" />
7041            <enum name="ring" value="2" />
7042            <enum name="music" value="3" />
7043            <enum name="alarm" value="4" />
7044        </attr>
7045    </declare-styleable>
7046
7047    <declare-styleable name="InputMethodService">
7048        <!-- Background to use for entire input method when it is being
7049             shown in fullscreen mode with the extract view, to ensure
7050             that it completely covers the application.  This allows,
7051             for example, the candidate view to be hidden
7052             while in fullscreen mode without having the application show through
7053             behind it.-->
7054        <attr name="imeFullscreenBackground" format="reference|color" />
7055        <!-- Animation to use when showing the fullscreen extract UI after
7056             it had previously been hidden. -->
7057        <attr name="imeExtractEnterAnimation" format="reference" />
7058        <!-- Animation to use when hiding the fullscreen extract UI after
7059             it had previously been shown. -->
7060        <attr name="imeExtractExitAnimation" format="reference" />
7061    </declare-styleable>
7062
7063    <declare-styleable name="VoiceInteractionSession">
7064    </declare-styleable>
7065
7066    <declare-styleable name="KeyboardView">
7067        <!-- Default KeyboardView style. -->
7068        <attr name="keyboardViewStyle" format="reference" />
7069
7070        <!-- Image for the key. This image needs to be a StateListDrawable, with the following
7071             possible states: normal, pressed, checkable, checkable+pressed, checkable+checked,
7072             checkable+checked+pressed. -->
7073        <attr name="keyBackground" format="reference" />
7074
7075        <!-- Size of the text for character keys. -->
7076        <attr name="keyTextSize" format="dimension" />
7077
7078        <!-- Size of the text for custom keys with some text and no icon. -->
7079        <attr name="labelTextSize" format="dimension" />
7080
7081        <!-- Color to use for the label in a key. -->
7082        <attr name="keyTextColor" format="color" />
7083
7084        <!-- Layout resource for key press feedback.-->
7085        <attr name="keyPreviewLayout" format="reference" />
7086
7087        <!-- Vertical offset of the key press feedback from the key. -->
7088        <attr name="keyPreviewOffset" format="dimension" />
7089
7090        <!-- Height of the key press feedback popup. -->
7091        <attr name="keyPreviewHeight" format="dimension" />
7092
7093        <!-- Amount to offset the touch Y coordinate by, for bias correction. -->
7094        <attr name="verticalCorrection" format="dimension" />
7095
7096        <!-- Layout resource for popup keyboards. -->
7097        <attr name="popupLayout" format="reference" />
7098
7099        <attr name="shadowColor" />
7100        <attr name="shadowRadius" />
7101    </declare-styleable>
7102
7103    <declare-styleable name="KeyboardViewPreviewState">
7104        <!-- State for {@link android.inputmethodservice.KeyboardView KeyboardView}
7105                key preview background. -->
7106        <attr name="state_long_pressable" format="boolean" />
7107    </declare-styleable>
7108
7109    <declare-styleable name="Keyboard">
7110        <!-- Default width of a key, in pixels or percentage of display width. -->
7111        <attr name="keyWidth" format="dimension|fraction" />
7112        <!-- Default height of a key, in pixels or percentage of display width. -->
7113        <attr name="keyHeight" format="dimension|fraction" />
7114        <!-- Default horizontal gap between keys. -->
7115        <attr name="horizontalGap" format="dimension|fraction" />
7116        <!-- Default vertical gap between rows of keys. -->
7117        <attr name="verticalGap" format="dimension|fraction" />
7118    </declare-styleable>
7119
7120    <declare-styleable name="Keyboard_Row">
7121        <!-- Row edge flags. -->
7122        <attr name="rowEdgeFlags">
7123            <!-- Row is anchored to the top of the keyboard. -->
7124            <flag name="top" value="4" />
7125            <!-- Row is anchored to the bottom of the keyboard. -->
7126            <flag name="bottom" value="8" />
7127        </attr>
7128        <!-- Mode of the keyboard. If the mode doesn't match the
7129             requested keyboard mode, the row will be skipped. -->
7130        <attr name="keyboardMode" format="reference" />
7131    </declare-styleable>
7132
7133    <declare-styleable name="Keyboard_Key">
7134        <!-- The unicode value or comma-separated values that this key outputs. -->
7135        <attr name="codes" format="integer|string" />
7136        <!-- The XML keyboard layout of any popup keyboard. -->
7137        <attr name="popupKeyboard" format="reference" />
7138        <!-- The characters to display in the popup keyboard. -->
7139        <attr name="popupCharacters" format="string" />
7140        <!-- Key edge flags. -->
7141        <attr name="keyEdgeFlags">
7142            <!-- Key is anchored to the left of the keyboard. -->
7143            <flag name="left" value="1" />
7144            <!-- Key is anchored to the right of the keyboard. -->
7145            <flag name="right" value="2" />
7146        </attr>
7147        <!-- Whether this is a modifier key such as Alt or Shift. -->
7148        <attr name="isModifier" format="boolean" />
7149        <!-- Whether this is a toggle key. -->
7150        <attr name="isSticky" format="boolean" />
7151        <!-- Whether long-pressing on this key will make it repeat. -->
7152        <attr name="isRepeatable" format="boolean" />
7153        <!-- The icon to show in the popup preview. -->
7154        <attr name="iconPreview" format="reference" />
7155        <!-- The string of characters to output when this key is pressed. -->
7156        <attr name="keyOutputText" format="string" />
7157        <!-- The label to display on the key. -->
7158        <attr name="keyLabel" format="string" />
7159        <!-- The icon to display on the key instead of the label. -->
7160        <attr name="keyIcon" format="reference" />
7161        <!-- Mode of the keyboard. If the mode doesn't match the
7162             requested keyboard mode, the key will be skipped. -->
7163        <attr name="keyboardMode" />
7164    </declare-styleable>
7165
7166    <!-- =============================== -->
7167    <!-- AppWidget package class attributes -->
7168    <!-- =============================== -->
7169    <eat-comment />
7170
7171    <!-- Use <code>appwidget-provider</code> as the root tag of the XML resource that
7172         describes an AppWidget provider.  See {@link android.appwidget android.appwidget}
7173         package for more info.
7174     -->
7175    <declare-styleable name="AppWidgetProviderInfo">
7176        <!-- Minimum width of the AppWidget. -->
7177        <attr name="minWidth"/>
7178        <!-- Minimum height of the AppWidget. -->
7179        <attr name="minHeight"/>
7180        <!-- Minimum width that the AppWidget can be resized to. -->
7181        <attr name="minResizeWidth" format="dimension"/>
7182        <!-- Minimum height that the AppWidget can be resized to. -->
7183        <attr name="minResizeHeight" format="dimension"/>
7184        <!-- Update period in milliseconds, or 0 if the AppWidget will update itself. -->
7185        <attr name="updatePeriodMillis" format="integer" />
7186        <!-- A resource id of a layout. -->
7187        <attr name="initialLayout" format="reference" />
7188        <!-- A resource id of a layout. -->
7189        <attr name="initialKeyguardLayout" format="reference" />
7190        <!-- A class name in the AppWidget's package to be launched to configure.
7191             If not supplied, then no activity will be launched. -->
7192        <attr name="configure" format="string" />
7193        <!-- A preview of what the AppWidget will look like after it's configured.
7194              If not supplied, the AppWidget's icon will be used. -->
7195        <attr name="previewImage" format="reference" />
7196        <!-- The view id of the AppWidget subview which should be auto-advanced.
7197             by the widget's host. -->
7198        <attr name="autoAdvanceViewId" format="reference" />
7199        <!-- Optional parameter which indicates if and how this widget can be
7200             resized. Supports combined values using | operator. -->
7201        <attr name="resizeMode" format="integer">
7202            <flag name="none" value="0x0" />
7203            <flag name="horizontal" value="0x1" />
7204            <flag name="vertical" value="0x2" />
7205        </attr>
7206        <!-- Optional parameter which indicates where this widget can be shown,
7207             ie. home screen, keyguard, search bar or any combination thereof.
7208             Supports combined values using | operator. -->
7209        <attr name="widgetCategory" format="integer">
7210            <flag name="home_screen" value="0x1" />
7211            <flag name="keyguard" value="0x2" />
7212            <flag name="searchbox" value="0x4" />
7213        </attr>
7214    </declare-styleable>
7215
7216    <!-- =============================== -->
7217    <!-- Wallpaper preview attributes    -->
7218    <!-- =============================== -->
7219    <eat-comment />
7220
7221    <!-- Use <code>wallpaper-preview</code> as the root tag of the XML resource that
7222         describes a wallpaper preview. -->
7223    <declare-styleable name="WallpaperPreviewInfo">
7224        <!-- A resource id of a static drawable. -->
7225        <attr name="staticWallpaperPreview" format="reference" />
7226    </declare-styleable>
7227
7228    <!-- =============================== -->
7229    <!-- App package class attributes -->
7230    <!-- =============================== -->
7231    <eat-comment />
7232
7233    <!-- ============================= -->
7234    <!-- View package class attributes -->
7235    <!-- ============================= -->
7236    <eat-comment />
7237
7238    <!-- Attributes that can be used with <code>&lt;fragment&gt;</code>
7239         tags inside of the layout of an Activity.  This instantiates
7240         the given {@link android.app.Fragment} and inserts its content
7241         view into the current location in the layout. -->
7242    <declare-styleable name="Fragment">
7243        <!-- Supply the name of the fragment class to instantiate. -->
7244        <attr name="name" />
7245
7246        <!-- Supply an identifier name for the top-level view, to later retrieve it
7247             with {@link android.view.View#findViewById View.findViewById()} or
7248             {@link android.app.Activity#findViewById Activity.findViewById()}.
7249             This must be a
7250             resource reference; typically you set this using the
7251             <code>@+</code> syntax to create a new ID resources.
7252             For example: <code>android:id="@+id/my_id"</code> which
7253             allows you to later retrieve the view
7254             with <code>findViewById(R.id.my_id)</code>. -->
7255        <attr name="id" />
7256
7257        <!-- Supply a tag for the top-level view containing a String, to be retrieved
7258             later with {@link android.view.View#getTag View.getTag()} or
7259             searched for with {@link android.view.View#findViewWithTag
7260             View.findViewWithTag()}.  It is generally preferable to use
7261             IDs (through the android:id attribute) instead of tags because
7262             they are faster and allow for compile-time type checking. -->
7263        <attr name="tag" />
7264
7265        <!-- The Transition that will be used to move Views out of the scene when the
7266             fragment is removed, hidden, or detached when not popping the back stack.
7267             Corresponds to {@link android.app.Fragment#setExitTransition(
7268             android.transition.Transition)} -->
7269        <attr name="fragmentExitTransition" format="reference"/>
7270
7271        <!-- The Transition that will be used to move Views into the initial scene.
7272             Corresponds to {@link android.app.Fragment#setEnterTransition(
7273             android.transition.Transition)} -->
7274        <attr name="fragmentEnterTransition" format="reference"/>
7275
7276        <!-- The Transition that will be used for shared elements transferred into the content
7277             Scene.
7278             Corresponds to {@link android.app.Fragment#setSharedElementEnterTransition(
7279             android.transition.Transition)} -->
7280        <attr name="fragmentSharedElementEnterTransition" format="reference"/>
7281
7282        <!-- The Transition that will be used to move Views out of the scene when the Fragment is
7283             preparing to be removed, hidden, or detached because of popping the back stack.
7284             Corresponds to {@link android.app.Fragment#setReturnTransition(
7285             android.transition.Transition)} -->
7286        <attr name="fragmentReturnTransition" format="reference"/>
7287
7288        <!-- The Transition that will be used for shared elements transferred back during a
7289             pop of the back stack. This Transition acts in the leaving Fragment.
7290             Corresponds to {@link android.app.Fragment#setSharedElementReturnTransition(
7291             android.transition.Transition)} -->
7292        <attr name="fragmentSharedElementReturnTransition" format="reference"/>
7293
7294        <!-- The Transition that will be used to move Views in to the scene when returning due
7295             to popping a back stack.
7296             Corresponds to {@link android.app.Fragment#setReenterTransition(
7297             android.transition.Transition)} -->
7298        <attr name="fragmentReenterTransition" format="reference"/>
7299
7300        <!-- Sets whether the enter and exit transitions should overlap when transitioning
7301             forward.
7302             Corresponds to {@link android.app.Fragment#setAllowEnterTransitionOverlap(
7303             boolean)} -->
7304        <attr name="fragmentAllowEnterTransitionOverlap" format="reference"/>
7305
7306        <!-- Sets whether the enter and exit transitions should overlap when transitioning
7307             because of popping the back stack.
7308             Corresponds to {@link android.app.Fragment#setAllowReturnTransitionOverlap(
7309             boolean)} -->
7310        <attr name="fragmentAllowReturnTransitionOverlap" format="reference"/>
7311    </declare-styleable>
7312
7313    <!-- Use <code>device-admin</code> as the root tag of the XML resource that
7314         describes a
7315         {@link android.app.admin.DeviceAdminReceiver}, which is
7316         referenced from its
7317         {@link android.app.admin.DeviceAdminReceiver#DEVICE_ADMIN_META_DATA}
7318         meta-data entry.  Described here are the attributes that can be
7319         included in that tag. -->
7320    <declare-styleable name="DeviceAdmin">
7321        <!-- Control whether the admin is visible to the user, even when it
7322             is not enabled.  This is true by default.  You may want to make
7323             it false if your admin does not make sense to be turned on
7324             unless some explicit action happens in your app. -->
7325        <attr name="visible" />
7326    </declare-styleable>
7327
7328    <!-- Use <code>wallpaper</code> as the root tag of the XML resource that
7329         describes an
7330         {@link android.service.wallpaper.WallpaperService}, which is
7331         referenced from its
7332         {@link android.service.wallpaper.WallpaperService#SERVICE_META_DATA}
7333         meta-data entry.  Described here are the attributes that can be
7334         included in that tag. -->
7335    <declare-styleable name="Wallpaper">
7336        <attr name="settingsActivity" />
7337
7338        <!-- Reference to a the wallpaper's thumbnail bitmap. -->
7339        <attr name="thumbnail" format="reference" />
7340
7341        <!-- Name of the author of this component, e.g. Google. -->
7342        <attr name="author" format="reference" />
7343
7344        <!-- Short description of the component's purpose or behavior. -->
7345        <attr name="description" />
7346    </declare-styleable>
7347
7348    <!-- Use <code>dream</code> as the root tag of the XML resource that
7349         describes an
7350         {@link android.service.dreams.DreamService}, which is
7351         referenced from its
7352         {@link android.service.dreams.DreamService#DREAM_META_DATA}
7353         meta-data entry.  Described here are the attributes that can be
7354         included in that tag. -->
7355    <declare-styleable name="Dream">
7356        <!-- Component name of an activity that allows the user to modify
7357             the settings for this dream. -->
7358        <attr name="settingsActivity" />
7359    </declare-styleable>
7360
7361    <!-- @SystemApi Use <code>trust-agent</code> as the root tag of the XML resource that
7362         describes an {@link android.service.trust.TrustAgentService}, which is
7363         referenced from its {@link android.service.trust.TrustAgentService#TRUST_AGENT_META_DATA}
7364         meta-data entry.  Described here are the attributes that can be included in that tag.
7365         @hide -->
7366    <declare-styleable name="TrustAgent">
7367        <!-- @SystemApi Component name of an activity that allows the user to modify
7368             the settings for this trust agent. @hide -->
7369        <attr name="settingsActivity" />
7370        <!-- @SystemApi Title for a preference that allows that user to launch the
7371             activity to modify trust agent settings. @hide -->
7372        <attr name="title" />
7373        <!-- @SystemApi Summary for the same preference as the title. @hide -->
7374        <attr name="summary" />
7375    </declare-styleable>
7376
7377    <!-- =============================== -->
7378    <!-- Accounts package class attributes -->
7379    <!-- =============================== -->
7380    <eat-comment />
7381
7382    <!-- Use <code>account-authenticator</code> as the root tag of the XML resource that
7383         describes an account authenticator.
7384     -->
7385    <declare-styleable name="AccountAuthenticator">
7386        <!-- The account type this authenticator handles. -->
7387        <attr name="accountType" format="string"/>
7388        <!-- The user-visible name of the authenticator. -->
7389        <attr name="label"/>
7390        <!-- The icon of the authenticator. -->
7391        <attr name="icon"/>
7392        <!-- Smaller icon of the authenticator. -->
7393        <attr name="smallIcon" format="reference"/>
7394        <!-- A preferences.xml file for authenticator-specific settings. -->
7395        <attr name="accountPreferences" format="reference"/>
7396        <!-- Account handles its own token storage and permissions.
7397             Default to false
7398          -->
7399        <attr name="customTokens" format="boolean"/>
7400    </declare-styleable>
7401
7402    <!-- =============================== -->
7403    <!-- Accounts package class attributes -->
7404    <!-- =============================== -->
7405    <eat-comment />
7406
7407    <!-- Use <code>account-authenticator</code> as the root tag of the XML resource that
7408         describes an account authenticator.
7409     -->
7410    <declare-styleable name="SyncAdapter">
7411        <!-- the authority of a content provider. -->
7412        <attr name="contentAuthority" format="string"/>
7413        <attr name="accountType"/>
7414        <attr name="userVisible" format="boolean"/>
7415        <attr name="supportsUploading" format="boolean"/>
7416        <!-- Set to true to tell the SyncManager that this SyncAdapter supports
7417             multiple simultaneous syncs for the same account type and authority.
7418             Otherwise the SyncManager will be sure not to issue a start sync request
7419             to this SyncAdapter if the SyncAdapter is already syncing another account.
7420             Defaults to false.
7421             -->
7422        <attr name="allowParallelSyncs" format="boolean"/>
7423        <!-- Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1)
7424             for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter.
7425             Defaults to false.
7426             -->
7427        <attr name="isAlwaysSyncable" format="boolean"/>
7428        <!-- If provided, specifies the action of the settings
7429             activity for this SyncAdapter.
7430             -->
7431        <attr name="settingsActivity"/>
7432    </declare-styleable>
7433
7434    <!-- =============================== -->
7435    <!-- Contacts meta-data attributes -->
7436    <!-- =============================== -->
7437    <eat-comment />
7438
7439    <!-- TODO: remove this deprecated styleable. -->
7440    <eat-comment />
7441    <declare-styleable name="Icon">
7442        <attr name="icon" />
7443        <attr name="mimeType" />
7444    </declare-styleable>
7445
7446    <!-- TODO: remove this deprecated styleable -->
7447    <eat-comment />
7448    <declare-styleable name="IconDefault">
7449        <attr name="icon" />
7450    </declare-styleable>
7451
7452    <!-- Maps a specific contact data MIME-type to styling information. -->
7453    <declare-styleable name="ContactsDataKind">
7454        <!-- Mime-type handled by this mapping. -->
7455        <attr name="mimeType" />
7456        <!-- Icon used to represent data of this kind. -->
7457        <attr name="icon" />
7458        <!-- Column in data table that summarizes this data. -->
7459        <attr name="summaryColumn" format="string" />
7460        <!-- Column in data table that contains details for this data. -->
7461        <attr name="detailColumn" format="string" />
7462        <!-- Flag indicating that detail should be built from SocialProvider. -->
7463        <attr name="detailSocialSummary" format="boolean" />
7464        <!-- Resource representing the term "All Contacts" (e.g. "All Friends" or
7465        "All connections"). Optional (Default is "All Contacts"). -->
7466        <attr name="allContactsName" format="string" />
7467    </declare-styleable>
7468
7469    <!-- =============================== -->
7470    <!-- TabSelector class attributes -->
7471    <!-- =============================== -->
7472    <eat-comment />
7473
7474    <declare-styleable name="SlidingTab">
7475        <!-- Use "horizontal" for a row, "vertical" for a column.  The default is horizontal. -->
7476        <attr name="orientation" />
7477    </declare-styleable>
7478
7479    <!-- =============================== -->
7480    <!-- GlowPadView class attributes -->
7481    <!-- =============================== -->
7482    <eat-comment />
7483    <declare-styleable name="GlowPadView">
7484        <!-- Reference to an array resource that be used as description for the targets around the circle.
7485             {@deprecated Removed.} -->
7486        <attr name="targetDescriptions" format="reference" />
7487
7488        <!-- Reference to an array resource that be used to announce the directions with targets around the circle.
7489             {@deprecated Removed.}-->
7490        <attr name="directionDescriptions" format="reference" />
7491    </declare-styleable>
7492
7493    <!-- =============================== -->
7494    <!-- Location package class attributes -->
7495    <!-- =============================== -->
7496    <eat-comment />
7497
7498    <!-- Use <code>injected-location-setting</code> as the root tag of the XML resource that
7499         describes an injected "Location services" setting. Note that the status value (subtitle)
7500         for the setting is specified dynamically by a subclass of SettingInjectorService.
7501     -->
7502    <declare-styleable name="SettingInjectorService">
7503        <!-- The title for the preference. -->
7504        <attr name="title"/>
7505        <!-- The icon for the preference, should refer to all apps covered by the setting. Typically
7506             a generic icon for the developer. -->
7507        <attr name="icon"/>
7508        <!-- The activity to launch when the setting is clicked on. -->
7509        <attr name="settingsActivity"/>
7510    </declare-styleable>
7511
7512    <!-- =============================== -->
7513    <!-- LockPatternView class attributes -->
7514    <!-- =============================== -->
7515    <eat-comment />
7516
7517    <declare-styleable name="LockPatternView">
7518        <!-- Aspect to use when drawing LockPatternView. Choices are "square"(default), "lock_width"
7519             or "lock_height" -->
7520        <attr name="aspect" format="string" />
7521        <!-- Color to use when drawing LockPatternView paths. -->
7522        <attr name="pathColor" format="color|reference" />
7523        <!-- The regular pattern color -->
7524        <attr name="regularColor" format="color|reference" />
7525        <!-- The error color -->
7526        <attr name="errorColor" format="color|reference" />
7527        <!-- The success color -->
7528        <attr name="successColor" format="color|reference"/>
7529    </declare-styleable>
7530
7531    <!-- Use <code>recognition-service</code> as the root tag of the XML resource that
7532         describes a {@link android.speech.RecognitionService}, which is referenced from
7533         its {@link android.speech.RecognitionService#SERVICE_META_DATA} meta-data entry.
7534         Described here are the attributes that can be included in that tag. -->
7535    <declare-styleable name="RecognitionService">
7536        <attr name="settingsActivity" />
7537    </declare-styleable>
7538
7539    <!-- Use <code>voice-interaction-service</code> as the root tag of the XML resource that
7540         describes a {@link android.service.voice.VoiceInteractionService}, which is referenced from
7541         its {@link android.service.voice.VoiceInteractionService#SERVICE_META_DATA} meta-data entry.
7542         Described here are the attributes that can be included in that tag. -->
7543    <declare-styleable name="VoiceInteractionService">
7544        <!-- The service that hosts active voice interaction sessions.  This is required. -->
7545        <attr name="sessionService" format="string" />
7546        <!-- The service that provides voice recognition.  This is required.  When the user
7547             selects this voice interaction service, they will also be implicitly selecting
7548             the component here for their recognition service. -->
7549        <attr name="recognitionService" format="string" />
7550        <attr name="settingsActivity" />
7551        <!-- Flag indicating whether this voice interaction service is capable of handling the
7552             assist action. -->
7553        <attr name="supportsAssist" format="boolean" />
7554        <!-- Flag indicating whether this voice interaction service is capable of being launched
7555             from the keyguard. -->
7556        <attr name="supportsLaunchVoiceAssistFromKeyguard" format="boolean" />
7557        <!-- Flag indicating whether this voice interaction service can handle local voice
7558             interaction requests from an Activity. This flag is new in
7559             {@link android.os.Build.VERSION_CODES#N} and not used in previous versions. -->
7560        <attr name="supportsLocalInteraction" format="boolean" />
7561    </declare-styleable>
7562
7563    <!-- Use <code>voice-enrollment-application</code>
7564         as the root tag of the XML resource that escribes the supported keyphrases (hotwords)
7565         by the enrollment application.
7566         Described here are the attributes that can be included in that tag.
7567         @hide
7568         @SystemApi -->
7569    <declare-styleable name="VoiceEnrollmentApplication">
7570        <!-- A globally unique ID for the keyphrase. @hide @SystemApi -->
7571        <attr name="searchKeyphraseId" format="integer" />
7572        <!-- The actual keyphrase/hint text, or empty if not keyphrase dependent. @hide @SystemApi -->
7573        <attr name="searchKeyphrase" format="string" />
7574        <!-- A comma separated list of BCP-47 language tag for locales that are supported
7575             for this keyphrase, or empty if not locale dependent. @hide @SystemApi -->
7576        <attr name="searchKeyphraseSupportedLocales" format="string" />
7577        <!-- Flags for supported recognition modes. @hide @SystemApi -->
7578        <attr name="searchKeyphraseRecognitionFlags">
7579            <flag name="none" value="0" />
7580            <flag name="voiceTrigger" value="0x1" />
7581            <flag name="userIdentification" value="0x2" />
7582        </attr>
7583    </declare-styleable>
7584
7585    <!-- Attributes used to style the Action Bar. -->
7586    <declare-styleable name="ActionBar">
7587        <!-- The type of navigation to use. -->
7588        <attr name="navigationMode">
7589            <!-- Normal static title text -->
7590            <enum name="normal" value="0" />
7591            <!-- The action bar will use a selection list for navigation. -->
7592            <enum name="listMode" value="1" />
7593            <!-- The action bar will use a series of horizontal tabs for navigation. -->
7594            <enum name="tabMode" value="2" />
7595        </attr>
7596        <!-- Options affecting how the action bar is displayed. -->
7597        <attr name="displayOptions">
7598            <flag name="none" value="0" />
7599            <flag name="useLogo" value="0x1" />
7600            <flag name="showHome" value="0x2" />
7601            <flag name="homeAsUp" value="0x4" />
7602            <flag name="showTitle" value="0x8" />
7603            <flag name="showCustom" value="0x10" />
7604            <flag name="disableHome" value="0x20" />
7605        </attr>
7606        <!-- Specifies title text used for navigationMode="normal" -->
7607        <attr name="title" />
7608        <!-- Specifies subtitle text used for navigationMode="normal" -->
7609        <attr name="subtitle" format="string" />
7610        <!-- Specifies a style to use for title text. -->
7611        <attr name="titleTextStyle" format="reference" />
7612        <!-- Specifies a style to use for subtitle text. -->
7613        <attr name="subtitleTextStyle" format="reference" />
7614        <!-- Specifies the drawable used for the application icon. -->
7615        <attr name="icon" />
7616        <!-- Specifies the drawable used for the application logo. -->
7617        <attr name="logo" />
7618        <!-- Specifies the drawable used for item dividers. -->
7619        <attr name="divider" />
7620        <!-- Specifies a background drawable for the action bar. -->
7621        <attr name="background" />
7622        <!-- Specifies a background drawable for a second stacked row of the action bar. -->
7623        <attr name="backgroundStacked" format="reference|color" />
7624        <!-- Specifies a background drawable for the bottom component of a split action bar. -->
7625        <attr name="backgroundSplit" format="reference|color" />
7626        <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
7627        <attr name="customNavigationLayout" format="reference" />
7628        <!-- Specifies a fixed height. -->
7629        <attr name="height" />
7630        <!-- Specifies a layout to use for the "home" section of the action bar. -->
7631        <attr name="homeLayout" format="reference" />
7632        <!-- Specifies a style resource to use for an embedded progress bar. -->
7633        <attr name="progressBarStyle" />
7634        <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
7635        <attr name="indeterminateProgressStyle" format="reference" />
7636        <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
7637        <attr name="progressBarPadding" format="dimension" />
7638        <!-- Up navigation glyph -->
7639        <attr name="homeAsUpIndicator" />
7640        <!-- Specifies padding that should be applied to the left and right sides of
7641             system-provided items in the bar. -->
7642        <attr name="itemPadding" format="dimension" />
7643        <!-- Set true to hide the action bar on a vertical nested scroll of content. -->
7644        <attr name="hideOnContentScroll" format="boolean" />
7645        <!-- Minimum inset for content views within a bar. Navigation buttons and
7646             menu views are excepted. Only valid for some themes and configurations. -->
7647        <attr name="contentInsetStart" format="dimension" />
7648        <!-- Minimum inset for content views within a bar. Navigation buttons and
7649             menu views are excepted. Only valid for some themes and configurations. -->
7650        <attr name="contentInsetEnd" format="dimension" />
7651        <!-- Minimum inset for content views within a bar. Navigation buttons and
7652             menu views are excepted. Only valid for some themes and configurations. -->
7653        <attr name="contentInsetLeft" format="dimension" />
7654        <!-- Minimum inset for content views within a bar. Navigation buttons and
7655             menu views are excepted. Only valid for some themes and configurations. -->
7656        <attr name="contentInsetRight" format="dimension" />
7657        <!-- Minimum inset for content views within a bar when a navigation button
7658             is present, such as the Up button. Only valid for some themes and configurations. -->
7659        <attr name="contentInsetStartWithNavigation" format="dimension" />
7660        <!-- Minimum inset for content views within a bar when actions from a menu
7661             are present. Only valid for some themes and configurations. -->
7662        <attr name="contentInsetEndWithActions" format="dimension" />
7663        <!-- Elevation for the action bar itself -->
7664        <attr name="elevation" />
7665        <!-- Reference to a theme that should be used to inflate popups
7666             shown by widgets in the action bar. -->
7667        <attr name="popupTheme" />
7668    </declare-styleable>
7669
7670    <declare-styleable name="ActionMode">
7671        <!-- Specifies a style to use for title text. -->
7672        <attr name="titleTextStyle" />
7673        <!-- Specifies a style to use for subtitle text. -->
7674        <attr name="subtitleTextStyle" />
7675        <!-- Specifies a background for the action mode bar. -->
7676        <attr name="background" />
7677        <!-- Specifies a background for the split action mode bar. -->
7678        <attr name="backgroundSplit" />
7679        <!-- Specifies a fixed height for the action mode bar. -->
7680        <attr name="height" />
7681        <!-- Specifies a layout to use for the "close" item at the starting edge. -->
7682        <attr name="closeItemLayout" format="reference" />
7683    </declare-styleable>
7684
7685    <declare-styleable name="SearchView">
7686        <!-- The layout to use for the search view. -->
7687        <attr name="layout" />
7688        <!-- The default state of the SearchView. If true, it will be iconified when not in
7689             use and expanded when clicked. -->
7690        <attr name="iconifiedByDefault" format="boolean" />
7691        <!-- An optional maximum width of the SearchView. -->
7692        <attr name="maxWidth" />
7693        <!-- An optional query hint string to be displayed in the empty query field. -->
7694        <attr name="queryHint" format="string" />
7695        <!-- Default query hint used when {@code queryHint} is undefined and
7696             the search view's {@code SearchableInfo} does not provide a hint.
7697             @hide -->
7698        <attr name="defaultQueryHint" format="string" />
7699        <!-- The IME options to set on the query text field. -->
7700        <attr name="imeOptions" />
7701        <!-- The input type to set on the query text field. -->
7702        <attr name="inputType" />
7703        <!-- Close button icon -->
7704        <attr name="closeIcon" format="reference" />
7705        <!-- Go button icon -->
7706        <attr name="goIcon" format="reference" />
7707        <!-- Search icon -->
7708        <attr name="searchIcon" format="reference" />
7709        <!-- Search icon displayed as a text field hint -->
7710        <attr name="searchHintIcon" format="reference" />
7711        <!-- Voice button icon -->
7712        <attr name="voiceIcon" format="reference" />
7713        <!-- Commit icon shown in the query suggestion row -->
7714        <attr name="commitIcon" format="reference" />
7715        <!-- Layout for query suggestion rows -->
7716        <attr name="suggestionRowLayout" format="reference" />
7717        <!-- Background for the section containing the search query -->
7718        <attr name="queryBackground" format="reference" />
7719        <!-- Background for the section containing the action (e.g. voice search) -->
7720        <attr name="submitBackground" format="reference" />
7721        <attr name="focusable" />
7722    </declare-styleable>
7723
7724    <declare-styleable name="Switch">
7725        <!-- Drawable to use as the "thumb" that switches back and forth. -->
7726        <attr name="thumb" />
7727        <!-- Tint to apply to the thumb. -->
7728        <attr name="thumbTint" />
7729        <!-- Blending mode used to apply the thumb tint. -->
7730        <attr name="thumbTintMode" />
7731        <!-- Drawable to use as the "track" that the switch thumb slides within. -->
7732        <attr name="track" format="reference" />
7733        <!-- Tint to apply to the track. -->
7734        <attr name="trackTint" format="color" />
7735        <!-- Blending mode used to apply the track tint. -->
7736        <attr name="trackTintMode">
7737            <!-- The tint is drawn on top of the drawable.
7738                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
7739            <enum name="src_over" value="3" />
7740            <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
7741                 color channels are thrown out. [Sa * Da, Sc * Da] -->
7742            <enum name="src_in" value="5" />
7743            <!-- The tint is drawn above the drawable, but with the drawable’s alpha
7744                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
7745            <enum name="src_atop" value="9" />
7746            <!-- Multiplies the color and alpha channels of the drawable with those of
7747                 the tint. [Sa * Da, Sc * Dc] -->
7748            <enum name="multiply" value="14" />
7749            <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
7750            <enum name="screen" value="15" />
7751            <!-- Combines the tint and drawable color and alpha channels, clamping the
7752                 result to valid color values. Saturate(S + D) -->
7753            <enum name="add" value="16" />
7754        </attr>
7755        <!-- Text to use when the switch is in the checked/"on" state. -->
7756        <attr name="textOn" />
7757        <!-- Text to use when the switch is in the unchecked/"off" state. -->
7758        <attr name="textOff" />
7759        <!-- Amount of padding on either side of text within the switch thumb. -->
7760        <attr name="thumbTextPadding" format="dimension" />
7761        <!-- TextAppearance style for text displayed on the switch thumb. -->
7762        <attr name="switchTextAppearance" format="reference" />
7763        <!-- Minimum width for the switch component -->
7764        <attr name="switchMinWidth" format="dimension" />
7765        <!-- Minimum space between the switch and caption text -->
7766        <attr name="switchPadding" format="dimension" />
7767        <!-- Whether to split the track and leave a gap for the thumb drawable. -->
7768        <attr name="splitTrack" />
7769        <!-- Whether to draw on/off text. -->
7770        <attr name="showText" format="boolean" />
7771    </declare-styleable>
7772
7773    <declare-styleable name="Pointer">
7774        <!-- Reference to a pointer icon drawable with STYLE_ARROW -->
7775        <attr name="pointerIconArrow" format="reference" />
7776        <!-- Reference to a pointer icon drawable with STYLE_SPOT_HOVER -->
7777        <attr name="pointerIconSpotHover" format="reference" />
7778        <!-- Reference to a pointer icon drawable with STYLE_SPOT_TOUCH -->
7779        <attr name="pointerIconSpotTouch" format="reference" />
7780        <!-- Reference to a pointer icon drawable with STYLE_SPOT_ANCHOR -->
7781        <attr name="pointerIconSpotAnchor" format="reference" />
7782        <!-- Reference to a pointer drawable with STYLE_CONTEXT_MENU -->
7783        <attr name="pointerIconContextMenu" format="reference"/>
7784        <!-- Reference to a pointer drawable with STYLE_HAND -->
7785        <attr name="pointerIconHand" format="reference"/>
7786        <!-- Reference to a pointer drawable with STYLE_HELP -->
7787        <attr name="pointerIconHelp" format="reference"/>
7788        <!-- Reference to a pointer drawable with STYLE_WAIT -->
7789        <attr name="pointerIconWait" format="reference"/>
7790        <!-- Reference to a pointer drawable with STYLE_CELL -->
7791        <attr name="pointerIconCell" format="reference"/>
7792        <!-- Reference to a pointer drawable with STYLE_CROSSHAIR -->
7793        <attr name="pointerIconCrosshair" format="reference"/>
7794        <!-- Reference to a pointer drawable with STYLE_TEXT -->
7795        <attr name="pointerIconText" format="reference"/>
7796        <!-- Reference to a pointer drawable with STYLE_VERTICAL_TEXT -->
7797        <attr name="pointerIconVerticalText" format="reference"/>
7798        <!-- Reference to a pointer drawable with STYLE_ALIAS -->
7799        <attr name="pointerIconAlias" format="reference"/>
7800        <!-- Reference to a pointer drawable with STYLE_COPY -->
7801        <attr name="pointerIconCopy" format="reference"/>
7802        <!-- Reference to a pointer drawable with STYLE_NODROP -->
7803        <attr name="pointerIconNodrop" format="reference"/>
7804        <!-- Reference to a pointer drawable with STYLE_ALL_SCROLL -->
7805        <attr name="pointerIconAllScroll" format="reference"/>
7806        <!-- Reference to a pointer drawable with STYLE_HORIZONTAL_DOUBLE_ARROW -->
7807        <attr name="pointerIconHorizontalDoubleArrow" format="reference"/>
7808        <!-- Reference to a pointer drawable with STYLE_VERTICAL_DOUBLE_ARROW -->
7809        <attr name="pointerIconVerticalDoubleArrow" format="reference"/>
7810        <!-- Reference to a pointer drawable with STYLE_TOP_RIGHT_DIAGONAL_DOUBLE_ARROW -->
7811        <attr name="pointerIconTopRightDiagonalDoubleArrow" format="reference"/>
7812        <!-- Reference to a pointer drawable with STYLE_TOP_LEFT_DIAGONAL_DOUBLE_ARROW -->
7813        <attr name="pointerIconTopLeftDiagonalDoubleArrow" format="reference"/>
7814        <!-- Reference to a pointer drawable with STYLE_ZOOM_IN -->
7815        <attr name="pointerIconZoomIn" format="reference"/>
7816        <!-- Reference to a pointer drawable with STYLE_ZOOM_OUT -->
7817        <attr name="pointerIconZoomOut" format="reference"/>
7818        <!-- Reference to a pointer drawable with STYLE_GRAB -->
7819        <attr name="pointerIconGrab" format="reference"/>
7820        <!-- Reference to a pointer drawable with STYLE_GRABBING -->
7821        <attr name="pointerIconGrabbing" format="reference"/>
7822    </declare-styleable>
7823
7824    <declare-styleable name="PointerIcon">
7825        <!-- Drawable to use as the icon bitmap. -->
7826        <attr name="bitmap" format="reference" />
7827        <!-- X coordinate of the icon hot spot. -->
7828        <attr name="hotSpotX" format="dimension" />
7829        <!-- Y coordinate of the icon hot spot. -->
7830        <attr name="hotSpotY" format="dimension" />
7831    </declare-styleable>
7832
7833    <declare-styleable name="Storage">
7834        <!-- path to mount point for the storage -->
7835        <attr name="mountPoint" format="string" />
7836        <!-- user visible description of the storage -->
7837        <attr name="storageDescription" format="string" />
7838        <!-- true if the storage is the primary external storage -->
7839        <attr name="primary" format="boolean" />
7840        <!-- true if the storage is removable -->
7841        <attr name="removable" format="boolean" />
7842        <!-- true if the storage is emulated via the FUSE sdcard daemon -->
7843        <attr name="emulated" format="boolean" />
7844        <!-- number of megabytes of storage MTP should reserve for free storage
7845             (used for emulated storage that is shared with system's data partition) -->
7846        <attr name="mtpReserve" format="integer" />
7847        <!-- true if the storage can be shared via USB mass storage -->
7848        <attr name="allowMassStorage" format="boolean" />
7849        <!-- maximum file size for the volume in megabytes, zero or unspecified if it is unbounded -->
7850        <attr name="maxFileSize" format="integer" />
7851    </declare-styleable>
7852
7853    <declare-styleable name="SwitchPreference">
7854        <!-- The summary for the Preference in a PreferenceActivity screen when the
7855             SwitchPreference is checked. If separate on/off summaries are not
7856             needed, the summary attribute can be used instead. -->
7857        <attr name="summaryOn" />
7858        <!-- The summary for the Preference in a PreferenceActivity screen when the
7859             SwitchPreference is unchecked. If separate on/off summaries are not
7860             needed, the summary attribute can be used instead. -->
7861        <attr name="summaryOff" />
7862        <!-- The text used on the switch itself when in the "on" state.
7863             This should be a very SHORT string, as it appears in a small space. -->
7864        <attr name="switchTextOn" format="string" />
7865        <!-- The text used on the switch itself when in the "off" state.
7866             This should be a very SHORT string, as it appears in a small space. -->
7867        <attr name="switchTextOff" format="string" />
7868        <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default,
7869             dependents will be disabled when this is unchecked, so the value of this preference is false. -->
7870        <attr name="disableDependentsState" />
7871    </declare-styleable>
7872
7873    <declare-styleable name="SeekBarPreference">
7874        <attr name="layout" />
7875    </declare-styleable>
7876
7877    <!-- Base attributes available to PreferenceFragment. -->
7878    <declare-styleable name="PreferenceFragment">
7879        <!-- The layout for the PreferenceFragment. This should rarely need to be changed. -->
7880        <attr name="layout" />
7881        <attr name="divider" />
7882    </declare-styleable>
7883
7884    <!-- Base attributes available to PreferenceActivity. -->
7885    <declare-styleable name="PreferenceActivity">
7886        <!-- The layout for the Preference Activity. This should rarely need to be changed. -->
7887        <attr name="layout" />
7888        <!-- The layout for the Preference Header. This should rarely need to be changed. -->
7889        <attr name="headerLayout" format="reference" />
7890        <!-- true if the Icon view will be removed when there is none and thus not showing
7891             the fixed margins. -->
7892        <attr name="headerRemoveIconIfEmpty" format="boolean" />
7893    </declare-styleable>
7894
7895    <!-- Use <code>tts-engine</code> as the root tag of the XML resource that
7896         describes a text to speech engine implemented as a subclass of
7897         {@link android.speech.tts.TextToSpeechService}.
7898
7899         The XML resource must be referenced from its
7900         {@link android.speech.tts.TextToSpeech.Engine#SERVICE_META_DATA} meta-data
7901         entry. -->
7902    <declare-styleable name="TextToSpeechEngine">
7903        <attr name="settingsActivity" />
7904    </declare-styleable>
7905
7906    <!-- Use <code>keyboard-layouts</code> as the root tag of the XML resource that
7907         describes a collection of keyboard layouts provided by an application.
7908         Each keyboard layout is declared by a <code>keyboard-layout</code> tag
7909         with these attributes.
7910
7911         The XML resource that contains the keyboard layouts must be referenced from its
7912         {@link android.hardware.input.InputManager#META_DATA_KEYBOARD_LAYOUTS}
7913         meta-data entry used with broadcast receivers for
7914         {@link android.hardware.input.InputManager#ACTION_QUERY_KEYBOARD_LAYOUTS}. -->
7915    <declare-styleable name="KeyboardLayout">
7916        <!-- The name of the keyboard layout, must be unique in the receiver. -->
7917        <attr name="name" />
7918        <!-- The display label of the keyboard layout. -->
7919        <attr name="label" />
7920        <!-- The key character map file resource. -->
7921        <attr name="keyboardLayout" format="reference" />
7922        <!-- The locales the given keyboard layout corresponds to. -->
7923        <attr name="locale" format="string" />
7924        <!-- The vendor ID of the hardware the given layout corresponds to. @hide -->
7925        <attr name="vendorId" format="integer" />
7926        <!-- The product ID of the hardware the given layout corresponds to. @hide -->
7927        <attr name="productId" format="integer" />
7928    </declare-styleable>
7929
7930    <declare-styleable name="MediaRouteButton">
7931        <!-- This drawable is a state list where the "activated" state
7932             indicates active media routing. Non-activated indicates
7933             that media is playing to the local device only.
7934             @hide -->
7935        <attr name="externalRouteEnabledDrawable" format="reference" />
7936
7937        <!-- The types of media routes the button and its resulting
7938             chooser will filter by. -->
7939        <attr name="mediaRouteTypes" format="integer">
7940            <!-- Allow selection of live audio routes. -->
7941            <enum name="liveAudio" value="0x1" />
7942            <!-- Allow selection of user (app-specified) routes. -->
7943            <enum name="user" value="0x800000" />
7944        </attr>
7945
7946        <attr name="minWidth" />
7947        <attr name="minHeight" />
7948    </declare-styleable>
7949
7950    <!-- PagedView specific attributes. These attributes are used to customize
7951         a PagedView view in XML files. -->
7952    <declare-styleable name="PagedView">
7953        <!-- The space between adjacent pages of the PagedView. -->
7954        <attr name="pageSpacing" format="dimension" />
7955        <!-- The padding for the scroll indicator area -->
7956        <attr name="scrollIndicatorPaddingLeft" format="dimension" />
7957        <attr name="scrollIndicatorPaddingRight" format="dimension" />
7958    </declare-styleable>
7959
7960    <declare-styleable name="KeyguardGlowStripView">
7961        <attr name="dotSize" format="dimension" />
7962        <attr name="numDots" format="integer" />
7963        <attr name="glowDot" format="reference" />
7964        <attr name="leftToRight" format="boolean" />
7965    </declare-styleable>
7966
7967    <!-- Some child types have special behavior. -->
7968    <attr name="layout_childType">
7969        <!-- No special behavior. Layout will proceed as normal. -->
7970        <enum name="none" value="0" />
7971        <!-- Widget container.
7972             This will be resized in response to certain events. -->
7973        <enum name="widget" value="1" />
7974        <!-- Security challenge container.
7975             This will be dismissed/shown in response to certain events,
7976             possibly obscuring widget elements. -->
7977        <enum name="challenge" value="2" />
7978        <!-- User switcher.
7979             This will consume space from the total layout area. -->
7980        <enum name="userSwitcher" value="3" />
7981        <!-- Scrim. This will block access to child views that
7982             come before it in the child list in bouncer mode. -->
7983        <enum name="scrim" value="4" />
7984        <!-- The home for widgets. All widgets will be descendents of this. -->
7985        <enum name="widgets" value="5" />
7986        <!-- This is a handle that is used for expanding the
7987             security challenge container when it is collapsed. -->
7988        <enum name="expandChallengeHandle" value="6" />
7989        <!-- Delete drop target.  This will be the drop target to delete pages. -->
7990        <enum name="pageDeleteDropTarget" value="7" />
7991    </attr>
7992
7993    <!-- Attributes that can be used with <code>&lt;FragmentBreadCrumbs&gt;</code>
7994    tags. -->
7995    <declare-styleable name="FragmentBreadCrumbs">
7996        <attr name="gravity" />
7997        <attr name="itemLayout" format="reference" />
7998        <attr name="itemColor" format="color|reference" />
7999    </declare-styleable>
8000
8001    <declare-styleable name="Toolbar">
8002        <attr name="titleTextAppearance" format="reference" />
8003        <attr name="subtitleTextAppearance" format="reference" />
8004        <attr name="title" />
8005        <attr name="subtitle" />
8006        <attr name="gravity" />
8007        <!--  Specifies extra space on the left, start, right and end sides
8008              of the toolbar's title. Margin values should be positive. -->
8009        <attr name="titleMargin" format="dimension" />
8010        <!--  Specifies extra space on the start side of the toolbar's title.
8011              If both this attribute and titleMargin are specified, then this
8012              attribute takes precedence. Margin values should be positive. -->
8013        <attr name="titleMarginStart" format="dimension" />
8014        <!--  Specifies extra space on the end side of the toolbar's title.
8015              If both this attribute and titleMargin are specified, then this
8016              attribute takes precedence. Margin values should be positive. -->
8017        <attr name="titleMarginEnd" format="dimension" />
8018        <!--  Specifies extra space on the top side of the toolbar's title.
8019              If both this attribute and titleMargin are specified, then this
8020              attribute takes precedence. Margin values should be positive. -->
8021        <attr name="titleMarginTop" format="dimension" />
8022        <!--  Specifies extra space on the bottom side of the toolbar's title.
8023              If both this attribute and titleMargin are specified, then this
8024              attribute takes precedence. Margin values should be positive. -->
8025        <attr name="titleMarginBottom" format="dimension" />
8026        <attr name="contentInsetStart" />
8027        <attr name="contentInsetEnd" />
8028        <attr name="contentInsetLeft" />
8029        <attr name="contentInsetRight" />
8030        <attr name="contentInsetStartWithNavigation" />
8031        <attr name="contentInsetEndWithActions" />
8032        <attr name="maxButtonHeight" format="dimension" />
8033        <attr name="navigationButtonStyle" format="reference" />
8034        <attr name="buttonGravity">
8035            <!-- Push object to the top of its container, not changing its size. -->
8036            <flag name="top" value="0x30" />
8037            <!-- Push object to the bottom of its container, not changing its size. -->
8038            <flag name="bottom" value="0x50" />
8039        </attr>
8040        <!-- Icon drawable to use for the collapse button. -->
8041        <attr name="collapseIcon" format="reference" />
8042        <!-- Text to set as the content description for the collapse button. -->
8043        <attr name="collapseContentDescription" format="string" />
8044        <!-- Reference to a theme that should be used to inflate popups
8045             shown by widgets in the toolbar. -->
8046        <attr name="popupTheme" format="reference" />
8047        <!-- Icon drawable to use for the navigation button located at
8048             the start of the toolbar. -->
8049        <attr name="navigationIcon" format="reference" />
8050        <!-- Text to set as the content description for the navigation button
8051             located at the start of the toolbar. -->
8052        <attr name="navigationContentDescription" format="string" />
8053        <!-- Drawable to set as the logo that appears at the starting side of
8054             the Toolbar, just after the navigation button. -->
8055        <attr name="logo" />
8056        <!-- A content description string to describe the appearance of the
8057             associated logo image. -->
8058        <attr name="logoDescription" format="string" />
8059        <!-- A color to apply to the title string. -->
8060        <attr name="titleTextColor" format="color" />
8061        <!-- A color to apply to the subtitle string. -->
8062        <attr name="subtitleTextColor" format="color" />
8063    </declare-styleable>
8064
8065    <declare-styleable name="Toolbar_LayoutParams">
8066        <attr name="layout_gravity" />
8067    </declare-styleable>
8068
8069    <declare-styleable name="ActionBar_LayoutParams">
8070        <attr name="layout_gravity" />
8071    </declare-styleable>
8072
8073    <!-- Used as a filter array on the theme to pull out only the EdgeEffect-relevant bits. -->
8074    <declare-styleable name="EdgeEffect">
8075        <attr name="colorEdgeEffect" />
8076    </declare-styleable>
8077
8078    <!-- Use <code>tv-input</code> as the root tag of the XML resource that describes a
8079         {@link android.media.tv.TvInputService}, which is referenced from its
8080         {@link android.media.tv.TvInputService#SERVICE_META_DATA} meta-data entry.
8081         Described here are the attributes that can be included in that tag. -->
8082    <declare-styleable name="TvInputService">
8083        <!-- Component name of an activity that allows the user to set up this service. -->
8084        <attr name="setupActivity" format="string" />
8085        <!-- Component name of an activity that allows the user to modify the settings for this
8086             service. -->
8087        <attr name="settingsActivity" />
8088        <!-- Attribute whether the TV input service can record programs. This value can be changed
8089             at runtime by calling
8090             {@link android.media.tv.TvInputManager#updateTvInputInfo(android.media.tv.TvInputInfo)}. -->
8091        <attr name="canRecord" format="boolean" />
8092        <!-- The number of tuners that the TV input service is associated with. This value can be
8093             changed at runtime by calling
8094             {@link android.media.tv.TvInputManager#updateTvInputInfo(android.media.tv.TvInputInfo)}. -->
8095        <attr name="tunerCount" format="integer" />
8096    </declare-styleable>
8097
8098    <!-- Attributes that can be used with <code>rating-system-definition</code> tags inside of the
8099         XML resource that describes TV content rating of a {@link android.media.tv.TvInputService},
8100         which is referenced from its
8101         {@link android.media.tv.TvInputManager#META_DATA_CONTENT_RATING_SYSTEMS}. -->
8102    <declare-styleable name="RatingSystemDefinition">
8103        <!-- The unique name of the content rating system. -->
8104        <attr name="name" />
8105        <!-- The title of the content rating system which is shown to the user. -->
8106        <attr name="title" />
8107        <!-- The short description of the content rating system. -->
8108        <attr name="description" />
8109        <!-- The country code associated with the content rating system, which consists of two
8110             uppercase letters that conform to the ISO 3166 standard. -->
8111        <attr name="country" format="string" />
8112    </declare-styleable>
8113
8114    <!-- Attributes that can be used with <code>rating-definition</code> tags inside of the XML
8115         resource that describes TV content rating of a {@link android.media.tv.TvInputService},
8116         which is referenced from its
8117         {@link android.media.tv.TvInputManager#META_DATA_CONTENT_RATING_SYSTEMS}. -->
8118    <declare-styleable name="RatingDefinition">
8119        <!-- The unique name of the content rating. -->
8120        <attr name="name" />
8121        <!-- The title of the content rating which is shown to the user. -->
8122        <attr name="title" />
8123        <!-- The short description of the content rating. -->
8124        <attr name="description" />
8125        <!-- The age associated with the content rating. The content of this rating is suitable for
8126             people of this age or above. -->
8127        <attr name="contentAgeHint" format="integer" />
8128    </declare-styleable>
8129
8130    <declare-styleable name="ResolverDrawerLayout">
8131        <attr name="maxWidth" />
8132        <attr name="maxCollapsedHeight" format="dimension" />
8133        <attr name="maxCollapsedHeightSmall" format="dimension" />
8134    </declare-styleable>
8135
8136    <declare-styleable name="MessagingLinearLayout">
8137        <attr name="maxHeight" />
8138        <attr name="spacing" />
8139    </declare-styleable>
8140
8141    <declare-styleable name="DateTimeView">
8142        <attr name="showRelative" format="boolean" />
8143    </declare-styleable>
8144
8145    <declare-styleable name="ResolverDrawerLayout_LayoutParams">
8146        <attr name="layout_alwaysShow" format="boolean" />
8147        <attr name="layout_ignoreOffset" format="boolean" />
8148        <attr name="layout_gravity" />
8149        <attr name="layout_hasNestedScrollIndicator" format="boolean" />
8150    </declare-styleable>
8151
8152    <!-- @hide -->
8153    <declare-styleable name="Lighting">
8154        <attr name="lightY" />
8155        <attr name="lightZ" />
8156        <attr name="lightRadius" />
8157        <attr name="ambientShadowAlpha" />
8158        <attr name="spotShadowAlpha" />
8159    </declare-styleable>
8160
8161    <declare-styleable name="RestrictionEntry">
8162        <attr name="key" />
8163        <attr name="restrictionType">
8164            <enum name="hidden" value="0" />
8165            <enum name="bool" value="1" />
8166            <enum name="choice" value="2" />
8167            <enum name="multi-select" value="4" />
8168            <enum name="integer" value="5" />
8169            <enum name="string" value="6" />
8170            <enum name="bundle" value="7" />
8171            <enum name="bundle_array" value="8" />
8172        </attr>
8173        <attr name="title" />
8174        <attr name="description" />
8175        <attr name="defaultValue" />
8176        <attr name="entries" />
8177        <attr name="entryValues" />
8178    </declare-styleable>
8179
8180    <!-- Used to describe the gradient for fill or stroke in a path of VectorDrawable. -->
8181    <declare-styleable name="GradientColor">
8182        <!-- Start color of the gradient. -->
8183        <attr name="startColor" />
8184        <!-- Optional center color. -->
8185        <attr name="centerColor" />
8186        <!-- End color of the gradient. -->
8187        <attr name="endColor" />
8188        <!-- Type of gradient. The default type is linear. -->
8189        <attr name="type" />
8190
8191        <!-- Only applied to RadialGradient-->
8192        <!-- Radius of the gradient, used only with radial gradient. -->
8193        <attr name="gradientRadius" />
8194
8195        <!-- Only applied to SweepGradient / RadialGradient-->
8196        <!-- X coordinate of the center of the gradient within the path. -->
8197        <attr name="centerX" />
8198        <!-- Y coordinate of the center of the gradient within the path. -->
8199        <attr name="centerY" />
8200
8201        <!-- LinearGradient specific -->
8202        <!-- X coordinate of the start point origin of the gradient.
8203             Defined in same coordinates as the path itself -->
8204        <attr name="startX" format="float" />
8205        <!-- Y coordinate of the start point of the gradient within the shape.
8206             Defined in same coordinates as the path itself -->
8207        <attr name="startY" format="float" />
8208        <!-- X coordinate of the end point origin of the gradient.
8209             Defined in same coordinates as the path itself -->
8210        <attr name="endX" format="float" />
8211        <!-- Y coordinate of the end point of the gradient within the shape.
8212             Defined in same coordinates as the path itself -->
8213        <attr name="endY" format="float" />
8214
8215        <!-- Defines the tile mode of the gradient. SweepGradient don't support tiling. -->
8216        <attr name="tileMode"/>
8217    </declare-styleable>
8218
8219    <!-- Describes an item of a GradientColor. Minimally need 2 items to define the gradient
8220         Colors defined in <item> override the simple color attributes such as
8221         "startColor / centerColor / endColor" are ignored -->
8222    <declare-styleable name="GradientColorItem">
8223        <!-- The offset (or ratio) of this current color item inside the gradient.
8224             The value is only meaningful when it is between 0 and 1. -->
8225        <attr name="offset" format="float" />
8226        <!-- The current color for the offset inside the gradient. -->
8227        <attr name="color" />
8228    </declare-styleable>
8229
8230    <!-- @hide Attributes which will be read by the Activity to intialize the 
8231               base activity TaskDescription. -->
8232    <declare-styleable name="ActivityTaskDescription">
8233        <!-- @hide From Theme.colorPrimary, used for the TaskDescription primary 
8234                   color. -->
8235        <attr name="colorPrimary" />
8236        <!-- @hide From Theme.colorBackground, used for the TaskDescription background 
8237                   color. -->
8238        <attr name="colorBackground" />
8239    </declare-styleable>
8240
8241    <declare-styleable name="Shortcut">
8242        <attr name="shortcutId" format="string" />
8243        <attr name="enabled" />
8244        <attr name="shortcutRank" format="integer" />
8245        <attr name="shortcutIcon" format="reference" />
8246        <attr name="shortcutTitle" format="reference" />
8247        <attr name="shortcutText" format="reference" />
8248        <attr name="shortcutDisabledMessage" format="reference" />
8249        <attr name="shortcutCategories" format="string" />
8250        <attr name="shortcutIntentAction" format="string" />
8251        <attr name="shortcutIntentData" format="string" />
8252    </declare-styleable>
8253</resources>
8254