Security - | |
2 | -ExportedService: Exported service does not require permission - |
Performance - | |
6 | -UnusedResources: Unused resources - |
Disabled Checks (11) - |
- 40 - 41 <service android:name="com.github.nutomic.controldlna.upnp.RemotePlayService" /> - 42 - 43 <service android:name="com.github.nutomic.controldlna.upnp.ProviderService" - 44 android:label="sample_media_route_provider_service" - 45 android:process=":mrp"> --/home/felix/workspace/controldlna/AndroidManifest.xml:43:
- 40 - 41 <service android:name="com.github.nutomic.controldlna.upnp.RemotePlayService" /> - 42 - 43 <service android:name="com.github.nutomic.controldlna.upnp.ProviderService" - 44 android:label="sample_media_route_provider_service" - 45 android:process=":mrp"> --
exported=true
or contain an intent-filter and do not specify exported=false
) should define a permission that an entity must have in order to launch the service or bind to it. Without this, any application can use this service.
-- 1 <resources> - 2 - 3 <!-- Default screen margins, per the Android Design guidelines. --> - 4 <dimen name="activity_horizontal_margin">16dp</dimen> - 5 <dimen name="activity_vertical_margin">16dp</dimen> - 6 --
- 1 <resources> - 2 - 3 <!-- Default screen margins, per the Android Design guidelines. --> - 4 <dimen name="activity_horizontal_margin">16dp</dimen> - 5 <dimen name="activity_vertical_margin">16dp</dimen> - 6 --
- 2 - 3 <!-- Default screen margins, per the Android Design guidelines. --> - 4 <dimen name="activity_horizontal_margin">16dp</dimen> - 5 <dimen name="activity_vertical_margin">16dp</dimen> - 6 - 7 </resources> --/home/felix/workspace/controldlna/res/values/dimens.xml:5:
- 2 - 3 <!-- Default screen margins, per the Android Design guidelines. --> - 4 <dimen name="activity_horizontal_margin">16dp</dimen> - 5 <dimen name="activity_vertical_margin">16dp</dimen> - 6 - 7 </resources> --/home/felix/workspace/controldlna/res/values/strings.xml:8:
- 5 <string name="title_route">Route</string> - 6 <string name="title_server">Server</string> - 7 <string name="play">Play</string> - 8 <string name="pause">Pause</string> - 9 <string name="exit_renderer">Do you really want to exit the renderer? Playback will be stopped.</string> - 10 <string name="previous">Previous</string> --/home/felix/workspace/controldlna/res/values/strings.xml:8:
- 5 <string name="title_route">Route</string> - 6 <string name="title_server">Server</string> - 7 <string name="play">Play</string> - 8 <string name="pause">Pause</string> - 9 <string name="exit_renderer">Do you really want to exit the renderer? Playback will be stopped.</string> - 10 <string name="previous">Previous</string> --
textAlignment
attribute to specify text alignment. However, if you are supporting older versions than API 17, you must also specify a gravity or layout_gravity attribute, since older platforms will ignore the textAlignment
attribute.
-android:supportsRtl
attribute in the manifest <application>
element.Gravity#LEFT
and Gravity#RIGHT
can lead to problems when a layout is rendered in locales where text flows from right to left. Use Gravity#START
and Gravity#END
instead. Similarly, in XML gravity
and layout_gravity
attributes, use start
rather than left
.layout_marginLeft
, use paddingStart
and layout_marginStart
. NOTE: If your minSdkVersion
is less than 17, you should add both the older left/right attributes as well as the new start/right attributes. On older platforms, where RTL is not supported and the start/right attributes are unknown and therefore ignored, you need the older left/right attributes. There is a separate lint check which catches that type of error.Gravity#LEFT
and Gravity#START
, you can use these constants even when targeting older platforms, because the start
bitmask is a superset of the left
bitmask. Therefore, you can use gravity="start"
rather than gravity="left|start"
.)
-<TextView>
is used to display data, the user might want to copy that data and paste it elsewhere. To allow this, the <TextView>
should specify android:textIsSelectable="true"
.minSdkVersion
.
-//STOPSHIP
which indicates that code should not be released yet.// STOPSHIP
can be used to flag code that is incomplete but checked in. This comment marker can be used to indicate that the code should not be shipped until the issue is addressed, and lint will look for these.
-Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarDivider=0x7f010000;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarItemBackground=0x7f010001;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int actionBarSize=0x7f010002;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarSplitStyle=0x7f010003;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarStyle=0x7f010004;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarTabBarStyle=0x7f010005;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarTabStyle=0x7f010006;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarTabTextStyle=0x7f010007;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarWidgetTheme=0x7f010008;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionButtonStyle=0x7f010009;
- /** Default ActionBar dropdown style.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionDropDownStyle=0x7f010067;
- /**
- An optional layout to be used as an action view.
- See {@link android.view.MenuItem#setActionView(android.view.View)}
- for more info.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionLayout=0x7f01005e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionMenuTextAppearance=0x7f01000a;
- /**
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int actionMenuTextColor=0x7f01000b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeBackground=0x7f01000c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCloseButtonStyle=0x7f01000d;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCloseDrawable=0x7f01000e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCopyDrawable=0x7f01000f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCutDrawable=0x7f010010;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeFindDrawable=0x7f010011;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModePasteDrawable=0x7f010012;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModePopupWindowStyle=0x7f010013;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeSelectAllDrawable=0x7f010014;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeShareDrawable=0x7f010015;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeSplitBackground=0x7f010016;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeStyle=0x7f010017;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeWebSearchDrawable=0x7f010018;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionOverflowButtonStyle=0x7f010019;
- /**
- The name of an optional ActionProvider class to instantiate an action view
- and perform operations such as default action for that menu item.
- See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
- for more info.
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int actionProviderClass=0x7f010060;
- /**
- The name of an optional View class to instantiate and use as an
- action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
- for more info.
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int actionViewClass=0x7f01005f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int activityChooserViewStyle=0x7f01001a;
- /** Specifies a background drawable for the action bar.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int background=0x7f01004b;
- /** Specifies a background drawable for the bottom component of a split action bar.
-
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int backgroundSplit=0x7f01004d;
- /** Specifies a background drawable for a second stacked row of the action bar.
-
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int backgroundStacked=0x7f01004c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int buttonBarButtonStyle=0x7f01001b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int buttonBarStyle=0x7f01001c;
- /** Specifies a layout for custom navigation. Overrides navigationMode.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int customNavigationLayout=0x7f01004e;
- /**
- Whether this spinner should mark child views as enabled/disabled when
- the spinner itself is enabled/disabled.
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int disableChildrenWhenDisabled=0x7f010066;
- /** Options affecting how the action bar is displayed.
-
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int divider=0x7f01004a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int dividerHorizontal=0x7f01001d;
- /** Size of padding on either end of a divider.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int dividerPadding=0x7f01005b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int dividerVertical=0x7f01001e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int dropDownListViewStyle=0x7f01001f;
- /** The preferred item height for dropdown lists.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int dropdownListPreferredItemHeight=0x7f010068;
- /**
- The drawable to show in the button for expanding the activities overflow popup.
- Note: Clients would like to set this drawable
- as a clue about the action the chosen activity will perform. For
- example, if share activity is to be chosen the drawable should
- give a clue that sharing is to be performed.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int expandActivityOverflowButtonDrawable=0x7f010058;
- /**
- This drawable is a state list where the "checked" state
- indicates active media routing. Checkable indicates connecting
- and non-checked / non-checkable indicates
- that media is playing to the local device only.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int externalRouteEnabledDrawable=0x7f01005c;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int height=0x7f010020;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int homeAsUpIndicator=0x7f010021;
- /** Specifies a layout to use for the "home" section of the action bar.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int homeLayout=0x7f01004f;
- /** Specifies the drawable used for the application icon.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int icon=0x7f010048;
- /**
- The default state of the SearchView. If true, it will be iconified when not in
- use and expanded when clicked.
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int iconifiedByDefault=0x7f010061;
- /** Specifies a style resource to use for an indeterminate progress spinner.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int indeterminateProgressStyle=0x7f010051;
- /** The maximal number of items initially shown in the activity list.
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int initialActivityCount=0x7f010057;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int isLightTheme=0x7f010022;
- /**
- Specifies padding that should be applied to the left and right sides of
- system-provided items in the bar.
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int itemPadding=0x7f010053;
- /** Drawable used as a background for selected list items.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int listChoiceBackgroundIndicator=0x7f01006c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int listPopupWindowStyle=0x7f010023;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeight=0x7f010024;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeightLarge=0x7f010025;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeightSmall=0x7f010026;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemPaddingLeft=0x7f010027;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemPaddingRight=0x7f010028;
- /** Specifies the drawable used for the application logo.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int logo=0x7f010049;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteButtonStyle=0x7f010029;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteConnectingDrawable=0x7f01002a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteOffDrawable=0x7f01002b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteOnDrawable=0x7f01002c;
- /** The type of navigation to use.
-
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int paddingEnd=0x7f01006e;
- /** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int paddingStart=0x7f01006d;
- /** Default Panel Menu style.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int panelMenuListTheme=0x7f01006b;
- /** Default Panel Menu width.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int panelMenuListWidth=0x7f01006a;
- /** Default PopupMenu style.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int popupMenuStyle=0x7f010069;
- /**
- Reference to a layout to use for displaying a prompt in the dropdown for
- spinnerMode="dropdown". This layout must contain a TextView with the id
- {@code @android:id/text1} to be populated with the prompt text.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int popupPromptView=0x7f010065;
- /** Specifies the horizontal padding on either end for an embedded progress bar.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int progressBarPadding=0x7f010052;
- /** Specifies a style resource to use for an embedded progress bar.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int progressBarStyle=0x7f010050;
- /** The prompt to display when the spinner's dialog is shown.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int prompt=0x7f010063;
- /** An optional query hint string to be displayed in the empty query field.
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int queryHint=0x7f010062;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchDropdownBackground=0x7f01002d;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int searchResultListItemHeight=0x7f01002e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewAutoCompleteTextView=0x7f01002f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewCloseIcon=0x7f010030;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewEditQuery=0x7f010031;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewEditQueryBackground=0x7f010032;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewGoIcon=0x7f010033;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewSearchIcon=0x7f010034;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewTextField=0x7f010035;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewTextFieldRight=0x7f010036;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewVoiceIcon=0x7f010037;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int selectableItemBackground=0x7f010038;
- /** How this item should display in the Action Bar, if present.
-
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
never | 0 | - Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always". - |
ifRoom | 1 | - Show this item in an action bar if there is room for it as determined - by the system. Favor this option over "always" where possible. - Mutually exclusive with "never" and "always". - |
always | 2 | - Always show this item in an actionbar, even if it would override - the system's limits of how much stuff to put there. This may make - your action bar look bad on some screens. In most cases you should - use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". - |
withText | 4 | - When this item is shown as an action in the action bar, show a text - label with it even if it has an icon representation. - |
collapseActionView | 8 | - This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container. - |
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int spinnerDropDownItemStyle=0x7f010039;
- /** Display mode for spinner options.
-
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | - Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself. - |
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int spinnerStyle=0x7f01003a;
- /** Specifies subtitle text used for navigationMode="normal"
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int subtitle=0x7f010045;
- /** Specifies a style to use for subtitle text.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int subtitleTextStyle=0x7f010047;
- /** Present the text in ALL CAPS. This may use a small-caps form when available.
-
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a boolean value, either "true
" or "false
".
- */
- public static final int textAllCaps=0x7f010059;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceLargePopupMenu=0x7f01003b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceListItem=0x7f01003c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceListItemSmall=0x7f01003d;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceSearchResultSubtitle=0x7f01003e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceSearchResultTitle=0x7f01003f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceSmallPopupMenu=0x7f010040;
- /**
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int textColorSearchUrl=0x7f010041;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int title=0x7f010042;
- /** Specifies a style to use for title text.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int titleTextStyle=0x7f010046;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int windowActionBar=0x7f010054;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int windowActionBarOverlay=0x7f010055;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int windowSplitActionBar=0x7f010056;
- }
- public static final class bool {
- public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050000;
- public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050001;
- public static final int abc_config_actionMenuItemAllCaps=0x7f050002;
- public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050003;
- public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050004;
- public static final int abc_split_action_bar_is_narrow=0x7f050005;
- }
- public static final class color {
- public static final int abc_search_url_text_holo=0x7f060005;
- public static final int abc_search_url_text_normal=0x7f060000;
- public static final int abc_search_url_text_pressed=0x7f060001;
- public static final int abc_search_url_text_selected=0x7f060002;
- public static final int button_highlight=0x7f060003;
- public static final int currently_playing_background=0x7f060004;
- }
- public static final class dimen {
- public static final int abc_action_bar_default_height=0x7f080000;
- public static final int abc_action_bar_icon_vertical_padding=0x7f080001;
- public static final int abc_action_bar_stacked_max_height=0x7f080002;
- public static final int abc_action_bar_stacked_tab_max_width=0x7f080003;
- public static final int abc_action_bar_subtitle_bottom_margin=0x7f080004;
- public static final int abc_action_bar_subtitle_text_size=0x7f080005;
- public static final int abc_action_bar_subtitle_top_margin=0x7f080006;
- public static final int abc_action_bar_title_text_size=0x7f080007;
- public static final int abc_action_button_min_width=0x7f080008;
- public static final int abc_config_prefDialogWidth=0x7f080009;
- public static final int abc_dropdownitem_icon_width=0x7f08000a;
- public static final int abc_dropdownitem_text_padding_left=0x7f08000b;
- public static final int abc_dropdownitem_text_padding_right=0x7f08000c;
- public static final int abc_panel_menu_list_width=0x7f08000d;
- public static final int abc_search_view_preferred_width=0x7f08000e;
- public static final int abc_search_view_text_min_width=0x7f08000f;
- public static final int activity_horizontal_margin=0x7f080010;
- public static final int activity_vertical_margin=0x7f080011;
- }
- public static final class drawable {
- public static final int abc_ab_bottom_solid_dark_holo=0x7f020000;
- public static final int abc_ab_bottom_solid_light_holo=0x7f020001;
- public static final int abc_ab_bottom_transparent_dark_holo=0x7f020002;
- public static final int abc_ab_bottom_transparent_light_holo=0x7f020003;
- public static final int abc_ab_share_pack_holo_dark=0x7f020004;
- public static final int abc_ab_share_pack_holo_light=0x7f020005;
- public static final int abc_ab_solid_dark_holo=0x7f020006;
- public static final int abc_ab_solid_light_holo=0x7f020007;
- public static final int abc_ab_stacked_solid_dark_holo=0x7f020008;
- public static final int abc_ab_stacked_solid_light_holo=0x7f020009;
- public static final int abc_ab_stacked_transparent_dark_holo=0x7f02000a;
- public static final int abc_ab_stacked_transparent_light_holo=0x7f02000b;
- public static final int abc_ab_transparent_dark_holo=0x7f02000c;
- public static final int abc_ab_transparent_light_holo=0x7f02000d;
- public static final int abc_cab_background_bottom_holo_dark=0x7f02000e;
- public static final int abc_cab_background_bottom_holo_light=0x7f02000f;
- public static final int abc_cab_background_top_holo_dark=0x7f020010;
- public static final int abc_cab_background_top_holo_light=0x7f020011;
- public static final int abc_ic_ab_back_holo_dark=0x7f020012;
- public static final int abc_ic_ab_back_holo_light=0x7f020013;
- public static final int abc_ic_cab_done_holo_dark=0x7f020014;
- public static final int abc_ic_cab_done_holo_light=0x7f020015;
- public static final int abc_ic_clear=0x7f020016;
- public static final int abc_ic_clear_disabled=0x7f020017;
- public static final int abc_ic_clear_holo_light=0x7f020018;
- public static final int abc_ic_clear_normal=0x7f020019;
- public static final int abc_ic_clear_search_api_disabled_holo_light=0x7f02001a;
- public static final int abc_ic_clear_search_api_holo_light=0x7f02001b;
- public static final int abc_ic_commit_search_api_holo_dark=0x7f02001c;
- public static final int abc_ic_commit_search_api_holo_light=0x7f02001d;
- public static final int abc_ic_go=0x7f02001e;
- public static final int abc_ic_go_search_api_holo_light=0x7f02001f;
- public static final int abc_ic_menu_moreoverflow_normal_holo_dark=0x7f020020;
- public static final int abc_ic_menu_moreoverflow_normal_holo_light=0x7f020021;
- public static final int abc_ic_menu_share_holo_dark=0x7f020022;
- public static final int abc_ic_menu_share_holo_light=0x7f020023;
- public static final int abc_ic_search=0x7f020024;
- public static final int abc_ic_search_api_holo_light=0x7f020025;
- public static final int abc_ic_voice_search=0x7f020026;
- public static final int abc_ic_voice_search_api_holo_light=0x7f020027;
- public static final int abc_item_background_holo_dark=0x7f020028;
- public static final int abc_item_background_holo_light=0x7f020029;
- public static final int abc_list_divider_holo_dark=0x7f02002a;
- public static final int abc_list_divider_holo_light=0x7f02002b;
- public static final int abc_list_focused_holo=0x7f02002c;
- public static final int abc_list_longpressed_holo=0x7f02002d;
- public static final int abc_list_pressed_holo_dark=0x7f02002e;
- public static final int abc_list_pressed_holo_light=0x7f02002f;
- public static final int abc_list_selector_background_transition_holo_dark=0x7f020030;
- public static final int abc_list_selector_background_transition_holo_light=0x7f020031;
- public static final int abc_list_selector_disabled_holo_dark=0x7f020032;
- public static final int abc_list_selector_disabled_holo_light=0x7f020033;
- public static final int abc_list_selector_holo_dark=0x7f020034;
- public static final int abc_list_selector_holo_light=0x7f020035;
- public static final int abc_menu_dropdown_panel_holo_dark=0x7f020036;
- public static final int abc_menu_dropdown_panel_holo_light=0x7f020037;
- public static final int abc_menu_hardkey_panel_holo_dark=0x7f020038;
- public static final int abc_menu_hardkey_panel_holo_light=0x7f020039;
- public static final int abc_search_dropdown_dark=0x7f02003a;
- public static final int abc_search_dropdown_light=0x7f02003b;
- public static final int abc_spinner_ab_default_holo_dark=0x7f02003c;
- public static final int abc_spinner_ab_default_holo_light=0x7f02003d;
- public static final int abc_spinner_ab_disabled_holo_dark=0x7f02003e;
- public static final int abc_spinner_ab_disabled_holo_light=0x7f02003f;
- public static final int abc_spinner_ab_focused_holo_dark=0x7f020040;
- public static final int abc_spinner_ab_focused_holo_light=0x7f020041;
- public static final int abc_spinner_ab_holo_dark=0x7f020042;
- public static final int abc_spinner_ab_holo_light=0x7f020043;
- public static final int abc_spinner_ab_pressed_holo_dark=0x7f020044;
- public static final int abc_spinner_ab_pressed_holo_light=0x7f020045;
- public static final int abc_tab_indicator_ab_holo=0x7f020046;
- public static final int abc_tab_selected_focused_holo=0x7f020047;
- public static final int abc_tab_selected_holo=0x7f020048;
- public static final int abc_tab_selected_pressed_holo=0x7f020049;
- public static final int abc_tab_unselected_pressed_holo=0x7f02004a;
- public static final int abc_textfield_search_default_holo_dark=0x7f02004b;
- public static final int abc_textfield_search_default_holo_light=0x7f02004c;
- public static final int abc_textfield_search_right_default_holo_dark=0x7f02004d;
- public static final int abc_textfield_search_right_default_holo_light=0x7f02004e;
- public static final int abc_textfield_search_right_selected_holo_dark=0x7f02004f;
- public static final int abc_textfield_search_right_selected_holo_light=0x7f020050;
- public static final int abc_textfield_search_selected_holo_dark=0x7f020051;
- public static final int abc_textfield_search_selected_holo_light=0x7f020052;
- public static final int abc_textfield_searchview_holo_dark=0x7f020053;
- public static final int abc_textfield_searchview_holo_light=0x7f020054;
- public static final int abc_textfield_searchview_right_holo_dark=0x7f020055;
- public static final int abc_textfield_searchview_right_holo_light=0x7f020056;
- public static final int ic_action_next=0x7f020057;
- public static final int ic_action_pause=0x7f020058;
- public static final int ic_action_play=0x7f020059;
- public static final int ic_action_previous=0x7f02005a;
- public static final int ic_action_repeat=0x7f02005b;
- public static final int ic_action_shuffle=0x7f02005c;
- public static final int ic_launcher=0x7f02005d;
- public static final int mr_ic_audio_vol=0x7f02005e;
- public static final int mr_ic_media_route_connecting_holo_dark=0x7f02005f;
- public static final int mr_ic_media_route_connecting_holo_light=0x7f020060;
- public static final int mr_ic_media_route_disabled_holo_dark=0x7f020061;
- public static final int mr_ic_media_route_disabled_holo_light=0x7f020062;
- public static final int mr_ic_media_route_holo_dark=0x7f020063;
- public static final int mr_ic_media_route_holo_light=0x7f020064;
- public static final int mr_ic_media_route_off_holo_dark=0x7f020065;
- public static final int mr_ic_media_route_off_holo_light=0x7f020066;
- public static final int mr_ic_media_route_on_0_holo_dark=0x7f020067;
- public static final int mr_ic_media_route_on_0_holo_light=0x7f020068;
- public static final int mr_ic_media_route_on_1_holo_dark=0x7f020069;
- public static final int mr_ic_media_route_on_1_holo_light=0x7f02006a;
- public static final int mr_ic_media_route_on_2_holo_dark=0x7f02006b;
- public static final int mr_ic_media_route_on_2_holo_light=0x7f02006c;
- public static final int mr_ic_media_route_on_holo_dark=0x7f02006d;
- public static final int mr_ic_media_route_on_holo_light=0x7f02006e;
- }
- public static final class id {
- public static final int action_bar=0x7f07001a;
- public static final int action_bar_activity_content=0x7f070014;
- public static final int action_bar_container=0x7f070019;
- public static final int action_bar_overlay_layout=0x7f07001d;
- public static final int action_bar_root=0x7f070018;
- public static final int action_bar_subtitle=0x7f070021;
- public static final int action_bar_title=0x7f070020;
- public static final int action_context_bar=0x7f07001b;
- public static final int action_menu_divider=0x7f070015;
- public static final int action_menu_presenter=0x7f070016;
- public static final int action_mode_bar=0x7f07002f;
- public static final int action_mode_bar_stub=0x7f07002e;
- public static final int action_mode_close_button=0x7f070022;
- public static final int activity_chooser_view_content=0x7f070023;
- public static final int always=0x7f07000f;
- public static final int beginning=0x7f07000a;
- public static final int checkbox=0x7f07002b;
- public static final int collapseActionView=0x7f070011;
- public static final int controls=0x7f07004a;
- public static final int current_time=0x7f07004c;
- public static final int default_activity_button=0x7f070026;
- public static final int dialog=0x7f070012;
- public static final int disableHome=0x7f070008;
- public static final int dropdown=0x7f070013;
- public static final int edit_query=0x7f070036;
- public static final int end=0x7f07000c;
- public static final int expand_activities_button=0x7f070024;
- public static final int expanded_menu=0x7f07002a;
- public static final int home=0x7f070017;
- public static final int homeAsUp=0x7f070005;
- public static final int icon=0x7f070028;
- public static final int ifRoom=0x7f07000e;
- public static final int image=0x7f070025;
- public static final int left_icon=0x7f070031;
- public static final int listMode=0x7f070001;
- public static final int list_item=0x7f070027;
- public static final int listview=0x7f070049;
- public static final int media_route_control_frame=0x7f070047;
- public static final int media_route_disconnect_button=0x7f070048;
- public static final int media_route_list=0x7f070044;
- public static final int media_route_volume_layout=0x7f070045;
- public static final int media_route_volume_slider=0x7f070046;
- public static final int middle=0x7f07000b;
- public static final int never=0x7f07000d;
- public static final int next=0x7f070050;
- public static final int none=0x7f070009;
- public static final int normal=0x7f070000;
- public static final int pager=0x7f070042;
- public static final int playpause=0x7f07004f;
- public static final int previous=0x7f07004e;
- public static final int progressBar=0x7f07004b;
- public static final int progress_circular=0x7f070034;
- public static final int progress_horizontal=0x7f070035;
- public static final int radio=0x7f07002d;
- public static final int repeat=0x7f070051;
- public static final int right_container=0x7f070032;
- public static final int right_icon=0x7f070033;
- public static final int search_badge=0x7f070038;
- public static final int search_bar=0x7f070037;
- public static final int search_button=0x7f070039;
- public static final int search_close_btn=0x7f07003e;
- public static final int search_edit_frame=0x7f07003a;
- public static final int search_go_btn=0x7f070040;
- public static final int search_mag_icon=0x7f07003b;
- public static final int search_plate=0x7f07003c;
- public static final int search_src_text=0x7f07003d;
- public static final int search_voice_btn=0x7f070041;
- public static final int shortcut=0x7f07002c;
- public static final int showCustom=0x7f070007;
- public static final int showHome=0x7f070004;
- public static final int showTitle=0x7f070006;
- public static final int shuffle=0x7f07004d;
- public static final int split_action_bar=0x7f07001c;
- public static final int submit_area=0x7f07003f;
- public static final int subtitle=0x7f070043;
- public static final int tabMode=0x7f070002;
- public static final int title=0x7f070029;
- public static final int title_container=0x7f070030;
- public static final int top_action_bar=0x7f07001e;
- public static final int total_time=0x7f070052;
- public static final int up=0x7f07001f;
- public static final int useLogo=0x7f070003;
- public static final int withText=0x7f070010;
- }
- public static final class integer {
- public static final int abc_max_action_buttons=0x7f090000;
- }
- public static final class layout {
- public static final int abc_action_bar_decor=0x7f030000;
- public static final int abc_action_bar_decor_include=0x7f030001;
- public static final int abc_action_bar_decor_overlay=0x7f030002;
- public static final int abc_action_bar_home=0x7f030003;
- public static final int abc_action_bar_tab=0x7f030004;
- public static final int abc_action_bar_tabbar=0x7f030005;
- public static final int abc_action_bar_title_item=0x7f030006;
- public static final int abc_action_bar_view_list_nav_layout=0x7f030007;
- public static final int abc_action_menu_item_layout=0x7f030008;
- public static final int abc_action_menu_layout=0x7f030009;
- public static final int abc_action_mode_bar=0x7f03000a;
- public static final int abc_action_mode_close_item=0x7f03000b;
- public static final int abc_activity_chooser_view=0x7f03000c;
- public static final int abc_activity_chooser_view_include=0x7f03000d;
- public static final int abc_activity_chooser_view_list_item=0x7f03000e;
- public static final int abc_expanded_menu_layout=0x7f03000f;
- public static final int abc_list_menu_item_checkbox=0x7f030010;
- public static final int abc_list_menu_item_icon=0x7f030011;
- public static final int abc_list_menu_item_layout=0x7f030012;
- public static final int abc_list_menu_item_radio=0x7f030013;
- public static final int abc_popup_menu_item_layout=0x7f030014;
- public static final int abc_screen=0x7f030015;
- public static final int abc_search_dropdown_item_icons_2line=0x7f030016;
- public static final int abc_search_view=0x7f030017;
- public static final int activity_main=0x7f030018;
- public static final int list_item=0x7f030019;
- public static final int mr_media_route_chooser_dialog=0x7f03001a;
- public static final int mr_media_route_controller_dialog=0x7f03001b;
- public static final int mr_media_route_list_item=0x7f03001c;
- public static final int route_fragment=0x7f03001d;
- public static final int server_fragment=0x7f03001e;
- public static final int support_simple_spinner_dropdown_item=0x7f03001f;
- }
- public static final class string {
- public static final int abc_action_bar_home_description=0x7f0a0000;
- public static final int abc_action_bar_up_description=0x7f0a0001;
- public static final int abc_action_menu_overflow_description=0x7f0a0002;
- public static final int abc_action_mode_done=0x7f0a0003;
- public static final int abc_activity_chooser_view_see_all=0x7f0a0004;
- public static final int abc_activitychooserview_choose_application=0x7f0a0005;
- public static final int abc_searchview_description_clear=0x7f0a0006;
- public static final int abc_searchview_description_query=0x7f0a0007;
- public static final int abc_searchview_description_search=0x7f0a0008;
- public static final int abc_searchview_description_submit=0x7f0a0009;
- public static final int abc_searchview_description_voice=0x7f0a000a;
- public static final int abc_shareactionprovider_share_with=0x7f0a000b;
- public static final int abc_shareactionprovider_share_with_application=0x7f0a000c;
- public static final int album_art=0x7f0a000d;
- public static final int app_name=0x7f0a000e;
- public static final int auto_enable_wifi=0x7f0a000f;
- public static final int device_list_empty=0x7f0a0010;
- public static final int dont_show_dialog_again=0x7f0a0011;
- public static final int exit_renderer=0x7f0a0012;
- public static final int folder_list_etmpy=0x7f0a0013;
- public static final int mr_media_route_button_content_description=0x7f0a0014;
- public static final int mr_media_route_chooser_searching=0x7f0a0015;
- public static final int mr_media_route_chooser_title=0x7f0a0016;
- public static final int mr_media_route_controller_disconnect=0x7f0a0017;
- public static final int mr_system_route_name=0x7f0a0018;
- public static final int mr_user_route_category_name=0x7f0a0019;
- public static final int next=0x7f0a001a;
- public static final int pause=0x7f0a001b;
- public static final int play=0x7f0a001c;
- public static final int playlist_empty=0x7f0a001d;
- public static final int previous=0x7f0a001e;
- public static final int repeat=0x7f0a001f;
- public static final int route_description=0x7f0a0020;
- public static final int route_list_empty=0x7f0a0021;
- public static final int select_route=0x7f0a0022;
- public static final int shuffle=0x7f0a0023;
- public static final int title_route=0x7f0a0024;
- public static final int title_server=0x7f0a0025;
- public static final int warning_wifi_not_connected=0x7f0a0026;
- }
- public static final class style {
- /**
- Theme customizations available in newer API levels can go in
- res/values-vXX/styles.xml, while customizations related to
- backward-compatibility can go here.
-
- API 11 theme customizations can go here.
- API 14 theme customizations can go here.
- */
- public static final int AppBaseTheme=0x7f0b0000;
- /** All customizations that are NOT specific to a particular API-level can go here.
- */
- public static final int AppTheme=0x7f0b0001;
- public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0b0002;
- public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0b0003;
- public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0b0004;
- public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0b0005;
- public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0b0006;
- public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0b0007;
- public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0b0008;
- public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0b0009;
- public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0b000a;
- public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0b000b;
- public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0b000c;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b000d;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b000e;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b000f;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0010;
- public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0011;
- public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0012;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0013;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0014;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0015;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0016;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0017;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0018;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0019;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b001a;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b001b;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0b001c;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0b001d;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0b001e;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0b001f;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0b0020;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0b0021;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0b0022;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0b0023;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0b0024;
- public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0b0025;
- public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0026;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0027;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0028;
- public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0b0029;
- public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b002a;
- public static final int Theme_AppCompat=0x7f0b002b;
- public static final int Theme_AppCompat_Base_CompactMenu=0x7f0b002c;
- public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0b002d;
- public static final int Theme_AppCompat_CompactMenu=0x7f0b002e;
- public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0b002f;
- public static final int Theme_AppCompat_Light=0x7f0b0030;
- public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0031;
- public static final int Theme_Base=0x7f0b0032;
- public static final int Theme_Base_AppCompat=0x7f0b0033;
- public static final int Theme_Base_AppCompat_Light=0x7f0b0034;
- public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0b0035;
- public static final int Theme_Base_Light=0x7f0b0036;
- public static final int Theme_MediaRouter=0x7f0b0037;
- public static final int Theme_MediaRouter_Light=0x7f0b0038;
- public static final int Widget_AppCompat_ActionBar=0x7f0b0039;
- public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b003a;
- public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b003b;
- public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b003c;
- public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b003d;
- public static final int Widget_AppCompat_ActionButton=0x7f0b003e;
- public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b003f;
- public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0040;
- public static final int Widget_AppCompat_ActionMode=0x7f0b0041;
- public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0042;
- public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0043;
- public static final int Widget_AppCompat_Base_ActionBar=0x7f0b0044;
- public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0b0045;
- public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0b0046;
- public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0b0047;
- public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0b0048;
- public static final int Widget_AppCompat_Base_ActionButton=0x7f0b0049;
- public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0b004a;
- public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0b004b;
- public static final int Widget_AppCompat_Base_ActionMode=0x7f0b004c;
- public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0b004d;
- public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0b004e;
- public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0b004f;
- public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0b0050;
- public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0b0051;
- public static final int Widget_AppCompat_Base_PopupMenu=0x7f0b0052;
- public static final int Widget_AppCompat_Base_ProgressBar=0x7f0b0053;
- public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0b0054;
- public static final int Widget_AppCompat_Base_Spinner=0x7f0b0055;
- public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0056;
- public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0057;
- public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0058;
- public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0059;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b005a;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b005b;
- public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b005c;
- public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b005d;
- public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b005e;
- public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b005f;
- public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0060;
- public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0061;
- public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0062;
- public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0063;
- public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0064;
- public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0065;
- public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0b0066;
- public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0b0067;
- public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0b0068;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0b0069;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0b006a;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0b006b;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0b006c;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0b006d;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0b006e;
- public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0b006f;
- public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0b0070;
- public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0b0071;
- public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0b0072;
- public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0b0073;
- public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0b0074;
- public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0b0075;
- public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0b0076;
- public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0b0077;
- public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0b0078;
- public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0079;
- public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b007a;
- public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b007b;
- public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b007c;
- public static final int Widget_AppCompat_ListView_DropDown=0x7f0b007d;
- public static final int Widget_AppCompat_ListView_Menu=0x7f0b007e;
- public static final int Widget_AppCompat_PopupMenu=0x7f0b007f;
- public static final int Widget_AppCompat_ProgressBar=0x7f0b0080;
- public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0081;
- public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0082;
- public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0083;
- public static final int Widget_MediaRouter_MediaRouteButton=0x7f0b0084;
- }
- public static final class styleable {
- /** Attributes that can be used with a ActionBar.
-
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionBar_background com.github.nutomic.controldlna:background} | Specifies a background drawable for the action bar. |
{@link #ActionBar_backgroundSplit com.github.nutomic.controldlna:backgroundSplit} | Specifies a background drawable for the bottom component of a split action bar. |
{@link #ActionBar_backgroundStacked com.github.nutomic.controldlna:backgroundStacked} | Specifies a background drawable for a second stacked row of the action bar. |
{@link #ActionBar_customNavigationLayout com.github.nutomic.controldlna:customNavigationLayout} | Specifies a layout for custom navigation. |
{@link #ActionBar_displayOptions com.github.nutomic.controldlna:displayOptions} | Options affecting how the action bar is displayed. |
{@link #ActionBar_divider com.github.nutomic.controldlna:divider} | Specifies the drawable used for item dividers. |
{@link #ActionBar_height com.github.nutomic.controldlna:height} | Specifies a fixed height. |
{@link #ActionBar_homeLayout com.github.nutomic.controldlna:homeLayout} | Specifies a layout to use for the "home" section of the action bar. |
{@link #ActionBar_icon com.github.nutomic.controldlna:icon} | Specifies the drawable used for the application icon. |
{@link #ActionBar_indeterminateProgressStyle com.github.nutomic.controldlna:indeterminateProgressStyle} | Specifies a style resource to use for an indeterminate progress spinner. |
{@link #ActionBar_itemPadding com.github.nutomic.controldlna:itemPadding} | - Specifies padding that should be applied to the left and right sides of - system-provided items in the bar. |
{@link #ActionBar_logo com.github.nutomic.controldlna:logo} | Specifies the drawable used for the application logo. |
{@link #ActionBar_navigationMode com.github.nutomic.controldlna:navigationMode} | The type of navigation to use. |
{@link #ActionBar_progressBarPadding com.github.nutomic.controldlna:progressBarPadding} | Specifies the horizontal padding on either end for an embedded progress bar. |
{@link #ActionBar_progressBarStyle com.github.nutomic.controldlna:progressBarStyle} | Specifies a style resource to use for an embedded progress bar. |
{@link #ActionBar_subtitle com.github.nutomic.controldlna:subtitle} | Specifies subtitle text used for navigationMode="normal" |
{@link #ActionBar_subtitleTextStyle com.github.nutomic.controldlna:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionBar_title com.github.nutomic.controldlna:title} | Specifies title text used for navigationMode="normal" |
{@link #ActionBar_titleTextStyle com.github.nutomic.controldlna:titleTextStyle} | Specifies a style to use for title text. |
- @attr description - Specifies a background drawable for the action bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:background - */ - public static final int ActionBar_background = 10; - /** -
- @attr description - Specifies a background drawable for the bottom component of a split action bar. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:backgroundSplit - */ - public static final int ActionBar_backgroundSplit = 12; - /** -
- @attr description - Specifies a background drawable for a second stacked row of the action bar. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:backgroundStacked - */ - public static final int ActionBar_backgroundStacked = 11; - /** -
- @attr description - Specifies a layout for custom navigation. Overrides navigationMode. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout = 13; - /** -
- @attr description - Options affecting how the action bar is displayed. - - -
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
This is a private symbol. - @attr name com.github.nutomic.controldlna:displayOptions - */ - public static final int ActionBar_displayOptions = 3; - /** -
- @attr description - Specifies the drawable used for item dividers. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:divider - */ - public static final int ActionBar_divider = 9; - /** -
- @attr description - Specifies a fixed height. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:height - */ - public static final int ActionBar_height = 0; - /** -
- @attr description - Specifies a layout to use for the "home" section of the action bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:homeLayout - */ - public static final int ActionBar_homeLayout = 14; - /** -
- @attr description - Specifies the drawable used for the application icon. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:icon - */ - public static final int ActionBar_icon = 7; - /** -
- @attr description - Specifies a style resource to use for an indeterminate progress spinner. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle = 16; - /** -
- @attr description - - Specifies padding that should be applied to the left and right sides of - system-provided items in the bar. - - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:itemPadding - */ - public static final int ActionBar_itemPadding = 18; - /** -
- @attr description - Specifies the drawable used for the application logo. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:logo - */ - public static final int ActionBar_logo = 8; - /** -
- @attr description - The type of navigation to use. - - -
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
This is a private symbol. - @attr name com.github.nutomic.controldlna:navigationMode - */ - public static final int ActionBar_navigationMode = 2; - /** -
- @attr description - Specifies the horizontal padding on either end for an embedded progress bar. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:progressBarPadding - */ - public static final int ActionBar_progressBarPadding = 17; - /** -
- @attr description - Specifies a style resource to use for an embedded progress bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:progressBarStyle - */ - public static final int ActionBar_progressBarStyle = 15; - /** -
- @attr description - Specifies subtitle text used for navigationMode="normal" - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:subtitle - */ - public static final int ActionBar_subtitle = 4; - /** -
- @attr description - Specifies a style to use for subtitle text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle = 6; - /** -
- @attr description - Specifies title text used for navigationMode="normal" - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:title - */ - public static final int ActionBar_title = 1; - /** -
- @attr description - Specifies a style to use for title text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:titleTextStyle - */ - public static final int ActionBar_titleTextStyle = 5; - /** Attributes that can be used with a ActionBarLayout. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity} |
This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #ActionBarLayout} array. - @attr name android:layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity = 0; - /** Attributes that can be used with a ActionBarWindow. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionBarWindow_windowActionBar com.github.nutomic.controldlna:windowActionBar} | |
{@link #ActionBarWindow_windowActionBarOverlay com.github.nutomic.controldlna:windowActionBarOverlay} | |
{@link #ActionBarWindow_windowSplitActionBar com.github.nutomic.controldlna:windowSplitActionBar} |
This symbol is the offset where the {@link com.github.nutomic.controldlna.R.attr#windowActionBar} - attribute's value can be found in the {@link #ActionBarWindow} array. - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- @attr name com.github.nutomic.controldlna:windowActionBar
- */
- public static final int ActionBarWindow_windowActionBar = 0;
- /**
-
This symbol is the offset where the {@link com.github.nutomic.controldlna.R.attr#windowActionBarOverlay} - attribute's value can be found in the {@link #ActionBarWindow} array. - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- @attr name com.github.nutomic.controldlna:windowActionBarOverlay
- */
- public static final int ActionBarWindow_windowActionBarOverlay = 1;
- /**
-
This symbol is the offset where the {@link com.github.nutomic.controldlna.R.attr#windowSplitActionBar} - attribute's value can be found in the {@link #ActionBarWindow} array. - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- @attr name com.github.nutomic.controldlna:windowSplitActionBar
- */
- public static final int ActionBarWindow_windowSplitActionBar = 2;
- /** Attributes that can be used with a ActionMenuItemView.
-
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionMenuItemView_android_minWidth android:minWidth} |
This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - @attr name android:minWidth - */ - public static final int ActionMenuItemView_android_minWidth = 0; - /** Size of padding on either end of a divider. - */ - public static final int[] ActionMenuView = { - - }; - /** Attributes that can be used with a ActionMode. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionMode_background com.github.nutomic.controldlna:background} | Specifies a background for the action mode bar. |
{@link #ActionMode_backgroundSplit com.github.nutomic.controldlna:backgroundSplit} | Specifies a background for the split action mode bar. |
{@link #ActionMode_height com.github.nutomic.controldlna:height} | Specifies a fixed height for the action mode bar. |
{@link #ActionMode_subtitleTextStyle com.github.nutomic.controldlna:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionMode_titleTextStyle com.github.nutomic.controldlna:titleTextStyle} | Specifies a style to use for title text. |
- @attr description - Specifies a background for the action mode bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:background - */ - public static final int ActionMode_background = 3; - /** -
- @attr description - Specifies a background for the split action mode bar. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:backgroundSplit - */ - public static final int ActionMode_backgroundSplit = 4; - /** -
- @attr description - Specifies a fixed height for the action mode bar. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:height - */ - public static final int ActionMode_height = 0; - /** -
- @attr description - Specifies a style to use for subtitle text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle = 2; - /** -
- @attr description - Specifies a style to use for title text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:titleTextStyle - */ - public static final int ActionMode_titleTextStyle = 1; - /** Attributes that can be used with a ActivityChooserView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.github.nutomic.controldlna:expandActivityOverflowButtonDrawable} | - The drawable to show in the button for expanding the activities overflow popup. |
{@link #ActivityChooserView_initialActivityCount com.github.nutomic.controldlna:initialActivityCount} | The maximal number of items initially shown in the activity list. |
- @attr description - - The drawable to show in the button for expanding the activities overflow popup. - Note: Clients would like to set this drawable - as a clue about the action the chosen activity will perform. For - example, if share activity is to be chosen the drawable should - give a clue that sharing is to be performed. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - /** -
- @attr description - The maximal number of items initially shown in the activity list. - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount = 0; - /** Attributes that can be used with a CompatTextView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #CompatTextView_textAllCaps com.github.nutomic.controldlna:textAllCaps} | Present the text in ALL CAPS. |
- @attr description - Present the text in ALL CAPS. This may use a small-caps form when available. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a boolean value, either "true
" or "false
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:textAllCaps - */ - public static final int CompatTextView_textAllCaps = 0; - /** Attributes that can be used with a LinearLayoutICS. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #LinearLayoutICS_divider com.github.nutomic.controldlna:divider} | Drawable to use as a vertical divider between buttons. |
{@link #LinearLayoutICS_dividerPadding com.github.nutomic.controldlna:dividerPadding} | Size of padding on either end of a divider. |
{@link #LinearLayoutICS_showDividers com.github.nutomic.controldlna:showDividers} | Setting for which dividers to show. |
- @attr description - Drawable to use as a vertical divider between buttons. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:divider - */ - public static final int LinearLayoutICS_divider = 0; - /** -
- @attr description - Size of padding on either end of a divider. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:dividerPadding - */ - public static final int LinearLayoutICS_dividerPadding = 2; - /** -
- @attr description - Setting for which dividers to show. - - -
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
This is a private symbol. - @attr name com.github.nutomic.controldlna:showDividers - */ - public static final int LinearLayoutICS_showDividers = 1; - /** Attributes that can be used with a MediaRouteButton. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MediaRouteButton_android_minHeight android:minHeight} | |
{@link #MediaRouteButton_android_minWidth android:minWidth} | |
{@link #MediaRouteButton_externalRouteEnabledDrawable com.github.nutomic.controldlna:externalRouteEnabledDrawable} | - This drawable is a state list where the "checked" state - indicates active media routing. |
This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #MediaRouteButton} array. - @attr name android:minHeight - */ - public static final int MediaRouteButton_android_minHeight = 1; - /** -
This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #MediaRouteButton} array. - @attr name android:minWidth - */ - public static final int MediaRouteButton_android_minWidth = 0; - /** -
- @attr description - - This drawable is a state list where the "checked" state - indicates active media routing. Checkable indicates connecting - and non-checked / non-checkable indicates - that media is playing to the local device only. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:externalRouteEnabledDrawable - */ - public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; - /** Attributes that can be used with a MenuGroup. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior} | Whether the items are capable of displaying a check mark. |
{@link #MenuGroup_android_enabled android:enabled} | Whether the items are enabled. |
{@link #MenuGroup_android_id android:id} | The ID of the group. |
{@link #MenuGroup_android_menuCategory android:menuCategory} | - The category applied to all items within this group. |
{@link #MenuGroup_android_orderInCategory android:orderInCategory} | - The order within the category applied to all items within this group. |
{@link #MenuGroup_android_visible android:visible} | Whether the items are shown/visible. |
- @attr description - Whether the items are capable of displaying a check mark. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#checkableBehavior}. - @attr name android:checkableBehavior - */ - public static final int MenuGroup_android_checkableBehavior = 5; - /** -
- @attr description - Whether the items are enabled. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int MenuGroup_android_enabled = 0; - /** -
- @attr description - The ID of the group. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int MenuGroup_android_id = 1; - /** -
- @attr description - - The category applied to all items within this group. - (This will be or'ed with the orderInCategory attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#menuCategory}. - @attr name android:menuCategory - */ - public static final int MenuGroup_android_menuCategory = 3; - /** -
- @attr description - - The order within the category applied to all items within this group. - (This will be or'ed with the category attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#orderInCategory}. - @attr name android:orderInCategory - */ - public static final int MenuGroup_android_orderInCategory = 4; - /** -
- @attr description - Whether the items are shown/visible. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int MenuGroup_android_visible = 2; - /** Attributes that can be used with a MenuItem. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MenuItem_actionLayout com.github.nutomic.controldlna:actionLayout} | - An optional layout to be used as an action view. |
{@link #MenuItem_actionProviderClass com.github.nutomic.controldlna:actionProviderClass} | - The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item. |
{@link #MenuItem_actionViewClass com.github.nutomic.controldlna:actionViewClass} | - The name of an optional View class to instantiate and use as an - action view. |
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut} | - The alphabetic shortcut key. |
{@link #MenuItem_android_checkable android:checkable} | Whether the item is capable of displaying a check mark. |
{@link #MenuItem_android_checked android:checked} | - Whether the item is checked. |
{@link #MenuItem_android_enabled android:enabled} | Whether the item is enabled. |
{@link #MenuItem_android_icon android:icon} | - The icon associated with this item. |
{@link #MenuItem_android_id android:id} | The ID of the item. |
{@link #MenuItem_android_menuCategory android:menuCategory} | - The category applied to the item. |
{@link #MenuItem_android_numericShortcut android:numericShortcut} | - The numeric shortcut key. |
{@link #MenuItem_android_onClick android:onClick} | - Name of a method on the Context used to inflate the menu that will be - called when the item is clicked. |
{@link #MenuItem_android_orderInCategory android:orderInCategory} | - The order within the category applied to the item. |
{@link #MenuItem_android_title android:title} | The title associated with the item. |
{@link #MenuItem_android_titleCondensed android:titleCondensed} | - The condensed title associated with the item. |
{@link #MenuItem_android_visible android:visible} | Whether the item is shown/visible. |
{@link #MenuItem_showAsAction com.github.nutomic.controldlna:showAsAction} | How this item should display in the Action Bar, if present. |
- @attr description - - An optional layout to be used as an action view. - See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionLayout - */ - public static final int MenuItem_actionLayout = 14; - /** -
- @attr description - - The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item. - See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} - for more info. - - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionProviderClass - */ - public static final int MenuItem_actionProviderClass = 16; - /** -
- @attr description - - The name of an optional View class to instantiate and use as an - action view. See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. - - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionViewClass - */ - public static final int MenuItem_actionViewClass = 15; - /** -
- @attr description - - The alphabetic shortcut key. This is the shortcut when using a keyboard - with alphabetic keys. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#alphabeticShortcut}. - @attr name android:alphabeticShortcut - */ - public static final int MenuItem_android_alphabeticShortcut = 9; - /** -
- @attr description - Whether the item is capable of displaying a check mark. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#checkable}. - @attr name android:checkable - */ - public static final int MenuItem_android_checkable = 11; - /** -
- @attr description - - Whether the item is checked. Note that you must first have enabled checking with - the checkable attribute or else the check mark will not appear. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#checked}. - @attr name android:checked - */ - public static final int MenuItem_android_checked = 3; - /** -
- @attr description - Whether the item is enabled. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int MenuItem_android_enabled = 1; - /** -
- @attr description - - The icon associated with this item. This icon will not always be shown, so - the title should be sufficient in describing this item. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int MenuItem_android_icon = 0; - /** -
- @attr description - The ID of the item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int MenuItem_android_id = 2; - /** -
- @attr description - - The category applied to the item. - (This will be or'ed with the orderInCategory attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#menuCategory}. - @attr name android:menuCategory - */ - public static final int MenuItem_android_menuCategory = 5; - /** -
- @attr description - - The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) - keyboard. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#numericShortcut}. - @attr name android:numericShortcut - */ - public static final int MenuItem_android_numericShortcut = 10; - /** -
- @attr description - - Name of a method on the Context used to inflate the menu that will be - called when the item is clicked. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#onClick}. - @attr name android:onClick - */ - public static final int MenuItem_android_onClick = 12; - /** -
- @attr description - - The order within the category applied to the item. - (This will be or'ed with the category attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#orderInCategory}. - @attr name android:orderInCategory - */ - public static final int MenuItem_android_orderInCategory = 6; - /** -
- @attr description - The title associated with the item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int MenuItem_android_title = 7; - /** -
- @attr description - - The condensed title associated with the item. This is used in situations where the - normal title may be too long to be displayed. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#titleCondensed}. - @attr name android:titleCondensed - */ - public static final int MenuItem_android_titleCondensed = 8; - /** -
- @attr description - Whether the item is shown/visible. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int MenuItem_android_visible = 4; - /** -
- @attr description - How this item should display in the Action Bar, if present. - - -
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
never | 0 | - Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always". - |
ifRoom | 1 | - Show this item in an action bar if there is room for it as determined - by the system. Favor this option over "always" where possible. - Mutually exclusive with "never" and "always". - |
always | 2 | - Always show this item in an actionbar, even if it would override - the system's limits of how much stuff to put there. This may make - your action bar look bad on some screens. In most cases you should - use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". - |
withText | 4 | - When this item is shown as an action in the action bar, show a text - label with it even if it has an icon representation. - |
collapseActionView | 8 | - This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container. - |
This is a private symbol. - @attr name com.github.nutomic.controldlna:showAsAction - */ - public static final int MenuItem_showAsAction = 13; - /** Attributes that can be used with a MenuView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MenuView_android_headerBackground android:headerBackground} | Default background for the menu header. |
{@link #MenuView_android_horizontalDivider android:horizontalDivider} | Default horizontal divider between rows of menu items. |
{@link #MenuView_android_itemBackground android:itemBackground} | Default background for each menu item. |
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha} | Default disabled icon alpha for each menu item that shows an icon. |
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance} | Default appearance of menu item text. |
{@link #MenuView_android_preserveIconSpacing android:preserveIconSpacing} | Whether space should be reserved in layout when an icon is missing. |
{@link #MenuView_android_verticalDivider android:verticalDivider} | Default vertical divider between menu items. |
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle} | Default animations for the menu. |
- @attr description - Default background for the menu header. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#headerBackground}. - @attr name android:headerBackground - */ - public static final int MenuView_android_headerBackground = 4; - /** -
- @attr description - Default horizontal divider between rows of menu items. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#horizontalDivider}. - @attr name android:horizontalDivider - */ - public static final int MenuView_android_horizontalDivider = 2; - /** -
- @attr description - Default background for each menu item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#itemBackground}. - @attr name android:itemBackground - */ - public static final int MenuView_android_itemBackground = 5; - /** -
- @attr description - Default disabled icon alpha for each menu item that shows an icon. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#itemIconDisabledAlpha}. - @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_android_itemIconDisabledAlpha = 6; - /** -
- @attr description - Default appearance of menu item text. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#itemTextAppearance}. - @attr name android:itemTextAppearance - */ - public static final int MenuView_android_itemTextAppearance = 1; - /** -
- @attr description - Whether space should be reserved in layout when an icon is missing. -
This is a private symbol. - @attr name android:preserveIconSpacing - */ - public static final int MenuView_android_preserveIconSpacing = 7; - /** -
- @attr description - Default vertical divider between menu items. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalDivider}. - @attr name android:verticalDivider - */ - public static final int MenuView_android_verticalDivider = 3; - /** -
- @attr description - Default animations for the menu. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#windowAnimationStyle}. - @attr name android:windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle = 0; - /** Attributes that can be used with a SearchView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #SearchView_android_imeOptions android:imeOptions} | The IME options to set on the query text field. |
{@link #SearchView_android_inputType android:inputType} | The input type to set on the query text field. |
{@link #SearchView_android_maxWidth android:maxWidth} | An optional maximum width of the SearchView. |
{@link #SearchView_iconifiedByDefault com.github.nutomic.controldlna:iconifiedByDefault} | - The default state of the SearchView. |
{@link #SearchView_queryHint com.github.nutomic.controldlna:queryHint} | An optional query hint string to be displayed in the empty query field. |
- @attr description - The IME options to set on the query text field. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#imeOptions}. - @attr name android:imeOptions - */ - public static final int SearchView_android_imeOptions = 2; - /** -
- @attr description - The input type to set on the query text field. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#inputType}. - @attr name android:inputType - */ - public static final int SearchView_android_inputType = 1; - /** -
- @attr description - An optional maximum width of the SearchView. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#maxWidth}. - @attr name android:maxWidth - */ - public static final int SearchView_android_maxWidth = 0; - /** -
- @attr description - - The default state of the SearchView. If true, it will be iconified when not in - use and expanded when clicked. - - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault = 3; - /** -
- @attr description - An optional query hint string to be displayed in the empty query field. - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:queryHint - */ - public static final int SearchView_queryHint = 4; - /** Attributes that can be used with a Spinner. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset} | - Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown". |
{@link #Spinner_android_dropDownSelector android:dropDownSelector} | List selector to use for spinnerMode="dropdown" display. |
{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset} | - Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown". |
{@link #Spinner_android_dropDownWidth android:dropDownWidth} | Width of the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_gravity android:gravity} | Gravity setting for positioning the currently selected item. |
{@link #Spinner_android_popupBackground android:popupBackground} | Background drawable to use for the dropdown in spinnerMode="dropdown". |
{@link #Spinner_disableChildrenWhenDisabled com.github.nutomic.controldlna:disableChildrenWhenDisabled} | - Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled. |
{@link #Spinner_popupPromptView com.github.nutomic.controldlna:popupPromptView} | - Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown". |
{@link #Spinner_prompt com.github.nutomic.controldlna:prompt} | The prompt to display when the spinner's dialog is shown. |
{@link #Spinner_spinnerMode com.github.nutomic.controldlna:spinnerMode} | Display mode for spinner options. |
- @attr description - - Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown". - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownHorizontalOffset}. - @attr name android:dropDownHorizontalOffset - */ - public static final int Spinner_android_dropDownHorizontalOffset = 4; - /** -
- @attr description - List selector to use for spinnerMode="dropdown" display. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownSelector}. - @attr name android:dropDownSelector - */ - public static final int Spinner_android_dropDownSelector = 1; - /** -
- @attr description - - Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown". - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownVerticalOffset}. - @attr name android:dropDownVerticalOffset - */ - public static final int Spinner_android_dropDownVerticalOffset = 5; - /** -
- @attr description - Width of the dropdown in spinnerMode="dropdown". -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownWidth}. - @attr name android:dropDownWidth - */ - public static final int Spinner_android_dropDownWidth = 3; - /** -
- @attr description - Gravity setting for positioning the currently selected item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int Spinner_android_gravity = 0; - /** -
- @attr description - Background drawable to use for the dropdown in spinnerMode="dropdown". -
This corresponds to the global attribute - resource symbol {@link android.R.attr#popupBackground}. - @attr name android:popupBackground - */ - public static final int Spinner_android_popupBackground = 2; - /** -
- @attr description - - Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled. - - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:disableChildrenWhenDisabled - */ - public static final int Spinner_disableChildrenWhenDisabled = 9; - /** -
- @attr description - - Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown". This layout must contain a TextView with the id - {@code @android:id/text1} to be populated with the prompt text. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:popupPromptView - */ - public static final int Spinner_popupPromptView = 8; - /** -
- @attr description - The prompt to display when the spinner's dialog is shown. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:prompt - */ - public static final int Spinner_prompt = 6; - /** -
- @attr description - Display mode for spinner options. - - -
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | - Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself. - |
This is a private symbol. - @attr name com.github.nutomic.controldlna:spinnerMode - */ - public static final int Spinner_spinnerMode = 7; - /** Attributes that can be used with a Theme. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #Theme_actionDropDownStyle com.github.nutomic.controldlna:actionDropDownStyle} | Default ActionBar dropdown style. |
{@link #Theme_dropdownListPreferredItemHeight com.github.nutomic.controldlna:dropdownListPreferredItemHeight} | The preferred item height for dropdown lists. |
{@link #Theme_listChoiceBackgroundIndicator com.github.nutomic.controldlna:listChoiceBackgroundIndicator} | Drawable used as a background for selected list items. |
{@link #Theme_panelMenuListTheme com.github.nutomic.controldlna:panelMenuListTheme} | Default Panel Menu style. |
{@link #Theme_panelMenuListWidth com.github.nutomic.controldlna:panelMenuListWidth} | Default Panel Menu width. |
{@link #Theme_popupMenuStyle com.github.nutomic.controldlna:popupMenuStyle} | Default PopupMenu style. |
- @attr description - Default ActionBar dropdown style. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionDropDownStyle - */ - public static final int Theme_actionDropDownStyle = 0; - /** -
- @attr description - The preferred item height for dropdown lists. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:dropdownListPreferredItemHeight - */ - public static final int Theme_dropdownListPreferredItemHeight = 1; - /** -
- @attr description - Drawable used as a background for selected list items. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:listChoiceBackgroundIndicator - */ - public static final int Theme_listChoiceBackgroundIndicator = 5; - /** -
- @attr description - Default Panel Menu style. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:panelMenuListTheme - */ - public static final int Theme_panelMenuListTheme = 4; - /** -
- @attr description - Default Panel Menu width. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:panelMenuListWidth - */ - public static final int Theme_panelMenuListWidth = 3; - /** -
- @attr description - Default PopupMenu style. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:popupMenuStyle - */ - public static final int Theme_popupMenuStyle = 2; - /** Attributes that can be used with a View. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #View_android_focusable android:focusable} | - Boolean that controls whether a view can take focus. |
{@link #View_paddingEnd com.github.nutomic.controldlna:paddingEnd} | Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. |
{@link #View_paddingStart com.github.nutomic.controldlna:paddingStart} | Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. |
- @attr description - - Boolean that controls whether a view can take focus. By default the user can not - move focus to a view; by setting this attribute to true the view is - allowed to take focus. This value does not impact the behavior of - directly calling {@link android.view.View#requestFocus}, which will - always request focus regardless of this view. It only impacts where - focus navigation will try to move focus. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#focusable}. - @attr name android:focusable - */ - public static final int View_android_focusable = 0; - /** -
- @attr description - Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:paddingEnd - */ - public static final int View_paddingEnd = 2; - /** -
- @attr description - Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:paddingStart - */ - public static final int View_paddingStart = 1; - }; -} diff --git a/build/source/r/release/android/support/v7/appcompat/R.java b/build/source/r/release/android/support/v7/appcompat/R.java deleted file mode 100644 index c479edc..0000000 --- a/build/source/r/release/android/support/v7/appcompat/R.java +++ /dev/null @@ -1,597 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ -package android.support.v7.appcompat; - -public final class R { - public static final class anim { - public static final int abc_fade_in = 0x7f040000; - public static final int abc_fade_out = 0x7f040001; - public static final int abc_slide_in_bottom = 0x7f040002; - public static final int abc_slide_in_top = 0x7f040003; - public static final int abc_slide_out_bottom = 0x7f040004; - public static final int abc_slide_out_top = 0x7f040005; - } - public static final class attr { - public static final int actionBarDivider = 0x7f010000; - public static final int actionBarItemBackground = 0x7f010001; - public static final int actionBarSize = 0x7f010002; - public static final int actionBarSplitStyle = 0x7f010003; - public static final int actionBarStyle = 0x7f010004; - public static final int actionBarTabBarStyle = 0x7f010005; - public static final int actionBarTabStyle = 0x7f010006; - public static final int actionBarTabTextStyle = 0x7f010007; - public static final int actionBarWidgetTheme = 0x7f010008; - public static final int actionButtonStyle = 0x7f010009; - public static final int actionDropDownStyle = 0x7f010067; - public static final int actionLayout = 0x7f01005e; - public static final int actionMenuTextAppearance = 0x7f01000a; - public static final int actionMenuTextColor = 0x7f01000b; - public static final int actionModeBackground = 0x7f01000c; - public static final int actionModeCloseButtonStyle = 0x7f01000d; - public static final int actionModeCloseDrawable = 0x7f01000e; - public static final int actionModeCopyDrawable = 0x7f01000f; - public static final int actionModeCutDrawable = 0x7f010010; - public static final int actionModeFindDrawable = 0x7f010011; - public static final int actionModePasteDrawable = 0x7f010012; - public static final int actionModePopupWindowStyle = 0x7f010013; - public static final int actionModeSelectAllDrawable = 0x7f010014; - public static final int actionModeShareDrawable = 0x7f010015; - public static final int actionModeSplitBackground = 0x7f010016; - public static final int actionModeStyle = 0x7f010017; - public static final int actionModeWebSearchDrawable = 0x7f010018; - public static final int actionOverflowButtonStyle = 0x7f010019; - public static final int actionProviderClass = 0x7f010060; - public static final int actionViewClass = 0x7f01005f; - public static final int activityChooserViewStyle = 0x7f01001a; - public static final int background = 0x7f01004b; - public static final int backgroundSplit = 0x7f01004d; - public static final int backgroundStacked = 0x7f01004c; - public static final int buttonBarButtonStyle = 0x7f01001b; - public static final int buttonBarStyle = 0x7f01001c; - public static final int customNavigationLayout = 0x7f01004e; - public static final int disableChildrenWhenDisabled = 0x7f010066; - public static final int displayOptions = 0x7f010044; - public static final int divider = 0x7f01004a; - public static final int dividerHorizontal = 0x7f01001d; - public static final int dividerPadding = 0x7f01005b; - public static final int dividerVertical = 0x7f01001e; - public static final int dropDownListViewStyle = 0x7f01001f; - public static final int dropdownListPreferredItemHeight = 0x7f010068; - public static final int expandActivityOverflowButtonDrawable = 0x7f010058; - public static final int height = 0x7f010020; - public static final int homeAsUpIndicator = 0x7f010021; - public static final int homeLayout = 0x7f01004f; - public static final int icon = 0x7f010048; - public static final int iconifiedByDefault = 0x7f010061; - public static final int indeterminateProgressStyle = 0x7f010051; - public static final int initialActivityCount = 0x7f010057; - public static final int isLightTheme = 0x7f010022; - public static final int itemPadding = 0x7f010053; - public static final int listChoiceBackgroundIndicator = 0x7f01006c; - public static final int listPopupWindowStyle = 0x7f010023; - public static final int listPreferredItemHeight = 0x7f010024; - public static final int listPreferredItemHeightLarge = 0x7f010025; - public static final int listPreferredItemHeightSmall = 0x7f010026; - public static final int listPreferredItemPaddingLeft = 0x7f010027; - public static final int listPreferredItemPaddingRight = 0x7f010028; - public static final int logo = 0x7f010049; - public static final int navigationMode = 0x7f010043; - public static final int paddingEnd = 0x7f01006e; - public static final int paddingStart = 0x7f01006d; - public static final int panelMenuListTheme = 0x7f01006b; - public static final int panelMenuListWidth = 0x7f01006a; - public static final int popupMenuStyle = 0x7f010069; - public static final int popupPromptView = 0x7f010065; - public static final int progressBarPadding = 0x7f010052; - public static final int progressBarStyle = 0x7f010050; - public static final int prompt = 0x7f010063; - public static final int queryHint = 0x7f010062; - public static final int searchDropdownBackground = 0x7f01002d; - public static final int searchResultListItemHeight = 0x7f01002e; - public static final int searchViewAutoCompleteTextView = 0x7f01002f; - public static final int searchViewCloseIcon = 0x7f010030; - public static final int searchViewEditQuery = 0x7f010031; - public static final int searchViewEditQueryBackground = 0x7f010032; - public static final int searchViewGoIcon = 0x7f010033; - public static final int searchViewSearchIcon = 0x7f010034; - public static final int searchViewTextField = 0x7f010035; - public static final int searchViewTextFieldRight = 0x7f010036; - public static final int searchViewVoiceIcon = 0x7f010037; - public static final int selectableItemBackground = 0x7f010038; - public static final int showAsAction = 0x7f01005d; - public static final int showDividers = 0x7f01005a; - public static final int spinnerDropDownItemStyle = 0x7f010039; - public static final int spinnerMode = 0x7f010064; - public static final int spinnerStyle = 0x7f01003a; - public static final int subtitle = 0x7f010045; - public static final int subtitleTextStyle = 0x7f010047; - public static final int textAllCaps = 0x7f010059; - public static final int textAppearanceLargePopupMenu = 0x7f01003b; - public static final int textAppearanceListItem = 0x7f01003c; - public static final int textAppearanceListItemSmall = 0x7f01003d; - public static final int textAppearanceSearchResultSubtitle = 0x7f01003e; - public static final int textAppearanceSearchResultTitle = 0x7f01003f; - public static final int textAppearanceSmallPopupMenu = 0x7f010040; - public static final int textColorSearchUrl = 0x7f010041; - public static final int title = 0x7f010042; - public static final int titleTextStyle = 0x7f010046; - public static final int windowActionBar = 0x7f010054; - public static final int windowActionBarOverlay = 0x7f010055; - public static final int windowSplitActionBar = 0x7f010056; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f050000; - public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f050001; - public static final int abc_config_actionMenuItemAllCaps = 0x7f050002; - public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f050003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f050004; - public static final int abc_split_action_bar_is_narrow = 0x7f050005; - } - public static final class color { - public static final int abc_search_url_text_holo = 0x7f060005; - public static final int abc_search_url_text_normal = 0x7f060000; - public static final int abc_search_url_text_pressed = 0x7f060001; - public static final int abc_search_url_text_selected = 0x7f060002; - } - public static final class dimen { - public static final int abc_action_bar_default_height = 0x7f080000; - public static final int abc_action_bar_icon_vertical_padding = 0x7f080001; - public static final int abc_action_bar_stacked_max_height = 0x7f080002; - public static final int abc_action_bar_stacked_tab_max_width = 0x7f080003; - public static final int abc_action_bar_subtitle_bottom_margin = 0x7f080004; - public static final int abc_action_bar_subtitle_text_size = 0x7f080005; - public static final int abc_action_bar_subtitle_top_margin = 0x7f080006; - public static final int abc_action_bar_title_text_size = 0x7f080007; - public static final int abc_action_button_min_width = 0x7f080008; - public static final int abc_config_prefDialogWidth = 0x7f080009; - public static final int abc_dropdownitem_icon_width = 0x7f08000a; - public static final int abc_dropdownitem_text_padding_left = 0x7f08000b; - public static final int abc_dropdownitem_text_padding_right = 0x7f08000c; - public static final int abc_panel_menu_list_width = 0x7f08000d; - public static final int abc_search_view_preferred_width = 0x7f08000e; - public static final int abc_search_view_text_min_width = 0x7f08000f; - } - public static final class drawable { - public static final int abc_ab_bottom_solid_dark_holo = 0x7f020000; - public static final int abc_ab_bottom_solid_light_holo = 0x7f020001; - public static final int abc_ab_bottom_transparent_dark_holo = 0x7f020002; - public static final int abc_ab_bottom_transparent_light_holo = 0x7f020003; - public static final int abc_ab_share_pack_holo_dark = 0x7f020004; - public static final int abc_ab_share_pack_holo_light = 0x7f020005; - public static final int abc_ab_solid_dark_holo = 0x7f020006; - public static final int abc_ab_solid_light_holo = 0x7f020007; - public static final int abc_ab_stacked_solid_dark_holo = 0x7f020008; - public static final int abc_ab_stacked_solid_light_holo = 0x7f020009; - public static final int abc_ab_stacked_transparent_dark_holo = 0x7f02000a; - public static final int abc_ab_stacked_transparent_light_holo = 0x7f02000b; - public static final int abc_ab_transparent_dark_holo = 0x7f02000c; - public static final int abc_ab_transparent_light_holo = 0x7f02000d; - public static final int abc_cab_background_bottom_holo_dark = 0x7f02000e; - public static final int abc_cab_background_bottom_holo_light = 0x7f02000f; - public static final int abc_cab_background_top_holo_dark = 0x7f020010; - public static final int abc_cab_background_top_holo_light = 0x7f020011; - public static final int abc_ic_ab_back_holo_dark = 0x7f020012; - public static final int abc_ic_ab_back_holo_light = 0x7f020013; - public static final int abc_ic_cab_done_holo_dark = 0x7f020014; - public static final int abc_ic_cab_done_holo_light = 0x7f020015; - public static final int abc_ic_clear = 0x7f020016; - public static final int abc_ic_clear_disabled = 0x7f020017; - public static final int abc_ic_clear_holo_light = 0x7f020018; - public static final int abc_ic_clear_normal = 0x7f020019; - public static final int abc_ic_clear_search_api_disabled_holo_light = 0x7f02001a; - public static final int abc_ic_clear_search_api_holo_light = 0x7f02001b; - public static final int abc_ic_commit_search_api_holo_dark = 0x7f02001c; - public static final int abc_ic_commit_search_api_holo_light = 0x7f02001d; - public static final int abc_ic_go = 0x7f02001e; - public static final int abc_ic_go_search_api_holo_light = 0x7f02001f; - public static final int abc_ic_menu_moreoverflow_normal_holo_dark = 0x7f020020; - public static final int abc_ic_menu_moreoverflow_normal_holo_light = 0x7f020021; - public static final int abc_ic_menu_share_holo_dark = 0x7f020022; - public static final int abc_ic_menu_share_holo_light = 0x7f020023; - public static final int abc_ic_search = 0x7f020024; - public static final int abc_ic_search_api_holo_light = 0x7f020025; - public static final int abc_ic_voice_search = 0x7f020026; - public static final int abc_ic_voice_search_api_holo_light = 0x7f020027; - public static final int abc_item_background_holo_dark = 0x7f020028; - public static final int abc_item_background_holo_light = 0x7f020029; - public static final int abc_list_divider_holo_dark = 0x7f02002a; - public static final int abc_list_divider_holo_light = 0x7f02002b; - public static final int abc_list_focused_holo = 0x7f02002c; - public static final int abc_list_longpressed_holo = 0x7f02002d; - public static final int abc_list_pressed_holo_dark = 0x7f02002e; - public static final int abc_list_pressed_holo_light = 0x7f02002f; - public static final int abc_list_selector_background_transition_holo_dark = 0x7f020030; - public static final int abc_list_selector_background_transition_holo_light = 0x7f020031; - public static final int abc_list_selector_disabled_holo_dark = 0x7f020032; - public static final int abc_list_selector_disabled_holo_light = 0x7f020033; - public static final int abc_list_selector_holo_dark = 0x7f020034; - public static final int abc_list_selector_holo_light = 0x7f020035; - public static final int abc_menu_dropdown_panel_holo_dark = 0x7f020036; - public static final int abc_menu_dropdown_panel_holo_light = 0x7f020037; - public static final int abc_menu_hardkey_panel_holo_dark = 0x7f020038; - public static final int abc_menu_hardkey_panel_holo_light = 0x7f020039; - public static final int abc_search_dropdown_dark = 0x7f02003a; - public static final int abc_search_dropdown_light = 0x7f02003b; - public static final int abc_spinner_ab_default_holo_dark = 0x7f02003c; - public static final int abc_spinner_ab_default_holo_light = 0x7f02003d; - public static final int abc_spinner_ab_disabled_holo_dark = 0x7f02003e; - public static final int abc_spinner_ab_disabled_holo_light = 0x7f02003f; - public static final int abc_spinner_ab_focused_holo_dark = 0x7f020040; - public static final int abc_spinner_ab_focused_holo_light = 0x7f020041; - public static final int abc_spinner_ab_holo_dark = 0x7f020042; - public static final int abc_spinner_ab_holo_light = 0x7f020043; - public static final int abc_spinner_ab_pressed_holo_dark = 0x7f020044; - public static final int abc_spinner_ab_pressed_holo_light = 0x7f020045; - public static final int abc_tab_indicator_ab_holo = 0x7f020046; - public static final int abc_tab_selected_focused_holo = 0x7f020047; - public static final int abc_tab_selected_holo = 0x7f020048; - public static final int abc_tab_selected_pressed_holo = 0x7f020049; - public static final int abc_tab_unselected_pressed_holo = 0x7f02004a; - public static final int abc_textfield_search_default_holo_dark = 0x7f02004b; - public static final int abc_textfield_search_default_holo_light = 0x7f02004c; - public static final int abc_textfield_search_right_default_holo_dark = 0x7f02004d; - public static final int abc_textfield_search_right_default_holo_light = 0x7f02004e; - public static final int abc_textfield_search_right_selected_holo_dark = 0x7f02004f; - public static final int abc_textfield_search_right_selected_holo_light = 0x7f020050; - public static final int abc_textfield_search_selected_holo_dark = 0x7f020051; - public static final int abc_textfield_search_selected_holo_light = 0x7f020052; - public static final int abc_textfield_searchview_holo_dark = 0x7f020053; - public static final int abc_textfield_searchview_holo_light = 0x7f020054; - public static final int abc_textfield_searchview_right_holo_dark = 0x7f020055; - public static final int abc_textfield_searchview_right_holo_light = 0x7f020056; - } - public static final class id { - public static final int action_bar = 0x7f07001a; - public static final int action_bar_activity_content = 0x7f070014; - public static final int action_bar_container = 0x7f070019; - public static final int action_bar_overlay_layout = 0x7f07001d; - public static final int action_bar_root = 0x7f070018; - public static final int action_bar_subtitle = 0x7f070021; - public static final int action_bar_title = 0x7f070020; - public static final int action_context_bar = 0x7f07001b; - public static final int action_menu_divider = 0x7f070015; - public static final int action_menu_presenter = 0x7f070016; - public static final int action_mode_bar = 0x7f07002f; - public static final int action_mode_bar_stub = 0x7f07002e; - public static final int action_mode_close_button = 0x7f070022; - public static final int activity_chooser_view_content = 0x7f070023; - public static final int always = 0x7f07000f; - public static final int beginning = 0x7f07000a; - public static final int checkbox = 0x7f07002b; - public static final int collapseActionView = 0x7f070011; - public static final int default_activity_button = 0x7f070026; - public static final int dialog = 0x7f070012; - public static final int disableHome = 0x7f070008; - public static final int dropdown = 0x7f070013; - public static final int edit_query = 0x7f070036; - public static final int end = 0x7f07000c; - public static final int expand_activities_button = 0x7f070024; - public static final int expanded_menu = 0x7f07002a; - public static final int home = 0x7f070017; - public static final int homeAsUp = 0x7f070005; - public static final int icon = 0x7f070028; - public static final int ifRoom = 0x7f07000e; - public static final int image = 0x7f070025; - public static final int left_icon = 0x7f070031; - public static final int listMode = 0x7f070001; - public static final int list_item = 0x7f070027; - public static final int middle = 0x7f07000b; - public static final int never = 0x7f07000d; - public static final int none = 0x7f070009; - public static final int normal = 0x7f070000; - public static final int progress_circular = 0x7f070034; - public static final int progress_horizontal = 0x7f070035; - public static final int radio = 0x7f07002d; - public static final int right_container = 0x7f070032; - public static final int right_icon = 0x7f070033; - public static final int search_badge = 0x7f070038; - public static final int search_bar = 0x7f070037; - public static final int search_button = 0x7f070039; - public static final int search_close_btn = 0x7f07003e; - public static final int search_edit_frame = 0x7f07003a; - public static final int search_go_btn = 0x7f070040; - public static final int search_mag_icon = 0x7f07003b; - public static final int search_plate = 0x7f07003c; - public static final int search_src_text = 0x7f07003d; - public static final int search_voice_btn = 0x7f070041; - public static final int shortcut = 0x7f07002c; - public static final int showCustom = 0x7f070007; - public static final int showHome = 0x7f070004; - public static final int showTitle = 0x7f070006; - public static final int split_action_bar = 0x7f07001c; - public static final int submit_area = 0x7f07003f; - public static final int tabMode = 0x7f070002; - public static final int title = 0x7f070029; - public static final int title_container = 0x7f070030; - public static final int top_action_bar = 0x7f07001e; - public static final int up = 0x7f07001f; - public static final int useLogo = 0x7f070003; - public static final int withText = 0x7f070010; - } - public static final class integer { - public static final int abc_max_action_buttons = 0x7f090000; - } - public static final class layout { - public static final int abc_action_bar_decor = 0x7f030000; - public static final int abc_action_bar_decor_include = 0x7f030001; - public static final int abc_action_bar_decor_overlay = 0x7f030002; - public static final int abc_action_bar_home = 0x7f030003; - public static final int abc_action_bar_tab = 0x7f030004; - public static final int abc_action_bar_tabbar = 0x7f030005; - public static final int abc_action_bar_title_item = 0x7f030006; - public static final int abc_action_bar_view_list_nav_layout = 0x7f030007; - public static final int abc_action_menu_item_layout = 0x7f030008; - public static final int abc_action_menu_layout = 0x7f030009; - public static final int abc_action_mode_bar = 0x7f03000a; - public static final int abc_action_mode_close_item = 0x7f03000b; - public static final int abc_activity_chooser_view = 0x7f03000c; - public static final int abc_activity_chooser_view_include = 0x7f03000d; - public static final int abc_activity_chooser_view_list_item = 0x7f03000e; - public static final int abc_expanded_menu_layout = 0x7f03000f; - public static final int abc_list_menu_item_checkbox = 0x7f030010; - public static final int abc_list_menu_item_icon = 0x7f030011; - public static final int abc_list_menu_item_layout = 0x7f030012; - public static final int abc_list_menu_item_radio = 0x7f030013; - public static final int abc_popup_menu_item_layout = 0x7f030014; - public static final int abc_screen = 0x7f030015; - public static final int abc_search_dropdown_item_icons_2line = 0x7f030016; - public static final int abc_search_view = 0x7f030017; - public static final int support_simple_spinner_dropdown_item = 0x7f03001f; - } - public static final class string { - public static final int abc_action_bar_home_description = 0x7f0a0000; - public static final int abc_action_bar_up_description = 0x7f0a0001; - public static final int abc_action_menu_overflow_description = 0x7f0a0002; - public static final int abc_action_mode_done = 0x7f0a0003; - public static final int abc_activity_chooser_view_see_all = 0x7f0a0004; - public static final int abc_activitychooserview_choose_application = 0x7f0a0005; - public static final int abc_searchview_description_clear = 0x7f0a0006; - public static final int abc_searchview_description_query = 0x7f0a0007; - public static final int abc_searchview_description_search = 0x7f0a0008; - public static final int abc_searchview_description_submit = 0x7f0a0009; - public static final int abc_searchview_description_voice = 0x7f0a000a; - public static final int abc_shareactionprovider_share_with = 0x7f0a000b; - public static final int abc_shareactionprovider_share_with_application = 0x7f0a000c; - } - public static final class style { - public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0002; - public static final int TextAppearance_AppCompat_Base_SearchResult = 0x7f0b0003; - public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle = 0x7f0b0004; - public static final int TextAppearance_AppCompat_Base_SearchResult_Title = 0x7f0b0005; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large = 0x7f0b0006; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small = 0x7f0b0007; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult = 0x7f0b0008; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle = 0x7f0b0009; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title = 0x7f0b000a; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large = 0x7f0b000b; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small = 0x7f0b000c; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b000d; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b000e; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b000f; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b0010; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b0011; - public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b0012; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0013; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0014; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0015; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0016; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0017; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0018; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0019; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b001a; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b001b; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu = 0x7f0b001c; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle = 0x7f0b001d; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse = 0x7f0b001e; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title = 0x7f0b001f; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse = 0x7f0b0020; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle = 0x7f0b0021; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse = 0x7f0b0022; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title = 0x7f0b0023; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse = 0x7f0b0024; - public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem = 0x7f0b0025; - public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0026; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0027; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b0028; - public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item = 0x7f0b0029; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b002a; - public static final int Theme_AppCompat = 0x7f0b002b; - public static final int Theme_AppCompat_Base_CompactMenu = 0x7f0b002c; - public static final int Theme_AppCompat_Base_CompactMenu_Dialog = 0x7f0b002d; - public static final int Theme_AppCompat_CompactMenu = 0x7f0b002e; - public static final int Theme_AppCompat_CompactMenu_Dialog = 0x7f0b002f; - public static final int Theme_AppCompat_Light = 0x7f0b0030; - public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b0031; - public static final int Theme_Base = 0x7f0b0032; - public static final int Theme_Base_AppCompat = 0x7f0b0033; - public static final int Theme_Base_AppCompat_Light = 0x7f0b0034; - public static final int Theme_Base_AppCompat_Light_DarkActionBar = 0x7f0b0035; - public static final int Theme_Base_Light = 0x7f0b0036; - public static final int Widget_AppCompat_ActionBar = 0x7f0b0039; - public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b003a; - public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b003b; - public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b003c; - public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b003d; - public static final int Widget_AppCompat_ActionButton = 0x7f0b003e; - public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b003f; - public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b0040; - public static final int Widget_AppCompat_ActionMode = 0x7f0b0041; - public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0042; - public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b0043; - public static final int Widget_AppCompat_Base_ActionBar = 0x7f0b0044; - public static final int Widget_AppCompat_Base_ActionBar_Solid = 0x7f0b0045; - public static final int Widget_AppCompat_Base_ActionBar_TabBar = 0x7f0b0046; - public static final int Widget_AppCompat_Base_ActionBar_TabText = 0x7f0b0047; - public static final int Widget_AppCompat_Base_ActionBar_TabView = 0x7f0b0048; - public static final int Widget_AppCompat_Base_ActionButton = 0x7f0b0049; - public static final int Widget_AppCompat_Base_ActionButton_CloseMode = 0x7f0b004a; - public static final int Widget_AppCompat_Base_ActionButton_Overflow = 0x7f0b004b; - public static final int Widget_AppCompat_Base_ActionMode = 0x7f0b004c; - public static final int Widget_AppCompat_Base_ActivityChooserView = 0x7f0b004d; - public static final int Widget_AppCompat_Base_AutoCompleteTextView = 0x7f0b004e; - public static final int Widget_AppCompat_Base_DropDownItem_Spinner = 0x7f0b004f; - public static final int Widget_AppCompat_Base_ListView_DropDown = 0x7f0b0050; - public static final int Widget_AppCompat_Base_ListView_Menu = 0x7f0b0051; - public static final int Widget_AppCompat_Base_PopupMenu = 0x7f0b0052; - public static final int Widget_AppCompat_Base_ProgressBar = 0x7f0b0053; - public static final int Widget_AppCompat_Base_ProgressBar_Horizontal = 0x7f0b0054; - public static final int Widget_AppCompat_Base_Spinner = 0x7f0b0055; - public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b0056; - public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0057; - public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0058; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0059; - public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b005a; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b005b; - public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b005c; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b005d; - public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b005e; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b005f; - public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b0060; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b0061; - public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b0062; - public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b0063; - public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0064; - public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0065; - public static final int Widget_AppCompat_Light_Base_ActionBar = 0x7f0b0066; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid = 0x7f0b0067; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse = 0x7f0b0068; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar = 0x7f0b0069; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse = 0x7f0b006a; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText = 0x7f0b006b; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse = 0x7f0b006c; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView = 0x7f0b006d; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse = 0x7f0b006e; - public static final int Widget_AppCompat_Light_Base_ActionButton = 0x7f0b006f; - public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode = 0x7f0b0070; - public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow = 0x7f0b0071; - public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse = 0x7f0b0072; - public static final int Widget_AppCompat_Light_Base_ActivityChooserView = 0x7f0b0073; - public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView = 0x7f0b0074; - public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner = 0x7f0b0075; - public static final int Widget_AppCompat_Light_Base_ListView_DropDown = 0x7f0b0076; - public static final int Widget_AppCompat_Light_Base_PopupMenu = 0x7f0b0077; - public static final int Widget_AppCompat_Light_Base_Spinner = 0x7f0b0078; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0079; - public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b007a; - public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b007b; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b007c; - public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b007d; - public static final int Widget_AppCompat_ListView_Menu = 0x7f0b007e; - public static final int Widget_AppCompat_PopupMenu = 0x7f0b007f; - public static final int Widget_AppCompat_ProgressBar = 0x7f0b0080; - public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0081; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b0082; - } - public static final class styleable { - public static final int[] ActionBar = { 0x7f010020, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 }; - public static final int[] ActionBarLayout = { 0x010100b3 }; - public static final int ActionBarLayout_android_layout_gravity = 0; - public static final int[] ActionBarWindow = { 0x7f010054, 0x7f010055, 0x7f010056 }; - public static final int ActionBarWindow_windowActionBar = 0; - public static final int ActionBarWindow_windowActionBarOverlay = 1; - public static final int ActionBarWindow_windowSplitActionBar = 2; - public static final int ActionBar_background = 10; - public static final int ActionBar_backgroundSplit = 12; - public static final int ActionBar_backgroundStacked = 11; - public static final int ActionBar_customNavigationLayout = 13; - public static final int ActionBar_displayOptions = 3; - public static final int ActionBar_divider = 9; - public static final int ActionBar_height = 0; - public static final int ActionBar_homeLayout = 14; - public static final int ActionBar_icon = 7; - public static final int ActionBar_indeterminateProgressStyle = 16; - public static final int ActionBar_itemPadding = 18; - public static final int ActionBar_logo = 8; - public static final int ActionBar_navigationMode = 2; - public static final int ActionBar_progressBarPadding = 17; - public static final int ActionBar_progressBarStyle = 15; - public static final int ActionBar_subtitle = 4; - public static final int ActionBar_subtitleTextStyle = 6; - public static final int ActionBar_title = 1; - public static final int ActionBar_titleTextStyle = 5; - public static final int[] ActionMenuItemView = { 0x0101013f }; - public static final int ActionMenuItemView_android_minWidth = 0; - public static final int[] ActionMenuView = { }; - public static final int[] ActionMode = { 0x7f010020, 0x7f010046, 0x7f010047, 0x7f01004b, 0x7f01004d }; - public static final int ActionMode_background = 3; - public static final int ActionMode_backgroundSplit = 4; - public static final int ActionMode_height = 0; - public static final int ActionMode_subtitleTextStyle = 2; - public static final int ActionMode_titleTextStyle = 1; - public static final int[] ActivityChooserView = { 0x7f010057, 0x7f010058 }; - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - public static final int ActivityChooserView_initialActivityCount = 0; - public static final int[] CompatTextView = { 0x7f010059 }; - public static final int CompatTextView_textAllCaps = 0; - public static final int[] LinearLayoutICS = { 0x7f01004a, 0x7f01005a, 0x7f01005b }; - public static final int LinearLayoutICS_divider = 0; - public static final int LinearLayoutICS_dividerPadding = 2; - public static final int LinearLayoutICS_showDividers = 1; - public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; - public static final int MenuGroup_android_checkableBehavior = 5; - public static final int MenuGroup_android_enabled = 0; - public static final int MenuGroup_android_id = 1; - public static final int MenuGroup_android_menuCategory = 3; - public static final int MenuGroup_android_orderInCategory = 4; - public static final int MenuGroup_android_visible = 2; - public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060 }; - public static final int MenuItem_actionLayout = 14; - public static final int MenuItem_actionProviderClass = 16; - public static final int MenuItem_actionViewClass = 15; - public static final int MenuItem_android_alphabeticShortcut = 9; - public static final int MenuItem_android_checkable = 11; - public static final int MenuItem_android_checked = 3; - public static final int MenuItem_android_enabled = 1; - public static final int MenuItem_android_icon = 0; - public static final int MenuItem_android_id = 2; - public static final int MenuItem_android_menuCategory = 5; - public static final int MenuItem_android_numericShortcut = 10; - public static final int MenuItem_android_onClick = 12; - public static final int MenuItem_android_orderInCategory = 6; - public static final int MenuItem_android_title = 7; - public static final int MenuItem_android_titleCondensed = 8; - public static final int MenuItem_android_visible = 4; - public static final int MenuItem_showAsAction = 13; - public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 }; - public static final int MenuView_android_headerBackground = 4; - public static final int MenuView_android_horizontalDivider = 2; - public static final int MenuView_android_itemBackground = 5; - public static final int MenuView_android_itemIconDisabledAlpha = 6; - public static final int MenuView_android_itemTextAppearance = 1; - public static final int MenuView_android_preserveIconSpacing = 7; - public static final int MenuView_android_verticalDivider = 3; - public static final int MenuView_android_windowAnimationStyle = 0; - public static final int[] SearchView = { 0x0101011f, 0x01010220, 0x01010264, 0x7f010061, 0x7f010062 }; - public static final int SearchView_android_imeOptions = 2; - public static final int SearchView_android_inputType = 1; - public static final int SearchView_android_maxWidth = 0; - public static final int SearchView_iconifiedByDefault = 3; - public static final int SearchView_queryHint = 4; - public static final int[] Spinner = { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066 }; - public static final int Spinner_android_dropDownHorizontalOffset = 4; - public static final int Spinner_android_dropDownSelector = 1; - public static final int Spinner_android_dropDownVerticalOffset = 5; - public static final int Spinner_android_dropDownWidth = 3; - public static final int Spinner_android_gravity = 0; - public static final int Spinner_android_popupBackground = 2; - public static final int Spinner_disableChildrenWhenDisabled = 9; - public static final int Spinner_popupPromptView = 8; - public static final int Spinner_prompt = 6; - public static final int Spinner_spinnerMode = 7; - public static final int[] Theme = { 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c }; - public static final int Theme_actionDropDownStyle = 0; - public static final int Theme_dropdownListPreferredItemHeight = 1; - public static final int Theme_listChoiceBackgroundIndicator = 5; - public static final int Theme_panelMenuListTheme = 4; - public static final int Theme_panelMenuListWidth = 3; - public static final int Theme_popupMenuStyle = 2; - public static final int[] View = { 0x010100da, 0x7f01006d, 0x7f01006e }; - public static final int View_android_focusable = 0; - public static final int View_paddingEnd = 2; - public static final int View_paddingStart = 1; - } -} diff --git a/build/source/r/release/android/support/v7/mediarouter/R.java b/build/source/r/release/android/support/v7/mediarouter/R.java deleted file mode 100644 index a7a83ec..0000000 --- a/build/source/r/release/android/support/v7/mediarouter/R.java +++ /dev/null @@ -1,641 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ -package android.support.v7.mediarouter; - -public final class R { - public static final class anim { - public static final int abc_fade_in = 0x7f040000; - public static final int abc_fade_out = 0x7f040001; - public static final int abc_slide_in_bottom = 0x7f040002; - public static final int abc_slide_in_top = 0x7f040003; - public static final int abc_slide_out_bottom = 0x7f040004; - public static final int abc_slide_out_top = 0x7f040005; - } - public static final class attr { - public static final int actionBarDivider = 0x7f010000; - public static final int actionBarItemBackground = 0x7f010001; - public static final int actionBarSize = 0x7f010002; - public static final int actionBarSplitStyle = 0x7f010003; - public static final int actionBarStyle = 0x7f010004; - public static final int actionBarTabBarStyle = 0x7f010005; - public static final int actionBarTabStyle = 0x7f010006; - public static final int actionBarTabTextStyle = 0x7f010007; - public static final int actionBarWidgetTheme = 0x7f010008; - public static final int actionButtonStyle = 0x7f010009; - public static final int actionDropDownStyle = 0x7f010067; - public static final int actionLayout = 0x7f01005e; - public static final int actionMenuTextAppearance = 0x7f01000a; - public static final int actionMenuTextColor = 0x7f01000b; - public static final int actionModeBackground = 0x7f01000c; - public static final int actionModeCloseButtonStyle = 0x7f01000d; - public static final int actionModeCloseDrawable = 0x7f01000e; - public static final int actionModeCopyDrawable = 0x7f01000f; - public static final int actionModeCutDrawable = 0x7f010010; - public static final int actionModeFindDrawable = 0x7f010011; - public static final int actionModePasteDrawable = 0x7f010012; - public static final int actionModePopupWindowStyle = 0x7f010013; - public static final int actionModeSelectAllDrawable = 0x7f010014; - public static final int actionModeShareDrawable = 0x7f010015; - public static final int actionModeSplitBackground = 0x7f010016; - public static final int actionModeStyle = 0x7f010017; - public static final int actionModeWebSearchDrawable = 0x7f010018; - public static final int actionOverflowButtonStyle = 0x7f010019; - public static final int actionProviderClass = 0x7f010060; - public static final int actionViewClass = 0x7f01005f; - public static final int activityChooserViewStyle = 0x7f01001a; - public static final int background = 0x7f01004b; - public static final int backgroundSplit = 0x7f01004d; - public static final int backgroundStacked = 0x7f01004c; - public static final int buttonBarButtonStyle = 0x7f01001b; - public static final int buttonBarStyle = 0x7f01001c; - public static final int customNavigationLayout = 0x7f01004e; - public static final int disableChildrenWhenDisabled = 0x7f010066; - public static final int displayOptions = 0x7f010044; - public static final int divider = 0x7f01004a; - public static final int dividerHorizontal = 0x7f01001d; - public static final int dividerPadding = 0x7f01005b; - public static final int dividerVertical = 0x7f01001e; - public static final int dropDownListViewStyle = 0x7f01001f; - public static final int dropdownListPreferredItemHeight = 0x7f010068; - public static final int expandActivityOverflowButtonDrawable = 0x7f010058; - public static final int externalRouteEnabledDrawable = 0x7f01005c; - public static final int height = 0x7f010020; - public static final int homeAsUpIndicator = 0x7f010021; - public static final int homeLayout = 0x7f01004f; - public static final int icon = 0x7f010048; - public static final int iconifiedByDefault = 0x7f010061; - public static final int indeterminateProgressStyle = 0x7f010051; - public static final int initialActivityCount = 0x7f010057; - public static final int isLightTheme = 0x7f010022; - public static final int itemPadding = 0x7f010053; - public static final int listChoiceBackgroundIndicator = 0x7f01006c; - public static final int listPopupWindowStyle = 0x7f010023; - public static final int listPreferredItemHeight = 0x7f010024; - public static final int listPreferredItemHeightLarge = 0x7f010025; - public static final int listPreferredItemHeightSmall = 0x7f010026; - public static final int listPreferredItemPaddingLeft = 0x7f010027; - public static final int listPreferredItemPaddingRight = 0x7f010028; - public static final int logo = 0x7f010049; - public static final int mediaRouteButtonStyle = 0x7f010029; - public static final int mediaRouteConnectingDrawable = 0x7f01002a; - public static final int mediaRouteOffDrawable = 0x7f01002b; - public static final int mediaRouteOnDrawable = 0x7f01002c; - public static final int navigationMode = 0x7f010043; - public static final int paddingEnd = 0x7f01006e; - public static final int paddingStart = 0x7f01006d; - public static final int panelMenuListTheme = 0x7f01006b; - public static final int panelMenuListWidth = 0x7f01006a; - public static final int popupMenuStyle = 0x7f010069; - public static final int popupPromptView = 0x7f010065; - public static final int progressBarPadding = 0x7f010052; - public static final int progressBarStyle = 0x7f010050; - public static final int prompt = 0x7f010063; - public static final int queryHint = 0x7f010062; - public static final int searchDropdownBackground = 0x7f01002d; - public static final int searchResultListItemHeight = 0x7f01002e; - public static final int searchViewAutoCompleteTextView = 0x7f01002f; - public static final int searchViewCloseIcon = 0x7f010030; - public static final int searchViewEditQuery = 0x7f010031; - public static final int searchViewEditQueryBackground = 0x7f010032; - public static final int searchViewGoIcon = 0x7f010033; - public static final int searchViewSearchIcon = 0x7f010034; - public static final int searchViewTextField = 0x7f010035; - public static final int searchViewTextFieldRight = 0x7f010036; - public static final int searchViewVoiceIcon = 0x7f010037; - public static final int selectableItemBackground = 0x7f010038; - public static final int showAsAction = 0x7f01005d; - public static final int showDividers = 0x7f01005a; - public static final int spinnerDropDownItemStyle = 0x7f010039; - public static final int spinnerMode = 0x7f010064; - public static final int spinnerStyle = 0x7f01003a; - public static final int subtitle = 0x7f010045; - public static final int subtitleTextStyle = 0x7f010047; - public static final int textAllCaps = 0x7f010059; - public static final int textAppearanceLargePopupMenu = 0x7f01003b; - public static final int textAppearanceListItem = 0x7f01003c; - public static final int textAppearanceListItemSmall = 0x7f01003d; - public static final int textAppearanceSearchResultSubtitle = 0x7f01003e; - public static final int textAppearanceSearchResultTitle = 0x7f01003f; - public static final int textAppearanceSmallPopupMenu = 0x7f010040; - public static final int textColorSearchUrl = 0x7f010041; - public static final int title = 0x7f010042; - public static final int titleTextStyle = 0x7f010046; - public static final int windowActionBar = 0x7f010054; - public static final int windowActionBarOverlay = 0x7f010055; - public static final int windowSplitActionBar = 0x7f010056; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f050000; - public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f050001; - public static final int abc_config_actionMenuItemAllCaps = 0x7f050002; - public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f050003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f050004; - public static final int abc_split_action_bar_is_narrow = 0x7f050005; - } - public static final class color { - public static final int abc_search_url_text_holo = 0x7f060005; - public static final int abc_search_url_text_normal = 0x7f060000; - public static final int abc_search_url_text_pressed = 0x7f060001; - public static final int abc_search_url_text_selected = 0x7f060002; - } - public static final class dimen { - public static final int abc_action_bar_default_height = 0x7f080000; - public static final int abc_action_bar_icon_vertical_padding = 0x7f080001; - public static final int abc_action_bar_stacked_max_height = 0x7f080002; - public static final int abc_action_bar_stacked_tab_max_width = 0x7f080003; - public static final int abc_action_bar_subtitle_bottom_margin = 0x7f080004; - public static final int abc_action_bar_subtitle_text_size = 0x7f080005; - public static final int abc_action_bar_subtitle_top_margin = 0x7f080006; - public static final int abc_action_bar_title_text_size = 0x7f080007; - public static final int abc_action_button_min_width = 0x7f080008; - public static final int abc_config_prefDialogWidth = 0x7f080009; - public static final int abc_dropdownitem_icon_width = 0x7f08000a; - public static final int abc_dropdownitem_text_padding_left = 0x7f08000b; - public static final int abc_dropdownitem_text_padding_right = 0x7f08000c; - public static final int abc_panel_menu_list_width = 0x7f08000d; - public static final int abc_search_view_preferred_width = 0x7f08000e; - public static final int abc_search_view_text_min_width = 0x7f08000f; - } - public static final class drawable { - public static final int abc_ab_bottom_solid_dark_holo = 0x7f020000; - public static final int abc_ab_bottom_solid_light_holo = 0x7f020001; - public static final int abc_ab_bottom_transparent_dark_holo = 0x7f020002; - public static final int abc_ab_bottom_transparent_light_holo = 0x7f020003; - public static final int abc_ab_share_pack_holo_dark = 0x7f020004; - public static final int abc_ab_share_pack_holo_light = 0x7f020005; - public static final int abc_ab_solid_dark_holo = 0x7f020006; - public static final int abc_ab_solid_light_holo = 0x7f020007; - public static final int abc_ab_stacked_solid_dark_holo = 0x7f020008; - public static final int abc_ab_stacked_solid_light_holo = 0x7f020009; - public static final int abc_ab_stacked_transparent_dark_holo = 0x7f02000a; - public static final int abc_ab_stacked_transparent_light_holo = 0x7f02000b; - public static final int abc_ab_transparent_dark_holo = 0x7f02000c; - public static final int abc_ab_transparent_light_holo = 0x7f02000d; - public static final int abc_cab_background_bottom_holo_dark = 0x7f02000e; - public static final int abc_cab_background_bottom_holo_light = 0x7f02000f; - public static final int abc_cab_background_top_holo_dark = 0x7f020010; - public static final int abc_cab_background_top_holo_light = 0x7f020011; - public static final int abc_ic_ab_back_holo_dark = 0x7f020012; - public static final int abc_ic_ab_back_holo_light = 0x7f020013; - public static final int abc_ic_cab_done_holo_dark = 0x7f020014; - public static final int abc_ic_cab_done_holo_light = 0x7f020015; - public static final int abc_ic_clear = 0x7f020016; - public static final int abc_ic_clear_disabled = 0x7f020017; - public static final int abc_ic_clear_holo_light = 0x7f020018; - public static final int abc_ic_clear_normal = 0x7f020019; - public static final int abc_ic_clear_search_api_disabled_holo_light = 0x7f02001a; - public static final int abc_ic_clear_search_api_holo_light = 0x7f02001b; - public static final int abc_ic_commit_search_api_holo_dark = 0x7f02001c; - public static final int abc_ic_commit_search_api_holo_light = 0x7f02001d; - public static final int abc_ic_go = 0x7f02001e; - public static final int abc_ic_go_search_api_holo_light = 0x7f02001f; - public static final int abc_ic_menu_moreoverflow_normal_holo_dark = 0x7f020020; - public static final int abc_ic_menu_moreoverflow_normal_holo_light = 0x7f020021; - public static final int abc_ic_menu_share_holo_dark = 0x7f020022; - public static final int abc_ic_menu_share_holo_light = 0x7f020023; - public static final int abc_ic_search = 0x7f020024; - public static final int abc_ic_search_api_holo_light = 0x7f020025; - public static final int abc_ic_voice_search = 0x7f020026; - public static final int abc_ic_voice_search_api_holo_light = 0x7f020027; - public static final int abc_item_background_holo_dark = 0x7f020028; - public static final int abc_item_background_holo_light = 0x7f020029; - public static final int abc_list_divider_holo_dark = 0x7f02002a; - public static final int abc_list_divider_holo_light = 0x7f02002b; - public static final int abc_list_focused_holo = 0x7f02002c; - public static final int abc_list_longpressed_holo = 0x7f02002d; - public static final int abc_list_pressed_holo_dark = 0x7f02002e; - public static final int abc_list_pressed_holo_light = 0x7f02002f; - public static final int abc_list_selector_background_transition_holo_dark = 0x7f020030; - public static final int abc_list_selector_background_transition_holo_light = 0x7f020031; - public static final int abc_list_selector_disabled_holo_dark = 0x7f020032; - public static final int abc_list_selector_disabled_holo_light = 0x7f020033; - public static final int abc_list_selector_holo_dark = 0x7f020034; - public static final int abc_list_selector_holo_light = 0x7f020035; - public static final int abc_menu_dropdown_panel_holo_dark = 0x7f020036; - public static final int abc_menu_dropdown_panel_holo_light = 0x7f020037; - public static final int abc_menu_hardkey_panel_holo_dark = 0x7f020038; - public static final int abc_menu_hardkey_panel_holo_light = 0x7f020039; - public static final int abc_search_dropdown_dark = 0x7f02003a; - public static final int abc_search_dropdown_light = 0x7f02003b; - public static final int abc_spinner_ab_default_holo_dark = 0x7f02003c; - public static final int abc_spinner_ab_default_holo_light = 0x7f02003d; - public static final int abc_spinner_ab_disabled_holo_dark = 0x7f02003e; - public static final int abc_spinner_ab_disabled_holo_light = 0x7f02003f; - public static final int abc_spinner_ab_focused_holo_dark = 0x7f020040; - public static final int abc_spinner_ab_focused_holo_light = 0x7f020041; - public static final int abc_spinner_ab_holo_dark = 0x7f020042; - public static final int abc_spinner_ab_holo_light = 0x7f020043; - public static final int abc_spinner_ab_pressed_holo_dark = 0x7f020044; - public static final int abc_spinner_ab_pressed_holo_light = 0x7f020045; - public static final int abc_tab_indicator_ab_holo = 0x7f020046; - public static final int abc_tab_selected_focused_holo = 0x7f020047; - public static final int abc_tab_selected_holo = 0x7f020048; - public static final int abc_tab_selected_pressed_holo = 0x7f020049; - public static final int abc_tab_unselected_pressed_holo = 0x7f02004a; - public static final int abc_textfield_search_default_holo_dark = 0x7f02004b; - public static final int abc_textfield_search_default_holo_light = 0x7f02004c; - public static final int abc_textfield_search_right_default_holo_dark = 0x7f02004d; - public static final int abc_textfield_search_right_default_holo_light = 0x7f02004e; - public static final int abc_textfield_search_right_selected_holo_dark = 0x7f02004f; - public static final int abc_textfield_search_right_selected_holo_light = 0x7f020050; - public static final int abc_textfield_search_selected_holo_dark = 0x7f020051; - public static final int abc_textfield_search_selected_holo_light = 0x7f020052; - public static final int abc_textfield_searchview_holo_dark = 0x7f020053; - public static final int abc_textfield_searchview_holo_light = 0x7f020054; - public static final int abc_textfield_searchview_right_holo_dark = 0x7f020055; - public static final int abc_textfield_searchview_right_holo_light = 0x7f020056; - public static final int mr_ic_audio_vol = 0x7f02005e; - public static final int mr_ic_media_route_connecting_holo_dark = 0x7f02005f; - public static final int mr_ic_media_route_connecting_holo_light = 0x7f020060; - public static final int mr_ic_media_route_disabled_holo_dark = 0x7f020061; - public static final int mr_ic_media_route_disabled_holo_light = 0x7f020062; - public static final int mr_ic_media_route_holo_dark = 0x7f020063; - public static final int mr_ic_media_route_holo_light = 0x7f020064; - public static final int mr_ic_media_route_off_holo_dark = 0x7f020065; - public static final int mr_ic_media_route_off_holo_light = 0x7f020066; - public static final int mr_ic_media_route_on_0_holo_dark = 0x7f020067; - public static final int mr_ic_media_route_on_0_holo_light = 0x7f020068; - public static final int mr_ic_media_route_on_1_holo_dark = 0x7f020069; - public static final int mr_ic_media_route_on_1_holo_light = 0x7f02006a; - public static final int mr_ic_media_route_on_2_holo_dark = 0x7f02006b; - public static final int mr_ic_media_route_on_2_holo_light = 0x7f02006c; - public static final int mr_ic_media_route_on_holo_dark = 0x7f02006d; - public static final int mr_ic_media_route_on_holo_light = 0x7f02006e; - } - public static final class id { - public static final int action_bar = 0x7f07001a; - public static final int action_bar_activity_content = 0x7f070014; - public static final int action_bar_container = 0x7f070019; - public static final int action_bar_overlay_layout = 0x7f07001d; - public static final int action_bar_root = 0x7f070018; - public static final int action_bar_subtitle = 0x7f070021; - public static final int action_bar_title = 0x7f070020; - public static final int action_context_bar = 0x7f07001b; - public static final int action_menu_divider = 0x7f070015; - public static final int action_menu_presenter = 0x7f070016; - public static final int action_mode_bar = 0x7f07002f; - public static final int action_mode_bar_stub = 0x7f07002e; - public static final int action_mode_close_button = 0x7f070022; - public static final int activity_chooser_view_content = 0x7f070023; - public static final int always = 0x7f07000f; - public static final int beginning = 0x7f07000a; - public static final int checkbox = 0x7f07002b; - public static final int collapseActionView = 0x7f070011; - public static final int default_activity_button = 0x7f070026; - public static final int dialog = 0x7f070012; - public static final int disableHome = 0x7f070008; - public static final int dropdown = 0x7f070013; - public static final int edit_query = 0x7f070036; - public static final int end = 0x7f07000c; - public static final int expand_activities_button = 0x7f070024; - public static final int expanded_menu = 0x7f07002a; - public static final int home = 0x7f070017; - public static final int homeAsUp = 0x7f070005; - public static final int icon = 0x7f070028; - public static final int ifRoom = 0x7f07000e; - public static final int image = 0x7f070025; - public static final int left_icon = 0x7f070031; - public static final int listMode = 0x7f070001; - public static final int list_item = 0x7f070027; - public static final int media_route_control_frame = 0x7f070047; - public static final int media_route_disconnect_button = 0x7f070048; - public static final int media_route_list = 0x7f070044; - public static final int media_route_volume_layout = 0x7f070045; - public static final int media_route_volume_slider = 0x7f070046; - public static final int middle = 0x7f07000b; - public static final int never = 0x7f07000d; - public static final int none = 0x7f070009; - public static final int normal = 0x7f070000; - public static final int progress_circular = 0x7f070034; - public static final int progress_horizontal = 0x7f070035; - public static final int radio = 0x7f07002d; - public static final int right_container = 0x7f070032; - public static final int right_icon = 0x7f070033; - public static final int search_badge = 0x7f070038; - public static final int search_bar = 0x7f070037; - public static final int search_button = 0x7f070039; - public static final int search_close_btn = 0x7f07003e; - public static final int search_edit_frame = 0x7f07003a; - public static final int search_go_btn = 0x7f070040; - public static final int search_mag_icon = 0x7f07003b; - public static final int search_plate = 0x7f07003c; - public static final int search_src_text = 0x7f07003d; - public static final int search_voice_btn = 0x7f070041; - public static final int shortcut = 0x7f07002c; - public static final int showCustom = 0x7f070007; - public static final int showHome = 0x7f070004; - public static final int showTitle = 0x7f070006; - public static final int split_action_bar = 0x7f07001c; - public static final int submit_area = 0x7f07003f; - public static final int tabMode = 0x7f070002; - public static final int title = 0x7f070029; - public static final int title_container = 0x7f070030; - public static final int top_action_bar = 0x7f07001e; - public static final int up = 0x7f07001f; - public static final int useLogo = 0x7f070003; - public static final int withText = 0x7f070010; - } - public static final class integer { - public static final int abc_max_action_buttons = 0x7f090000; - } - public static final class layout { - public static final int abc_action_bar_decor = 0x7f030000; - public static final int abc_action_bar_decor_include = 0x7f030001; - public static final int abc_action_bar_decor_overlay = 0x7f030002; - public static final int abc_action_bar_home = 0x7f030003; - public static final int abc_action_bar_tab = 0x7f030004; - public static final int abc_action_bar_tabbar = 0x7f030005; - public static final int abc_action_bar_title_item = 0x7f030006; - public static final int abc_action_bar_view_list_nav_layout = 0x7f030007; - public static final int abc_action_menu_item_layout = 0x7f030008; - public static final int abc_action_menu_layout = 0x7f030009; - public static final int abc_action_mode_bar = 0x7f03000a; - public static final int abc_action_mode_close_item = 0x7f03000b; - public static final int abc_activity_chooser_view = 0x7f03000c; - public static final int abc_activity_chooser_view_include = 0x7f03000d; - public static final int abc_activity_chooser_view_list_item = 0x7f03000e; - public static final int abc_expanded_menu_layout = 0x7f03000f; - public static final int abc_list_menu_item_checkbox = 0x7f030010; - public static final int abc_list_menu_item_icon = 0x7f030011; - public static final int abc_list_menu_item_layout = 0x7f030012; - public static final int abc_list_menu_item_radio = 0x7f030013; - public static final int abc_popup_menu_item_layout = 0x7f030014; - public static final int abc_screen = 0x7f030015; - public static final int abc_search_dropdown_item_icons_2line = 0x7f030016; - public static final int abc_search_view = 0x7f030017; - public static final int mr_media_route_chooser_dialog = 0x7f03001a; - public static final int mr_media_route_controller_dialog = 0x7f03001b; - public static final int mr_media_route_list_item = 0x7f03001c; - public static final int support_simple_spinner_dropdown_item = 0x7f03001f; - } - public static final class string { - public static final int abc_action_bar_home_description = 0x7f0a0000; - public static final int abc_action_bar_up_description = 0x7f0a0001; - public static final int abc_action_menu_overflow_description = 0x7f0a0002; - public static final int abc_action_mode_done = 0x7f0a0003; - public static final int abc_activity_chooser_view_see_all = 0x7f0a0004; - public static final int abc_activitychooserview_choose_application = 0x7f0a0005; - public static final int abc_searchview_description_clear = 0x7f0a0006; - public static final int abc_searchview_description_query = 0x7f0a0007; - public static final int abc_searchview_description_search = 0x7f0a0008; - public static final int abc_searchview_description_submit = 0x7f0a0009; - public static final int abc_searchview_description_voice = 0x7f0a000a; - public static final int abc_shareactionprovider_share_with = 0x7f0a000b; - public static final int abc_shareactionprovider_share_with_application = 0x7f0a000c; - public static final int mr_media_route_button_content_description = 0x7f0a0014; - public static final int mr_media_route_chooser_searching = 0x7f0a0015; - public static final int mr_media_route_chooser_title = 0x7f0a0016; - public static final int mr_media_route_controller_disconnect = 0x7f0a0017; - public static final int mr_system_route_name = 0x7f0a0018; - public static final int mr_user_route_category_name = 0x7f0a0019; - } - public static final class style { - public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0002; - public static final int TextAppearance_AppCompat_Base_SearchResult = 0x7f0b0003; - public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle = 0x7f0b0004; - public static final int TextAppearance_AppCompat_Base_SearchResult_Title = 0x7f0b0005; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large = 0x7f0b0006; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small = 0x7f0b0007; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult = 0x7f0b0008; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle = 0x7f0b0009; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title = 0x7f0b000a; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large = 0x7f0b000b; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small = 0x7f0b000c; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b000d; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b000e; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b000f; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b0010; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b0011; - public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b0012; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0013; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0014; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0015; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0016; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0017; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0018; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0019; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b001a; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b001b; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu = 0x7f0b001c; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle = 0x7f0b001d; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse = 0x7f0b001e; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title = 0x7f0b001f; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse = 0x7f0b0020; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle = 0x7f0b0021; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse = 0x7f0b0022; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title = 0x7f0b0023; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse = 0x7f0b0024; - public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem = 0x7f0b0025; - public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0026; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0027; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b0028; - public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item = 0x7f0b0029; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b002a; - public static final int Theme_AppCompat = 0x7f0b002b; - public static final int Theme_AppCompat_Base_CompactMenu = 0x7f0b002c; - public static final int Theme_AppCompat_Base_CompactMenu_Dialog = 0x7f0b002d; - public static final int Theme_AppCompat_CompactMenu = 0x7f0b002e; - public static final int Theme_AppCompat_CompactMenu_Dialog = 0x7f0b002f; - public static final int Theme_AppCompat_Light = 0x7f0b0030; - public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b0031; - public static final int Theme_Base = 0x7f0b0032; - public static final int Theme_Base_AppCompat = 0x7f0b0033; - public static final int Theme_Base_AppCompat_Light = 0x7f0b0034; - public static final int Theme_Base_AppCompat_Light_DarkActionBar = 0x7f0b0035; - public static final int Theme_Base_Light = 0x7f0b0036; - public static final int Theme_MediaRouter = 0x7f0b0037; - public static final int Theme_MediaRouter_Light = 0x7f0b0038; - public static final int Widget_AppCompat_ActionBar = 0x7f0b0039; - public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b003a; - public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b003b; - public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b003c; - public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b003d; - public static final int Widget_AppCompat_ActionButton = 0x7f0b003e; - public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b003f; - public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b0040; - public static final int Widget_AppCompat_ActionMode = 0x7f0b0041; - public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0042; - public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b0043; - public static final int Widget_AppCompat_Base_ActionBar = 0x7f0b0044; - public static final int Widget_AppCompat_Base_ActionBar_Solid = 0x7f0b0045; - public static final int Widget_AppCompat_Base_ActionBar_TabBar = 0x7f0b0046; - public static final int Widget_AppCompat_Base_ActionBar_TabText = 0x7f0b0047; - public static final int Widget_AppCompat_Base_ActionBar_TabView = 0x7f0b0048; - public static final int Widget_AppCompat_Base_ActionButton = 0x7f0b0049; - public static final int Widget_AppCompat_Base_ActionButton_CloseMode = 0x7f0b004a; - public static final int Widget_AppCompat_Base_ActionButton_Overflow = 0x7f0b004b; - public static final int Widget_AppCompat_Base_ActionMode = 0x7f0b004c; - public static final int Widget_AppCompat_Base_ActivityChooserView = 0x7f0b004d; - public static final int Widget_AppCompat_Base_AutoCompleteTextView = 0x7f0b004e; - public static final int Widget_AppCompat_Base_DropDownItem_Spinner = 0x7f0b004f; - public static final int Widget_AppCompat_Base_ListView_DropDown = 0x7f0b0050; - public static final int Widget_AppCompat_Base_ListView_Menu = 0x7f0b0051; - public static final int Widget_AppCompat_Base_PopupMenu = 0x7f0b0052; - public static final int Widget_AppCompat_Base_ProgressBar = 0x7f0b0053; - public static final int Widget_AppCompat_Base_ProgressBar_Horizontal = 0x7f0b0054; - public static final int Widget_AppCompat_Base_Spinner = 0x7f0b0055; - public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b0056; - public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0057; - public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0058; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0059; - public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b005a; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b005b; - public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b005c; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b005d; - public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b005e; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b005f; - public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b0060; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b0061; - public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b0062; - public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b0063; - public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0064; - public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0065; - public static final int Widget_AppCompat_Light_Base_ActionBar = 0x7f0b0066; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid = 0x7f0b0067; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse = 0x7f0b0068; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar = 0x7f0b0069; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse = 0x7f0b006a; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText = 0x7f0b006b; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse = 0x7f0b006c; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView = 0x7f0b006d; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse = 0x7f0b006e; - public static final int Widget_AppCompat_Light_Base_ActionButton = 0x7f0b006f; - public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode = 0x7f0b0070; - public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow = 0x7f0b0071; - public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse = 0x7f0b0072; - public static final int Widget_AppCompat_Light_Base_ActivityChooserView = 0x7f0b0073; - public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView = 0x7f0b0074; - public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner = 0x7f0b0075; - public static final int Widget_AppCompat_Light_Base_ListView_DropDown = 0x7f0b0076; - public static final int Widget_AppCompat_Light_Base_PopupMenu = 0x7f0b0077; - public static final int Widget_AppCompat_Light_Base_Spinner = 0x7f0b0078; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0079; - public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b007a; - public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b007b; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b007c; - public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b007d; - public static final int Widget_AppCompat_ListView_Menu = 0x7f0b007e; - public static final int Widget_AppCompat_PopupMenu = 0x7f0b007f; - public static final int Widget_AppCompat_ProgressBar = 0x7f0b0080; - public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0081; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b0082; - public static final int Widget_MediaRouter_Light_MediaRouteButton = 0x7f0b0083; - public static final int Widget_MediaRouter_MediaRouteButton = 0x7f0b0084; - } - public static final class styleable { - public static final int[] ActionBar = { 0x7f010020, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 }; - public static final int[] ActionBarLayout = { 0x010100b3 }; - public static final int ActionBarLayout_android_layout_gravity = 0; - public static final int[] ActionBarWindow = { 0x7f010054, 0x7f010055, 0x7f010056 }; - public static final int ActionBarWindow_windowActionBar = 0; - public static final int ActionBarWindow_windowActionBarOverlay = 1; - public static final int ActionBarWindow_windowSplitActionBar = 2; - public static final int ActionBar_background = 10; - public static final int ActionBar_backgroundSplit = 12; - public static final int ActionBar_backgroundStacked = 11; - public static final int ActionBar_customNavigationLayout = 13; - public static final int ActionBar_displayOptions = 3; - public static final int ActionBar_divider = 9; - public static final int ActionBar_height = 0; - public static final int ActionBar_homeLayout = 14; - public static final int ActionBar_icon = 7; - public static final int ActionBar_indeterminateProgressStyle = 16; - public static final int ActionBar_itemPadding = 18; - public static final int ActionBar_logo = 8; - public static final int ActionBar_navigationMode = 2; - public static final int ActionBar_progressBarPadding = 17; - public static final int ActionBar_progressBarStyle = 15; - public static final int ActionBar_subtitle = 4; - public static final int ActionBar_subtitleTextStyle = 6; - public static final int ActionBar_title = 1; - public static final int ActionBar_titleTextStyle = 5; - public static final int[] ActionMenuItemView = { 0x0101013f }; - public static final int ActionMenuItemView_android_minWidth = 0; - public static final int[] ActionMenuView = { }; - public static final int[] ActionMode = { 0x7f010020, 0x7f010046, 0x7f010047, 0x7f01004b, 0x7f01004d }; - public static final int ActionMode_background = 3; - public static final int ActionMode_backgroundSplit = 4; - public static final int ActionMode_height = 0; - public static final int ActionMode_subtitleTextStyle = 2; - public static final int ActionMode_titleTextStyle = 1; - public static final int[] ActivityChooserView = { 0x7f010057, 0x7f010058 }; - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - public static final int ActivityChooserView_initialActivityCount = 0; - public static final int[] CompatTextView = { 0x7f010059 }; - public static final int CompatTextView_textAllCaps = 0; - public static final int[] LinearLayoutICS = { 0x7f01004a, 0x7f01005a, 0x7f01005b }; - public static final int LinearLayoutICS_divider = 0; - public static final int LinearLayoutICS_dividerPadding = 2; - public static final int LinearLayoutICS_showDividers = 1; - public static final int[] MediaRouteButton = { 0x0101013f, 0x01010140, 0x7f01005c }; - public static final int MediaRouteButton_android_minHeight = 1; - public static final int MediaRouteButton_android_minWidth = 0; - public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; - public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; - public static final int MenuGroup_android_checkableBehavior = 5; - public static final int MenuGroup_android_enabled = 0; - public static final int MenuGroup_android_id = 1; - public static final int MenuGroup_android_menuCategory = 3; - public static final int MenuGroup_android_orderInCategory = 4; - public static final int MenuGroup_android_visible = 2; - public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060 }; - public static final int MenuItem_actionLayout = 14; - public static final int MenuItem_actionProviderClass = 16; - public static final int MenuItem_actionViewClass = 15; - public static final int MenuItem_android_alphabeticShortcut = 9; - public static final int MenuItem_android_checkable = 11; - public static final int MenuItem_android_checked = 3; - public static final int MenuItem_android_enabled = 1; - public static final int MenuItem_android_icon = 0; - public static final int MenuItem_android_id = 2; - public static final int MenuItem_android_menuCategory = 5; - public static final int MenuItem_android_numericShortcut = 10; - public static final int MenuItem_android_onClick = 12; - public static final int MenuItem_android_orderInCategory = 6; - public static final int MenuItem_android_title = 7; - public static final int MenuItem_android_titleCondensed = 8; - public static final int MenuItem_android_visible = 4; - public static final int MenuItem_showAsAction = 13; - public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 }; - public static final int MenuView_android_headerBackground = 4; - public static final int MenuView_android_horizontalDivider = 2; - public static final int MenuView_android_itemBackground = 5; - public static final int MenuView_android_itemIconDisabledAlpha = 6; - public static final int MenuView_android_itemTextAppearance = 1; - public static final int MenuView_android_preserveIconSpacing = 7; - public static final int MenuView_android_verticalDivider = 3; - public static final int MenuView_android_windowAnimationStyle = 0; - public static final int[] SearchView = { 0x0101011f, 0x01010220, 0x01010264, 0x7f010061, 0x7f010062 }; - public static final int SearchView_android_imeOptions = 2; - public static final int SearchView_android_inputType = 1; - public static final int SearchView_android_maxWidth = 0; - public static final int SearchView_iconifiedByDefault = 3; - public static final int SearchView_queryHint = 4; - public static final int[] Spinner = { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066 }; - public static final int Spinner_android_dropDownHorizontalOffset = 4; - public static final int Spinner_android_dropDownSelector = 1; - public static final int Spinner_android_dropDownVerticalOffset = 5; - public static final int Spinner_android_dropDownWidth = 3; - public static final int Spinner_android_gravity = 0; - public static final int Spinner_android_popupBackground = 2; - public static final int Spinner_disableChildrenWhenDisabled = 9; - public static final int Spinner_popupPromptView = 8; - public static final int Spinner_prompt = 6; - public static final int Spinner_spinnerMode = 7; - public static final int[] Theme = { 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c }; - public static final int Theme_actionDropDownStyle = 0; - public static final int Theme_dropdownListPreferredItemHeight = 1; - public static final int Theme_listChoiceBackgroundIndicator = 5; - public static final int Theme_panelMenuListTheme = 4; - public static final int Theme_panelMenuListWidth = 3; - public static final int Theme_popupMenuStyle = 2; - public static final int[] View = { 0x010100da, 0x7f01006d, 0x7f01006e }; - public static final int View_android_focusable = 0; - public static final int View_paddingEnd = 2; - public static final int View_paddingStart = 1; - } -} diff --git a/build/source/r/release/com/github/nutomic/controldlna/R.java b/build/source/r/release/com/github/nutomic/controldlna/R.java deleted file mode 100644 index 06ccf5c..0000000 --- a/build/source/r/release/com/github/nutomic/controldlna/R.java +++ /dev/null @@ -1,2855 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package com.github.nutomic.controldlna; - -public final class R { - public static final class anim { - public static final int abc_fade_in=0x7f040000; - public static final int abc_fade_out=0x7f040001; - public static final int abc_slide_in_bottom=0x7f040002; - public static final int abc_slide_in_top=0x7f040003; - public static final int abc_slide_out_bottom=0x7f040004; - public static final int abc_slide_out_top=0x7f040005; - } - public static final class attr { - /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarDivider=0x7f010000;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarItemBackground=0x7f010001;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int actionBarSize=0x7f010002;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarSplitStyle=0x7f010003;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarStyle=0x7f010004;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarTabBarStyle=0x7f010005;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarTabStyle=0x7f010006;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarTabTextStyle=0x7f010007;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionBarWidgetTheme=0x7f010008;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionButtonStyle=0x7f010009;
- /** Default ActionBar dropdown style.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionDropDownStyle=0x7f010067;
- /**
- An optional layout to be used as an action view.
- See {@link android.view.MenuItem#setActionView(android.view.View)}
- for more info.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionLayout=0x7f01005e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionMenuTextAppearance=0x7f01000a;
- /**
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int actionMenuTextColor=0x7f01000b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeBackground=0x7f01000c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCloseButtonStyle=0x7f01000d;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCloseDrawable=0x7f01000e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCopyDrawable=0x7f01000f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeCutDrawable=0x7f010010;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeFindDrawable=0x7f010011;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModePasteDrawable=0x7f010012;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModePopupWindowStyle=0x7f010013;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeSelectAllDrawable=0x7f010014;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeShareDrawable=0x7f010015;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeSplitBackground=0x7f010016;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeStyle=0x7f010017;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionModeWebSearchDrawable=0x7f010018;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int actionOverflowButtonStyle=0x7f010019;
- /**
- The name of an optional ActionProvider class to instantiate an action view
- and perform operations such as default action for that menu item.
- See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
- for more info.
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int actionProviderClass=0x7f010060;
- /**
- The name of an optional View class to instantiate and use as an
- action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
- for more info.
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int actionViewClass=0x7f01005f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int activityChooserViewStyle=0x7f01001a;
- /** Specifies a background drawable for the action bar.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int background=0x7f01004b;
- /** Specifies a background drawable for the bottom component of a split action bar.
-
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int backgroundSplit=0x7f01004d;
- /** Specifies a background drawable for a second stacked row of the action bar.
-
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int backgroundStacked=0x7f01004c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int buttonBarButtonStyle=0x7f01001b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int buttonBarStyle=0x7f01001c;
- /** Specifies a layout for custom navigation. Overrides navigationMode.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int customNavigationLayout=0x7f01004e;
- /**
- Whether this spinner should mark child views as enabled/disabled when
- the spinner itself is enabled/disabled.
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int disableChildrenWhenDisabled=0x7f010066;
- /** Options affecting how the action bar is displayed.
-
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int divider=0x7f01004a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int dividerHorizontal=0x7f01001d;
- /** Size of padding on either end of a divider.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int dividerPadding=0x7f01005b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int dividerVertical=0x7f01001e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int dropDownListViewStyle=0x7f01001f;
- /** The preferred item height for dropdown lists.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int dropdownListPreferredItemHeight=0x7f010068;
- /**
- The drawable to show in the button for expanding the activities overflow popup.
- Note: Clients would like to set this drawable
- as a clue about the action the chosen activity will perform. For
- example, if share activity is to be chosen the drawable should
- give a clue that sharing is to be performed.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int expandActivityOverflowButtonDrawable=0x7f010058;
- /**
- This drawable is a state list where the "checked" state
- indicates active media routing. Checkable indicates connecting
- and non-checked / non-checkable indicates
- that media is playing to the local device only.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int externalRouteEnabledDrawable=0x7f01005c;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int height=0x7f010020;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int homeAsUpIndicator=0x7f010021;
- /** Specifies a layout to use for the "home" section of the action bar.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int homeLayout=0x7f01004f;
- /** Specifies the drawable used for the application icon.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int icon=0x7f010048;
- /**
- The default state of the SearchView. If true, it will be iconified when not in
- use and expanded when clicked.
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int iconifiedByDefault=0x7f010061;
- /** Specifies a style resource to use for an indeterminate progress spinner.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int indeterminateProgressStyle=0x7f010051;
- /** The maximal number of items initially shown in the activity list.
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int initialActivityCount=0x7f010057;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int isLightTheme=0x7f010022;
- /**
- Specifies padding that should be applied to the left and right sides of
- system-provided items in the bar.
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int itemPadding=0x7f010053;
- /** Drawable used as a background for selected list items.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int listChoiceBackgroundIndicator=0x7f01006c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int listPopupWindowStyle=0x7f010023;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeight=0x7f010024;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeightLarge=0x7f010025;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeightSmall=0x7f010026;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemPaddingLeft=0x7f010027;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemPaddingRight=0x7f010028;
- /** Specifies the drawable used for the application logo.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int logo=0x7f010049;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteButtonStyle=0x7f010029;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteConnectingDrawable=0x7f01002a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteOffDrawable=0x7f01002b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int mediaRouteOnDrawable=0x7f01002c;
- /** The type of navigation to use.
-
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int paddingEnd=0x7f01006e;
- /** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int paddingStart=0x7f01006d;
- /** Default Panel Menu style.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int panelMenuListTheme=0x7f01006b;
- /** Default Panel Menu width.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int panelMenuListWidth=0x7f01006a;
- /** Default PopupMenu style.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int popupMenuStyle=0x7f010069;
- /**
- Reference to a layout to use for displaying a prompt in the dropdown for
- spinnerMode="dropdown". This layout must contain a TextView with the id
- {@code @android:id/text1} to be populated with the prompt text.
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int popupPromptView=0x7f010065;
- /** Specifies the horizontal padding on either end for an embedded progress bar.
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int progressBarPadding=0x7f010052;
- /** Specifies a style resource to use for an embedded progress bar.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int progressBarStyle=0x7f010050;
- /** The prompt to display when the spinner's dialog is shown.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int prompt=0x7f010063;
- /** An optional query hint string to be displayed in the empty query field.
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int queryHint=0x7f010062;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchDropdownBackground=0x7f01002d;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int searchResultListItemHeight=0x7f01002e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewAutoCompleteTextView=0x7f01002f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewCloseIcon=0x7f010030;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewEditQuery=0x7f010031;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewEditQueryBackground=0x7f010032;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewGoIcon=0x7f010033;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewSearchIcon=0x7f010034;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewTextField=0x7f010035;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewTextFieldRight=0x7f010036;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int searchViewVoiceIcon=0x7f010037;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int selectableItemBackground=0x7f010038;
- /** How this item should display in the Action Bar, if present.
-
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
never | 0 | - Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always". - |
ifRoom | 1 | - Show this item in an action bar if there is room for it as determined - by the system. Favor this option over "always" where possible. - Mutually exclusive with "never" and "always". - |
always | 2 | - Always show this item in an actionbar, even if it would override - the system's limits of how much stuff to put there. This may make - your action bar look bad on some screens. In most cases you should - use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". - |
withText | 4 | - When this item is shown as an action in the action bar, show a text - label with it even if it has an icon representation. - |
collapseActionView | 8 | - This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container. - |
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int spinnerDropDownItemStyle=0x7f010039;
- /** Display mode for spinner options.
-
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | - Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself. - |
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int spinnerStyle=0x7f01003a;
- /** Specifies subtitle text used for navigationMode="normal"
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int subtitle=0x7f010045;
- /** Specifies a style to use for subtitle text.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int subtitleTextStyle=0x7f010047;
- /** Present the text in ALL CAPS. This may use a small-caps form when available.
-
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a boolean value, either "true
" or "false
".
- */
- public static final int textAllCaps=0x7f010059;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceLargePopupMenu=0x7f01003b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceListItem=0x7f01003c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceListItemSmall=0x7f01003d;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceSearchResultSubtitle=0x7f01003e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceSearchResultTitle=0x7f01003f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int textAppearanceSmallPopupMenu=0x7f010040;
- /**
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
- */
- public static final int textColorSearchUrl=0x7f010041;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int title=0x7f010042;
- /** Specifies a style to use for title text.
-
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
- */
- public static final int titleTextStyle=0x7f010046;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int windowActionBar=0x7f010054;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int windowActionBarOverlay=0x7f010055;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- */
- public static final int windowSplitActionBar=0x7f010056;
- }
- public static final class bool {
- public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050000;
- public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050001;
- public static final int abc_config_actionMenuItemAllCaps=0x7f050002;
- public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050003;
- public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050004;
- public static final int abc_split_action_bar_is_narrow=0x7f050005;
- }
- public static final class color {
- public static final int abc_search_url_text_holo=0x7f060005;
- public static final int abc_search_url_text_normal=0x7f060000;
- public static final int abc_search_url_text_pressed=0x7f060001;
- public static final int abc_search_url_text_selected=0x7f060002;
- public static final int button_highlight=0x7f060003;
- public static final int currently_playing_background=0x7f060004;
- }
- public static final class dimen {
- public static final int abc_action_bar_default_height=0x7f080000;
- public static final int abc_action_bar_icon_vertical_padding=0x7f080001;
- public static final int abc_action_bar_stacked_max_height=0x7f080002;
- public static final int abc_action_bar_stacked_tab_max_width=0x7f080003;
- public static final int abc_action_bar_subtitle_bottom_margin=0x7f080004;
- public static final int abc_action_bar_subtitle_text_size=0x7f080005;
- public static final int abc_action_bar_subtitle_top_margin=0x7f080006;
- public static final int abc_action_bar_title_text_size=0x7f080007;
- public static final int abc_action_button_min_width=0x7f080008;
- public static final int abc_config_prefDialogWidth=0x7f080009;
- public static final int abc_dropdownitem_icon_width=0x7f08000a;
- public static final int abc_dropdownitem_text_padding_left=0x7f08000b;
- public static final int abc_dropdownitem_text_padding_right=0x7f08000c;
- public static final int abc_panel_menu_list_width=0x7f08000d;
- public static final int abc_search_view_preferred_width=0x7f08000e;
- public static final int abc_search_view_text_min_width=0x7f08000f;
- public static final int activity_horizontal_margin=0x7f080010;
- public static final int activity_vertical_margin=0x7f080011;
- }
- public static final class drawable {
- public static final int abc_ab_bottom_solid_dark_holo=0x7f020000;
- public static final int abc_ab_bottom_solid_light_holo=0x7f020001;
- public static final int abc_ab_bottom_transparent_dark_holo=0x7f020002;
- public static final int abc_ab_bottom_transparent_light_holo=0x7f020003;
- public static final int abc_ab_share_pack_holo_dark=0x7f020004;
- public static final int abc_ab_share_pack_holo_light=0x7f020005;
- public static final int abc_ab_solid_dark_holo=0x7f020006;
- public static final int abc_ab_solid_light_holo=0x7f020007;
- public static final int abc_ab_stacked_solid_dark_holo=0x7f020008;
- public static final int abc_ab_stacked_solid_light_holo=0x7f020009;
- public static final int abc_ab_stacked_transparent_dark_holo=0x7f02000a;
- public static final int abc_ab_stacked_transparent_light_holo=0x7f02000b;
- public static final int abc_ab_transparent_dark_holo=0x7f02000c;
- public static final int abc_ab_transparent_light_holo=0x7f02000d;
- public static final int abc_cab_background_bottom_holo_dark=0x7f02000e;
- public static final int abc_cab_background_bottom_holo_light=0x7f02000f;
- public static final int abc_cab_background_top_holo_dark=0x7f020010;
- public static final int abc_cab_background_top_holo_light=0x7f020011;
- public static final int abc_ic_ab_back_holo_dark=0x7f020012;
- public static final int abc_ic_ab_back_holo_light=0x7f020013;
- public static final int abc_ic_cab_done_holo_dark=0x7f020014;
- public static final int abc_ic_cab_done_holo_light=0x7f020015;
- public static final int abc_ic_clear=0x7f020016;
- public static final int abc_ic_clear_disabled=0x7f020017;
- public static final int abc_ic_clear_holo_light=0x7f020018;
- public static final int abc_ic_clear_normal=0x7f020019;
- public static final int abc_ic_clear_search_api_disabled_holo_light=0x7f02001a;
- public static final int abc_ic_clear_search_api_holo_light=0x7f02001b;
- public static final int abc_ic_commit_search_api_holo_dark=0x7f02001c;
- public static final int abc_ic_commit_search_api_holo_light=0x7f02001d;
- public static final int abc_ic_go=0x7f02001e;
- public static final int abc_ic_go_search_api_holo_light=0x7f02001f;
- public static final int abc_ic_menu_moreoverflow_normal_holo_dark=0x7f020020;
- public static final int abc_ic_menu_moreoverflow_normal_holo_light=0x7f020021;
- public static final int abc_ic_menu_share_holo_dark=0x7f020022;
- public static final int abc_ic_menu_share_holo_light=0x7f020023;
- public static final int abc_ic_search=0x7f020024;
- public static final int abc_ic_search_api_holo_light=0x7f020025;
- public static final int abc_ic_voice_search=0x7f020026;
- public static final int abc_ic_voice_search_api_holo_light=0x7f020027;
- public static final int abc_item_background_holo_dark=0x7f020028;
- public static final int abc_item_background_holo_light=0x7f020029;
- public static final int abc_list_divider_holo_dark=0x7f02002a;
- public static final int abc_list_divider_holo_light=0x7f02002b;
- public static final int abc_list_focused_holo=0x7f02002c;
- public static final int abc_list_longpressed_holo=0x7f02002d;
- public static final int abc_list_pressed_holo_dark=0x7f02002e;
- public static final int abc_list_pressed_holo_light=0x7f02002f;
- public static final int abc_list_selector_background_transition_holo_dark=0x7f020030;
- public static final int abc_list_selector_background_transition_holo_light=0x7f020031;
- public static final int abc_list_selector_disabled_holo_dark=0x7f020032;
- public static final int abc_list_selector_disabled_holo_light=0x7f020033;
- public static final int abc_list_selector_holo_dark=0x7f020034;
- public static final int abc_list_selector_holo_light=0x7f020035;
- public static final int abc_menu_dropdown_panel_holo_dark=0x7f020036;
- public static final int abc_menu_dropdown_panel_holo_light=0x7f020037;
- public static final int abc_menu_hardkey_panel_holo_dark=0x7f020038;
- public static final int abc_menu_hardkey_panel_holo_light=0x7f020039;
- public static final int abc_search_dropdown_dark=0x7f02003a;
- public static final int abc_search_dropdown_light=0x7f02003b;
- public static final int abc_spinner_ab_default_holo_dark=0x7f02003c;
- public static final int abc_spinner_ab_default_holo_light=0x7f02003d;
- public static final int abc_spinner_ab_disabled_holo_dark=0x7f02003e;
- public static final int abc_spinner_ab_disabled_holo_light=0x7f02003f;
- public static final int abc_spinner_ab_focused_holo_dark=0x7f020040;
- public static final int abc_spinner_ab_focused_holo_light=0x7f020041;
- public static final int abc_spinner_ab_holo_dark=0x7f020042;
- public static final int abc_spinner_ab_holo_light=0x7f020043;
- public static final int abc_spinner_ab_pressed_holo_dark=0x7f020044;
- public static final int abc_spinner_ab_pressed_holo_light=0x7f020045;
- public static final int abc_tab_indicator_ab_holo=0x7f020046;
- public static final int abc_tab_selected_focused_holo=0x7f020047;
- public static final int abc_tab_selected_holo=0x7f020048;
- public static final int abc_tab_selected_pressed_holo=0x7f020049;
- public static final int abc_tab_unselected_pressed_holo=0x7f02004a;
- public static final int abc_textfield_search_default_holo_dark=0x7f02004b;
- public static final int abc_textfield_search_default_holo_light=0x7f02004c;
- public static final int abc_textfield_search_right_default_holo_dark=0x7f02004d;
- public static final int abc_textfield_search_right_default_holo_light=0x7f02004e;
- public static final int abc_textfield_search_right_selected_holo_dark=0x7f02004f;
- public static final int abc_textfield_search_right_selected_holo_light=0x7f020050;
- public static final int abc_textfield_search_selected_holo_dark=0x7f020051;
- public static final int abc_textfield_search_selected_holo_light=0x7f020052;
- public static final int abc_textfield_searchview_holo_dark=0x7f020053;
- public static final int abc_textfield_searchview_holo_light=0x7f020054;
- public static final int abc_textfield_searchview_right_holo_dark=0x7f020055;
- public static final int abc_textfield_searchview_right_holo_light=0x7f020056;
- public static final int ic_action_next=0x7f020057;
- public static final int ic_action_pause=0x7f020058;
- public static final int ic_action_play=0x7f020059;
- public static final int ic_action_previous=0x7f02005a;
- public static final int ic_action_repeat=0x7f02005b;
- public static final int ic_action_shuffle=0x7f02005c;
- public static final int ic_launcher=0x7f02005d;
- public static final int mr_ic_audio_vol=0x7f02005e;
- public static final int mr_ic_media_route_connecting_holo_dark=0x7f02005f;
- public static final int mr_ic_media_route_connecting_holo_light=0x7f020060;
- public static final int mr_ic_media_route_disabled_holo_dark=0x7f020061;
- public static final int mr_ic_media_route_disabled_holo_light=0x7f020062;
- public static final int mr_ic_media_route_holo_dark=0x7f020063;
- public static final int mr_ic_media_route_holo_light=0x7f020064;
- public static final int mr_ic_media_route_off_holo_dark=0x7f020065;
- public static final int mr_ic_media_route_off_holo_light=0x7f020066;
- public static final int mr_ic_media_route_on_0_holo_dark=0x7f020067;
- public static final int mr_ic_media_route_on_0_holo_light=0x7f020068;
- public static final int mr_ic_media_route_on_1_holo_dark=0x7f020069;
- public static final int mr_ic_media_route_on_1_holo_light=0x7f02006a;
- public static final int mr_ic_media_route_on_2_holo_dark=0x7f02006b;
- public static final int mr_ic_media_route_on_2_holo_light=0x7f02006c;
- public static final int mr_ic_media_route_on_holo_dark=0x7f02006d;
- public static final int mr_ic_media_route_on_holo_light=0x7f02006e;
- }
- public static final class id {
- public static final int action_bar=0x7f07001a;
- public static final int action_bar_activity_content=0x7f070014;
- public static final int action_bar_container=0x7f070019;
- public static final int action_bar_overlay_layout=0x7f07001d;
- public static final int action_bar_root=0x7f070018;
- public static final int action_bar_subtitle=0x7f070021;
- public static final int action_bar_title=0x7f070020;
- public static final int action_context_bar=0x7f07001b;
- public static final int action_menu_divider=0x7f070015;
- public static final int action_menu_presenter=0x7f070016;
- public static final int action_mode_bar=0x7f07002f;
- public static final int action_mode_bar_stub=0x7f07002e;
- public static final int action_mode_close_button=0x7f070022;
- public static final int activity_chooser_view_content=0x7f070023;
- public static final int always=0x7f07000f;
- public static final int beginning=0x7f07000a;
- public static final int checkbox=0x7f07002b;
- public static final int collapseActionView=0x7f070011;
- public static final int controls=0x7f07004a;
- public static final int current_time=0x7f07004c;
- public static final int default_activity_button=0x7f070026;
- public static final int dialog=0x7f070012;
- public static final int disableHome=0x7f070008;
- public static final int dropdown=0x7f070013;
- public static final int edit_query=0x7f070036;
- public static final int end=0x7f07000c;
- public static final int expand_activities_button=0x7f070024;
- public static final int expanded_menu=0x7f07002a;
- public static final int home=0x7f070017;
- public static final int homeAsUp=0x7f070005;
- public static final int icon=0x7f070028;
- public static final int ifRoom=0x7f07000e;
- public static final int image=0x7f070025;
- public static final int left_icon=0x7f070031;
- public static final int listMode=0x7f070001;
- public static final int list_item=0x7f070027;
- public static final int listview=0x7f070049;
- public static final int media_route_control_frame=0x7f070047;
- public static final int media_route_disconnect_button=0x7f070048;
- public static final int media_route_list=0x7f070044;
- public static final int media_route_volume_layout=0x7f070045;
- public static final int media_route_volume_slider=0x7f070046;
- public static final int middle=0x7f07000b;
- public static final int never=0x7f07000d;
- public static final int next=0x7f070050;
- public static final int none=0x7f070009;
- public static final int normal=0x7f070000;
- public static final int pager=0x7f070042;
- public static final int playpause=0x7f07004f;
- public static final int previous=0x7f07004e;
- public static final int progressBar=0x7f07004b;
- public static final int progress_circular=0x7f070034;
- public static final int progress_horizontal=0x7f070035;
- public static final int radio=0x7f07002d;
- public static final int repeat=0x7f070051;
- public static final int right_container=0x7f070032;
- public static final int right_icon=0x7f070033;
- public static final int search_badge=0x7f070038;
- public static final int search_bar=0x7f070037;
- public static final int search_button=0x7f070039;
- public static final int search_close_btn=0x7f07003e;
- public static final int search_edit_frame=0x7f07003a;
- public static final int search_go_btn=0x7f070040;
- public static final int search_mag_icon=0x7f07003b;
- public static final int search_plate=0x7f07003c;
- public static final int search_src_text=0x7f07003d;
- public static final int search_voice_btn=0x7f070041;
- public static final int shortcut=0x7f07002c;
- public static final int showCustom=0x7f070007;
- public static final int showHome=0x7f070004;
- public static final int showTitle=0x7f070006;
- public static final int shuffle=0x7f07004d;
- public static final int split_action_bar=0x7f07001c;
- public static final int submit_area=0x7f07003f;
- public static final int subtitle=0x7f070043;
- public static final int tabMode=0x7f070002;
- public static final int title=0x7f070029;
- public static final int title_container=0x7f070030;
- public static final int top_action_bar=0x7f07001e;
- public static final int total_time=0x7f070052;
- public static final int up=0x7f07001f;
- public static final int useLogo=0x7f070003;
- public static final int withText=0x7f070010;
- }
- public static final class integer {
- public static final int abc_max_action_buttons=0x7f090000;
- }
- public static final class layout {
- public static final int abc_action_bar_decor=0x7f030000;
- public static final int abc_action_bar_decor_include=0x7f030001;
- public static final int abc_action_bar_decor_overlay=0x7f030002;
- public static final int abc_action_bar_home=0x7f030003;
- public static final int abc_action_bar_tab=0x7f030004;
- public static final int abc_action_bar_tabbar=0x7f030005;
- public static final int abc_action_bar_title_item=0x7f030006;
- public static final int abc_action_bar_view_list_nav_layout=0x7f030007;
- public static final int abc_action_menu_item_layout=0x7f030008;
- public static final int abc_action_menu_layout=0x7f030009;
- public static final int abc_action_mode_bar=0x7f03000a;
- public static final int abc_action_mode_close_item=0x7f03000b;
- public static final int abc_activity_chooser_view=0x7f03000c;
- public static final int abc_activity_chooser_view_include=0x7f03000d;
- public static final int abc_activity_chooser_view_list_item=0x7f03000e;
- public static final int abc_expanded_menu_layout=0x7f03000f;
- public static final int abc_list_menu_item_checkbox=0x7f030010;
- public static final int abc_list_menu_item_icon=0x7f030011;
- public static final int abc_list_menu_item_layout=0x7f030012;
- public static final int abc_list_menu_item_radio=0x7f030013;
- public static final int abc_popup_menu_item_layout=0x7f030014;
- public static final int abc_screen=0x7f030015;
- public static final int abc_search_dropdown_item_icons_2line=0x7f030016;
- public static final int abc_search_view=0x7f030017;
- public static final int activity_main=0x7f030018;
- public static final int list_item=0x7f030019;
- public static final int mr_media_route_chooser_dialog=0x7f03001a;
- public static final int mr_media_route_controller_dialog=0x7f03001b;
- public static final int mr_media_route_list_item=0x7f03001c;
- public static final int route_fragment=0x7f03001d;
- public static final int server_fragment=0x7f03001e;
- public static final int support_simple_spinner_dropdown_item=0x7f03001f;
- }
- public static final class string {
- public static final int abc_action_bar_home_description=0x7f0a0000;
- public static final int abc_action_bar_up_description=0x7f0a0001;
- public static final int abc_action_menu_overflow_description=0x7f0a0002;
- public static final int abc_action_mode_done=0x7f0a0003;
- public static final int abc_activity_chooser_view_see_all=0x7f0a0004;
- public static final int abc_activitychooserview_choose_application=0x7f0a0005;
- public static final int abc_searchview_description_clear=0x7f0a0006;
- public static final int abc_searchview_description_query=0x7f0a0007;
- public static final int abc_searchview_description_search=0x7f0a0008;
- public static final int abc_searchview_description_submit=0x7f0a0009;
- public static final int abc_searchview_description_voice=0x7f0a000a;
- public static final int abc_shareactionprovider_share_with=0x7f0a000b;
- public static final int abc_shareactionprovider_share_with_application=0x7f0a000c;
- public static final int album_art=0x7f0a000d;
- public static final int app_name=0x7f0a000e;
- public static final int auto_enable_wifi=0x7f0a000f;
- public static final int device_list_empty=0x7f0a0010;
- public static final int dont_show_dialog_again=0x7f0a0011;
- public static final int exit_renderer=0x7f0a0012;
- public static final int folder_list_etmpy=0x7f0a0013;
- public static final int mr_media_route_button_content_description=0x7f0a0014;
- public static final int mr_media_route_chooser_searching=0x7f0a0015;
- public static final int mr_media_route_chooser_title=0x7f0a0016;
- public static final int mr_media_route_controller_disconnect=0x7f0a0017;
- public static final int mr_system_route_name=0x7f0a0018;
- public static final int mr_user_route_category_name=0x7f0a0019;
- public static final int next=0x7f0a001a;
- public static final int pause=0x7f0a001b;
- public static final int play=0x7f0a001c;
- public static final int playlist_empty=0x7f0a001d;
- public static final int previous=0x7f0a001e;
- public static final int repeat=0x7f0a001f;
- public static final int route_description=0x7f0a0020;
- public static final int route_list_empty=0x7f0a0021;
- public static final int select_route=0x7f0a0022;
- public static final int shuffle=0x7f0a0023;
- public static final int title_route=0x7f0a0024;
- public static final int title_server=0x7f0a0025;
- public static final int warning_wifi_not_connected=0x7f0a0026;
- }
- public static final class style {
- /**
- Theme customizations available in newer API levels can go in
- res/values-vXX/styles.xml, while customizations related to
- backward-compatibility can go here.
-
- API 11 theme customizations can go here.
- API 14 theme customizations can go here.
- */
- public static final int AppBaseTheme=0x7f0b0000;
- /** All customizations that are NOT specific to a particular API-level can go here.
- */
- public static final int AppTheme=0x7f0b0001;
- public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0b0002;
- public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0b0003;
- public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0b0004;
- public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0b0005;
- public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0b0006;
- public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0b0007;
- public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0b0008;
- public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0b0009;
- public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0b000a;
- public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0b000b;
- public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0b000c;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b000d;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b000e;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b000f;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0010;
- public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0011;
- public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0012;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0013;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0014;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0015;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0016;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0017;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0018;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0019;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b001a;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b001b;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0b001c;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0b001d;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0b001e;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0b001f;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0b0020;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0b0021;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0b0022;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0b0023;
- public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0b0024;
- public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0b0025;
- public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0026;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0027;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0028;
- public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0b0029;
- public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b002a;
- public static final int Theme_AppCompat=0x7f0b002b;
- public static final int Theme_AppCompat_Base_CompactMenu=0x7f0b002c;
- public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0b002d;
- public static final int Theme_AppCompat_CompactMenu=0x7f0b002e;
- public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0b002f;
- public static final int Theme_AppCompat_Light=0x7f0b0030;
- public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0031;
- public static final int Theme_Base=0x7f0b0032;
- public static final int Theme_Base_AppCompat=0x7f0b0033;
- public static final int Theme_Base_AppCompat_Light=0x7f0b0034;
- public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0b0035;
- public static final int Theme_Base_Light=0x7f0b0036;
- public static final int Theme_MediaRouter=0x7f0b0037;
- public static final int Theme_MediaRouter_Light=0x7f0b0038;
- public static final int Widget_AppCompat_ActionBar=0x7f0b0039;
- public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b003a;
- public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b003b;
- public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b003c;
- public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b003d;
- public static final int Widget_AppCompat_ActionButton=0x7f0b003e;
- public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b003f;
- public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0040;
- public static final int Widget_AppCompat_ActionMode=0x7f0b0041;
- public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0042;
- public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0043;
- public static final int Widget_AppCompat_Base_ActionBar=0x7f0b0044;
- public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0b0045;
- public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0b0046;
- public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0b0047;
- public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0b0048;
- public static final int Widget_AppCompat_Base_ActionButton=0x7f0b0049;
- public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0b004a;
- public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0b004b;
- public static final int Widget_AppCompat_Base_ActionMode=0x7f0b004c;
- public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0b004d;
- public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0b004e;
- public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0b004f;
- public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0b0050;
- public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0b0051;
- public static final int Widget_AppCompat_Base_PopupMenu=0x7f0b0052;
- public static final int Widget_AppCompat_Base_ProgressBar=0x7f0b0053;
- public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0b0054;
- public static final int Widget_AppCompat_Base_Spinner=0x7f0b0055;
- public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0056;
- public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0057;
- public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0058;
- public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0059;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b005a;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b005b;
- public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b005c;
- public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b005d;
- public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b005e;
- public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b005f;
- public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0060;
- public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0061;
- public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0062;
- public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0063;
- public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0064;
- public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0065;
- public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0b0066;
- public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0b0067;
- public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0b0068;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0b0069;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0b006a;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0b006b;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0b006c;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0b006d;
- public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0b006e;
- public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0b006f;
- public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0b0070;
- public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0b0071;
- public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0b0072;
- public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0b0073;
- public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0b0074;
- public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0b0075;
- public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0b0076;
- public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0b0077;
- public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0b0078;
- public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0079;
- public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b007a;
- public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b007b;
- public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b007c;
- public static final int Widget_AppCompat_ListView_DropDown=0x7f0b007d;
- public static final int Widget_AppCompat_ListView_Menu=0x7f0b007e;
- public static final int Widget_AppCompat_PopupMenu=0x7f0b007f;
- public static final int Widget_AppCompat_ProgressBar=0x7f0b0080;
- public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0081;
- public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0082;
- public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0083;
- public static final int Widget_MediaRouter_MediaRouteButton=0x7f0b0084;
- }
- public static final class styleable {
- /** Attributes that can be used with a ActionBar.
-
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionBar_background com.github.nutomic.controldlna:background} | Specifies a background drawable for the action bar. |
{@link #ActionBar_backgroundSplit com.github.nutomic.controldlna:backgroundSplit} | Specifies a background drawable for the bottom component of a split action bar. |
{@link #ActionBar_backgroundStacked com.github.nutomic.controldlna:backgroundStacked} | Specifies a background drawable for a second stacked row of the action bar. |
{@link #ActionBar_customNavigationLayout com.github.nutomic.controldlna:customNavigationLayout} | Specifies a layout for custom navigation. |
{@link #ActionBar_displayOptions com.github.nutomic.controldlna:displayOptions} | Options affecting how the action bar is displayed. |
{@link #ActionBar_divider com.github.nutomic.controldlna:divider} | Specifies the drawable used for item dividers. |
{@link #ActionBar_height com.github.nutomic.controldlna:height} | Specifies a fixed height. |
{@link #ActionBar_homeLayout com.github.nutomic.controldlna:homeLayout} | Specifies a layout to use for the "home" section of the action bar. |
{@link #ActionBar_icon com.github.nutomic.controldlna:icon} | Specifies the drawable used for the application icon. |
{@link #ActionBar_indeterminateProgressStyle com.github.nutomic.controldlna:indeterminateProgressStyle} | Specifies a style resource to use for an indeterminate progress spinner. |
{@link #ActionBar_itemPadding com.github.nutomic.controldlna:itemPadding} | - Specifies padding that should be applied to the left and right sides of - system-provided items in the bar. |
{@link #ActionBar_logo com.github.nutomic.controldlna:logo} | Specifies the drawable used for the application logo. |
{@link #ActionBar_navigationMode com.github.nutomic.controldlna:navigationMode} | The type of navigation to use. |
{@link #ActionBar_progressBarPadding com.github.nutomic.controldlna:progressBarPadding} | Specifies the horizontal padding on either end for an embedded progress bar. |
{@link #ActionBar_progressBarStyle com.github.nutomic.controldlna:progressBarStyle} | Specifies a style resource to use for an embedded progress bar. |
{@link #ActionBar_subtitle com.github.nutomic.controldlna:subtitle} | Specifies subtitle text used for navigationMode="normal" |
{@link #ActionBar_subtitleTextStyle com.github.nutomic.controldlna:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionBar_title com.github.nutomic.controldlna:title} | Specifies title text used for navigationMode="normal" |
{@link #ActionBar_titleTextStyle com.github.nutomic.controldlna:titleTextStyle} | Specifies a style to use for title text. |
- @attr description - Specifies a background drawable for the action bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:background - */ - public static final int ActionBar_background = 10; - /** -
- @attr description - Specifies a background drawable for the bottom component of a split action bar. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:backgroundSplit - */ - public static final int ActionBar_backgroundSplit = 12; - /** -
- @attr description - Specifies a background drawable for a second stacked row of the action bar. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:backgroundStacked - */ - public static final int ActionBar_backgroundStacked = 11; - /** -
- @attr description - Specifies a layout for custom navigation. Overrides navigationMode. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout = 13; - /** -
- @attr description - Options affecting how the action bar is displayed. - - -
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
This is a private symbol. - @attr name com.github.nutomic.controldlna:displayOptions - */ - public static final int ActionBar_displayOptions = 3; - /** -
- @attr description - Specifies the drawable used for item dividers. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:divider - */ - public static final int ActionBar_divider = 9; - /** -
- @attr description - Specifies a fixed height. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:height - */ - public static final int ActionBar_height = 0; - /** -
- @attr description - Specifies a layout to use for the "home" section of the action bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:homeLayout - */ - public static final int ActionBar_homeLayout = 14; - /** -
- @attr description - Specifies the drawable used for the application icon. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:icon - */ - public static final int ActionBar_icon = 7; - /** -
- @attr description - Specifies a style resource to use for an indeterminate progress spinner. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle = 16; - /** -
- @attr description - - Specifies padding that should be applied to the left and right sides of - system-provided items in the bar. - - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:itemPadding - */ - public static final int ActionBar_itemPadding = 18; - /** -
- @attr description - Specifies the drawable used for the application logo. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:logo - */ - public static final int ActionBar_logo = 8; - /** -
- @attr description - The type of navigation to use. - - -
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
This is a private symbol. - @attr name com.github.nutomic.controldlna:navigationMode - */ - public static final int ActionBar_navigationMode = 2; - /** -
- @attr description - Specifies the horizontal padding on either end for an embedded progress bar. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:progressBarPadding - */ - public static final int ActionBar_progressBarPadding = 17; - /** -
- @attr description - Specifies a style resource to use for an embedded progress bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:progressBarStyle - */ - public static final int ActionBar_progressBarStyle = 15; - /** -
- @attr description - Specifies subtitle text used for navigationMode="normal" - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:subtitle - */ - public static final int ActionBar_subtitle = 4; - /** -
- @attr description - Specifies a style to use for subtitle text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle = 6; - /** -
- @attr description - Specifies title text used for navigationMode="normal" - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:title - */ - public static final int ActionBar_title = 1; - /** -
- @attr description - Specifies a style to use for title text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:titleTextStyle - */ - public static final int ActionBar_titleTextStyle = 5; - /** Attributes that can be used with a ActionBarLayout. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity} |
This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #ActionBarLayout} array. - @attr name android:layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity = 0; - /** Attributes that can be used with a ActionBarWindow. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionBarWindow_windowActionBar com.github.nutomic.controldlna:windowActionBar} | |
{@link #ActionBarWindow_windowActionBarOverlay com.github.nutomic.controldlna:windowActionBarOverlay} | |
{@link #ActionBarWindow_windowSplitActionBar com.github.nutomic.controldlna:windowSplitActionBar} |
This symbol is the offset where the {@link com.github.nutomic.controldlna.R.attr#windowActionBar} - attribute's value can be found in the {@link #ActionBarWindow} array. - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- @attr name com.github.nutomic.controldlna:windowActionBar
- */
- public static final int ActionBarWindow_windowActionBar = 0;
- /**
-
This symbol is the offset where the {@link com.github.nutomic.controldlna.R.attr#windowActionBarOverlay} - attribute's value can be found in the {@link #ActionBarWindow} array. - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- @attr name com.github.nutomic.controldlna:windowActionBarOverlay
- */
- public static final int ActionBarWindow_windowActionBarOverlay = 1;
- /**
-
This symbol is the offset where the {@link com.github.nutomic.controldlna.R.attr#windowSplitActionBar} - attribute's value can be found in the {@link #ActionBarWindow} array. - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
- @attr name com.github.nutomic.controldlna:windowSplitActionBar
- */
- public static final int ActionBarWindow_windowSplitActionBar = 2;
- /** Attributes that can be used with a ActionMenuItemView.
-
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionMenuItemView_android_minWidth android:minWidth} |
This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - @attr name android:minWidth - */ - public static final int ActionMenuItemView_android_minWidth = 0; - /** Size of padding on either end of a divider. - */ - public static final int[] ActionMenuView = { - - }; - /** Attributes that can be used with a ActionMode. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActionMode_background com.github.nutomic.controldlna:background} | Specifies a background for the action mode bar. |
{@link #ActionMode_backgroundSplit com.github.nutomic.controldlna:backgroundSplit} | Specifies a background for the split action mode bar. |
{@link #ActionMode_height com.github.nutomic.controldlna:height} | Specifies a fixed height for the action mode bar. |
{@link #ActionMode_subtitleTextStyle com.github.nutomic.controldlna:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionMode_titleTextStyle com.github.nutomic.controldlna:titleTextStyle} | Specifies a style to use for title text. |
- @attr description - Specifies a background for the action mode bar. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:background - */ - public static final int ActionMode_background = 3; - /** -
- @attr description - Specifies a background for the split action mode bar. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:backgroundSplit - */ - public static final int ActionMode_backgroundSplit = 4; - /** -
- @attr description - Specifies a fixed height for the action mode bar. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:height - */ - public static final int ActionMode_height = 0; - /** -
- @attr description - Specifies a style to use for subtitle text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle = 2; - /** -
- @attr description - Specifies a style to use for title text. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:titleTextStyle - */ - public static final int ActionMode_titleTextStyle = 1; - /** Attributes that can be used with a ActivityChooserView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.github.nutomic.controldlna:expandActivityOverflowButtonDrawable} | - The drawable to show in the button for expanding the activities overflow popup. |
{@link #ActivityChooserView_initialActivityCount com.github.nutomic.controldlna:initialActivityCount} | The maximal number of items initially shown in the activity list. |
- @attr description - - The drawable to show in the button for expanding the activities overflow popup. - Note: Clients would like to set this drawable - as a clue about the action the chosen activity will perform. For - example, if share activity is to be chosen the drawable should - give a clue that sharing is to be performed. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - /** -
- @attr description - The maximal number of items initially shown in the activity list. - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount = 0; - /** Attributes that can be used with a CompatTextView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #CompatTextView_textAllCaps com.github.nutomic.controldlna:textAllCaps} | Present the text in ALL CAPS. |
- @attr description - Present the text in ALL CAPS. This may use a small-caps form when available. - - -
May be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
May be a boolean value, either "true
" or "false
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:textAllCaps - */ - public static final int CompatTextView_textAllCaps = 0; - /** Attributes that can be used with a LinearLayoutICS. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #LinearLayoutICS_divider com.github.nutomic.controldlna:divider} | Drawable to use as a vertical divider between buttons. |
{@link #LinearLayoutICS_dividerPadding com.github.nutomic.controldlna:dividerPadding} | Size of padding on either end of a divider. |
{@link #LinearLayoutICS_showDividers com.github.nutomic.controldlna:showDividers} | Setting for which dividers to show. |
- @attr description - Drawable to use as a vertical divider between buttons. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:divider - */ - public static final int LinearLayoutICS_divider = 0; - /** -
- @attr description - Size of padding on either end of a divider. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:dividerPadding - */ - public static final int LinearLayoutICS_dividerPadding = 2; - /** -
- @attr description - Setting for which dividers to show. - - -
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
This is a private symbol. - @attr name com.github.nutomic.controldlna:showDividers - */ - public static final int LinearLayoutICS_showDividers = 1; - /** Attributes that can be used with a MediaRouteButton. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MediaRouteButton_android_minHeight android:minHeight} | |
{@link #MediaRouteButton_android_minWidth android:minWidth} | |
{@link #MediaRouteButton_externalRouteEnabledDrawable com.github.nutomic.controldlna:externalRouteEnabledDrawable} | - This drawable is a state list where the "checked" state - indicates active media routing. |
This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #MediaRouteButton} array. - @attr name android:minHeight - */ - public static final int MediaRouteButton_android_minHeight = 1; - /** -
This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #MediaRouteButton} array. - @attr name android:minWidth - */ - public static final int MediaRouteButton_android_minWidth = 0; - /** -
- @attr description - - This drawable is a state list where the "checked" state - indicates active media routing. Checkable indicates connecting - and non-checked / non-checkable indicates - that media is playing to the local device only. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:externalRouteEnabledDrawable - */ - public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; - /** Attributes that can be used with a MenuGroup. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior} | Whether the items are capable of displaying a check mark. |
{@link #MenuGroup_android_enabled android:enabled} | Whether the items are enabled. |
{@link #MenuGroup_android_id android:id} | The ID of the group. |
{@link #MenuGroup_android_menuCategory android:menuCategory} | - The category applied to all items within this group. |
{@link #MenuGroup_android_orderInCategory android:orderInCategory} | - The order within the category applied to all items within this group. |
{@link #MenuGroup_android_visible android:visible} | Whether the items are shown/visible. |
- @attr description - Whether the items are capable of displaying a check mark. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#checkableBehavior}. - @attr name android:checkableBehavior - */ - public static final int MenuGroup_android_checkableBehavior = 5; - /** -
- @attr description - Whether the items are enabled. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int MenuGroup_android_enabled = 0; - /** -
- @attr description - The ID of the group. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int MenuGroup_android_id = 1; - /** -
- @attr description - - The category applied to all items within this group. - (This will be or'ed with the orderInCategory attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#menuCategory}. - @attr name android:menuCategory - */ - public static final int MenuGroup_android_menuCategory = 3; - /** -
- @attr description - - The order within the category applied to all items within this group. - (This will be or'ed with the category attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#orderInCategory}. - @attr name android:orderInCategory - */ - public static final int MenuGroup_android_orderInCategory = 4; - /** -
- @attr description - Whether the items are shown/visible. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int MenuGroup_android_visible = 2; - /** Attributes that can be used with a MenuItem. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MenuItem_actionLayout com.github.nutomic.controldlna:actionLayout} | - An optional layout to be used as an action view. |
{@link #MenuItem_actionProviderClass com.github.nutomic.controldlna:actionProviderClass} | - The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item. |
{@link #MenuItem_actionViewClass com.github.nutomic.controldlna:actionViewClass} | - The name of an optional View class to instantiate and use as an - action view. |
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut} | - The alphabetic shortcut key. |
{@link #MenuItem_android_checkable android:checkable} | Whether the item is capable of displaying a check mark. |
{@link #MenuItem_android_checked android:checked} | - Whether the item is checked. |
{@link #MenuItem_android_enabled android:enabled} | Whether the item is enabled. |
{@link #MenuItem_android_icon android:icon} | - The icon associated with this item. |
{@link #MenuItem_android_id android:id} | The ID of the item. |
{@link #MenuItem_android_menuCategory android:menuCategory} | - The category applied to the item. |
{@link #MenuItem_android_numericShortcut android:numericShortcut} | - The numeric shortcut key. |
{@link #MenuItem_android_onClick android:onClick} | - Name of a method on the Context used to inflate the menu that will be - called when the item is clicked. |
{@link #MenuItem_android_orderInCategory android:orderInCategory} | - The order within the category applied to the item. |
{@link #MenuItem_android_title android:title} | The title associated with the item. |
{@link #MenuItem_android_titleCondensed android:titleCondensed} | - The condensed title associated with the item. |
{@link #MenuItem_android_visible android:visible} | Whether the item is shown/visible. |
{@link #MenuItem_showAsAction com.github.nutomic.controldlna:showAsAction} | How this item should display in the Action Bar, if present. |
- @attr description - - An optional layout to be used as an action view. - See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionLayout - */ - public static final int MenuItem_actionLayout = 14; - /** -
- @attr description - - The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item. - See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} - for more info. - - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionProviderClass - */ - public static final int MenuItem_actionProviderClass = 16; - /** -
- @attr description - - The name of an optional View class to instantiate and use as an - action view. See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. - - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionViewClass - */ - public static final int MenuItem_actionViewClass = 15; - /** -
- @attr description - - The alphabetic shortcut key. This is the shortcut when using a keyboard - with alphabetic keys. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#alphabeticShortcut}. - @attr name android:alphabeticShortcut - */ - public static final int MenuItem_android_alphabeticShortcut = 9; - /** -
- @attr description - Whether the item is capable of displaying a check mark. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#checkable}. - @attr name android:checkable - */ - public static final int MenuItem_android_checkable = 11; - /** -
- @attr description - - Whether the item is checked. Note that you must first have enabled checking with - the checkable attribute or else the check mark will not appear. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#checked}. - @attr name android:checked - */ - public static final int MenuItem_android_checked = 3; - /** -
- @attr description - Whether the item is enabled. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int MenuItem_android_enabled = 1; - /** -
- @attr description - - The icon associated with this item. This icon will not always be shown, so - the title should be sufficient in describing this item. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int MenuItem_android_icon = 0; - /** -
- @attr description - The ID of the item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int MenuItem_android_id = 2; - /** -
- @attr description - - The category applied to the item. - (This will be or'ed with the orderInCategory attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#menuCategory}. - @attr name android:menuCategory - */ - public static final int MenuItem_android_menuCategory = 5; - /** -
- @attr description - - The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) - keyboard. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#numericShortcut}. - @attr name android:numericShortcut - */ - public static final int MenuItem_android_numericShortcut = 10; - /** -
- @attr description - - Name of a method on the Context used to inflate the menu that will be - called when the item is clicked. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#onClick}. - @attr name android:onClick - */ - public static final int MenuItem_android_onClick = 12; - /** -
- @attr description - - The order within the category applied to the item. - (This will be or'ed with the category attribute.) - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#orderInCategory}. - @attr name android:orderInCategory - */ - public static final int MenuItem_android_orderInCategory = 6; - /** -
- @attr description - The title associated with the item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int MenuItem_android_title = 7; - /** -
- @attr description - - The condensed title associated with the item. This is used in situations where the - normal title may be too long to be displayed. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#titleCondensed}. - @attr name android:titleCondensed - */ - public static final int MenuItem_android_titleCondensed = 8; - /** -
- @attr description - Whether the item is shown/visible. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int MenuItem_android_visible = 4; - /** -
- @attr description - How this item should display in the Action Bar, if present. - - -
Must be one or more (separated by '|') of the following constant values.
-Constant | Value | Description |
---|---|---|
never | 0 | - Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always". - |
ifRoom | 1 | - Show this item in an action bar if there is room for it as determined - by the system. Favor this option over "always" where possible. - Mutually exclusive with "never" and "always". - |
always | 2 | - Always show this item in an actionbar, even if it would override - the system's limits of how much stuff to put there. This may make - your action bar look bad on some screens. In most cases you should - use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". - |
withText | 4 | - When this item is shown as an action in the action bar, show a text - label with it even if it has an icon representation. - |
collapseActionView | 8 | - This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container. - |
This is a private symbol. - @attr name com.github.nutomic.controldlna:showAsAction - */ - public static final int MenuItem_showAsAction = 13; - /** Attributes that can be used with a MenuView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #MenuView_android_headerBackground android:headerBackground} | Default background for the menu header. |
{@link #MenuView_android_horizontalDivider android:horizontalDivider} | Default horizontal divider between rows of menu items. |
{@link #MenuView_android_itemBackground android:itemBackground} | Default background for each menu item. |
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha} | Default disabled icon alpha for each menu item that shows an icon. |
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance} | Default appearance of menu item text. |
{@link #MenuView_android_preserveIconSpacing android:preserveIconSpacing} | Whether space should be reserved in layout when an icon is missing. |
{@link #MenuView_android_verticalDivider android:verticalDivider} | Default vertical divider between menu items. |
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle} | Default animations for the menu. |
- @attr description - Default background for the menu header. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#headerBackground}. - @attr name android:headerBackground - */ - public static final int MenuView_android_headerBackground = 4; - /** -
- @attr description - Default horizontal divider between rows of menu items. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#horizontalDivider}. - @attr name android:horizontalDivider - */ - public static final int MenuView_android_horizontalDivider = 2; - /** -
- @attr description - Default background for each menu item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#itemBackground}. - @attr name android:itemBackground - */ - public static final int MenuView_android_itemBackground = 5; - /** -
- @attr description - Default disabled icon alpha for each menu item that shows an icon. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#itemIconDisabledAlpha}. - @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_android_itemIconDisabledAlpha = 6; - /** -
- @attr description - Default appearance of menu item text. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#itemTextAppearance}. - @attr name android:itemTextAppearance - */ - public static final int MenuView_android_itemTextAppearance = 1; - /** -
- @attr description - Whether space should be reserved in layout when an icon is missing. -
This is a private symbol. - @attr name android:preserveIconSpacing - */ - public static final int MenuView_android_preserveIconSpacing = 7; - /** -
- @attr description - Default vertical divider between menu items. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalDivider}. - @attr name android:verticalDivider - */ - public static final int MenuView_android_verticalDivider = 3; - /** -
- @attr description - Default animations for the menu. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#windowAnimationStyle}. - @attr name android:windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle = 0; - /** Attributes that can be used with a SearchView. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #SearchView_android_imeOptions android:imeOptions} | The IME options to set on the query text field. |
{@link #SearchView_android_inputType android:inputType} | The input type to set on the query text field. |
{@link #SearchView_android_maxWidth android:maxWidth} | An optional maximum width of the SearchView. |
{@link #SearchView_iconifiedByDefault com.github.nutomic.controldlna:iconifiedByDefault} | - The default state of the SearchView. |
{@link #SearchView_queryHint com.github.nutomic.controldlna:queryHint} | An optional query hint string to be displayed in the empty query field. |
- @attr description - The IME options to set on the query text field. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#imeOptions}. - @attr name android:imeOptions - */ - public static final int SearchView_android_imeOptions = 2; - /** -
- @attr description - The input type to set on the query text field. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#inputType}. - @attr name android:inputType - */ - public static final int SearchView_android_inputType = 1; - /** -
- @attr description - An optional maximum width of the SearchView. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#maxWidth}. - @attr name android:maxWidth - */ - public static final int SearchView_android_maxWidth = 0; - /** -
- @attr description - - The default state of the SearchView. If true, it will be iconified when not in - use and expanded when clicked. - - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault = 3; - /** -
- @attr description - An optional query hint string to be displayed in the empty query field. - - -
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:queryHint - */ - public static final int SearchView_queryHint = 4; - /** Attributes that can be used with a Spinner. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset} | - Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown". |
{@link #Spinner_android_dropDownSelector android:dropDownSelector} | List selector to use for spinnerMode="dropdown" display. |
{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset} | - Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown". |
{@link #Spinner_android_dropDownWidth android:dropDownWidth} | Width of the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_gravity android:gravity} | Gravity setting for positioning the currently selected item. |
{@link #Spinner_android_popupBackground android:popupBackground} | Background drawable to use for the dropdown in spinnerMode="dropdown". |
{@link #Spinner_disableChildrenWhenDisabled com.github.nutomic.controldlna:disableChildrenWhenDisabled} | - Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled. |
{@link #Spinner_popupPromptView com.github.nutomic.controldlna:popupPromptView} | - Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown". |
{@link #Spinner_prompt com.github.nutomic.controldlna:prompt} | The prompt to display when the spinner's dialog is shown. |
{@link #Spinner_spinnerMode com.github.nutomic.controldlna:spinnerMode} | Display mode for spinner options. |
- @attr description - - Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown". - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownHorizontalOffset}. - @attr name android:dropDownHorizontalOffset - */ - public static final int Spinner_android_dropDownHorizontalOffset = 4; - /** -
- @attr description - List selector to use for spinnerMode="dropdown" display. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownSelector}. - @attr name android:dropDownSelector - */ - public static final int Spinner_android_dropDownSelector = 1; - /** -
- @attr description - - Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown". - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownVerticalOffset}. - @attr name android:dropDownVerticalOffset - */ - public static final int Spinner_android_dropDownVerticalOffset = 5; - /** -
- @attr description - Width of the dropdown in spinnerMode="dropdown". -
This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownWidth}. - @attr name android:dropDownWidth - */ - public static final int Spinner_android_dropDownWidth = 3; - /** -
- @attr description - Gravity setting for positioning the currently selected item. -
This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int Spinner_android_gravity = 0; - /** -
- @attr description - Background drawable to use for the dropdown in spinnerMode="dropdown". -
This corresponds to the global attribute - resource symbol {@link android.R.attr#popupBackground}. - @attr name android:popupBackground - */ - public static final int Spinner_android_popupBackground = 2; - /** -
- @attr description - - Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled. - - - -
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:disableChildrenWhenDisabled - */ - public static final int Spinner_disableChildrenWhenDisabled = 9; - /** -
- @attr description - - Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown". This layout must contain a TextView with the id - {@code @android:id/text1} to be populated with the prompt text. - - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:popupPromptView - */ - public static final int Spinner_popupPromptView = 8; - /** -
- @attr description - The prompt to display when the spinner's dialog is shown. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:prompt - */ - public static final int Spinner_prompt = 6; - /** -
- @attr description - Display mode for spinner options. - - -
Must be one of the following constant values.
-Constant | Value | Description |
---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | - Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself. - |
This is a private symbol. - @attr name com.github.nutomic.controldlna:spinnerMode - */ - public static final int Spinner_spinnerMode = 7; - /** Attributes that can be used with a Theme. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #Theme_actionDropDownStyle com.github.nutomic.controldlna:actionDropDownStyle} | Default ActionBar dropdown style. |
{@link #Theme_dropdownListPreferredItemHeight com.github.nutomic.controldlna:dropdownListPreferredItemHeight} | The preferred item height for dropdown lists. |
{@link #Theme_listChoiceBackgroundIndicator com.github.nutomic.controldlna:listChoiceBackgroundIndicator} | Drawable used as a background for selected list items. |
{@link #Theme_panelMenuListTheme com.github.nutomic.controldlna:panelMenuListTheme} | Default Panel Menu style. |
{@link #Theme_panelMenuListWidth com.github.nutomic.controldlna:panelMenuListWidth} | Default Panel Menu width. |
{@link #Theme_popupMenuStyle com.github.nutomic.controldlna:popupMenuStyle} | Default PopupMenu style. |
- @attr description - Default ActionBar dropdown style. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:actionDropDownStyle - */ - public static final int Theme_actionDropDownStyle = 0; - /** -
- @attr description - The preferred item height for dropdown lists. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:dropdownListPreferredItemHeight - */ - public static final int Theme_dropdownListPreferredItemHeight = 1; - /** -
- @attr description - Drawable used as a background for selected list items. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:listChoiceBackgroundIndicator - */ - public static final int Theme_listChoiceBackgroundIndicator = 5; - /** -
- @attr description - Default Panel Menu style. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:panelMenuListTheme - */ - public static final int Theme_panelMenuListTheme = 4; - /** -
- @attr description - Default Panel Menu width. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:panelMenuListWidth - */ - public static final int Theme_panelMenuListWidth = 3; - /** -
- @attr description - Default PopupMenu style. - - -
Must be a reference to another resource, in the form "@[+][package:]type:name
"
-or to a theme attribute in the form "?[package:][type:]name
".
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:popupMenuStyle - */ - public static final int Theme_popupMenuStyle = 2; - /** Attributes that can be used with a View. -
Includes the following attributes:
-Attribute | Description |
---|---|
{@link #View_android_focusable android:focusable} | - Boolean that controls whether a view can take focus. |
{@link #View_paddingEnd com.github.nutomic.controldlna:paddingEnd} | Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. |
{@link #View_paddingStart com.github.nutomic.controldlna:paddingStart} | Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. |
- @attr description - - Boolean that controls whether a view can take focus. By default the user can not - move focus to a view; by setting this attribute to true the view is - allowed to take focus. This value does not impact the behavior of - directly calling {@link android.view.View#requestFocus}, which will - always request focus regardless of this view. It only impacts where - focus navigation will try to move focus. - -
This corresponds to the global attribute - resource symbol {@link android.R.attr#focusable}. - @attr name android:focusable - */ - public static final int View_android_focusable = 0; - /** -
- @attr description - Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:paddingEnd - */ - public static final int View_paddingEnd = 2; - /** -
- @attr description - Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. - - -
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name
") or
-theme attribute (in the form
-"?[package:][type:]name
")
-containing a value of this type.
-
This is a private symbol. - @attr name com.github.nutomic.controldlna:paddingStart - */ - public static final int View_paddingStart = 1; - }; -} diff --git a/build/symbols/debug/R.txt b/build/symbols/debug/R.txt deleted file mode 100644 index 32a71fb..0000000 --- a/build/symbols/debug/R.txt +++ /dev/null @@ -1,656 +0,0 @@ -int anim abc_fade_in 0x7f040000 -int anim abc_fade_out 0x7f040001 -int anim abc_slide_in_bottom 0x7f040002 -int anim abc_slide_in_top 0x7f040003 -int anim abc_slide_out_bottom 0x7f040004 -int anim abc_slide_out_top 0x7f040005 -int attr actionBarDivider 0x7f010000 -int attr actionBarItemBackground 0x7f010001 -int attr actionBarSize 0x7f010002 -int attr actionBarSplitStyle 0x7f010003 -int attr actionBarStyle 0x7f010004 -int attr actionBarTabBarStyle 0x7f010005 -int attr actionBarTabStyle 0x7f010006 -int attr actionBarTabTextStyle 0x7f010007 -int attr actionBarWidgetTheme 0x7f010008 -int attr actionButtonStyle 0x7f010009 -int attr actionDropDownStyle 0x7f010067 -int attr actionLayout 0x7f01005e -int attr actionMenuTextAppearance 0x7f01000a -int attr actionMenuTextColor 0x7f01000b -int attr actionModeBackground 0x7f01000c -int attr actionModeCloseButtonStyle 0x7f01000d -int attr actionModeCloseDrawable 0x7f01000e -int attr actionModeCopyDrawable 0x7f01000f -int attr actionModeCutDrawable 0x7f010010 -int attr actionModeFindDrawable 0x7f010011 -int attr actionModePasteDrawable 0x7f010012 -int attr actionModePopupWindowStyle 0x7f010013 -int attr actionModeSelectAllDrawable 0x7f010014 -int attr actionModeShareDrawable 0x7f010015 -int attr actionModeSplitBackground 0x7f010016 -int attr actionModeStyle 0x7f010017 -int attr actionModeWebSearchDrawable 0x7f010018 -int attr actionOverflowButtonStyle 0x7f010019 -int attr actionProviderClass 0x7f010060 -int attr actionViewClass 0x7f01005f -int attr activityChooserViewStyle 0x7f01001a -int attr background 0x7f01004b -int attr backgroundSplit 0x7f01004d -int attr backgroundStacked 0x7f01004c -int attr buttonBarButtonStyle 0x7f01001b -int attr buttonBarStyle 0x7f01001c -int attr customNavigationLayout 0x7f01004e -int attr disableChildrenWhenDisabled 0x7f010066 -int attr displayOptions 0x7f010044 -int attr divider 0x7f01004a -int attr dividerHorizontal 0x7f01001d -int attr dividerPadding 0x7f01005b -int attr dividerVertical 0x7f01001e -int attr dropDownListViewStyle 0x7f01001f -int attr dropdownListPreferredItemHeight 0x7f010068 -int attr expandActivityOverflowButtonDrawable 0x7f010058 -int attr externalRouteEnabledDrawable 0x7f01005c -int attr height 0x7f010020 -int attr homeAsUpIndicator 0x7f010021 -int attr homeLayout 0x7f01004f -int attr icon 0x7f010048 -int attr iconifiedByDefault 0x7f010061 -int attr indeterminateProgressStyle 0x7f010051 -int attr initialActivityCount 0x7f010057 -int attr isLightTheme 0x7f010022 -int attr itemPadding 0x7f010053 -int attr listChoiceBackgroundIndicator 0x7f01006c -int attr listPopupWindowStyle 0x7f010023 -int attr listPreferredItemHeight 0x7f010024 -int attr listPreferredItemHeightLarge 0x7f010025 -int attr listPreferredItemHeightSmall 0x7f010026 -int attr listPreferredItemPaddingLeft 0x7f010027 -int attr listPreferredItemPaddingRight 0x7f010028 -int attr logo 0x7f010049 -int attr mediaRouteButtonStyle 0x7f010029 -int attr mediaRouteConnectingDrawable 0x7f01002a -int attr mediaRouteOffDrawable 0x7f01002b -int attr mediaRouteOnDrawable 0x7f01002c -int attr navigationMode 0x7f010043 -int attr paddingEnd 0x7f01006e -int attr paddingStart 0x7f01006d -int attr panelMenuListTheme 0x7f01006b -int attr panelMenuListWidth 0x7f01006a -int attr popupMenuStyle 0x7f010069 -int attr popupPromptView 0x7f010065 -int attr progressBarPadding 0x7f010052 -int attr progressBarStyle 0x7f010050 -int attr prompt 0x7f010063 -int attr queryHint 0x7f010062 -int attr searchDropdownBackground 0x7f01002d -int attr searchResultListItemHeight 0x7f01002e -int attr searchViewAutoCompleteTextView 0x7f01002f -int attr searchViewCloseIcon 0x7f010030 -int attr searchViewEditQuery 0x7f010031 -int attr searchViewEditQueryBackground 0x7f010032 -int attr searchViewGoIcon 0x7f010033 -int attr searchViewSearchIcon 0x7f010034 -int attr searchViewTextField 0x7f010035 -int attr searchViewTextFieldRight 0x7f010036 -int attr searchViewVoiceIcon 0x7f010037 -int attr selectableItemBackground 0x7f010038 -int attr showAsAction 0x7f01005d -int attr showDividers 0x7f01005a -int attr spinnerDropDownItemStyle 0x7f010039 -int attr spinnerMode 0x7f010064 -int attr spinnerStyle 0x7f01003a -int attr subtitle 0x7f010045 -int attr subtitleTextStyle 0x7f010047 -int attr textAllCaps 0x7f010059 -int attr textAppearanceLargePopupMenu 0x7f01003b -int attr textAppearanceListItem 0x7f01003c -int attr textAppearanceListItemSmall 0x7f01003d -int attr textAppearanceSearchResultSubtitle 0x7f01003e -int attr textAppearanceSearchResultTitle 0x7f01003f -int attr textAppearanceSmallPopupMenu 0x7f010040 -int attr textColorSearchUrl 0x7f010041 -int attr title 0x7f010042 -int attr titleTextStyle 0x7f010046 -int attr windowActionBar 0x7f010054 -int attr windowActionBarOverlay 0x7f010055 -int attr windowSplitActionBar 0x7f010056 -int bool abc_action_bar_embed_tabs_pre_jb 0x7f050000 -int bool abc_action_bar_expanded_action_views_exclusive 0x7f050001 -int bool abc_config_actionMenuItemAllCaps 0x7f050002 -int bool abc_config_allowActionMenuItemTextWithIcon 0x7f050003 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 -int bool abc_split_action_bar_is_narrow 0x7f050005 -int color abc_search_url_text_holo 0x7f060005 -int color abc_search_url_text_normal 0x7f060000 -int color abc_search_url_text_pressed 0x7f060001 -int color abc_search_url_text_selected 0x7f060002 -int color button_highlight 0x7f060003 -int color currently_playing_background 0x7f060004 -int dimen abc_action_bar_default_height 0x7f080000 -int dimen abc_action_bar_icon_vertical_padding 0x7f080001 -int dimen abc_action_bar_stacked_max_height 0x7f080002 -int dimen abc_action_bar_stacked_tab_max_width 0x7f080003 -int dimen abc_action_bar_subtitle_bottom_margin 0x7f080004 -int dimen abc_action_bar_subtitle_text_size 0x7f080005 -int dimen abc_action_bar_subtitle_top_margin 0x7f080006 -int dimen abc_action_bar_title_text_size 0x7f080007 -int dimen abc_action_button_min_width 0x7f080008 -int dimen abc_config_prefDialogWidth 0x7f080009 -int dimen abc_dropdownitem_icon_width 0x7f08000a -int dimen abc_dropdownitem_text_padding_left 0x7f08000b -int dimen abc_dropdownitem_text_padding_right 0x7f08000c -int dimen abc_panel_menu_list_width 0x7f08000d -int dimen abc_search_view_preferred_width 0x7f08000e -int dimen abc_search_view_text_min_width 0x7f08000f -int dimen activity_horizontal_margin 0x7f080010 -int dimen activity_vertical_margin 0x7f080011 -int drawable abc_ab_bottom_solid_dark_holo 0x7f020000 -int drawable abc_ab_bottom_solid_light_holo 0x7f020001 -int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002 -int drawable abc_ab_bottom_transparent_light_holo 0x7f020003 -int drawable abc_ab_share_pack_holo_dark 0x7f020004 -int drawable abc_ab_share_pack_holo_light 0x7f020005 -int drawable abc_ab_solid_dark_holo 0x7f020006 -int drawable abc_ab_solid_light_holo 0x7f020007 -int drawable abc_ab_stacked_solid_dark_holo 0x7f020008 -int drawable abc_ab_stacked_solid_light_holo 0x7f020009 -int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a -int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b -int drawable abc_ab_transparent_dark_holo 0x7f02000c -int drawable abc_ab_transparent_light_holo 0x7f02000d -int drawable abc_cab_background_bottom_holo_dark 0x7f02000e -int drawable abc_cab_background_bottom_holo_light 0x7f02000f -int drawable abc_cab_background_top_holo_dark 0x7f020010 -int drawable abc_cab_background_top_holo_light 0x7f020011 -int drawable abc_ic_ab_back_holo_dark 0x7f020012 -int drawable abc_ic_ab_back_holo_light 0x7f020013 -int drawable abc_ic_cab_done_holo_dark 0x7f020014 -int drawable abc_ic_cab_done_holo_light 0x7f020015 -int drawable abc_ic_clear 0x7f020016 -int drawable abc_ic_clear_disabled 0x7f020017 -int drawable abc_ic_clear_holo_light 0x7f020018 -int drawable abc_ic_clear_normal 0x7f020019 -int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a -int drawable abc_ic_clear_search_api_holo_light 0x7f02001b -int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c -int drawable abc_ic_commit_search_api_holo_light 0x7f02001d -int drawable abc_ic_go 0x7f02001e -int drawable abc_ic_go_search_api_holo_light 0x7f02001f -int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020 -int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021 -int drawable abc_ic_menu_share_holo_dark 0x7f020022 -int drawable abc_ic_menu_share_holo_light 0x7f020023 -int drawable abc_ic_search 0x7f020024 -int drawable abc_ic_search_api_holo_light 0x7f020025 -int drawable abc_ic_voice_search 0x7f020026 -int drawable abc_ic_voice_search_api_holo_light 0x7f020027 -int drawable abc_item_background_holo_dark 0x7f020028 -int drawable abc_item_background_holo_light 0x7f020029 -int drawable abc_list_divider_holo_dark 0x7f02002a -int drawable abc_list_divider_holo_light 0x7f02002b -int drawable abc_list_focused_holo 0x7f02002c -int drawable abc_list_longpressed_holo 0x7f02002d -int drawable abc_list_pressed_holo_dark 0x7f02002e -int drawable abc_list_pressed_holo_light 0x7f02002f -int drawable abc_list_selector_background_transition_holo_dark 0x7f020030 -int drawable abc_list_selector_background_transition_holo_light 0x7f020031 -int drawable abc_list_selector_disabled_holo_dark 0x7f020032 -int drawable abc_list_selector_disabled_holo_light 0x7f020033 -int drawable abc_list_selector_holo_dark 0x7f020034 -int drawable abc_list_selector_holo_light 0x7f020035 -int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036 -int drawable abc_menu_dropdown_panel_holo_light 0x7f020037 -int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038 -int drawable abc_menu_hardkey_panel_holo_light 0x7f020039 -int drawable abc_search_dropdown_dark 0x7f02003a -int drawable abc_search_dropdown_light 0x7f02003b -int drawable abc_spinner_ab_default_holo_dark 0x7f02003c -int drawable abc_spinner_ab_default_holo_light 0x7f02003d -int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e -int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f -int drawable abc_spinner_ab_focused_holo_dark 0x7f020040 -int drawable abc_spinner_ab_focused_holo_light 0x7f020041 -int drawable abc_spinner_ab_holo_dark 0x7f020042 -int drawable abc_spinner_ab_holo_light 0x7f020043 -int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044 -int drawable abc_spinner_ab_pressed_holo_light 0x7f020045 -int drawable abc_tab_indicator_ab_holo 0x7f020046 -int drawable abc_tab_selected_focused_holo 0x7f020047 -int drawable abc_tab_selected_holo 0x7f020048 -int drawable abc_tab_selected_pressed_holo 0x7f020049 -int drawable abc_tab_unselected_pressed_holo 0x7f02004a -int drawable abc_textfield_search_default_holo_dark 0x7f02004b -int drawable abc_textfield_search_default_holo_light 0x7f02004c -int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d -int drawable abc_textfield_search_right_default_holo_light 0x7f02004e -int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f -int drawable abc_textfield_search_right_selected_holo_light 0x7f020050 -int drawable abc_textfield_search_selected_holo_dark 0x7f020051 -int drawable abc_textfield_search_selected_holo_light 0x7f020052 -int drawable abc_textfield_searchview_holo_dark 0x7f020053 -int drawable abc_textfield_searchview_holo_light 0x7f020054 -int drawable abc_textfield_searchview_right_holo_dark 0x7f020055 -int drawable abc_textfield_searchview_right_holo_light 0x7f020056 -int drawable ic_action_next 0x7f020057 -int drawable ic_action_pause 0x7f020058 -int drawable ic_action_play 0x7f020059 -int drawable ic_action_previous 0x7f02005a -int drawable ic_action_repeat 0x7f02005b -int drawable ic_action_shuffle 0x7f02005c -int drawable ic_launcher 0x7f02005d -int drawable mr_ic_audio_vol 0x7f02005e -int drawable mr_ic_media_route_connecting_holo_dark 0x7f02005f -int drawable mr_ic_media_route_connecting_holo_light 0x7f020060 -int drawable mr_ic_media_route_disabled_holo_dark 0x7f020061 -int drawable mr_ic_media_route_disabled_holo_light 0x7f020062 -int drawable mr_ic_media_route_holo_dark 0x7f020063 -int drawable mr_ic_media_route_holo_light 0x7f020064 -int drawable mr_ic_media_route_off_holo_dark 0x7f020065 -int drawable mr_ic_media_route_off_holo_light 0x7f020066 -int drawable mr_ic_media_route_on_0_holo_dark 0x7f020067 -int drawable mr_ic_media_route_on_0_holo_light 0x7f020068 -int drawable mr_ic_media_route_on_1_holo_dark 0x7f020069 -int drawable mr_ic_media_route_on_1_holo_light 0x7f02006a -int drawable mr_ic_media_route_on_2_holo_dark 0x7f02006b -int drawable mr_ic_media_route_on_2_holo_light 0x7f02006c -int drawable mr_ic_media_route_on_holo_dark 0x7f02006d -int drawable mr_ic_media_route_on_holo_light 0x7f02006e -int id action_bar 0x7f07001a -int id action_bar_activity_content 0x7f070014 -int id action_bar_container 0x7f070019 -int id action_bar_overlay_layout 0x7f07001d -int id action_bar_root 0x7f070018 -int id action_bar_subtitle 0x7f070021 -int id action_bar_title 0x7f070020 -int id action_context_bar 0x7f07001b -int id action_menu_divider 0x7f070015 -int id action_menu_presenter 0x7f070016 -int id action_mode_bar 0x7f07002f -int id action_mode_bar_stub 0x7f07002e -int id action_mode_close_button 0x7f070022 -int id activity_chooser_view_content 0x7f070023 -int id always 0x7f07000f -int id beginning 0x7f07000a -int id checkbox 0x7f07002b -int id collapseActionView 0x7f070011 -int id controls 0x7f07004a -int id current_time 0x7f07004c -int id default_activity_button 0x7f070026 -int id dialog 0x7f070012 -int id disableHome 0x7f070008 -int id dropdown 0x7f070013 -int id edit_query 0x7f070036 -int id end 0x7f07000c -int id expand_activities_button 0x7f070024 -int id expanded_menu 0x7f07002a -int id home 0x7f070017 -int id homeAsUp 0x7f070005 -int id icon 0x7f070028 -int id ifRoom 0x7f07000e -int id image 0x7f070025 -int id left_icon 0x7f070031 -int id listMode 0x7f070001 -int id list_item 0x7f070027 -int id listview 0x7f070049 -int id media_route_control_frame 0x7f070047 -int id media_route_disconnect_button 0x7f070048 -int id media_route_list 0x7f070044 -int id media_route_volume_layout 0x7f070045 -int id media_route_volume_slider 0x7f070046 -int id middle 0x7f07000b -int id never 0x7f07000d -int id next 0x7f070050 -int id none 0x7f070009 -int id normal 0x7f070000 -int id pager 0x7f070042 -int id playpause 0x7f07004f -int id previous 0x7f07004e -int id progressBar 0x7f07004b -int id progress_circular 0x7f070034 -int id progress_horizontal 0x7f070035 -int id radio 0x7f07002d -int id repeat 0x7f070051 -int id right_container 0x7f070032 -int id right_icon 0x7f070033 -int id search_badge 0x7f070038 -int id search_bar 0x7f070037 -int id search_button 0x7f070039 -int id search_close_btn 0x7f07003e -int id search_edit_frame 0x7f07003a -int id search_go_btn 0x7f070040 -int id search_mag_icon 0x7f07003b -int id search_plate 0x7f07003c -int id search_src_text 0x7f07003d -int id search_voice_btn 0x7f070041 -int id shortcut 0x7f07002c -int id showCustom 0x7f070007 -int id showHome 0x7f070004 -int id showTitle 0x7f070006 -int id shuffle 0x7f07004d -int id split_action_bar 0x7f07001c -int id submit_area 0x7f07003f -int id subtitle 0x7f070043 -int id tabMode 0x7f070002 -int id title 0x7f070029 -int id title_container 0x7f070030 -int id top_action_bar 0x7f07001e -int id total_time 0x7f070052 -int id up 0x7f07001f -int id useLogo 0x7f070003 -int id withText 0x7f070010 -int integer abc_max_action_buttons 0x7f090000 -int layout abc_action_bar_decor 0x7f030000 -int layout abc_action_bar_decor_include 0x7f030001 -int layout abc_action_bar_decor_overlay 0x7f030002 -int layout abc_action_bar_home 0x7f030003 -int layout abc_action_bar_tab 0x7f030004 -int layout abc_action_bar_tabbar 0x7f030005 -int layout abc_action_bar_title_item 0x7f030006 -int layout abc_action_bar_view_list_nav_layout 0x7f030007 -int layout abc_action_menu_item_layout 0x7f030008 -int layout abc_action_menu_layout 0x7f030009 -int layout abc_action_mode_bar 0x7f03000a -int layout abc_action_mode_close_item 0x7f03000b -int layout abc_activity_chooser_view 0x7f03000c -int layout abc_activity_chooser_view_include 0x7f03000d -int layout abc_activity_chooser_view_list_item 0x7f03000e -int layout abc_expanded_menu_layout 0x7f03000f -int layout abc_list_menu_item_checkbox 0x7f030010 -int layout abc_list_menu_item_icon 0x7f030011 -int layout abc_list_menu_item_layout 0x7f030012 -int layout abc_list_menu_item_radio 0x7f030013 -int layout abc_popup_menu_item_layout 0x7f030014 -int layout abc_screen 0x7f030015 -int layout abc_search_dropdown_item_icons_2line 0x7f030016 -int layout abc_search_view 0x7f030017 -int layout activity_main 0x7f030018 -int layout list_item 0x7f030019 -int layout mr_media_route_chooser_dialog 0x7f03001a -int layout mr_media_route_controller_dialog 0x7f03001b -int layout mr_media_route_list_item 0x7f03001c -int layout route_fragment 0x7f03001d -int layout server_fragment 0x7f03001e -int layout support_simple_spinner_dropdown_item 0x7f03001f -int string abc_action_bar_home_description 0x7f0a0000 -int string abc_action_bar_up_description 0x7f0a0001 -int string abc_action_menu_overflow_description 0x7f0a0002 -int string abc_action_mode_done 0x7f0a0003 -int string abc_activity_chooser_view_see_all 0x7f0a0004 -int string abc_activitychooserview_choose_application 0x7f0a0005 -int string abc_searchview_description_clear 0x7f0a0006 -int string abc_searchview_description_query 0x7f0a0007 -int string abc_searchview_description_search 0x7f0a0008 -int string abc_searchview_description_submit 0x7f0a0009 -int string abc_searchview_description_voice 0x7f0a000a -int string abc_shareactionprovider_share_with 0x7f0a000b -int string abc_shareactionprovider_share_with_application 0x7f0a000c -int string album_art 0x7f0a000d -int string app_name 0x7f0a000e -int string auto_enable_wifi 0x7f0a000f -int string device_list_empty 0x7f0a0010 -int string dont_show_dialog_again 0x7f0a0011 -int string exit_renderer 0x7f0a0012 -int string folder_list_etmpy 0x7f0a0013 -int string mr_media_route_button_content_description 0x7f0a0014 -int string mr_media_route_chooser_searching 0x7f0a0015 -int string mr_media_route_chooser_title 0x7f0a0016 -int string mr_media_route_controller_disconnect 0x7f0a0017 -int string mr_system_route_name 0x7f0a0018 -int string mr_user_route_category_name 0x7f0a0019 -int string next 0x7f0a001a -int string pause 0x7f0a001b -int string play 0x7f0a001c -int string playlist_empty 0x7f0a001d -int string previous 0x7f0a001e -int string repeat 0x7f0a001f -int string route_description 0x7f0a0020 -int string route_list_empty 0x7f0a0021 -int string select_route 0x7f0a0022 -int string shuffle 0x7f0a0023 -int string title_route 0x7f0a0024 -int string title_server 0x7f0a0025 -int string warning_wifi_not_connected 0x7f0a0026 -int style AppBaseTheme 0x7f0b0000 -int style AppTheme 0x7f0b0001 -int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0002 -int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b0003 -int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b0004 -int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b0005 -int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0006 -int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b0007 -int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0008 -int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0009 -int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b000a -int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b000b -int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b000c -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b000d -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b000e -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b000f -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0010 -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0011 -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0012 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0013 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0014 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0015 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0016 -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0017 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0018 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0019 -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001a -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001b -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b001c -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b001d -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b001e -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b001f -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0020 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0021 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0022 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0023 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0024 -int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0025 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0026 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0027 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0028 -int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0029 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b002a -int style Theme_AppCompat 0x7f0b002b -int style Theme_AppCompat_Base_CompactMenu 0x7f0b002c -int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b002d -int style Theme_AppCompat_CompactMenu 0x7f0b002e -int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b002f -int style Theme_AppCompat_Light 0x7f0b0030 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0031 -int style Theme_Base 0x7f0b0032 -int style Theme_Base_AppCompat 0x7f0b0033 -int style Theme_Base_AppCompat_Light 0x7f0b0034 -int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0035 -int style Theme_Base_Light 0x7f0b0036 -int style Theme_MediaRouter 0x7f0b0037 -int style Theme_MediaRouter_Light 0x7f0b0038 -int style Widget_AppCompat_ActionBar 0x7f0b0039 -int style Widget_AppCompat_ActionBar_Solid 0x7f0b003a -int style Widget_AppCompat_ActionBar_TabBar 0x7f0b003b -int style Widget_AppCompat_ActionBar_TabText 0x7f0b003c -int style Widget_AppCompat_ActionBar_TabView 0x7f0b003d -int style Widget_AppCompat_ActionButton 0x7f0b003e -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b003f -int style Widget_AppCompat_ActionButton_Overflow 0x7f0b0040 -int style Widget_AppCompat_ActionMode 0x7f0b0041 -int style Widget_AppCompat_ActivityChooserView 0x7f0b0042 -int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0043 -int style Widget_AppCompat_Base_ActionBar 0x7f0b0044 -int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b0045 -int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0046 -int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b0047 -int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048 -int style Widget_AppCompat_Base_ActionButton 0x7f0b0049 -int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b004a -int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b004b -int style Widget_AppCompat_Base_ActionMode 0x7f0b004c -int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b004d -int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b004e -int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b004f -int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b0050 -int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0051 -int style Widget_AppCompat_Base_PopupMenu 0x7f0b0052 -int style Widget_AppCompat_Base_ProgressBar 0x7f0b0053 -int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0054 -int style Widget_AppCompat_Base_Spinner 0x7f0b0055 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0056 -int style Widget_AppCompat_Light_ActionBar 0x7f0b0057 -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0058 -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0059 -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b005a -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b005b -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b005c -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b005d -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b005e -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b005f -int style Widget_AppCompat_Light_ActionButton 0x7f0b0060 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b0061 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0062 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0063 -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0064 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0065 -int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b0066 -int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b0067 -int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b0068 -int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0069 -int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b006a -int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b006b -int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b006c -int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b006d -int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b006e -int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b006f -int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0070 -int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0071 -int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b0072 -int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0073 -int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074 -int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b0075 -int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0076 -int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0077 -int style Widget_AppCompat_Light_Base_Spinner 0x7f0b0078 -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0079 -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b007a -int style Widget_AppCompat_Light_PopupMenu 0x7f0b007b -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b007c -int style Widget_AppCompat_ListView_DropDown 0x7f0b007d -int style Widget_AppCompat_ListView_Menu 0x7f0b007e -int style Widget_AppCompat_PopupMenu 0x7f0b007f -int style Widget_AppCompat_ProgressBar 0x7f0b0080 -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0081 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0082 -int style Widget_MediaRouter_Light_MediaRouteButton 0x7f0b0083 -int style Widget_MediaRouter_MediaRouteButton 0x7f0b0084 -int[] styleable ActionBar { 0x7f010020, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 } -int styleable ActionBar_background 10 -int styleable ActionBar_backgroundSplit 12 -int styleable ActionBar_backgroundStacked 11 -int styleable ActionBar_customNavigationLayout 13 -int styleable ActionBar_displayOptions 3 -int styleable ActionBar_divider 9 -int styleable ActionBar_height 0 -int styleable ActionBar_homeLayout 14 -int styleable ActionBar_icon 7 -int styleable ActionBar_indeterminateProgressStyle 16 -int styleable ActionBar_itemPadding 18 -int styleable ActionBar_logo 8 -int styleable ActionBar_navigationMode 2 -int styleable ActionBar_progressBarPadding 17 -int styleable ActionBar_progressBarStyle 15 -int styleable ActionBar_subtitle 4 -int styleable ActionBar_subtitleTextStyle 6 -int styleable ActionBar_title 1 -int styleable ActionBar_titleTextStyle 5 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionBarWindow { 0x7f010054, 0x7f010055, 0x7f010056 } -int styleable ActionBarWindow_windowActionBar 0 -int styleable ActionBarWindow_windowActionBarOverlay 1 -int styleable ActionBarWindow_windowSplitActionBar 2 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f010020, 0x7f010046, 0x7f010047, 0x7f01004b, 0x7f01004d } -int styleable ActionMode_background 3 -int styleable ActionMode_backgroundSplit 4 -int styleable ActionMode_height 0 -int styleable ActionMode_subtitleTextStyle 2 -int styleable ActionMode_titleTextStyle 1 -int[] styleable ActivityChooserView { 0x7f010057, 0x7f010058 } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 -int styleable ActivityChooserView_initialActivityCount 0 -int[] styleable CompatTextView { 0x7f010059 } -int styleable CompatTextView_textAllCaps 0 -int[] styleable LinearLayoutICS { 0x7f01004a, 0x7f01005a, 0x7f01005b } -int styleable LinearLayoutICS_divider 0 -int styleable LinearLayoutICS_dividerPadding 2 -int styleable LinearLayoutICS_showDividers 1 -int[] styleable MediaRouteButton { 0x0101013f, 0x01010140, 0x7f01005c } -int styleable MediaRouteButton_android_minHeight 1 -int styleable MediaRouteButton_android_minWidth 0 -int styleable MediaRouteButton_externalRouteEnabledDrawable 2 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_checkableBehavior 5 -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_visible 2 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060 } -int styleable MenuItem_actionLayout 14 -int styleable MenuItem_actionProviderClass 16 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_showAsAction 13 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 } -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_preserveIconSpacing 7 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_windowAnimationStyle 0 -int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f010061, 0x7f010062 } -int styleable SearchView_android_imeOptions 2 -int styleable SearchView_android_inputType 1 -int styleable SearchView_android_maxWidth 0 -int styleable SearchView_iconifiedByDefault 3 -int styleable SearchView_queryHint 4 -int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066 } -int styleable Spinner_android_dropDownHorizontalOffset 4 -int styleable Spinner_android_dropDownSelector 1 -int styleable Spinner_android_dropDownVerticalOffset 5 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_android_gravity 0 -int styleable Spinner_android_popupBackground 2 -int styleable Spinner_disableChildrenWhenDisabled 9 -int styleable Spinner_popupPromptView 8 -int styleable Spinner_prompt 6 -int styleable Spinner_spinnerMode 7 -int[] styleable Theme { 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c } -int styleable Theme_actionDropDownStyle 0 -int styleable Theme_dropdownListPreferredItemHeight 1 -int styleable Theme_listChoiceBackgroundIndicator 5 -int styleable Theme_panelMenuListTheme 4 -int styleable Theme_panelMenuListWidth 3 -int styleable Theme_popupMenuStyle 2 -int[] styleable View { 0x010100da, 0x7f01006d, 0x7f01006e } -int styleable View_android_focusable 0 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 1 diff --git a/build/symbols/release/R.txt b/build/symbols/release/R.txt deleted file mode 100644 index 32a71fb..0000000 --- a/build/symbols/release/R.txt +++ /dev/null @@ -1,656 +0,0 @@ -int anim abc_fade_in 0x7f040000 -int anim abc_fade_out 0x7f040001 -int anim abc_slide_in_bottom 0x7f040002 -int anim abc_slide_in_top 0x7f040003 -int anim abc_slide_out_bottom 0x7f040004 -int anim abc_slide_out_top 0x7f040005 -int attr actionBarDivider 0x7f010000 -int attr actionBarItemBackground 0x7f010001 -int attr actionBarSize 0x7f010002 -int attr actionBarSplitStyle 0x7f010003 -int attr actionBarStyle 0x7f010004 -int attr actionBarTabBarStyle 0x7f010005 -int attr actionBarTabStyle 0x7f010006 -int attr actionBarTabTextStyle 0x7f010007 -int attr actionBarWidgetTheme 0x7f010008 -int attr actionButtonStyle 0x7f010009 -int attr actionDropDownStyle 0x7f010067 -int attr actionLayout 0x7f01005e -int attr actionMenuTextAppearance 0x7f01000a -int attr actionMenuTextColor 0x7f01000b -int attr actionModeBackground 0x7f01000c -int attr actionModeCloseButtonStyle 0x7f01000d -int attr actionModeCloseDrawable 0x7f01000e -int attr actionModeCopyDrawable 0x7f01000f -int attr actionModeCutDrawable 0x7f010010 -int attr actionModeFindDrawable 0x7f010011 -int attr actionModePasteDrawable 0x7f010012 -int attr actionModePopupWindowStyle 0x7f010013 -int attr actionModeSelectAllDrawable 0x7f010014 -int attr actionModeShareDrawable 0x7f010015 -int attr actionModeSplitBackground 0x7f010016 -int attr actionModeStyle 0x7f010017 -int attr actionModeWebSearchDrawable 0x7f010018 -int attr actionOverflowButtonStyle 0x7f010019 -int attr actionProviderClass 0x7f010060 -int attr actionViewClass 0x7f01005f -int attr activityChooserViewStyle 0x7f01001a -int attr background 0x7f01004b -int attr backgroundSplit 0x7f01004d -int attr backgroundStacked 0x7f01004c -int attr buttonBarButtonStyle 0x7f01001b -int attr buttonBarStyle 0x7f01001c -int attr customNavigationLayout 0x7f01004e -int attr disableChildrenWhenDisabled 0x7f010066 -int attr displayOptions 0x7f010044 -int attr divider 0x7f01004a -int attr dividerHorizontal 0x7f01001d -int attr dividerPadding 0x7f01005b -int attr dividerVertical 0x7f01001e -int attr dropDownListViewStyle 0x7f01001f -int attr dropdownListPreferredItemHeight 0x7f010068 -int attr expandActivityOverflowButtonDrawable 0x7f010058 -int attr externalRouteEnabledDrawable 0x7f01005c -int attr height 0x7f010020 -int attr homeAsUpIndicator 0x7f010021 -int attr homeLayout 0x7f01004f -int attr icon 0x7f010048 -int attr iconifiedByDefault 0x7f010061 -int attr indeterminateProgressStyle 0x7f010051 -int attr initialActivityCount 0x7f010057 -int attr isLightTheme 0x7f010022 -int attr itemPadding 0x7f010053 -int attr listChoiceBackgroundIndicator 0x7f01006c -int attr listPopupWindowStyle 0x7f010023 -int attr listPreferredItemHeight 0x7f010024 -int attr listPreferredItemHeightLarge 0x7f010025 -int attr listPreferredItemHeightSmall 0x7f010026 -int attr listPreferredItemPaddingLeft 0x7f010027 -int attr listPreferredItemPaddingRight 0x7f010028 -int attr logo 0x7f010049 -int attr mediaRouteButtonStyle 0x7f010029 -int attr mediaRouteConnectingDrawable 0x7f01002a -int attr mediaRouteOffDrawable 0x7f01002b -int attr mediaRouteOnDrawable 0x7f01002c -int attr navigationMode 0x7f010043 -int attr paddingEnd 0x7f01006e -int attr paddingStart 0x7f01006d -int attr panelMenuListTheme 0x7f01006b -int attr panelMenuListWidth 0x7f01006a -int attr popupMenuStyle 0x7f010069 -int attr popupPromptView 0x7f010065 -int attr progressBarPadding 0x7f010052 -int attr progressBarStyle 0x7f010050 -int attr prompt 0x7f010063 -int attr queryHint 0x7f010062 -int attr searchDropdownBackground 0x7f01002d -int attr searchResultListItemHeight 0x7f01002e -int attr searchViewAutoCompleteTextView 0x7f01002f -int attr searchViewCloseIcon 0x7f010030 -int attr searchViewEditQuery 0x7f010031 -int attr searchViewEditQueryBackground 0x7f010032 -int attr searchViewGoIcon 0x7f010033 -int attr searchViewSearchIcon 0x7f010034 -int attr searchViewTextField 0x7f010035 -int attr searchViewTextFieldRight 0x7f010036 -int attr searchViewVoiceIcon 0x7f010037 -int attr selectableItemBackground 0x7f010038 -int attr showAsAction 0x7f01005d -int attr showDividers 0x7f01005a -int attr spinnerDropDownItemStyle 0x7f010039 -int attr spinnerMode 0x7f010064 -int attr spinnerStyle 0x7f01003a -int attr subtitle 0x7f010045 -int attr subtitleTextStyle 0x7f010047 -int attr textAllCaps 0x7f010059 -int attr textAppearanceLargePopupMenu 0x7f01003b -int attr textAppearanceListItem 0x7f01003c -int attr textAppearanceListItemSmall 0x7f01003d -int attr textAppearanceSearchResultSubtitle 0x7f01003e -int attr textAppearanceSearchResultTitle 0x7f01003f -int attr textAppearanceSmallPopupMenu 0x7f010040 -int attr textColorSearchUrl 0x7f010041 -int attr title 0x7f010042 -int attr titleTextStyle 0x7f010046 -int attr windowActionBar 0x7f010054 -int attr windowActionBarOverlay 0x7f010055 -int attr windowSplitActionBar 0x7f010056 -int bool abc_action_bar_embed_tabs_pre_jb 0x7f050000 -int bool abc_action_bar_expanded_action_views_exclusive 0x7f050001 -int bool abc_config_actionMenuItemAllCaps 0x7f050002 -int bool abc_config_allowActionMenuItemTextWithIcon 0x7f050003 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 -int bool abc_split_action_bar_is_narrow 0x7f050005 -int color abc_search_url_text_holo 0x7f060005 -int color abc_search_url_text_normal 0x7f060000 -int color abc_search_url_text_pressed 0x7f060001 -int color abc_search_url_text_selected 0x7f060002 -int color button_highlight 0x7f060003 -int color currently_playing_background 0x7f060004 -int dimen abc_action_bar_default_height 0x7f080000 -int dimen abc_action_bar_icon_vertical_padding 0x7f080001 -int dimen abc_action_bar_stacked_max_height 0x7f080002 -int dimen abc_action_bar_stacked_tab_max_width 0x7f080003 -int dimen abc_action_bar_subtitle_bottom_margin 0x7f080004 -int dimen abc_action_bar_subtitle_text_size 0x7f080005 -int dimen abc_action_bar_subtitle_top_margin 0x7f080006 -int dimen abc_action_bar_title_text_size 0x7f080007 -int dimen abc_action_button_min_width 0x7f080008 -int dimen abc_config_prefDialogWidth 0x7f080009 -int dimen abc_dropdownitem_icon_width 0x7f08000a -int dimen abc_dropdownitem_text_padding_left 0x7f08000b -int dimen abc_dropdownitem_text_padding_right 0x7f08000c -int dimen abc_panel_menu_list_width 0x7f08000d -int dimen abc_search_view_preferred_width 0x7f08000e -int dimen abc_search_view_text_min_width 0x7f08000f -int dimen activity_horizontal_margin 0x7f080010 -int dimen activity_vertical_margin 0x7f080011 -int drawable abc_ab_bottom_solid_dark_holo 0x7f020000 -int drawable abc_ab_bottom_solid_light_holo 0x7f020001 -int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002 -int drawable abc_ab_bottom_transparent_light_holo 0x7f020003 -int drawable abc_ab_share_pack_holo_dark 0x7f020004 -int drawable abc_ab_share_pack_holo_light 0x7f020005 -int drawable abc_ab_solid_dark_holo 0x7f020006 -int drawable abc_ab_solid_light_holo 0x7f020007 -int drawable abc_ab_stacked_solid_dark_holo 0x7f020008 -int drawable abc_ab_stacked_solid_light_holo 0x7f020009 -int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a -int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b -int drawable abc_ab_transparent_dark_holo 0x7f02000c -int drawable abc_ab_transparent_light_holo 0x7f02000d -int drawable abc_cab_background_bottom_holo_dark 0x7f02000e -int drawable abc_cab_background_bottom_holo_light 0x7f02000f -int drawable abc_cab_background_top_holo_dark 0x7f020010 -int drawable abc_cab_background_top_holo_light 0x7f020011 -int drawable abc_ic_ab_back_holo_dark 0x7f020012 -int drawable abc_ic_ab_back_holo_light 0x7f020013 -int drawable abc_ic_cab_done_holo_dark 0x7f020014 -int drawable abc_ic_cab_done_holo_light 0x7f020015 -int drawable abc_ic_clear 0x7f020016 -int drawable abc_ic_clear_disabled 0x7f020017 -int drawable abc_ic_clear_holo_light 0x7f020018 -int drawable abc_ic_clear_normal 0x7f020019 -int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a -int drawable abc_ic_clear_search_api_holo_light 0x7f02001b -int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c -int drawable abc_ic_commit_search_api_holo_light 0x7f02001d -int drawable abc_ic_go 0x7f02001e -int drawable abc_ic_go_search_api_holo_light 0x7f02001f -int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020 -int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021 -int drawable abc_ic_menu_share_holo_dark 0x7f020022 -int drawable abc_ic_menu_share_holo_light 0x7f020023 -int drawable abc_ic_search 0x7f020024 -int drawable abc_ic_search_api_holo_light 0x7f020025 -int drawable abc_ic_voice_search 0x7f020026 -int drawable abc_ic_voice_search_api_holo_light 0x7f020027 -int drawable abc_item_background_holo_dark 0x7f020028 -int drawable abc_item_background_holo_light 0x7f020029 -int drawable abc_list_divider_holo_dark 0x7f02002a -int drawable abc_list_divider_holo_light 0x7f02002b -int drawable abc_list_focused_holo 0x7f02002c -int drawable abc_list_longpressed_holo 0x7f02002d -int drawable abc_list_pressed_holo_dark 0x7f02002e -int drawable abc_list_pressed_holo_light 0x7f02002f -int drawable abc_list_selector_background_transition_holo_dark 0x7f020030 -int drawable abc_list_selector_background_transition_holo_light 0x7f020031 -int drawable abc_list_selector_disabled_holo_dark 0x7f020032 -int drawable abc_list_selector_disabled_holo_light 0x7f020033 -int drawable abc_list_selector_holo_dark 0x7f020034 -int drawable abc_list_selector_holo_light 0x7f020035 -int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036 -int drawable abc_menu_dropdown_panel_holo_light 0x7f020037 -int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038 -int drawable abc_menu_hardkey_panel_holo_light 0x7f020039 -int drawable abc_search_dropdown_dark 0x7f02003a -int drawable abc_search_dropdown_light 0x7f02003b -int drawable abc_spinner_ab_default_holo_dark 0x7f02003c -int drawable abc_spinner_ab_default_holo_light 0x7f02003d -int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e -int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f -int drawable abc_spinner_ab_focused_holo_dark 0x7f020040 -int drawable abc_spinner_ab_focused_holo_light 0x7f020041 -int drawable abc_spinner_ab_holo_dark 0x7f020042 -int drawable abc_spinner_ab_holo_light 0x7f020043 -int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044 -int drawable abc_spinner_ab_pressed_holo_light 0x7f020045 -int drawable abc_tab_indicator_ab_holo 0x7f020046 -int drawable abc_tab_selected_focused_holo 0x7f020047 -int drawable abc_tab_selected_holo 0x7f020048 -int drawable abc_tab_selected_pressed_holo 0x7f020049 -int drawable abc_tab_unselected_pressed_holo 0x7f02004a -int drawable abc_textfield_search_default_holo_dark 0x7f02004b -int drawable abc_textfield_search_default_holo_light 0x7f02004c -int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d -int drawable abc_textfield_search_right_default_holo_light 0x7f02004e -int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f -int drawable abc_textfield_search_right_selected_holo_light 0x7f020050 -int drawable abc_textfield_search_selected_holo_dark 0x7f020051 -int drawable abc_textfield_search_selected_holo_light 0x7f020052 -int drawable abc_textfield_searchview_holo_dark 0x7f020053 -int drawable abc_textfield_searchview_holo_light 0x7f020054 -int drawable abc_textfield_searchview_right_holo_dark 0x7f020055 -int drawable abc_textfield_searchview_right_holo_light 0x7f020056 -int drawable ic_action_next 0x7f020057 -int drawable ic_action_pause 0x7f020058 -int drawable ic_action_play 0x7f020059 -int drawable ic_action_previous 0x7f02005a -int drawable ic_action_repeat 0x7f02005b -int drawable ic_action_shuffle 0x7f02005c -int drawable ic_launcher 0x7f02005d -int drawable mr_ic_audio_vol 0x7f02005e -int drawable mr_ic_media_route_connecting_holo_dark 0x7f02005f -int drawable mr_ic_media_route_connecting_holo_light 0x7f020060 -int drawable mr_ic_media_route_disabled_holo_dark 0x7f020061 -int drawable mr_ic_media_route_disabled_holo_light 0x7f020062 -int drawable mr_ic_media_route_holo_dark 0x7f020063 -int drawable mr_ic_media_route_holo_light 0x7f020064 -int drawable mr_ic_media_route_off_holo_dark 0x7f020065 -int drawable mr_ic_media_route_off_holo_light 0x7f020066 -int drawable mr_ic_media_route_on_0_holo_dark 0x7f020067 -int drawable mr_ic_media_route_on_0_holo_light 0x7f020068 -int drawable mr_ic_media_route_on_1_holo_dark 0x7f020069 -int drawable mr_ic_media_route_on_1_holo_light 0x7f02006a -int drawable mr_ic_media_route_on_2_holo_dark 0x7f02006b -int drawable mr_ic_media_route_on_2_holo_light 0x7f02006c -int drawable mr_ic_media_route_on_holo_dark 0x7f02006d -int drawable mr_ic_media_route_on_holo_light 0x7f02006e -int id action_bar 0x7f07001a -int id action_bar_activity_content 0x7f070014 -int id action_bar_container 0x7f070019 -int id action_bar_overlay_layout 0x7f07001d -int id action_bar_root 0x7f070018 -int id action_bar_subtitle 0x7f070021 -int id action_bar_title 0x7f070020 -int id action_context_bar 0x7f07001b -int id action_menu_divider 0x7f070015 -int id action_menu_presenter 0x7f070016 -int id action_mode_bar 0x7f07002f -int id action_mode_bar_stub 0x7f07002e -int id action_mode_close_button 0x7f070022 -int id activity_chooser_view_content 0x7f070023 -int id always 0x7f07000f -int id beginning 0x7f07000a -int id checkbox 0x7f07002b -int id collapseActionView 0x7f070011 -int id controls 0x7f07004a -int id current_time 0x7f07004c -int id default_activity_button 0x7f070026 -int id dialog 0x7f070012 -int id disableHome 0x7f070008 -int id dropdown 0x7f070013 -int id edit_query 0x7f070036 -int id end 0x7f07000c -int id expand_activities_button 0x7f070024 -int id expanded_menu 0x7f07002a -int id home 0x7f070017 -int id homeAsUp 0x7f070005 -int id icon 0x7f070028 -int id ifRoom 0x7f07000e -int id image 0x7f070025 -int id left_icon 0x7f070031 -int id listMode 0x7f070001 -int id list_item 0x7f070027 -int id listview 0x7f070049 -int id media_route_control_frame 0x7f070047 -int id media_route_disconnect_button 0x7f070048 -int id media_route_list 0x7f070044 -int id media_route_volume_layout 0x7f070045 -int id media_route_volume_slider 0x7f070046 -int id middle 0x7f07000b -int id never 0x7f07000d -int id next 0x7f070050 -int id none 0x7f070009 -int id normal 0x7f070000 -int id pager 0x7f070042 -int id playpause 0x7f07004f -int id previous 0x7f07004e -int id progressBar 0x7f07004b -int id progress_circular 0x7f070034 -int id progress_horizontal 0x7f070035 -int id radio 0x7f07002d -int id repeat 0x7f070051 -int id right_container 0x7f070032 -int id right_icon 0x7f070033 -int id search_badge 0x7f070038 -int id search_bar 0x7f070037 -int id search_button 0x7f070039 -int id search_close_btn 0x7f07003e -int id search_edit_frame 0x7f07003a -int id search_go_btn 0x7f070040 -int id search_mag_icon 0x7f07003b -int id search_plate 0x7f07003c -int id search_src_text 0x7f07003d -int id search_voice_btn 0x7f070041 -int id shortcut 0x7f07002c -int id showCustom 0x7f070007 -int id showHome 0x7f070004 -int id showTitle 0x7f070006 -int id shuffle 0x7f07004d -int id split_action_bar 0x7f07001c -int id submit_area 0x7f07003f -int id subtitle 0x7f070043 -int id tabMode 0x7f070002 -int id title 0x7f070029 -int id title_container 0x7f070030 -int id top_action_bar 0x7f07001e -int id total_time 0x7f070052 -int id up 0x7f07001f -int id useLogo 0x7f070003 -int id withText 0x7f070010 -int integer abc_max_action_buttons 0x7f090000 -int layout abc_action_bar_decor 0x7f030000 -int layout abc_action_bar_decor_include 0x7f030001 -int layout abc_action_bar_decor_overlay 0x7f030002 -int layout abc_action_bar_home 0x7f030003 -int layout abc_action_bar_tab 0x7f030004 -int layout abc_action_bar_tabbar 0x7f030005 -int layout abc_action_bar_title_item 0x7f030006 -int layout abc_action_bar_view_list_nav_layout 0x7f030007 -int layout abc_action_menu_item_layout 0x7f030008 -int layout abc_action_menu_layout 0x7f030009 -int layout abc_action_mode_bar 0x7f03000a -int layout abc_action_mode_close_item 0x7f03000b -int layout abc_activity_chooser_view 0x7f03000c -int layout abc_activity_chooser_view_include 0x7f03000d -int layout abc_activity_chooser_view_list_item 0x7f03000e -int layout abc_expanded_menu_layout 0x7f03000f -int layout abc_list_menu_item_checkbox 0x7f030010 -int layout abc_list_menu_item_icon 0x7f030011 -int layout abc_list_menu_item_layout 0x7f030012 -int layout abc_list_menu_item_radio 0x7f030013 -int layout abc_popup_menu_item_layout 0x7f030014 -int layout abc_screen 0x7f030015 -int layout abc_search_dropdown_item_icons_2line 0x7f030016 -int layout abc_search_view 0x7f030017 -int layout activity_main 0x7f030018 -int layout list_item 0x7f030019 -int layout mr_media_route_chooser_dialog 0x7f03001a -int layout mr_media_route_controller_dialog 0x7f03001b -int layout mr_media_route_list_item 0x7f03001c -int layout route_fragment 0x7f03001d -int layout server_fragment 0x7f03001e -int layout support_simple_spinner_dropdown_item 0x7f03001f -int string abc_action_bar_home_description 0x7f0a0000 -int string abc_action_bar_up_description 0x7f0a0001 -int string abc_action_menu_overflow_description 0x7f0a0002 -int string abc_action_mode_done 0x7f0a0003 -int string abc_activity_chooser_view_see_all 0x7f0a0004 -int string abc_activitychooserview_choose_application 0x7f0a0005 -int string abc_searchview_description_clear 0x7f0a0006 -int string abc_searchview_description_query 0x7f0a0007 -int string abc_searchview_description_search 0x7f0a0008 -int string abc_searchview_description_submit 0x7f0a0009 -int string abc_searchview_description_voice 0x7f0a000a -int string abc_shareactionprovider_share_with 0x7f0a000b -int string abc_shareactionprovider_share_with_application 0x7f0a000c -int string album_art 0x7f0a000d -int string app_name 0x7f0a000e -int string auto_enable_wifi 0x7f0a000f -int string device_list_empty 0x7f0a0010 -int string dont_show_dialog_again 0x7f0a0011 -int string exit_renderer 0x7f0a0012 -int string folder_list_etmpy 0x7f0a0013 -int string mr_media_route_button_content_description 0x7f0a0014 -int string mr_media_route_chooser_searching 0x7f0a0015 -int string mr_media_route_chooser_title 0x7f0a0016 -int string mr_media_route_controller_disconnect 0x7f0a0017 -int string mr_system_route_name 0x7f0a0018 -int string mr_user_route_category_name 0x7f0a0019 -int string next 0x7f0a001a -int string pause 0x7f0a001b -int string play 0x7f0a001c -int string playlist_empty 0x7f0a001d -int string previous 0x7f0a001e -int string repeat 0x7f0a001f -int string route_description 0x7f0a0020 -int string route_list_empty 0x7f0a0021 -int string select_route 0x7f0a0022 -int string shuffle 0x7f0a0023 -int string title_route 0x7f0a0024 -int string title_server 0x7f0a0025 -int string warning_wifi_not_connected 0x7f0a0026 -int style AppBaseTheme 0x7f0b0000 -int style AppTheme 0x7f0b0001 -int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0002 -int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b0003 -int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b0004 -int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b0005 -int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0006 -int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b0007 -int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0008 -int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0009 -int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b000a -int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b000b -int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b000c -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b000d -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b000e -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b000f -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0010 -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0011 -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0012 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0013 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0014 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0015 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0016 -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0017 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0018 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0019 -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001a -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001b -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b001c -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b001d -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b001e -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b001f -int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0020 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0021 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0022 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0023 -int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0024 -int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0025 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0026 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0027 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0028 -int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0029 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b002a -int style Theme_AppCompat 0x7f0b002b -int style Theme_AppCompat_Base_CompactMenu 0x7f0b002c -int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b002d -int style Theme_AppCompat_CompactMenu 0x7f0b002e -int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b002f -int style Theme_AppCompat_Light 0x7f0b0030 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0031 -int style Theme_Base 0x7f0b0032 -int style Theme_Base_AppCompat 0x7f0b0033 -int style Theme_Base_AppCompat_Light 0x7f0b0034 -int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0035 -int style Theme_Base_Light 0x7f0b0036 -int style Theme_MediaRouter 0x7f0b0037 -int style Theme_MediaRouter_Light 0x7f0b0038 -int style Widget_AppCompat_ActionBar 0x7f0b0039 -int style Widget_AppCompat_ActionBar_Solid 0x7f0b003a -int style Widget_AppCompat_ActionBar_TabBar 0x7f0b003b -int style Widget_AppCompat_ActionBar_TabText 0x7f0b003c -int style Widget_AppCompat_ActionBar_TabView 0x7f0b003d -int style Widget_AppCompat_ActionButton 0x7f0b003e -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b003f -int style Widget_AppCompat_ActionButton_Overflow 0x7f0b0040 -int style Widget_AppCompat_ActionMode 0x7f0b0041 -int style Widget_AppCompat_ActivityChooserView 0x7f0b0042 -int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0043 -int style Widget_AppCompat_Base_ActionBar 0x7f0b0044 -int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b0045 -int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0046 -int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b0047 -int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048 -int style Widget_AppCompat_Base_ActionButton 0x7f0b0049 -int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b004a -int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b004b -int style Widget_AppCompat_Base_ActionMode 0x7f0b004c -int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b004d -int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b004e -int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b004f -int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b0050 -int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0051 -int style Widget_AppCompat_Base_PopupMenu 0x7f0b0052 -int style Widget_AppCompat_Base_ProgressBar 0x7f0b0053 -int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0054 -int style Widget_AppCompat_Base_Spinner 0x7f0b0055 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0056 -int style Widget_AppCompat_Light_ActionBar 0x7f0b0057 -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0058 -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0059 -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b005a -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b005b -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b005c -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b005d -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b005e -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b005f -int style Widget_AppCompat_Light_ActionButton 0x7f0b0060 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b0061 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0062 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0063 -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0064 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0065 -int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b0066 -int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b0067 -int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b0068 -int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0069 -int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b006a -int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b006b -int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b006c -int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b006d -int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b006e -int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b006f -int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0070 -int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0071 -int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b0072 -int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0073 -int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074 -int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b0075 -int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0076 -int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0077 -int style Widget_AppCompat_Light_Base_Spinner 0x7f0b0078 -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0079 -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b007a -int style Widget_AppCompat_Light_PopupMenu 0x7f0b007b -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b007c -int style Widget_AppCompat_ListView_DropDown 0x7f0b007d -int style Widget_AppCompat_ListView_Menu 0x7f0b007e -int style Widget_AppCompat_PopupMenu 0x7f0b007f -int style Widget_AppCompat_ProgressBar 0x7f0b0080 -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0081 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0082 -int style Widget_MediaRouter_Light_MediaRouteButton 0x7f0b0083 -int style Widget_MediaRouter_MediaRouteButton 0x7f0b0084 -int[] styleable ActionBar { 0x7f010020, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 } -int styleable ActionBar_background 10 -int styleable ActionBar_backgroundSplit 12 -int styleable ActionBar_backgroundStacked 11 -int styleable ActionBar_customNavigationLayout 13 -int styleable ActionBar_displayOptions 3 -int styleable ActionBar_divider 9 -int styleable ActionBar_height 0 -int styleable ActionBar_homeLayout 14 -int styleable ActionBar_icon 7 -int styleable ActionBar_indeterminateProgressStyle 16 -int styleable ActionBar_itemPadding 18 -int styleable ActionBar_logo 8 -int styleable ActionBar_navigationMode 2 -int styleable ActionBar_progressBarPadding 17 -int styleable ActionBar_progressBarStyle 15 -int styleable ActionBar_subtitle 4 -int styleable ActionBar_subtitleTextStyle 6 -int styleable ActionBar_title 1 -int styleable ActionBar_titleTextStyle 5 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionBarWindow { 0x7f010054, 0x7f010055, 0x7f010056 } -int styleable ActionBarWindow_windowActionBar 0 -int styleable ActionBarWindow_windowActionBarOverlay 1 -int styleable ActionBarWindow_windowSplitActionBar 2 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f010020, 0x7f010046, 0x7f010047, 0x7f01004b, 0x7f01004d } -int styleable ActionMode_background 3 -int styleable ActionMode_backgroundSplit 4 -int styleable ActionMode_height 0 -int styleable ActionMode_subtitleTextStyle 2 -int styleable ActionMode_titleTextStyle 1 -int[] styleable ActivityChooserView { 0x7f010057, 0x7f010058 } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 -int styleable ActivityChooserView_initialActivityCount 0 -int[] styleable CompatTextView { 0x7f010059 } -int styleable CompatTextView_textAllCaps 0 -int[] styleable LinearLayoutICS { 0x7f01004a, 0x7f01005a, 0x7f01005b } -int styleable LinearLayoutICS_divider 0 -int styleable LinearLayoutICS_dividerPadding 2 -int styleable LinearLayoutICS_showDividers 1 -int[] styleable MediaRouteButton { 0x0101013f, 0x01010140, 0x7f01005c } -int styleable MediaRouteButton_android_minHeight 1 -int styleable MediaRouteButton_android_minWidth 0 -int styleable MediaRouteButton_externalRouteEnabledDrawable 2 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_checkableBehavior 5 -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_visible 2 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060 } -int styleable MenuItem_actionLayout 14 -int styleable MenuItem_actionProviderClass 16 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_showAsAction 13 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 } -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_preserveIconSpacing 7 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_windowAnimationStyle 0 -int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f010061, 0x7f010062 } -int styleable SearchView_android_imeOptions 2 -int styleable SearchView_android_inputType 1 -int styleable SearchView_android_maxWidth 0 -int styleable SearchView_iconifiedByDefault 3 -int styleable SearchView_queryHint 4 -int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066 } -int styleable Spinner_android_dropDownHorizontalOffset 4 -int styleable Spinner_android_dropDownSelector 1 -int styleable Spinner_android_dropDownVerticalOffset 5 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_android_gravity 0 -int styleable Spinner_android_popupBackground 2 -int styleable Spinner_disableChildrenWhenDisabled 9 -int styleable Spinner_popupPromptView 8 -int styleable Spinner_prompt 6 -int styleable Spinner_spinnerMode 7 -int[] styleable Theme { 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c } -int styleable Theme_actionDropDownStyle 0 -int styleable Theme_dropdownListPreferredItemHeight 1 -int styleable Theme_listChoiceBackgroundIndicator 5 -int styleable Theme_panelMenuListTheme 4 -int styleable Theme_panelMenuListWidth 3 -int styleable Theme_popupMenuStyle 2 -int[] styleable View { 0x010100da, 0x7f01006d, 0x7f01006e } -int styleable View_android_focusable 0 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 1