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