From dd557cb455064cbb038d3cdfbeaa30f19c223376 Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Fri, 9 May 2014 13:02:49 +0200 Subject: [PATCH] cleaned up PluginQR, added main screen --- .../AndroidManifest.xml | 1 + .../res/values-w820dp/dimens.xml | 10 + .../res/values/dimens.xml | 7 + .../res/values/strings.xml | 1 + .../pluginsdk/AccessManager.java | 40 + .../keepass2android/pluginsdk/Strings.java | 6 + src/java/PluginQR/AndroidManifest.xml | 3 +- .../gen/keepass2android/plugin/qr/R.java | 3469 ++--------------- .../gen/keepass2android/pluginsdk/R.java | 620 +-- .../PluginQR/res/layout/fragment_main.xml | 46 +- src/java/PluginQR/res/menu/capture.xml | 15 - src/java/PluginQR/res/values-ca/strings.xml | 1 - src/java/PluginQR/res/values-cs/strings.xml | 1 - src/java/PluginQR/res/values-da/strings.xml | 2 +- src/java/PluginQR/res/values-de/strings.xml | 2 +- src/java/PluginQR/res/values-el/strings.xml | 2 +- src/java/PluginQR/res/values-es/strings.xml | 2 +- src/java/PluginQR/res/values-fi/strings.xml | 2 +- src/java/PluginQR/res/values-fr/strings.xml | 2 +- src/java/PluginQR/res/values-hu/strings.xml | 2 +- src/java/PluginQR/res/values-id/strings.xml | 2 +- src/java/PluginQR/res/values-it/strings.xml | 2 +- src/java/PluginQR/res/values-nl/strings.xml | 2 +- src/java/PluginQR/res/values-pl/strings.xml | 2 +- src/java/PluginQR/res/values-pt/strings.xml | 2 +- src/java/PluginQR/res/values-ro/strings.xml | 2 +- src/java/PluginQR/res/values-sk/strings.xml | 2 +- src/java/PluginQR/res/values-sl/strings.xml | 2 +- src/java/PluginQR/res/values-sv/strings.xml | 2 +- src/java/PluginQR/res/values/strings.xml | 3 - src/java/PluginQR/res/values/stringsqr.xml | 7 +- src/java/PluginQR/res/xml/preferences.xml | 38 +- .../zxing/client/android/CaptureActivity.java | 48 +- .../zxing/client/android/HelpActivity.java | 68 - .../android/clipboard/ClipboardInterface.java | 61 - .../client/android/history/DBHelper.java | 60 - .../android/history/HistoryActivity.java | 162 - .../client/android/history/HistoryItem.java | 50 - .../android/history/HistoryItemAdapter.java | 71 - .../android/history/HistoryManager.java | 363 -- .../supplement/AmazonInfoRetriever.java | 165 - .../supplement/BookResultInfoRetriever.java | 105 - .../ProductResultInfoRetriever.java | 82 - .../supplement/SupplementalInfoRetriever.java | 192 - .../result/supplement/TitleRetriever.java | 68 - .../supplement/URIResultInfoRetriever.java | 63 - .../zxing/client/android/share/AppInfo.java | 65 - .../android/share/AppPickerActivity.java | 63 - .../client/android/share/BookmarkAdapter.java | 82 - .../android/share/BookmarkPickerActivity.java | 85 - .../android/share/LoadPackagesAsyncTask.java | 114 - .../client/android/share/ShareActivity.java | 298 -- .../plugin/qr/MainActivity.java | 85 +- 53 files changed, 464 insertions(+), 6186 deletions(-) create mode 100644 src/java/Keepass2AndroidPluginSDK/res/values-w820dp/dimens.xml create mode 100644 src/java/Keepass2AndroidPluginSDK/res/values/dimens.xml delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/HelpActivity.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/clipboard/ClipboardInterface.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/history/DBHelper.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/history/HistoryActivity.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/history/HistoryItem.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/history/HistoryItemAdapter.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/history/HistoryManager.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/result/supplement/AmazonInfoRetriever.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/result/supplement/BookResultInfoRetriever.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/result/supplement/ProductResultInfoRetriever.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/result/supplement/SupplementalInfoRetriever.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/result/supplement/TitleRetriever.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/result/supplement/URIResultInfoRetriever.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/share/AppInfo.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/share/AppPickerActivity.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/share/BookmarkAdapter.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/share/BookmarkPickerActivity.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/share/LoadPackagesAsyncTask.java delete mode 100644 src/java/PluginQR/src/com/google/zxing/client/android/share/ShareActivity.java diff --git a/src/java/Keepass2AndroidPluginSDK/AndroidManifest.xml b/src/java/Keepass2AndroidPluginSDK/AndroidManifest.xml index dae30b7c..91aef12e 100644 --- a/src/java/Keepass2AndroidPluginSDK/AndroidManifest.xml +++ b/src/java/Keepass2AndroidPluginSDK/AndroidManifest.xml @@ -1,3 +1,4 @@ + + + + 64dp + + diff --git a/src/java/Keepass2AndroidPluginSDK/res/values/dimens.xml b/src/java/Keepass2AndroidPluginSDK/res/values/dimens.xml new file mode 100644 index 00000000..55c1e590 --- /dev/null +++ b/src/java/Keepass2AndroidPluginSDK/res/values/dimens.xml @@ -0,0 +1,7 @@ + + + + 16dp + 16dp + + diff --git a/src/java/Keepass2AndroidPluginSDK/res/values/strings.xml b/src/java/Keepass2AndroidPluginSDK/res/values/strings.xml index dd1d9aaf..5f5b7531 100644 --- a/src/java/Keepass2AndroidPluginSDK/res/values/strings.xml +++ b/src/java/Keepass2AndroidPluginSDK/res/values/strings.xml @@ -1,3 +1,4 @@ + Keepass2Android Plugin SDK diff --git a/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/AccessManager.java b/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/AccessManager.java index c43d3031..2aaab407 100644 --- a/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/AccessManager.java +++ b/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/AccessManager.java @@ -3,6 +3,8 @@ package keepass2android.pluginsdk; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.ArrayList; +import java.util.HashSet; +import java.util.Set; import org.json.JSONArray; import org.json.JSONException; @@ -11,6 +13,8 @@ import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; +import android.content.pm.PackageInfo; +import android.content.pm.PackageManager; import android.preference.PreferenceManager; import android.text.TextUtils; import android.util.Log; @@ -20,6 +24,7 @@ import android.widget.PopupMenu; public class AccessManager { + private static final String _tag = "Kp2aPluginSDK"; private static final String PREF_KEY_SCOPE = "scope"; private static final String PREF_KEY_TOKEN = "token"; @@ -64,6 +69,12 @@ public class AccessManager edit.commit(); Log.d(_tag, "stored access token " + accessToken.substring(0, 4)+"... for "+scopes.size()+" scopes ("+scopesString+")."); + SharedPreferences hostPrefs = ctx.getSharedPreferences("KP2A.PluginAccess.hosts", Context.MODE_PRIVATE); + if (!hostPrefs.contains(hostPackage)) + { + hostPrefs.edit().putString(hostPackage, "").commit(); + } + } @@ -143,8 +154,37 @@ public class AccessManager edit.commit(); } + + SharedPreferences hostPrefs = ctx.getSharedPreferences("KP2A.PluginAccess.hosts", Context.MODE_PRIVATE); + if (hostPrefs.contains(hostPackage)) + { + hostPrefs.edit().remove(hostPackage).commit(); + } } + + public static Set getAllHostPackages(Context ctx) + { + SharedPreferences prefs = ctx.getSharedPreferences("KP2A.PluginAccess.hosts", Context.MODE_PRIVATE); + Set result = new HashSet(); + for (String host: prefs.getAll().keySet()) + { + try + { + PackageInfo info = ctx.getPackageManager().getPackageInfo(host, PackageManager.GET_META_DATA); + //if we get here, the package is still there + result.add(host); + } + catch (PackageManager.NameNotFoundException e) + { + //host gone. ignore. + } + } + return result; + + } + + /** * Returns a valid access token or throws PluginAccessException diff --git a/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/Strings.java b/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/Strings.java index 9cdd2d5e..ac0fdb25 100644 --- a/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/Strings.java +++ b/src/java/Keepass2AndroidPluginSDK/src/keepass2android/pluginsdk/Strings.java @@ -46,6 +46,12 @@ public class Strings { */ public static final String ACTION_REVOKE_ACCESS = "keepass2android.ACTION_REVOKE_ACCESS"; + + /** + * Action for startActivity(). Opens an activity in the Plugin Host to edit the plugin settings (i.e. enable it) + */ + public static final String ACTION_EDIT_PLUGIN_SETTINGS = "keepass2android.ACTION_EDIT_PLUGIN_SETTINGS"; + /** * Action sent from KP2A to the plugin to indicate that an entry was opened. * The Intent contains the full entry data. diff --git a/src/java/PluginQR/AndroidManifest.xml b/src/java/PluginQR/AndroidManifest.xml index 3b349c3e..233d97bf 100644 --- a/src/java/PluginQR/AndroidManifest.xml +++ b/src/java/PluginQR/AndroidManifest.xml @@ -64,10 +64,11 @@ android:label="Capture" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden" - android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:windowSoftInputMode="stateAlwaysHidden"> + diff --git a/src/java/PluginQR/gen/keepass2android/plugin/qr/R.java b/src/java/PluginQR/gen/keepass2android/plugin/qr/R.java index 8705a9a9..dd3c564f 100644 --- a/src/java/PluginQR/gen/keepass2android/plugin/qr/R.java +++ b/src/java/PluginQR/gen/keepass2android/plugin/qr/R.java @@ -8,967 +8,33 @@ package keepass2android.plugin.qr; 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 array { - public static final int country_codes=0x7f0e0000; - public static final int preferences_front_light_options=0x7f0e0002; - public static final int preferences_front_light_values=0x7f0e0001; + public static final int country_codes=0x7f090000; + public static final int preferences_front_light_options=0x7f090002; + public static final int preferences_front_light_values=0x7f090001; } public static final class attr { - /** Custom divider drawable to use for elements in 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 actionBarDivider=0x7f01000f; - /** Custom item state list drawable background for action bar 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 actionBarItemBackground=0x7f010010; - /** Size of the Action Bar, including the contextual - bar used to present Action Modes. -

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=0x7f01000e; - /** Reference to a theme that should be used to inflate widgets - and layouts destined for the action bar. Most of the time - this will be a reference to the current theme, but when - the action bar has a significantly different contrast - profile than the rest of the activity the difference - can become important. If this is set to @null the current - theme will be used. -

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=0x7f01000c; - /** Reference to a style 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 actionBarStyle=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 actionBarTabBarStyle=0x7f010008; - /** Default style for tabs within an 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 actionBarTabStyle=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 actionBarTabTextStyle=0x7f010009; - /** Reference to a theme that should be used to inflate widgets - and layouts destined for the action bar. Most of the time - this will be a reference to the current theme, but when - the action bar has a significantly different contrast - profile than the rest of the activity the difference - can become important. If this is set to @null the current - theme will be used. -

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=0x7f01000d; - /** Default action button 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 actionButtonStyle=0x7f010016; - /** 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=0x7f010047; - /** 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=0x7f01004e; - /** TextAppearance style that will be applied to text that - appears within action menu 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 actionMenuTextAppearance=0x7f010011; - /** Color for text that appears within action menu items. -

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=0x7f010012; - /** Background drawable to use for action mode UI -

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=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 actionModeCloseButtonStyle=0x7f01003b; - /** Drawable to use for the close action mode button -

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=0x7f01003e; - /** Drawable to use for the Copy action button in Contextual 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 actionModeCopyDrawable=0x7f010040; - /** Drawable to use for the Cut action button in Contextual 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 actionModeCutDrawable=0x7f01003f; - /** Drawable to use for the Find action button in WebView selection action modes -

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=0x7f010044; - /** Drawable to use for the Paste action button in Contextual 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 actionModePasteDrawable=0x7f010041; - /** PopupWindow style to use for action modes when showing as a window overlay. -

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=0x7f010046; - /** Drawable to use for the Select all action button in Contextual 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 actionModeSelectAllDrawable=0x7f010042; - /** Drawable to use for the Share action button in WebView selection action modes -

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=0x7f010043; - /** Background drawable to use for action mode UI in the lower split 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 actionModeSplitBackground=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 actionModeStyle=0x7f01003a; - /** Drawable to use for the Web Search action button in WebView selection action modes -

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=0x7f010045; - /**

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=0x7f01000a; - /** 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=0x7f010050; - /** 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=0x7f01004f; - /** Default ActivityChooserView 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 activityChooserViewStyle=0x7f01006c; - /** 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=0x7f01002f; - /** 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=0x7f010031; - /** 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=0x7f010030; - /** A style that may be applied to Buttons placed within a - LinearLayout with the style buttonBarStyle to form a button 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 buttonBarButtonStyle=0x7f010018; - /** A style that may be applied to horizontal LinearLayouts - to form a button 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 buttonBarStyle=0x7f010017; - /** 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=0x7f010032; - /** 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=0x7f010054; - /** Options affecting how the action bar is displayed. -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - - -
ConstantValueDescription
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- */ - public static final int displayOptions=0x7f010028; - /** 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". - */ - public static final int divider=0x7f01002e; - /** A drawable that may be used as a horizontal divider between visual elements. -

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=0x7f01001b; - /** 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=0x7f010056; - /** A drawable that may be used as a vertical divider between visual elements. -

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=0x7f01001a; - /** ListPopupWindow comaptibility -

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=0x7f010021; - /** 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=0x7f010048; - /** 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=0x7f01006b; - /**

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=0x7f010026; - /** Specifies a drawable to use for the 'home as up' indicator. -

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=0x7f010013; - /** 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=0x7f010033; - /** 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=0x7f01002c; - /** 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=0x7f01005a; - /** 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=0x7f010035; - /** 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=0x7f01006a; - /** Specifies whether the theme is light, otherwise it is dark. -

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=0x7f010059; - /** 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=0x7f010037; - /** 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=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 listPopupWindowStyle=0x7f010022; - /** The preferred list item 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. - */ - public static final int listPreferredItemHeight=0x7f01001c; - /** A larger, more robust list item 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. - */ - public static final int listPreferredItemHeightLarge=0x7f01001e; - /** A smaller, sleeker list item 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. - */ - public static final int listPreferredItemHeightSmall=0x7f01001d; - /** The preferred padding along the left edge of list items. -

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=0x7f01001f; - /** The preferred padding along the right edge of list items. -

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=0x7f010020; - /** 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=0x7f01002d; - /** The type of navigation to use. -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0 Normal static title text
listMode1 The action bar will use a selection list for navigation.
tabMode2 The action bar will use a series of horizontal tabs for navigation.
- */ - public static final int navigationMode=0x7f010027; - /** 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. - */ - public static final int paddingEnd=0x7f010039; - /** 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=0x7f010038; - /** 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=0x7f01004b; - /** 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=0x7f01004a; - /** 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=0x7f010049; - /** 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=0x7f010053; - /** 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=0x7f010036; - /** 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=0x7f010034; - /** 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=0x7f010051; - /** 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=0x7f01005b; - /** SearchView dropdown background -

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=0x7f01005c; - /** The list item height for search results. @hide -

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=0x7f010065; - /** SearchView AutoCompleteTextView 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 searchViewAutoCompleteTextView=0x7f010069; - /** SearchView close button 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 searchViewCloseIcon=0x7f01005d; - /** SearchView query refinement 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 searchViewEditQuery=0x7f010061; - /** SearchView query refinement icon background -

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=0x7f010062; - /** SearchView Go button 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 searchViewGoIcon=0x7f01005e; - /** SearchView Search 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 searchViewSearchIcon=0x7f01005f; - /** SearchView text field background for the left section -

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=0x7f010063; - /** SearchView text field background for the right section -

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=0x7f010064; - /** SearchView Voice button 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 searchViewVoiceIcon=0x7f010060; - /** A style that may be applied to buttons or other selectable items - that should react to pressed and focus states, but that do not - have a clear visual border along the edges. -

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=0x7f010019; - /** How this item should display in the Action Bar, if present. -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - - -
ConstantValueDescription
never0 Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always".
ifRoom1 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".
always2 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".
withText4 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.
collapseActionView8 This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container.
- */ - public static final int showAsAction=0x7f01004d; - /** Setting for which dividers to show. -

Must be one or more (separated by '|') of the following constant values.

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- */ - public static final int showDividers=0x7f010055; - /** Default Spinner 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 spinnerDropDownItemStyle=0x7f010058; - /** Display mode for spinner options. -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
dialog0 Spinner options will be presented to the user as a dialog window.
dropdown1 Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself.
- */ - public static final int spinnerMode=0x7f010052; - /** Default Spinner 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 spinnerStyle=0x7f010057; - /** 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=0x7f010029; - /** 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=0x7f01002b; - /** 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=0x7f01006d; - /** Text color, typeface, size, and style for the text inside of a popup menu. -

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=0x7f010014; - /** The preferred TextAppearance for the primary text of 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 textAppearanceListItem=0x7f010023; - /** The preferred TextAppearance for the primary text of small 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 textAppearanceListItemSmall=0x7f010024; - /** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -

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=0x7f010067; - /** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -

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=0x7f010066; - /** Text color, typeface, size, and style for small text inside of a popup menu. -

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=0x7f010015; - /** Text color for urls in search suggestions, used by things like global search -

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=0x7f010068; - /**

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=0x7f010025; - /** 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=0x7f01002a; - /**

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=0x7f010000; - /**

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=0x7f010001; - /** A fixed height for the window along the major axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 windowFixedHeightMajor=0x7f010006; - /** A fixed height for the window along the minor axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 windowFixedHeightMinor=0x7f010004; - /** A fixed width for the window along the major axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 windowFixedWidthMajor=0x7f010003; - /** A fixed width for the window along the minor axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 windowFixedWidthMinor=0x7f010005; - /**

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=0x7f010002; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080000; - public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080001; - /** Whether action menu items should be displayed in ALLCAPS or not. - Defaults to true. If this is not appropriate for specific locales - it should be disabled in that locale's resources. - */ - public static final int abc_config_actionMenuItemAllCaps=0x7f080005; - /** Whether action menu items should obey the "withText" showAsAction - flag. This may be set to false for situations where space is - extremely limited. - Whether action menu items should obey the "withText" showAsAction. - This may be set to false for situations where space is - extremely limited. - */ - public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080004; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080003; - public static final int abc_split_action_bar_is_narrow=0x7f080002; } public static final class color { - public static final int abc_search_url_text_holo=0x7f09000e; - public static final int abc_search_url_text_normal=0x7f090000; - public static final int abc_search_url_text_pressed=0x7f090002; - public static final int abc_search_url_text_selected=0x7f090001; - public static final int contents_text=0x7f090003; - public static final int encode_view=0x7f090004; - public static final int possible_result_points=0x7f090005; + public static final int contents_text=0x7f0a0000; + public static final int encode_view=0x7f0a0001; + public static final int possible_result_points=0x7f0a0002; /** Android standard ICS color */ - public static final int result_minor_text=0x7f090006; - public static final int result_points=0x7f090007; + public static final int result_minor_text=0x7f0a0003; + public static final int result_points=0x7f0a0004; /** Android standard ICS color */ - public static final int result_text=0x7f090008; - public static final int result_view=0x7f090009; - public static final int status_text=0x7f09000a; - public static final int transparent=0x7f09000b; - public static final int viewfinder_laser=0x7f09000c; + public static final int result_text=0x7f0a0005; + public static final int result_view=0x7f0a0006; + public static final int status_text=0x7f0a0007; + public static final int transparent=0x7f0a0008; + public static final int viewfinder_laser=0x7f0a0009; /** Android standard ICS color */ - public static final int viewfinder_mask=0x7f09000d; + public static final int viewfinder_mask=0x7f0a000a; } public static final class dimen { - /** Default height of an action bar. - Default height of an action bar. - Default height of an action bar. - Default height of an action bar. - Default height of an action bar. - */ - public static final int abc_action_bar_default_height=0x7f0a0002; - /** Vertical padding around action bar icons. - Vertical padding around action bar icons. - Vertical padding around action bar icons. - Vertical padding around action bar icons. - Vertical padding around action bar icons. - */ - public static final int abc_action_bar_icon_vertical_padding=0x7f0a0003; - /** Size of the indeterminate Progress Bar - Size of the indeterminate Progress Bar - */ - public static final int abc_action_bar_progress_bar_size=0x7f0a000a; - /** Maximum height for a stacked tab bar as part of an action bar - */ - public static final int abc_action_bar_stacked_max_height=0x7f0a0009; - /** Maximum width for a stacked action bar tab. This prevents - action bar tabs from becoming too wide on a wide screen when only - a few are present. - */ - public static final int abc_action_bar_stacked_tab_max_width=0x7f0a0001; - /** Bottom margin for action bar subtitles - Bottom margin for action bar subtitles - Bottom margin for action bar subtitles - Bottom margin for action bar subtitles - Bottom margin for action bar subtitles - */ - public static final int abc_action_bar_subtitle_bottom_margin=0x7f0a0007; - /** Text size for action bar subtitles - Text size for action bar subtitles - Text size for action bar subtitles - Text size for action bar subtitles - Text size for action bar subtitles - */ - public static final int abc_action_bar_subtitle_text_size=0x7f0a0005; - /** Top margin for action bar subtitles - Top margin for action bar subtitles - Top margin for action bar subtitles - Top margin for action bar subtitles - Top margin for action bar subtitles - */ - public static final int abc_action_bar_subtitle_top_margin=0x7f0a0006; - /** Text size for action bar titles - Text size for action bar titles - Text size for action bar titles - Text size for action bar titles - Text size for action bar titles - */ - public static final int abc_action_bar_title_text_size=0x7f0a0004; - /** Minimum width for an action button in the menu area of an action bar - Minimum width for an action button in the menu area of an action bar - Minimum width for an action button in the menu area of an action bar - */ - public static final int abc_action_button_min_width=0x7f0a0008; - /** The maximum width we would prefer dialogs to be. 0 if there is no - maximum (let them grow as large as the screen). Actual values are - specified for -large and -xlarge configurations. - see comment in values/config.xml - see comment in values/config.xml - */ - public static final int abc_config_prefDialogWidth=0x7f0a0000; - /** Width of the icon in a dropdown list - */ - public static final int abc_dropdownitem_icon_width=0x7f0a0010; - /** Text padding for dropdown items - */ - public static final int abc_dropdownitem_text_padding_left=0x7f0a000e; - public static final int abc_dropdownitem_text_padding_right=0x7f0a000f; - public static final int abc_panel_menu_list_width=0x7f0a000b; - /** Preferred width of the search view. - */ - public static final int abc_search_view_preferred_width=0x7f0a000d; - /** Minimum width of the search view text entry area. - Minimum width of the search view text entry area. - Minimum width of the search view text entry area. - Minimum width of the search view text entry area. - */ - public static final int abc_search_view_text_min_width=0x7f0a000c; /** Default screen margins, per the Android Design guidelines. Example customization of dimensions originally defined in res/values/dimens.xml @@ -982,496 +48,235 @@ containing a value of this type. Default screen margins, per the Android Design guidelines. */ - public static final int activity_horizontal_margin=0x7f0a0015; - public static final int activity_vertical_margin=0x7f0a0016; - /** The platform's desired fixed height for a dialog along the major axis - (the screen is in portrait). This may be either a fraction or a dimension. - The platform's desired fixed height for a dialog along the major axis - (the screen is in portrait). This may be either a fraction or a dimension. - The platform's desired fixed height for a dialog along the major axis - (the screen is in portrait). This may be either a fraction or a dimension. - */ - public static final int dialog_fixed_height_major=0x7f0a0013; - /** The platform's desired fixed height for a dialog along the minor axis - (the screen is in landscape). This may be either a fraction or a dimension. - The platform's desired fixed height for a dialog along the minor axis - (the screen is in landscape). This may be either a fraction or a dimension. - The platform's desired fixed height for a dialog along the minor axis - (the screen is in landscape). This may be either a fraction or a dimension. - */ - public static final int dialog_fixed_height_minor=0x7f0a0014; - /** The platform's desired fixed width for a dialog along the major axis - (the screen is in landscape). This may be either a fraction or a dimension. - The platform's desired fixed width for a dialog along the major axis - (the screen is in landscape). This may be either a fraction or a dimension. - The platform's desired fixed width for a dialog along the major axis - (the screen is in landscape). This may be either a fraction or a dimension. - */ - public static final int dialog_fixed_width_major=0x7f0a0011; - /** The platform's desired fixed width for a dialog along the minor axis - (the screen is in portrait). This may be either a fraction or a dimension. - The platform's desired fixed width for a dialog along the minor axis - (the screen is in portrait). This may be either a fraction or a dimension. - The platform's desired fixed width for a dialog along the minor axis - (the screen is in portrait). This may be either a fraction or a dimension. - */ - public static final int dialog_fixed_width_minor=0x7f0a0012; - public static final int half_padding=0x7f0a0018; - public static final int standard_padding=0x7f0a0017; + public static final int activity_horizontal_margin=0x7f060000; + public static final int activity_vertical_margin=0x7f060001; + public static final int half_padding=0x7f060003; + public static final int standard_padding=0x7f060002; } 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_launcher=0x7f020057; - public static final int launcher_icon=0x7f020058; - public static final int qrcode=0x7f020059; - public static final int share_via_barcode=0x7f02005a; + public static final int ic_launcher=0x7f020000; + public static final int launcher_icon=0x7f020001; + public static final int qrcode=0x7f020002; + public static final int share_via_barcode=0x7f020003; } public static final class id { - public static final int action_bar=0x7f070023; - public static final int action_bar_activity_content=0x7f070015; - public static final int action_bar_container=0x7f070022; - public static final int action_bar_overlay_layout=0x7f070026; - public static final int action_bar_root=0x7f070021; - public static final int action_bar_subtitle=0x7f07002a; - public static final int action_bar_title=0x7f070029; - public static final int action_context_bar=0x7f070024; - public static final int action_menu_divider=0x7f070016; - public static final int action_menu_presenter=0x7f070017; - public static final int action_mode_close_button=0x7f07002b; - public static final int action_settings=0x7f070070; - public static final int activity_chooser_view_content=0x7f07002c; - public static final int always=0x7f07000b; - public static final int app_picker_list_item_icon=0x7f070044; - public static final int app_picker_list_item_label=0x7f070045; - public static final int barcode_image_view=0x7f07004b; - public static final int beginning=0x7f070011; - public static final int bookmark_title=0x7f070046; - public static final int bookmark_url=0x7f070047; - public static final int cbIncludeLabel=0x7f070059; - public static final int checkbox=0x7f070034; - public static final int collapseActionView=0x7f07000d; - public static final int container=0x7f070043; - public static final int contents_supplement_text_view=0x7f070052; - public static final int contents_text_view=0x7f070051; - public static final int decode=0x7f07001a; - public static final int decode_failed=0x7f07001b; - public static final int decode_succeeded=0x7f07001c; - public static final int default_activity_button=0x7f07002f; - public static final int dialog=0x7f07000e; - public static final int disableHome=0x7f070008; - public static final int dropdown=0x7f07000f; - public static final int edit_query=0x7f070037; - public static final int end=0x7f070013; - public static final int expand_activities_button=0x7f07002d; - public static final int expanded_image=0x7f07005b; - public static final int expanded_menu=0x7f070033; - public static final int format_text_view=0x7f07004c; - public static final int hello=0x7f070056; - public static final int help_contents=0x7f07005c; - public static final int history_detail=0x7f07005e; - public static final int history_title=0x7f07005d; - public static final int home=0x7f070014; - public static final int homeAsUp=0x7f070005; - public static final int icon=0x7f070031; - public static final int ifRoom=0x7f07000a; - public static final int image=0x7f07002e; - public static final int image_view=0x7f070055; - public static final int launch_product_query=0x7f07001d; - public static final int listMode=0x7f070001; - public static final int list_item=0x7f070030; - public static final int menu_encode=0x7f07006d; - public static final int menu_help=0x7f07006c; - public static final int menu_history=0x7f07006a; - public static final int menu_history_clear_text=0x7f07006f; - public static final int menu_history_send=0x7f07006e; - public static final int menu_settings=0x7f07006b; - public static final int menu_share=0x7f070069; - public static final int meta_text_view=0x7f070050; - public static final int meta_text_view_label=0x7f07004f; - public static final int middle=0x7f070012; - public static final int never=0x7f070009; - public static final int none=0x7f070010; - public static final int normal=0x7f070000; - public static final int page_number_view=0x7f070062; - public static final int preview_view=0x7f070048; - public static final int progress_circular=0x7f070018; - public static final int progress_horizontal=0x7f070019; - public static final int qrView=0x7f070058; - public static final int query_button=0x7f070060; - public static final int query_text_view=0x7f07005f; - public static final int quit=0x7f07001e; - public static final int radio=0x7f070036; - public static final int restart_preview=0x7f07001f; - public static final int result_button_view=0x7f070053; - public static final int result_list_view=0x7f070061; - public static final int result_view=0x7f07004a; - public static final int return_scan_result=0x7f070020; - public static final int search_badge=0x7f070039; - public static final int search_bar=0x7f070038; - public static final int search_button=0x7f07003a; - public static final int search_close_btn=0x7f07003f; - public static final int search_edit_frame=0x7f07003b; - public static final int search_go_btn=0x7f070041; - public static final int search_mag_icon=0x7f07003c; - public static final int search_plate=0x7f07003d; - public static final int search_src_text=0x7f07003e; - public static final int search_voice_btn=0x7f070042; - public static final int share_app_button=0x7f070064; - public static final int share_bookmark_button=0x7f070065; - public static final int share_clipboard_button=0x7f070067; - public static final int share_contact_button=0x7f070066; - public static final int share_text_view=0x7f070068; - public static final int shortcut=0x7f070035; - public static final int showCustom=0x7f070007; - public static final int showHome=0x7f070004; - public static final int showTitle=0x7f070006; - public static final int snippet_view=0x7f070063; - public static final int spinner=0x7f070057; - public static final int split_action_bar=0x7f070025; - public static final int status_view=0x7f070054; - public static final int submit_area=0x7f070040; - public static final int tabMode=0x7f070002; - public static final int time_text_view=0x7f07004e; - public static final int title=0x7f070032; - public static final int top_action_bar=0x7f070027; - public static final int tvError=0x7f07005a; - public static final int type_text_view=0x7f07004d; - public static final int up=0x7f070028; - public static final int useLogo=0x7f070003; - public static final int viewfinder_view=0x7f070049; - public static final int withText=0x7f07000c; - } - public static final class integer { - /** The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - */ - public static final int abc_max_action_buttons=0x7f0b0000; + public static final int action_settings=0x7f0b0036; + public static final int app_picker_list_item_icon=0x7f0b0008; + public static final int app_picker_list_item_label=0x7f0b0009; + public static final int barcode_image_view=0x7f0b000f; + public static final int bookmark_title=0x7f0b000a; + public static final int bookmark_url=0x7f0b000b; + public static final int btnConfigPlugins=0x7f0b001a; + public static final int btnScanQRCode=0x7f0b001c; + public static final int btnShowQR=0x7f0b001b; + public static final int cbIncludeLabel=0x7f0b0021; + public static final int container=0x7f0b0007; + public static final int contents_supplement_text_view=0x7f0b0016; + public static final int contents_text_view=0x7f0b0015; + public static final int decode=0x7f0b0000; + public static final int decode_failed=0x7f0b0001; + public static final int decode_succeeded=0x7f0b0002; + public static final int expanded_image=0x7f0b0023; + public static final int format_text_view=0x7f0b0010; + public static final int help_contents=0x7f0b0024; + public static final int history_detail=0x7f0b0026; + public static final int history_title=0x7f0b0025; + public static final int image_view=0x7f0b0019; + public static final int launch_product_query=0x7f0b0003; + public static final int menu_encode=0x7f0b0033; + public static final int menu_history_clear_text=0x7f0b0035; + public static final int menu_history_send=0x7f0b0034; + public static final int menu_settings=0x7f0b0031; + public static final int menu_share=0x7f0b0032; + public static final int meta_text_view=0x7f0b0014; + public static final int meta_text_view_label=0x7f0b0013; + public static final int page_number_view=0x7f0b002a; + public static final int preview_view=0x7f0b000c; + public static final int progressBar1=0x7f0b001e; + public static final int qrView=0x7f0b0020; + public static final int query_button=0x7f0b0028; + public static final int query_text_view=0x7f0b0027; + public static final int quit=0x7f0b0004; + public static final int restart_preview=0x7f0b0005; + public static final int result_button_view=0x7f0b0017; + public static final int result_list_view=0x7f0b0029; + public static final int result_view=0x7f0b000e; + public static final int return_scan_result=0x7f0b0006; + public static final int share_app_button=0x7f0b002c; + public static final int share_bookmark_button=0x7f0b002d; + public static final int share_clipboard_button=0x7f0b002f; + public static final int share_contact_button=0x7f0b002e; + public static final int share_text_view=0x7f0b0030; + public static final int snippet_view=0x7f0b002b; + public static final int spinner=0x7f0b001f; + public static final int status_view=0x7f0b0018; + public static final int time_text_view=0x7f0b0012; + public static final int tvError=0x7f0b0022; + public static final int tvHostStatus=0x7f0b001d; + public static final int type_text_view=0x7f0b0011; + public static final int viewfinder_view=0x7f0b000d; } 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_search_dropdown_item_icons_2line=0x7f030015; - public static final int abc_search_view=0x7f030016; - public static final int abc_simple_decor=0x7f030017; - public static final int activity_main=0x7f030018; - public static final int activity_qr=0x7f030019; - public static final int app_picker_list_item=0x7f03001a; - public static final int bookmark_picker_list_item=0x7f03001b; - public static final int capture=0x7f03001c; - public static final int encode=0x7f03001d; - public static final int fragment_main=0x7f03001e; - public static final int fragment_qr=0x7f03001f; - public static final int help=0x7f030020; - public static final int history_list_item=0x7f030021; - public static final int search_book_contents=0x7f030022; - public static final int search_book_contents_header=0x7f030023; - public static final int search_book_contents_list_item=0x7f030024; - public static final int share=0x7f030025; - public static final int support_simple_spinner_dropdown_item=0x7f030026; + public static final int activity_main=0x7f030000; + public static final int activity_qr=0x7f030001; + public static final int app_picker_list_item=0x7f030002; + public static final int bookmark_picker_list_item=0x7f030003; + public static final int capture=0x7f030004; + public static final int encode=0x7f030005; + public static final int fragment_main=0x7f030006; + public static final int fragment_qr=0x7f030007; + public static final int help=0x7f030008; + public static final int history_list_item=0x7f030009; + public static final int search_book_contents=0x7f03000a; + public static final int search_book_contents_header=0x7f03000b; + public static final int search_book_contents_list_item=0x7f03000c; + public static final int share=0x7f03000d; } public static final class menu { - public static final int capture=0x7f0f0000; - public static final int encode=0x7f0f0001; - public static final int history=0x7f0f0002; - public static final int main=0x7f0f0003; - public static final int qr=0x7f0f0004; + public static final int capture=0x7f0c0000; + public static final int encode=0x7f0c0001; + public static final int history=0x7f0c0002; + public static final int main=0x7f0c0003; + public static final int qr=0x7f0c0004; } public static final class raw { - public static final int beep=0x7f060000; + public static final int beep=0x7f050000; } public static final class string { - /** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE] - */ - public static final int abc_action_bar_home_description=0x7f0c0001; - /** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE] - */ - public static final int abc_action_bar_up_description=0x7f0c0002; - /** Content description for the action menu overflow button. [CHAR LIMIT=NONE] - */ - public static final int abc_action_menu_overflow_description=0x7f0c0003; - /** Label for the "Done" button on the far left of action mode toolbars. - */ - public static final int abc_action_mode_done=0x7f0c0000; - /** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] - */ - public static final int abc_activity_chooser_view_see_all=0x7f0c000a; - /** ActivityChooserView - accessibility support - Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] - */ - public static final int abc_activitychooserview_choose_application=0x7f0c0009; - /** SearchView accessibility description for clear button [CHAR LIMIT=NONE] - */ - public static final int abc_searchview_description_clear=0x7f0c0006; - /** SearchView accessibility description for search text field [CHAR LIMIT=NONE] - */ - public static final int abc_searchview_description_query=0x7f0c0005; - /** SearchView accessibility description for search button [CHAR LIMIT=NONE] - */ - public static final int abc_searchview_description_search=0x7f0c0004; - /** SearchView accessibility description for submit button [CHAR LIMIT=NONE] - */ - public static final int abc_searchview_description_submit=0x7f0c0007; - /** SearchView accessibility description for voice button [CHAR LIMIT=NONE] - */ - public static final int abc_searchview_description_voice=0x7f0c0008; - /** Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] - */ - public static final int abc_shareactionprovider_share_with=0x7f0c000c; - /** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] - */ - public static final int abc_shareactionprovider_share_with_application=0x7f0c000b; - public static final int action_settings=0x7f0c0010; - public static final int action_show_qr=0x7f0c0087; - public static final int all_fields=0x7f0c0089; - public static final int app_name=0x7f0c000d; - public static final int app_picker_name=0x7f0c0011; - public static final int bookmark_picker_name=0x7f0c0012; - public static final int button_add_calendar=0x7f0c0013; - public static final int button_add_contact=0x7f0c0014; - public static final int button_book_search=0x7f0c0015; - public static final int button_cancel=0x7f0c0016; - public static final int button_custom_product_search=0x7f0c0017; - public static final int button_dial=0x7f0c0018; - public static final int button_email=0x7f0c0019; - public static final int button_get_directions=0x7f0c001a; - public static final int button_mms=0x7f0c001b; - public static final int button_ok=0x7f0c001c; - public static final int button_open_browser=0x7f0c001d; - public static final int button_product_search=0x7f0c001e; - public static final int button_search_book_contents=0x7f0c001f; - public static final int button_share_app=0x7f0c0020; - public static final int button_share_bookmark=0x7f0c0021; - public static final int button_share_by_email=0x7f0c0022; - public static final int button_share_by_sms=0x7f0c0023; - public static final int button_share_clipboard=0x7f0c0024; - public static final int button_share_contact=0x7f0c0025; - public static final int button_show_map=0x7f0c0026; - public static final int button_sms=0x7f0c0027; - public static final int button_web_search=0x7f0c0028; - public static final int button_wifi=0x7f0c0029; - public static final int contents_contact=0x7f0c002a; - public static final int contents_email=0x7f0c002b; - public static final int contents_location=0x7f0c002c; - public static final int contents_phone=0x7f0c002d; - public static final int contents_sms=0x7f0c002e; - public static final int contents_text=0x7f0c002f; - public static final int hello_world=0x7f0c000f; - public static final int history_clear_one_history_text=0x7f0c0031; - public static final int history_clear_text=0x7f0c0030; - public static final int history_email_title=0x7f0c0032; - public static final int history_empty=0x7f0c0033; - public static final int history_empty_detail=0x7f0c0034; - public static final int history_send=0x7f0c0035; - public static final int history_title=0x7f0c0036; - public static final int include_label=0x7f0c0088; - public static final int kp2aplugin_author=0x7f0c008c; - public static final int kp2aplugin_shortdesc=0x7f0c008b; - public static final int kp2aplugin_title=0x7f0c008a; - public static final int menu_encode_mecard=0x7f0c0037; - public static final int menu_encode_vcard=0x7f0c0038; - public static final int menu_help=0x7f0c0039; - public static final int menu_history=0x7f0c003a; - public static final int menu_settings=0x7f0c003b; - public static final int menu_share=0x7f0c003c; - public static final int msg_bulk_mode_scanned=0x7f0c003d; - public static final int msg_camera_framework_bug=0x7f0c003e; - public static final int msg_default_format=0x7f0c003f; - public static final int msg_default_meta=0x7f0c0040; - public static final int msg_default_mms_subject=0x7f0c0041; - public static final int msg_default_status=0x7f0c0042; - public static final int msg_default_time=0x7f0c0043; - public static final int msg_default_type=0x7f0c0044; - public static final int msg_encode_contents_failed=0x7f0c0045; - public static final int msg_google_books=0x7f0c0046; - public static final int msg_google_product=0x7f0c0047; - public static final int msg_intent_failed=0x7f0c0048; - public static final int msg_redirect=0x7f0c0049; - public static final int msg_sbc_book_not_searchable=0x7f0c004a; - public static final int msg_sbc_failed=0x7f0c004b; - public static final int msg_sbc_no_page_returned=0x7f0c004c; - public static final int msg_sbc_page=0x7f0c004d; - public static final int msg_sbc_results=0x7f0c004e; - public static final int msg_sbc_searching_book=0x7f0c004f; - public static final int msg_sbc_snippet_unavailable=0x7f0c0050; - public static final int msg_share_explanation=0x7f0c0051; - public static final int msg_share_text=0x7f0c0052; - public static final int msg_sure=0x7f0c0053; - public static final int msg_unmount_usb=0x7f0c0054; - public static final int preferences_actions_title=0x7f0c0055; - public static final int preferences_auto_focus_title=0x7f0c0056; - public static final int preferences_bulk_mode_summary=0x7f0c0057; - public static final int preferences_bulk_mode_title=0x7f0c0058; - public static final int preferences_copy_to_clipboard_title=0x7f0c0059; - public static final int preferences_custom_product_search_summary=0x7f0c005a; - public static final int preferences_custom_product_search_title=0x7f0c005b; - public static final int preferences_decode_1D_title=0x7f0c005c; - public static final int preferences_decode_Data_Matrix_title=0x7f0c005d; - public static final int preferences_decode_QR_title=0x7f0c005e; - public static final int preferences_device_bug_workarounds_title=0x7f0c005f; - public static final int preferences_disable_continuous_focus_summary=0x7f0c0060; - public static final int preferences_disable_continuous_focus_title=0x7f0c0061; - public static final int preferences_disable_exposure_title=0x7f0c0062; - public static final int preferences_front_light_auto=0x7f0c0065; - public static final int preferences_front_light_off=0x7f0c0066; - public static final int preferences_front_light_on=0x7f0c0067; - public static final int preferences_front_light_summary=0x7f0c0063; - public static final int preferences_front_light_title=0x7f0c0064; - public static final int preferences_general_title=0x7f0c0068; - public static final int preferences_invert_scan_summary=0x7f0c006a; - public static final int preferences_invert_scan_title=0x7f0c0069; - public static final int preferences_name=0x7f0c006b; - public static final int preferences_play_beep_title=0x7f0c006c; - public static final int preferences_remember_duplicates_summary=0x7f0c006d; - public static final int preferences_remember_duplicates_title=0x7f0c006e; - public static final int preferences_result_title=0x7f0c006f; - public static final int preferences_scanning_title=0x7f0c0070; - public static final int preferences_search_country=0x7f0c0071; - public static final int preferences_supplemental_summary=0x7f0c0074; - public static final int preferences_supplemental_title=0x7f0c0075; - public static final int preferences_try_bsplus=0x7f0c0072; - public static final int preferences_try_bsplus_summary=0x7f0c0073; - public static final int preferences_vibrate_title=0x7f0c0076; - public static final int result_address_book=0x7f0c0077; - public static final int result_calendar=0x7f0c0078; - public static final int result_email_address=0x7f0c0079; - public static final int result_geo=0x7f0c007a; - public static final int result_isbn=0x7f0c007b; - public static final int result_product=0x7f0c007c; - public static final int result_sms=0x7f0c007d; - public static final int result_tel=0x7f0c007e; - public static final int result_text=0x7f0c007f; - public static final int result_uri=0x7f0c0080; - public static final int result_wifi=0x7f0c0081; - public static final int sbc_name=0x7f0c0082; - public static final int title_activity_main=0x7f0c000e; - public static final int title_activity_qr=0x7f0c0086; - public static final int wifi_changing_network=0x7f0c0083; - public static final int wifi_ssid_label=0x7f0c0084; - public static final int wifi_type_label=0x7f0c0085; + public static final int action_settings=0x7f070003; + public static final int action_show_qr=0x7f07007a; + public static final int all_fields=0x7f07007c; + public static final int app_name=0x7f070000; + public static final int app_picker_name=0x7f070004; + public static final int bookmark_picker_name=0x7f070005; + public static final int button_add_calendar=0x7f070006; + public static final int button_add_contact=0x7f070007; + public static final int button_book_search=0x7f070008; + public static final int button_cancel=0x7f070009; + public static final int button_custom_product_search=0x7f07000a; + public static final int button_dial=0x7f07000b; + public static final int button_email=0x7f07000c; + public static final int button_get_directions=0x7f07000d; + public static final int button_mms=0x7f07000e; + public static final int button_ok=0x7f07000f; + public static final int button_open_browser=0x7f070010; + public static final int button_product_search=0x7f070011; + public static final int button_search_book_contents=0x7f070012; + public static final int button_share_app=0x7f070013; + public static final int button_share_bookmark=0x7f070014; + public static final int button_share_by_email=0x7f070015; + public static final int button_share_by_sms=0x7f070016; + public static final int button_share_clipboard=0x7f070017; + public static final int button_share_contact=0x7f070018; + public static final int button_show_map=0x7f070019; + public static final int button_sms=0x7f07001a; + public static final int button_web_search=0x7f07001b; + public static final int button_wifi=0x7f07001c; + public static final int contents_contact=0x7f07001d; + public static final int contents_email=0x7f07001e; + public static final int contents_location=0x7f07001f; + public static final int contents_phone=0x7f070020; + public static final int contents_sms=0x7f070021; + public static final int contents_text=0x7f070022; + public static final int enable_as_plugin=0x7f070085; + public static final int enabled_as_plugin=0x7f070084; + public static final int hello_world=0x7f070002; + public static final int history_clear_one_history_text=0x7f070024; + public static final int history_clear_text=0x7f070023; + public static final int history_email_title=0x7f070025; + public static final int history_empty=0x7f070026; + public static final int history_empty_detail=0x7f070027; + public static final int history_send=0x7f070028; + public static final int history_title=0x7f070029; + public static final int include_label=0x7f07007b; + public static final int kp2aplugin_author=0x7f07007f; + public static final int kp2aplugin_shortdesc=0x7f07007e; + public static final int kp2aplugin_title=0x7f07007d; + public static final int menu_encode_mecard=0x7f07002a; + public static final int menu_encode_vcard=0x7f07002b; + public static final int menu_help=0x7f07002c; + public static final int menu_history=0x7f07002d; + public static final int menu_settings=0x7f07002e; + public static final int menu_share=0x7f07002f; + public static final int msg_bulk_mode_scanned=0x7f070030; + public static final int msg_camera_framework_bug=0x7f070031; + public static final int msg_default_format=0x7f070032; + public static final int msg_default_meta=0x7f070033; + public static final int msg_default_mms_subject=0x7f070034; + public static final int msg_default_status=0x7f070035; + public static final int msg_default_time=0x7f070036; + public static final int msg_default_type=0x7f070037; + public static final int msg_encode_contents_failed=0x7f070038; + public static final int msg_google_books=0x7f070039; + public static final int msg_google_product=0x7f07003a; + public static final int msg_intent_failed=0x7f07003b; + public static final int msg_redirect=0x7f07003c; + public static final int msg_sbc_book_not_searchable=0x7f07003d; + public static final int msg_sbc_failed=0x7f07003e; + public static final int msg_sbc_no_page_returned=0x7f07003f; + public static final int msg_sbc_page=0x7f070040; + public static final int msg_sbc_results=0x7f070041; + public static final int msg_sbc_searching_book=0x7f070042; + public static final int msg_sbc_snippet_unavailable=0x7f070043; + public static final int msg_share_explanation=0x7f070044; + public static final int msg_share_text=0x7f070045; + public static final int msg_sure=0x7f070046; + public static final int msg_unmount_usb=0x7f070047; + public static final int no_host_app=0x7f070082; + public static final int not_enabled_as_plugin=0x7f070083; + public static final int preferences_actions_title=0x7f070048; + public static final int preferences_auto_focus_title=0x7f070049; + public static final int preferences_bulk_mode_summary=0x7f07004a; + public static final int preferences_bulk_mode_title=0x7f07004b; + public static final int preferences_copy_to_clipboard_title=0x7f07004c; + public static final int preferences_custom_product_search_summary=0x7f07004d; + public static final int preferences_custom_product_search_title=0x7f07004e; + public static final int preferences_decode_1D_title=0x7f07004f; + public static final int preferences_decode_Data_Matrix_title=0x7f070050; + public static final int preferences_decode_QR_title=0x7f070051; + public static final int preferences_device_bug_workarounds_title=0x7f070052; + public static final int preferences_disable_continuous_focus_summary=0x7f070053; + public static final int preferences_disable_continuous_focus_title=0x7f070054; + public static final int preferences_disable_exposure_title=0x7f070055; + public static final int preferences_front_light_auto=0x7f070058; + public static final int preferences_front_light_off=0x7f070059; + public static final int preferences_front_light_on=0x7f07005a; + public static final int preferences_front_light_summary=0x7f070056; + public static final int preferences_front_light_title=0x7f070057; + public static final int preferences_general_title=0x7f07005b; + public static final int preferences_invert_scan_summary=0x7f07005d; + public static final int preferences_invert_scan_title=0x7f07005c; + public static final int preferences_name=0x7f07005e; + public static final int preferences_play_beep_title=0x7f07005f; + public static final int preferences_remember_duplicates_summary=0x7f070060; + public static final int preferences_remember_duplicates_title=0x7f070061; + public static final int preferences_result_title=0x7f070062; + public static final int preferences_scanning_title=0x7f070063; + public static final int preferences_search_country=0x7f070064; + public static final int preferences_supplemental_summary=0x7f070065; + public static final int preferences_supplemental_title=0x7f070066; + public static final int preferences_try_bsplus=0x7f070077; + public static final int preferences_try_bsplus_summary=0x7f070078; + public static final int preferences_vibrate_title=0x7f070067; + public static final int result_address_book=0x7f070068; + public static final int result_calendar=0x7f070069; + public static final int result_email_address=0x7f07006a; + public static final int result_geo=0x7f07006b; + public static final int result_isbn=0x7f07006c; + public static final int result_product=0x7f07006d; + public static final int result_sms=0x7f07006e; + public static final int result_tel=0x7f07006f; + public static final int result_text=0x7f070070; + public static final int result_uri=0x7f070071; + public static final int result_wifi=0x7f070072; + public static final int sbc_name=0x7f070073; + public static final int scan_qr=0x7f070080; + public static final int show_qr=0x7f070081; + public static final int title_activity_main=0x7f070001; + public static final int title_activity_qr=0x7f070079; + public static final int wifi_changing_network=0x7f070074; + public static final int wifi_ssid_label=0x7f070075; + public static final int wifi_type_label=0x7f070076; } public static final class style { /** @@ -1504,1818 +309,18 @@ containing a value of this type. backward-compatibility can go here. */ - public static final int AppBaseTheme=0x7f0d008b; + public static final int AppBaseTheme=0x7f080000; /** Application theme. All customizations that are NOT specific to a particular API-level can go here. Application theme. All customizations that are NOT specific to a particular API-level can go here. */ - public static final int AppTheme=0x7f0d008c; - public static final int CaptureTheme=0x7f0d008f; - public static final int ResultButton=0x7f0d008d; - public static final int ShareButton=0x7f0d008e; - /** Mimic text appearance in select_dialog_item.xml - */ - public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0d0063; - public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0d006d; - public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0d006f; - /** Search View result styles - */ - public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0d006e; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0d0069; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0d006a; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0d0070; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0d0072; - /** - TextAppearance.Holo.Light.SearchResult.* are private so we extend from the default - versions instead (which are exactly the same). - - */ - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0d0071; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0d006b; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0d006c; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0d0035; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0d0034; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0d0030; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0d0031; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0d0033; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0d0032; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0d001a; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0d0006; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0d0008; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0d0005; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0d0007; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0d001e; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0d0020; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0d001d; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0d001f; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0d0054; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0d0056; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0d0058; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0d0055; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0d0057; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0d0051; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0d0053; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0d0050; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0d0052; - public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0d0061; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0d0021; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0d002e; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0d002f; - public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0d0062; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0d0028; - /** Themes in the "Theme.AppCompat" family will contain an action bar by default. - If Holo themes are available on the current platform version they will be used. - A limited Holo-styled action bar will be provided on platform versions older - than 3.0. (API 11) - - These theme declarations contain any version-independent specification. Items - that need to vary based on platform version should be defined in the corresponding - "Theme.Base" theme. - Platform-independent theme providing an action bar in a dark-themed activity. - */ - public static final int Theme_AppCompat=0x7f0d0077; - /** Menu/item attributes - */ - public static final int Theme_AppCompat_Base_CompactMenu=0x7f0d0083; - public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0d0084; - /** Menu/item attributes - */ - public static final int Theme_AppCompat_CompactMenu=0x7f0d007c; - public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0d007d; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f0d007a; - /** Platform-independent theme providing an action bar in a light-themed activity. - */ - public static final int Theme_AppCompat_Light=0x7f0d0078; - /** Platform-independent theme providing an action bar in a dark-themed activity. - */ - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0d0079; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0d007b; - /** Base platform-dependent theme - */ - public static final int Theme_Base=0x7f0d007e; - /** Base platform-dependent theme providing an action bar in a dark-themed activity. - Base platform-dependent theme providing an action bar in a dark-themed activity. - */ - public static final int Theme_Base_AppCompat=0x7f0d0080; - public static final int Theme_Base_AppCompat_Dialog_FixedSize=0x7f0d0087; - public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize=0x7f0d0088; - public static final int Theme_Base_AppCompat_DialogWhenLarge=0x7f0d0085; - /** - As we have defined the theme in values-large (for compat) and values-large takes precedence - over values-v14, we need to reset back to the Holo parent in values-large-v14. As the themes - in values-v14 & values-large-v14 are exactly the same, these "double base" themes can be - inherited from in both values-v14 and values-large-v14. - - */ - public static final int Theme_Base_AppCompat_DialogWhenLarge_Base=0x7f0d0089; - /** Base platform-dependent theme providing an action bar in a light-themed activity. - Base platform-dependent theme providing an action bar in a light-themed activity. - */ - public static final int Theme_Base_AppCompat_Light=0x7f0d0081; - /** Base platform-dependent theme providing a dark action bar in a light-themed activity. - Base platform-dependent theme providing a dark action bar in a light-themed activity. - */ - public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0d0082; - public static final int Theme_Base_AppCompat_Light_DialogWhenLarge=0x7f0d0086; - public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base=0x7f0d008a; - /** Base platform-dependent theme providing a light-themed activity. - */ - public static final int Theme_Base_Light=0x7f0d007f; - /** Styles in here can be extended for customisation in your application. Each utilises - one of the Base styles. If Holo themes are available on the current platform version - they will be used instead of the compat styles. - */ - public static final int Widget_AppCompat_ActionBar=0x7f0d0000; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f0d0002; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0d0011; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f0d0017; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f0d0014; - public static final int Widget_AppCompat_ActionButton=0x7f0d000b; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0d000d; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0d000f; - public static final int Widget_AppCompat_ActionMode=0x7f0d001b; - public static final int Widget_AppCompat_ActivityChooserView=0x7f0d0038; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0d0036; - public static final int Widget_AppCompat_Base_ActionBar=0x7f0d003a; - public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0d003c; - public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0d0045; - public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0d004b; - public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0d0048; - /** Action Button Styles - */ - public static final int Widget_AppCompat_Base_ActionButton=0x7f0d003f; - public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0d0041; - public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0d0043; - public static final int Widget_AppCompat_Base_ActionMode=0x7f0d004e; - public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0d0075; - /** AutoCompleteTextView styles (for SearchView) - */ - public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0d0073; - public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0d005d; - /** Popup Menu - */ - public static final int Widget_AppCompat_Base_ListPopupWindow=0x7f0d0065; - /** Spinner Widgets - */ - public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0d005f; - public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0d0064; - public static final int Widget_AppCompat_Base_PopupMenu=0x7f0d0067; - public static final int Widget_AppCompat_Base_ProgressBar=0x7f0d005a; - /** Progress Bar - */ - public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0d0059; - /** Action Bar Spinner Widgets - */ - public static final int Widget_AppCompat_Base_Spinner=0x7f0d005b; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0d0024; - public static final int Widget_AppCompat_Light_ActionBar=0x7f0d0001; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0d0003; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0d0004; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0d0012; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0d0013; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0d0018; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0d0019; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0d0015; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0d0016; - public static final int Widget_AppCompat_Light_ActionButton=0x7f0d000c; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0d000e; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0d0010; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0d001c; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0d0039; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0d0037; - public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0d003b; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0d003d; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0d003e; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0d0046; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0d0047; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0d004c; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0d004d; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0d0049; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0d004a; - public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0d0040; - public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0d0042; - public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0d0044; - public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0d004f; - public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0d0076; - public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0d0074; - public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0d005e; - public static final int Widget_AppCompat_Light_Base_ListPopupWindow=0x7f0d0066; - public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0d0060; - public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0d0068; - public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0d005c; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0d0025; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0d002a; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0d0027; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f0d002c; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0d0023; - public static final int Widget_AppCompat_ListPopupWindow=0x7f0d0029; - public static final int Widget_AppCompat_ListView_DropDown=0x7f0d0026; - public static final int Widget_AppCompat_ListView_Menu=0x7f0d002d; - public static final int Widget_AppCompat_PopupMenu=0x7f0d002b; - public static final int Widget_AppCompat_ProgressBar=0x7f0d000a; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0d0009; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0d0022; + public static final int AppTheme=0x7f080001; + public static final int CaptureTheme=0x7f080004; + public static final int ResultButton=0x7f080002; + public static final int ShareButton=0x7f080003; } public static final class xml { - public static final int preferences=0x7f050000; + public static final int preferences=0x7f040000; } - public static final class styleable { - /** ============================================ - Attributes used to style the Action Bar. - These should be set on your theme; the default actionBarStyle will - propagate them to the correct elements as needed. - - Please Note: when overriding attributes for an ActionBar style - you must specify each attribute twice: once with the "android:" - namespace prefix and once without. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #ActionBar_background keepass2android.plugin.qr:background} Specifies a background drawable for the action bar.
{@link #ActionBar_backgroundSplit keepass2android.plugin.qr:backgroundSplit} Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionBar_backgroundStacked keepass2android.plugin.qr:backgroundStacked} Specifies a background drawable for a second stacked row of the action bar.
{@link #ActionBar_customNavigationLayout keepass2android.plugin.qr:customNavigationLayout} Specifies a layout for custom navigation.
{@link #ActionBar_displayOptions keepass2android.plugin.qr:displayOptions} Options affecting how the action bar is displayed.
{@link #ActionBar_divider keepass2android.plugin.qr:divider} Specifies the drawable used for item dividers.
{@link #ActionBar_height keepass2android.plugin.qr:height} Specifies a fixed height.
{@link #ActionBar_homeLayout keepass2android.plugin.qr:homeLayout} Specifies a layout to use for the "home" section of the action bar.
{@link #ActionBar_icon keepass2android.plugin.qr:icon} Specifies the drawable used for the application icon.
{@link #ActionBar_indeterminateProgressStyle keepass2android.plugin.qr:indeterminateProgressStyle} Specifies a style resource to use for an indeterminate progress spinner.
{@link #ActionBar_itemPadding keepass2android.plugin.qr:itemPadding} Specifies padding that should be applied to the left and right sides of - system-provided items in the bar.
{@link #ActionBar_logo keepass2android.plugin.qr:logo} Specifies the drawable used for the application logo.
{@link #ActionBar_navigationMode keepass2android.plugin.qr:navigationMode} The type of navigation to use.
{@link #ActionBar_progressBarPadding keepass2android.plugin.qr:progressBarPadding} Specifies the horizontal padding on either end for an embedded progress bar.
{@link #ActionBar_progressBarStyle keepass2android.plugin.qr:progressBarStyle} Specifies a style resource to use for an embedded progress bar.
{@link #ActionBar_subtitle keepass2android.plugin.qr:subtitle} Specifies subtitle text used for navigationMode="normal"
{@link #ActionBar_subtitleTextStyle keepass2android.plugin.qr:subtitleTextStyle} Specifies a style to use for subtitle text.
{@link #ActionBar_title keepass2android.plugin.qr:title} Specifies title text used for navigationMode="normal"
{@link #ActionBar_titleTextStyle keepass2android.plugin.qr:titleTextStyle} Specifies a style to use for title text.
- @see #ActionBar_background - @see #ActionBar_backgroundSplit - @see #ActionBar_backgroundStacked - @see #ActionBar_customNavigationLayout - @see #ActionBar_displayOptions - @see #ActionBar_divider - @see #ActionBar_height - @see #ActionBar_homeLayout - @see #ActionBar_icon - @see #ActionBar_indeterminateProgressStyle - @see #ActionBar_itemPadding - @see #ActionBar_logo - @see #ActionBar_navigationMode - @see #ActionBar_progressBarPadding - @see #ActionBar_progressBarStyle - @see #ActionBar_subtitle - @see #ActionBar_subtitleTextStyle - @see #ActionBar_title - @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar = { - 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, - 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, - 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, - 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, - 0x7f010035, 0x7f010036, 0x7f010037 - }; - /** -

- @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 android: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 android: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 android: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 android: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.

- ---- - - - - - - -
ConstantValueDescription
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
-

This is a private symbol. - @attr name android: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 android: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 android:height - */ - public static final int ActionBar_height = 1; - /** -

- @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 android: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 android: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 android: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 android: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 android:logo - */ - public static final int ActionBar_logo = 8; - /** -

- @attr description - The type of navigation to use. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0 Normal static title text
listMode1 The action bar will use a selection list for navigation.
tabMode2 The action bar will use a series of horizontal tabs for navigation.
-

This is a private symbol. - @attr name android: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 android: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 android: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 android: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 android: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 android:title - */ - public static final int ActionBar_title = 0; - /** -

- @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 android:titleTextStyle - */ - public static final int ActionBar_titleTextStyle = 5; - /** Valid LayoutParams for views placed in the action bar as custom views. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity keepass2android.plugin.qr:android_layout_gravity}
- @see #ActionBarLayout_android_layout_gravity - */ - public static final int[] ActionBarLayout = { - 0x010100b3 - }; - /** -

This symbol is the offset where the {@link keepass2android.plugin.qr.R.attr#android_layout_gravity} - attribute's value can be found in the {@link #ActionBarLayout} array. - @attr name android:android_layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity = 0; - /** These attributes are meant to be specified and customized by the app. - The system will read and apply them as needed. These attributes control - properties of the activity window, such as whether an action bar should - be present and whether it should overlay content. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #ActionBarWindow_windowActionBar keepass2android.plugin.qr:windowActionBar}
{@link #ActionBarWindow_windowActionBarOverlay keepass2android.plugin.qr:windowActionBarOverlay}
{@link #ActionBarWindow_windowFixedHeightMajor keepass2android.plugin.qr:windowFixedHeightMajor} A fixed height for the window along the major axis of the screen, - that is, when in portrait.
{@link #ActionBarWindow_windowFixedHeightMinor keepass2android.plugin.qr:windowFixedHeightMinor} A fixed height for the window along the minor axis of the screen, - that is, when in landscape.
{@link #ActionBarWindow_windowFixedWidthMajor keepass2android.plugin.qr:windowFixedWidthMajor} A fixed width for the window along the major axis of the screen, - that is, when in landscape.
{@link #ActionBarWindow_windowFixedWidthMinor keepass2android.plugin.qr:windowFixedWidthMinor} A fixed width for the window along the minor axis of the screen, - that is, when in portrait.
{@link #ActionBarWindow_windowSplitActionBar keepass2android.plugin.qr:windowSplitActionBar}
- @see #ActionBarWindow_windowActionBar - @see #ActionBarWindow_windowActionBarOverlay - @see #ActionBarWindow_windowFixedHeightMajor - @see #ActionBarWindow_windowFixedHeightMinor - @see #ActionBarWindow_windowFixedWidthMajor - @see #ActionBarWindow_windowFixedWidthMinor - @see #ActionBarWindow_windowSplitActionBar - */ - public static final int[] ActionBarWindow = { - 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, - 0x7f010004, 0x7f010005, 0x7f010006 - }; - /** -

This symbol is the offset where the {@link keepass2android.plugin.qr.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 android:windowActionBar - */ - public static final int ActionBarWindow_windowActionBar = 0; - /** -

This symbol is the offset where the {@link keepass2android.plugin.qr.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 android:windowActionBarOverlay - */ - public static final int ActionBarWindow_windowActionBarOverlay = 1; - /** -

- @attr description - A fixed height for the window along the major axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 android:windowFixedHeightMajor - */ - public static final int ActionBarWindow_windowFixedHeightMajor = 6; - /** -

- @attr description - A fixed height for the window along the minor axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 android:windowFixedHeightMinor - */ - public static final int ActionBarWindow_windowFixedHeightMinor = 4; - /** -

- @attr description - A fixed width for the window along the major axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 android:windowFixedWidthMajor - */ - public static final int ActionBarWindow_windowFixedWidthMajor = 3; - /** -

- @attr description - A fixed width for the window along the minor axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May 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). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

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 android:windowFixedWidthMinor - */ - public static final int ActionBarWindow_windowFixedWidthMinor = 5; - /** -

This symbol is the offset where the {@link keepass2android.plugin.qr.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 android:windowSplitActionBar - */ - public static final int ActionBarWindow_windowSplitActionBar = 2; - /** Attributes that can be used with a ActionMenuItemView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionMenuItemView_android_minWidth keepass2android.plugin.qr:android_minWidth}
- @see #ActionMenuItemView_android_minWidth - */ - public static final int[] ActionMenuItemView = { - 0x0101013f - }; - /** -

This symbol is the offset where the {@link keepass2android.plugin.qr.R.attr#android_minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - @attr name android: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:

- - - - - - - - - -
AttributeDescription
{@link #ActionMode_background keepass2android.plugin.qr:background} Specifies a background for the action mode bar.
{@link #ActionMode_backgroundSplit keepass2android.plugin.qr:backgroundSplit} Specifies a background for the split action mode bar.
{@link #ActionMode_height keepass2android.plugin.qr:height} Specifies a fixed height for the action mode bar.
{@link #ActionMode_subtitleTextStyle keepass2android.plugin.qr:subtitleTextStyle} Specifies a style to use for subtitle text.
{@link #ActionMode_titleTextStyle keepass2android.plugin.qr:titleTextStyle} Specifies a style to use for title text.
- @see #ActionMode_background - @see #ActionMode_backgroundSplit - @see #ActionMode_height - @see #ActionMode_subtitleTextStyle - @see #ActionMode_titleTextStyle - */ - public static final int[] ActionMode = { - 0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f, - 0x7f010031 - }; - /** -

- @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 android: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 android: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 android: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 android: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 android:titleTextStyle - */ - public static final int ActionMode_titleTextStyle = 1; - /** Attrbitutes for a ActivityChooserView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable keepass2android.plugin.qr:expandActivityOverflowButtonDrawable} The drawable to show in the button for expanding the activities overflow popup.
{@link #ActivityChooserView_initialActivityCount keepass2android.plugin.qr:initialActivityCount} The maximal number of items initially shown in the activity list.
- @see #ActivityChooserView_expandActivityOverflowButtonDrawable - @see #ActivityChooserView_initialActivityCount - */ - public static final int[] ActivityChooserView = { - 0x7f01006a, 0x7f01006b - }; - /** -

- @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 android: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 android:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount = 0; - /** Attributes that can be used with a CompatTextView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #CompatTextView_textAllCaps keepass2android.plugin.qr:textAllCaps} Present the text in ALL CAPS.
- @see #CompatTextView_textAllCaps - */ - public static final int[] CompatTextView = { - 0x7f01006d - }; - /** -

- @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 android:textAllCaps - */ - public static final int CompatTextView_textAllCaps = 0; - /** Attributes that can be used with a LinearLayoutICS. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #LinearLayoutICS_divider keepass2android.plugin.qr:divider} Drawable to use as a vertical divider between buttons.
{@link #LinearLayoutICS_dividerPadding keepass2android.plugin.qr:dividerPadding} Size of padding on either end of a divider.
{@link #LinearLayoutICS_showDividers keepass2android.plugin.qr:showDividers} Setting for which dividers to show.
- @see #LinearLayoutICS_divider - @see #LinearLayoutICS_dividerPadding - @see #LinearLayoutICS_showDividers - */ - public static final int[] LinearLayoutICS = { - 0x7f01002e, 0x7f010055, 0x7f010056 - }; - /** -

- @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 android: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 android: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.

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
-

This is a private symbol. - @attr name android:showDividers - */ - public static final int LinearLayoutICS_showDividers = 1; - /** Base attributes that are available to all groups. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #MenuGroup_android_checkableBehavior keepass2android.plugin.qr:android_checkableBehavior} Whether the items are capable of displaying a check mark.
{@link #MenuGroup_android_enabled keepass2android.plugin.qr:android_enabled} Whether the items are enabled.
{@link #MenuGroup_android_id keepass2android.plugin.qr:android_id} The ID of the group.
{@link #MenuGroup_android_menuCategory keepass2android.plugin.qr:android_menuCategory} The category applied to all items within this group.
{@link #MenuGroup_android_orderInCategory keepass2android.plugin.qr:android_orderInCategory} The order within the category applied to all items within this group.
{@link #MenuGroup_android_visible keepass2android.plugin.qr:android_visible} Whether the items are shown/visible.
- @see #MenuGroup_android_checkableBehavior - @see #MenuGroup_android_enabled - @see #MenuGroup_android_id - @see #MenuGroup_android_menuCategory - @see #MenuGroup_android_orderInCategory - @see #MenuGroup_android_visible - */ - public static final int[] MenuGroup = { - 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, - 0x010101df, 0x010101e0 - }; - /** -

- @attr description - Whether the items are capable of displaying a check mark. -

This corresponds to the global attribute resource symbol {@link keepass2android.plugin.qr.R.attr#android_checkableBehavior}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_enabled}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_id}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_menuCategory}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_orderInCategory}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_visible}. - @attr name android:android_visible - */ - public static final int MenuGroup_android_visible = 2; - /** Base attributes that are available to all Item objects. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #MenuItem_actionLayout keepass2android.plugin.qr:actionLayout} An optional layout to be used as an action view.
{@link #MenuItem_actionProviderClass keepass2android.plugin.qr: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 keepass2android.plugin.qr:actionViewClass} The name of an optional View class to instantiate and use as an - action view.
{@link #MenuItem_android_alphabeticShortcut keepass2android.plugin.qr:android_alphabeticShortcut} The alphabetic shortcut key.
{@link #MenuItem_android_checkable keepass2android.plugin.qr:android_checkable} Whether the item is capable of displaying a check mark.
{@link #MenuItem_android_checked keepass2android.plugin.qr:android_checked} Whether the item is checked.
{@link #MenuItem_android_enabled keepass2android.plugin.qr:android_enabled} Whether the item is enabled.
{@link #MenuItem_android_icon keepass2android.plugin.qr:android_icon} The icon associated with this item.
{@link #MenuItem_android_id keepass2android.plugin.qr:android_id} The ID of the item.
{@link #MenuItem_android_menuCategory keepass2android.plugin.qr:android_menuCategory} The category applied to the item.
{@link #MenuItem_android_numericShortcut keepass2android.plugin.qr:android_numericShortcut} The numeric shortcut key.
{@link #MenuItem_android_onClick keepass2android.plugin.qr: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 keepass2android.plugin.qr:android_orderInCategory} The order within the category applied to the item.
{@link #MenuItem_android_title keepass2android.plugin.qr:android_title} The title associated with the item.
{@link #MenuItem_android_titleCondensed keepass2android.plugin.qr:android_titleCondensed} The condensed title associated with the item.
{@link #MenuItem_android_visible keepass2android.plugin.qr:android_visible} Whether the item is shown/visible.
{@link #MenuItem_showAsAction keepass2android.plugin.qr:showAsAction} How this item should display in the Action Bar, if present.
- @see #MenuItem_actionLayout - @see #MenuItem_actionProviderClass - @see #MenuItem_actionViewClass - @see #MenuItem_android_alphabeticShortcut - @see #MenuItem_android_checkable - @see #MenuItem_android_checked - @see #MenuItem_android_enabled - @see #MenuItem_android_icon - @see #MenuItem_android_id - @see #MenuItem_android_menuCategory - @see #MenuItem_android_numericShortcut - @see #MenuItem_android_onClick - @see #MenuItem_android_orderInCategory - @see #MenuItem_android_title - @see #MenuItem_android_titleCondensed - @see #MenuItem_android_visible - @see #MenuItem_showAsAction - */ - public static final int[] MenuItem = { - 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, - 0x01010194, 0x010101de, 0x010101df, 0x010101e1, - 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f01004d, 0x7f01004e, 0x7f01004f, - 0x7f010050 - }; - /** -

- @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 android: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 android: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 android: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 keepass2android.plugin.qr.R.attr#android_alphabeticShortcut}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_checkable}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_checked}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_enabled}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_icon}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_id}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_menuCategory}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_numericShortcut}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_onClick}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_orderInCategory}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_title}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_titleCondensed}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_visible}. - @attr name android: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.

- ---- - - - - - -
ConstantValueDescription
never0 Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always".
ifRoom1 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".
always2 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".
withText4 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.
collapseActionView8 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 android:showAsAction - */ - public static final int MenuItem_showAsAction = 13; - /** Attributes that can be used with a MenuView. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #MenuView_android_headerBackground keepass2android.plugin.qr:android_headerBackground} Default background for the menu header.
{@link #MenuView_android_horizontalDivider keepass2android.plugin.qr:android_horizontalDivider} Default horizontal divider between rows of menu items.
{@link #MenuView_android_itemBackground keepass2android.plugin.qr:android_itemBackground} Default background for each menu item.
{@link #MenuView_android_itemIconDisabledAlpha keepass2android.plugin.qr:android_itemIconDisabledAlpha} Default disabled icon alpha for each menu item that shows an icon.
{@link #MenuView_android_itemTextAppearance keepass2android.plugin.qr:android_itemTextAppearance} Default appearance of menu item text.
{@link #MenuView_android_preserveIconSpacing keepass2android.plugin.qr:android_preserveIconSpacing} Whether space should be reserved in layout when an icon is missing.
{@link #MenuView_android_verticalDivider keepass2android.plugin.qr:android_verticalDivider} Default vertical divider between menu items.
{@link #MenuView_android_windowAnimationStyle keepass2android.plugin.qr:android_windowAnimationStyle} Default animations for the menu.
- @see #MenuView_android_headerBackground - @see #MenuView_android_horizontalDivider - @see #MenuView_android_itemBackground - @see #MenuView_android_itemIconDisabledAlpha - @see #MenuView_android_itemTextAppearance - @see #MenuView_android_preserveIconSpacing - @see #MenuView_android_verticalDivider - @see #MenuView_android_windowAnimationStyle - */ - public static final int[] MenuView = { - 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x01010435 - }; - /** -

- @attr description - Default background for the menu header. -

This corresponds to the global attribute resource symbol {@link keepass2android.plugin.qr.R.attr#android_headerBackground}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_horizontalDivider}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_itemBackground}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_itemIconDisabledAlpha}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_itemTextAppearance}. - @attr name android: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: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 keepass2android.plugin.qr.R.attr#android_verticalDivider}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_windowAnimationStyle}. - @attr name android:android_windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle = 0; - /** Attributes that can be used with a SearchView. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #SearchView_android_imeOptions keepass2android.plugin.qr:android_imeOptions} The IME options to set on the query text field.
{@link #SearchView_android_inputType keepass2android.plugin.qr:android_inputType} The input type to set on the query text field.
{@link #SearchView_android_maxWidth keepass2android.plugin.qr:android_maxWidth} An optional maximum width of the SearchView.
{@link #SearchView_iconifiedByDefault keepass2android.plugin.qr:iconifiedByDefault} The default state of the SearchView.
{@link #SearchView_queryHint keepass2android.plugin.qr:queryHint} An optional query hint string to be displayed in the empty query field.
- @see #SearchView_android_imeOptions - @see #SearchView_android_inputType - @see #SearchView_android_maxWidth - @see #SearchView_iconifiedByDefault - @see #SearchView_queryHint - */ - public static final int[] SearchView = { - 0x0101011f, 0x01010220, 0x01010264, 0x7f01005a, - 0x7f01005b - }; - /** -

- @attr description - The IME options to set on the query text field. -

This corresponds to the global attribute resource symbol {@link keepass2android.plugin.qr.R.attr#android_imeOptions}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_inputType}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_maxWidth}. - @attr name android: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 android: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 android:queryHint - */ - public static final int SearchView_queryHint = 4; - /** Attributes that can be used with a Spinner. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #Spinner_android_dropDownHorizontalOffset keepass2android.plugin.qr:android_dropDownHorizontalOffset} Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown".
{@link #Spinner_android_dropDownSelector keepass2android.plugin.qr:android_dropDownSelector} List selector to use for spinnerMode="dropdown" display.
{@link #Spinner_android_dropDownVerticalOffset keepass2android.plugin.qr:android_dropDownVerticalOffset} Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown".
{@link #Spinner_android_dropDownWidth keepass2android.plugin.qr:android_dropDownWidth} Width of the dropdown in spinnerMode="dropdown".
{@link #Spinner_android_gravity keepass2android.plugin.qr:android_gravity} Gravity setting for positioning the currently selected item.
{@link #Spinner_android_popupBackground keepass2android.plugin.qr:android_popupBackground} Background drawable to use for the dropdown in spinnerMode="dropdown".
{@link #Spinner_disableChildrenWhenDisabled keepass2android.plugin.qr:disableChildrenWhenDisabled} Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled.
{@link #Spinner_popupPromptView keepass2android.plugin.qr:popupPromptView} Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown".
{@link #Spinner_prompt keepass2android.plugin.qr:prompt} The prompt to display when the spinner's dialog is shown.
{@link #Spinner_spinnerMode keepass2android.plugin.qr:spinnerMode} Display mode for spinner options.
- @see #Spinner_android_dropDownHorizontalOffset - @see #Spinner_android_dropDownSelector - @see #Spinner_android_dropDownVerticalOffset - @see #Spinner_android_dropDownWidth - @see #Spinner_android_gravity - @see #Spinner_android_popupBackground - @see #Spinner_disableChildrenWhenDisabled - @see #Spinner_popupPromptView - @see #Spinner_prompt - @see #Spinner_spinnerMode - */ - public static final int[] Spinner = { - 0x010100af, 0x01010175, 0x01010176, 0x01010262, - 0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052, - 0x7f010053, 0x7f010054 - }; - /** -

- @attr description - Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown". -

This corresponds to the global attribute resource symbol {@link keepass2android.plugin.qr.R.attr#android_dropDownHorizontalOffset}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_dropDownSelector}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_dropDownVerticalOffset}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_dropDownWidth}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_gravity}. - @attr name android: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 keepass2android.plugin.qr.R.attr#android_popupBackground}. - @attr name android: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 android: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 android: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 android:prompt - */ - public static final int Spinner_prompt = 6; - /** -

- @attr description - Display mode for spinner options. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
dialog0 Spinner options will be presented to the user as a dialog window.
dropdown1 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 android:spinnerMode - */ - public static final int Spinner_spinnerMode = 7; - /** These are the standard attributes that make up a complete theme. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #Theme_actionDropDownStyle keepass2android.plugin.qr:actionDropDownStyle} Default ActionBar dropdown style.
{@link #Theme_dropdownListPreferredItemHeight keepass2android.plugin.qr:dropdownListPreferredItemHeight} The preferred item height for dropdown lists.
{@link #Theme_listChoiceBackgroundIndicator keepass2android.plugin.qr:listChoiceBackgroundIndicator} Drawable used as a background for selected list items.
{@link #Theme_panelMenuListTheme keepass2android.plugin.qr:panelMenuListTheme} Default Panel Menu style.
{@link #Theme_panelMenuListWidth keepass2android.plugin.qr:panelMenuListWidth} Default Panel Menu width.
{@link #Theme_popupMenuStyle keepass2android.plugin.qr:popupMenuStyle} Default PopupMenu style.
- @see #Theme_actionDropDownStyle - @see #Theme_dropdownListPreferredItemHeight - @see #Theme_listChoiceBackgroundIndicator - @see #Theme_panelMenuListTheme - @see #Theme_panelMenuListWidth - @see #Theme_popupMenuStyle - */ - public static final int[] Theme = { - 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, - 0x7f01004b, 0x7f01004c - }; - /** -

- @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 android: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 android: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 android: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 android: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 android: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 android:popupMenuStyle - */ - public static final int Theme_popupMenuStyle = 2; - /** Attributes that can be used with a View. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #View_android_focusable keepass2android.plugin.qr:android_focusable} Boolean that controls whether a view can take focus.
{@link #View_paddingEnd keepass2android.plugin.qr:paddingEnd} Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
{@link #View_paddingStart keepass2android.plugin.qr:paddingStart} Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
- @see #View_android_focusable - @see #View_paddingEnd - @see #View_paddingStart - */ - public static final int[] View = { - 0x010100da, 0x7f010038, 0x7f010039 - }; - /** -

- @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 keepass2android.plugin.qr.R.attr#android_focusable}. - @attr name android: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 android: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 android:paddingStart - */ - public static final int View_paddingStart = 1; - }; } diff --git a/src/java/PluginQR/gen/keepass2android/pluginsdk/R.java b/src/java/PluginQR/gen/keepass2android/pluginsdk/R.java index ad48229c..e0323e92 100644 --- a/src/java/PluginQR/gen/keepass2android/pluginsdk/R.java +++ b/src/java/PluginQR/gen/keepass2android/pluginsdk/R.java @@ -7,623 +7,21 @@ package keepass2android.pluginsdk; 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 = 0x7f01000f; - public static final int actionBarItemBackground = 0x7f010010; - public static final int actionBarSize = 0x7f01000e; - public static final int actionBarSplitStyle = 0x7f01000c; - public static final int actionBarStyle = 0x7f01000b; - public static final int actionBarTabBarStyle = 0x7f010008; - public static final int actionBarTabStyle = 0x7f010007; - public static final int actionBarTabTextStyle = 0x7f010009; - public static final int actionBarWidgetTheme = 0x7f01000d; - public static final int actionButtonStyle = 0x7f010016; - public static final int actionDropDownStyle = 0x7f010047; - public static final int actionLayout = 0x7f01004e; - public static final int actionMenuTextAppearance = 0x7f010011; - public static final int actionMenuTextColor = 0x7f010012; - public static final int actionModeBackground = 0x7f01003c; - public static final int actionModeCloseButtonStyle = 0x7f01003b; - public static final int actionModeCloseDrawable = 0x7f01003e; - public static final int actionModeCopyDrawable = 0x7f010040; - public static final int actionModeCutDrawable = 0x7f01003f; - public static final int actionModeFindDrawable = 0x7f010044; - public static final int actionModePasteDrawable = 0x7f010041; - public static final int actionModePopupWindowStyle = 0x7f010046; - public static final int actionModeSelectAllDrawable = 0x7f010042; - public static final int actionModeShareDrawable = 0x7f010043; - public static final int actionModeSplitBackground = 0x7f01003d; - public static final int actionModeStyle = 0x7f01003a; - public static final int actionModeWebSearchDrawable = 0x7f010045; - public static final int actionOverflowButtonStyle = 0x7f01000a; - public static final int actionProviderClass = 0x7f010050; - public static final int actionViewClass = 0x7f01004f; - public static final int activityChooserViewStyle = 0x7f01006c; - public static final int background = 0x7f01002f; - public static final int backgroundSplit = 0x7f010031; - public static final int backgroundStacked = 0x7f010030; - public static final int buttonBarButtonStyle = 0x7f010018; - public static final int buttonBarStyle = 0x7f010017; - public static final int customNavigationLayout = 0x7f010032; - public static final int disableChildrenWhenDisabled = 0x7f010054; - public static final int displayOptions = 0x7f010028; - public static final int divider = 0x7f01002e; - public static final int dividerHorizontal = 0x7f01001b; - public static final int dividerPadding = 0x7f010056; - public static final int dividerVertical = 0x7f01001a; - public static final int dropDownListViewStyle = 0x7f010021; - public static final int dropdownListPreferredItemHeight = 0x7f010048; - public static final int expandActivityOverflowButtonDrawable = 0x7f01006b; - public static final int height = 0x7f010026; - public static final int homeAsUpIndicator = 0x7f010013; - public static final int homeLayout = 0x7f010033; - public static final int icon = 0x7f01002c; - public static final int iconifiedByDefault = 0x7f01005a; - public static final int indeterminateProgressStyle = 0x7f010035; - public static final int initialActivityCount = 0x7f01006a; - public static final int isLightTheme = 0x7f010059; - public static final int itemPadding = 0x7f010037; - public static final int listChoiceBackgroundIndicator = 0x7f01004c; - public static final int listPopupWindowStyle = 0x7f010022; - public static final int listPreferredItemHeight = 0x7f01001c; - public static final int listPreferredItemHeightLarge = 0x7f01001e; - public static final int listPreferredItemHeightSmall = 0x7f01001d; - public static final int listPreferredItemPaddingLeft = 0x7f01001f; - public static final int listPreferredItemPaddingRight = 0x7f010020; - public static final int logo = 0x7f01002d; - public static final int navigationMode = 0x7f010027; - public static final int paddingEnd = 0x7f010039; - public static final int paddingStart = 0x7f010038; - public static final int panelMenuListTheme = 0x7f01004b; - public static final int panelMenuListWidth = 0x7f01004a; - public static final int popupMenuStyle = 0x7f010049; - public static final int popupPromptView = 0x7f010053; - public static final int progressBarPadding = 0x7f010036; - public static final int progressBarStyle = 0x7f010034; - public static final int prompt = 0x7f010051; - public static final int queryHint = 0x7f01005b; - public static final int searchDropdownBackground = 0x7f01005c; - public static final int searchResultListItemHeight = 0x7f010065; - public static final int searchViewAutoCompleteTextView = 0x7f010069; - public static final int searchViewCloseIcon = 0x7f01005d; - public static final int searchViewEditQuery = 0x7f010061; - public static final int searchViewEditQueryBackground = 0x7f010062; - public static final int searchViewGoIcon = 0x7f01005e; - public static final int searchViewSearchIcon = 0x7f01005f; - public static final int searchViewTextField = 0x7f010063; - public static final int searchViewTextFieldRight = 0x7f010064; - public static final int searchViewVoiceIcon = 0x7f010060; - public static final int selectableItemBackground = 0x7f010019; - public static final int showAsAction = 0x7f01004d; - public static final int showDividers = 0x7f010055; - public static final int spinnerDropDownItemStyle = 0x7f010058; - public static final int spinnerMode = 0x7f010052; - public static final int spinnerStyle = 0x7f010057; - public static final int subtitle = 0x7f010029; - public static final int subtitleTextStyle = 0x7f01002b; - public static final int textAllCaps = 0x7f01006d; - public static final int textAppearanceLargePopupMenu = 0x7f010014; - public static final int textAppearanceListItem = 0x7f010023; - public static final int textAppearanceListItemSmall = 0x7f010024; - public static final int textAppearanceSearchResultSubtitle = 0x7f010067; - public static final int textAppearanceSearchResultTitle = 0x7f010066; - public static final int textAppearanceSmallPopupMenu = 0x7f010015; - public static final int textColorSearchUrl = 0x7f010068; - public static final int title = 0x7f010025; - public static final int titleTextStyle = 0x7f01002a; - public static final int windowActionBar = 0x7f010000; - public static final int windowActionBarOverlay = 0x7f010001; - public static final int windowFixedHeightMajor = 0x7f010006; - public static final int windowFixedHeightMinor = 0x7f010004; - public static final int windowFixedWidthMajor = 0x7f010003; - public static final int windowFixedWidthMinor = 0x7f010005; - public static final int windowSplitActionBar = 0x7f010002; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080000; - public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080001; - public static final int abc_config_actionMenuItemAllCaps = 0x7f080005; - public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080004; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080003; - public static final int abc_split_action_bar_is_narrow = 0x7f080002; - } - public static final class color { - public static final int abc_search_url_text_holo = 0x7f09000e; - public static final int abc_search_url_text_normal = 0x7f090000; - public static final int abc_search_url_text_pressed = 0x7f090002; - public static final int abc_search_url_text_selected = 0x7f090001; - } public static final class dimen { - public static final int abc_action_bar_default_height = 0x7f0a0002; - public static final int abc_action_bar_icon_vertical_padding = 0x7f0a0003; - public static final int abc_action_bar_progress_bar_size = 0x7f0a000a; - public static final int abc_action_bar_stacked_max_height = 0x7f0a0009; - public static final int abc_action_bar_stacked_tab_max_width = 0x7f0a0001; - public static final int abc_action_bar_subtitle_bottom_margin = 0x7f0a0007; - public static final int abc_action_bar_subtitle_text_size = 0x7f0a0005; - public static final int abc_action_bar_subtitle_top_margin = 0x7f0a0006; - public static final int abc_action_bar_title_text_size = 0x7f0a0004; - public static final int abc_action_button_min_width = 0x7f0a0008; - public static final int abc_config_prefDialogWidth = 0x7f0a0000; - public static final int abc_dropdownitem_icon_width = 0x7f0a0010; - public static final int abc_dropdownitem_text_padding_left = 0x7f0a000e; - public static final int abc_dropdownitem_text_padding_right = 0x7f0a000f; - public static final int abc_panel_menu_list_width = 0x7f0a000b; - public static final int abc_search_view_preferred_width = 0x7f0a000d; - public static final int abc_search_view_text_min_width = 0x7f0a000c; - public static final int activity_horizontal_margin = 0x7f0a0015; - public static final int activity_vertical_margin = 0x7f0a0016; - public static final int dialog_fixed_height_major = 0x7f0a0013; - public static final int dialog_fixed_height_minor = 0x7f0a0014; - public static final int dialog_fixed_width_major = 0x7f0a0011; - public static final int dialog_fixed_width_minor = 0x7f0a0012; + public static final int activity_horizontal_margin = 0x7f060000; + public static final int activity_vertical_margin = 0x7f060001; } 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_launcher = 0x7f020057; - } - public static final class id { - public static final int action_bar = 0x7f070023; - public static final int action_bar_activity_content = 0x7f070015; - public static final int action_bar_container = 0x7f070022; - public static final int action_bar_overlay_layout = 0x7f070026; - public static final int action_bar_root = 0x7f070021; - public static final int action_bar_subtitle = 0x7f07002a; - public static final int action_bar_title = 0x7f070029; - public static final int action_context_bar = 0x7f070024; - public static final int action_menu_divider = 0x7f070016; - public static final int action_menu_presenter = 0x7f070017; - public static final int action_mode_close_button = 0x7f07002b; - public static final int action_settings = 0x7f070070; - public static final int activity_chooser_view_content = 0x7f07002c; - public static final int always = 0x7f07000b; - public static final int beginning = 0x7f070011; - public static final int checkbox = 0x7f070034; - public static final int collapseActionView = 0x7f07000d; - public static final int default_activity_button = 0x7f07002f; - public static final int dialog = 0x7f07000e; - public static final int disableHome = 0x7f070008; - public static final int dropdown = 0x7f07000f; - public static final int edit_query = 0x7f070037; - public static final int end = 0x7f070013; - public static final int expand_activities_button = 0x7f07002d; - public static final int expanded_menu = 0x7f070033; - public static final int home = 0x7f070014; - public static final int homeAsUp = 0x7f070005; - public static final int icon = 0x7f070031; - public static final int ifRoom = 0x7f07000a; - public static final int image = 0x7f07002e; - public static final int listMode = 0x7f070001; - public static final int list_item = 0x7f070030; - public static final int middle = 0x7f070012; - public static final int never = 0x7f070009; - public static final int none = 0x7f070010; - public static final int normal = 0x7f070000; - public static final int progress_circular = 0x7f070018; - public static final int progress_horizontal = 0x7f070019; - public static final int radio = 0x7f070036; - public static final int search_badge = 0x7f070039; - public static final int search_bar = 0x7f070038; - public static final int search_button = 0x7f07003a; - public static final int search_close_btn = 0x7f07003f; - public static final int search_edit_frame = 0x7f07003b; - public static final int search_go_btn = 0x7f070041; - public static final int search_mag_icon = 0x7f07003c; - public static final int search_plate = 0x7f07003d; - public static final int search_src_text = 0x7f07003e; - public static final int search_voice_btn = 0x7f070042; - public static final int shortcut = 0x7f070035; - 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 = 0x7f070025; - public static final int submit_area = 0x7f070040; - public static final int tabMode = 0x7f070002; - public static final int title = 0x7f070032; - public static final int top_action_bar = 0x7f070027; - public static final int up = 0x7f070028; - public static final int useLogo = 0x7f070003; - public static final int withText = 0x7f07000c; - } - public static final class integer { - public static final int abc_max_action_buttons = 0x7f0b0000; - } - 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_search_dropdown_item_icons_2line = 0x7f030015; - public static final int abc_search_view = 0x7f030016; - public static final int abc_simple_decor = 0x7f030017; - public static final int support_simple_spinner_dropdown_item = 0x7f030026; - } - public static final class menu { - public static final int main = 0x7f0f0003; + public static final int ic_launcher = 0x7f020000; } public static final class string { - public static final int abc_action_bar_home_description = 0x7f0c0001; - public static final int abc_action_bar_up_description = 0x7f0c0002; - public static final int abc_action_menu_overflow_description = 0x7f0c0003; - public static final int abc_action_mode_done = 0x7f0c0000; - public static final int abc_activity_chooser_view_see_all = 0x7f0c000a; - public static final int abc_activitychooserview_choose_application = 0x7f0c0009; - public static final int abc_searchview_description_clear = 0x7f0c0006; - public static final int abc_searchview_description_query = 0x7f0c0005; - public static final int abc_searchview_description_search = 0x7f0c0004; - public static final int abc_searchview_description_submit = 0x7f0c0007; - public static final int abc_searchview_description_voice = 0x7f0c0008; - public static final int abc_shareactionprovider_share_with = 0x7f0c000c; - public static final int abc_shareactionprovider_share_with_application = 0x7f0c000b; - public static final int action_settings = 0x7f0c0010; - public static final int app_name = 0x7f0c000d; - public static final int hello_world = 0x7f0c000f; - public static final int title_activity_main = 0x7f0c000e; + public static final int action_settings = 0x7f070003; + public static final int app_name = 0x7f070000; + public static final int hello_world = 0x7f070002; + public static final int title_activity_main = 0x7f070001; } public static final class style { - public static final int AppBaseTheme = 0x7f0d008b; - public static final int AppTheme = 0x7f0d008c; - public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog = 0x7f0d0063; - public static final int TextAppearance_AppCompat_Base_SearchResult = 0x7f0d006d; - public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle = 0x7f0d006f; - public static final int TextAppearance_AppCompat_Base_SearchResult_Title = 0x7f0d006e; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large = 0x7f0d0069; - public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small = 0x7f0d006a; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult = 0x7f0d0070; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle = 0x7f0d0072; - public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title = 0x7f0d0071; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large = 0x7f0d006b; - public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small = 0x7f0d006c; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0d0035; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0d0034; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d0030; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d0031; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d0033; - public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0d0032; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d001a; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d0006; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d0008; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d0005; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d0007; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d001e; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0d0020; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d001d; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0d001f; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu = 0x7f0d0054; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle = 0x7f0d0056; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse = 0x7f0d0058; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title = 0x7f0d0055; - public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse = 0x7f0d0057; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle = 0x7f0d0051; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse = 0x7f0d0053; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title = 0x7f0d0050; - public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse = 0x7f0d0052; - public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem = 0x7f0d0061; - public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d0021; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d002e; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d002f; - public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item = 0x7f0d0062; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d0028; - public static final int Theme_AppCompat = 0x7f0d0077; - public static final int Theme_AppCompat_Base_CompactMenu = 0x7f0d0083; - public static final int Theme_AppCompat_Base_CompactMenu_Dialog = 0x7f0d0084; - public static final int Theme_AppCompat_CompactMenu = 0x7f0d007c; - public static final int Theme_AppCompat_CompactMenu_Dialog = 0x7f0d007d; - public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0d007a; - public static final int Theme_AppCompat_Light = 0x7f0d0078; - public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0d0079; - public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d007b; - public static final int Theme_Base = 0x7f0d007e; - public static final int Theme_Base_AppCompat = 0x7f0d0080; - public static final int Theme_Base_AppCompat_DialogWhenLarge = 0x7f0d0085; - public static final int Theme_Base_AppCompat_DialogWhenLarge_Base = 0x7f0d0089; - public static final int Theme_Base_AppCompat_Dialog_FixedSize = 0x7f0d0087; - public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize = 0x7f0d0088; - public static final int Theme_Base_AppCompat_Light = 0x7f0d0081; - public static final int Theme_Base_AppCompat_Light_DarkActionBar = 0x7f0d0082; - public static final int Theme_Base_AppCompat_Light_DialogWhenLarge = 0x7f0d0086; - public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base = 0x7f0d008a; - public static final int Theme_Base_Light = 0x7f0d007f; - public static final int Widget_AppCompat_ActionBar = 0x7f0d0000; - public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0d0002; - public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0d0011; - public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0d0017; - public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0d0014; - public static final int Widget_AppCompat_ActionButton = 0x7f0d000b; - public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0d000d; - public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0d000f; - public static final int Widget_AppCompat_ActionMode = 0x7f0d001b; - public static final int Widget_AppCompat_ActivityChooserView = 0x7f0d0038; - public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0d0036; - public static final int Widget_AppCompat_Base_ActionBar = 0x7f0d003a; - public static final int Widget_AppCompat_Base_ActionBar_Solid = 0x7f0d003c; - public static final int Widget_AppCompat_Base_ActionBar_TabBar = 0x7f0d0045; - public static final int Widget_AppCompat_Base_ActionBar_TabText = 0x7f0d004b; - public static final int Widget_AppCompat_Base_ActionBar_TabView = 0x7f0d0048; - public static final int Widget_AppCompat_Base_ActionButton = 0x7f0d003f; - public static final int Widget_AppCompat_Base_ActionButton_CloseMode = 0x7f0d0041; - public static final int Widget_AppCompat_Base_ActionButton_Overflow = 0x7f0d0043; - public static final int Widget_AppCompat_Base_ActionMode = 0x7f0d004e; - public static final int Widget_AppCompat_Base_ActivityChooserView = 0x7f0d0075; - public static final int Widget_AppCompat_Base_AutoCompleteTextView = 0x7f0d0073; - public static final int Widget_AppCompat_Base_DropDownItem_Spinner = 0x7f0d005d; - public static final int Widget_AppCompat_Base_ListPopupWindow = 0x7f0d0065; - public static final int Widget_AppCompat_Base_ListView_DropDown = 0x7f0d005f; - public static final int Widget_AppCompat_Base_ListView_Menu = 0x7f0d0064; - public static final int Widget_AppCompat_Base_PopupMenu = 0x7f0d0067; - public static final int Widget_AppCompat_Base_ProgressBar = 0x7f0d005a; - public static final int Widget_AppCompat_Base_ProgressBar_Horizontal = 0x7f0d0059; - public static final int Widget_AppCompat_Base_Spinner = 0x7f0d005b; - public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0d0024; - public static final int Widget_AppCompat_Light_ActionBar = 0x7f0d0001; - public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0003; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0d0004; - public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0012; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0d0013; - public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d0018; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d0019; - public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d0015; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0d0016; - public static final int Widget_AppCompat_Light_ActionButton = 0x7f0d000c; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0d000e; - public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0d0010; - public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0d001c; - public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0d0039; - public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0d0037; - public static final int Widget_AppCompat_Light_Base_ActionBar = 0x7f0d003b; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid = 0x7f0d003d; - public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse = 0x7f0d003e; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar = 0x7f0d0046; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse = 0x7f0d0047; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText = 0x7f0d004c; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse = 0x7f0d004d; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView = 0x7f0d0049; - public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse = 0x7f0d004a; - public static final int Widget_AppCompat_Light_Base_ActionButton = 0x7f0d0040; - public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode = 0x7f0d0042; - public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow = 0x7f0d0044; - public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse = 0x7f0d004f; - public static final int Widget_AppCompat_Light_Base_ActivityChooserView = 0x7f0d0076; - public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView = 0x7f0d0074; - public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner = 0x7f0d005e; - public static final int Widget_AppCompat_Light_Base_ListPopupWindow = 0x7f0d0066; - public static final int Widget_AppCompat_Light_Base_ListView_DropDown = 0x7f0d0060; - public static final int Widget_AppCompat_Light_Base_PopupMenu = 0x7f0d0068; - public static final int Widget_AppCompat_Light_Base_Spinner = 0x7f0d005c; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0d0025; - public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0d002a; - public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0d0027; - public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0d002c; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0d0023; - public static final int Widget_AppCompat_ListPopupWindow = 0x7f0d0029; - public static final int Widget_AppCompat_ListView_DropDown = 0x7f0d0026; - public static final int Widget_AppCompat_ListView_Menu = 0x7f0d002d; - public static final int Widget_AppCompat_PopupMenu = 0x7f0d002b; - public static final int Widget_AppCompat_ProgressBar = 0x7f0d000a; - public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0009; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0d0022; - } - public static final class styleable { - public static final int[] ActionBar = { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 }; - public static final int[] ActionBarLayout = { 0x010100b3 }; - public static final int ActionBarLayout_android_layout_gravity = 0; - public static final int[] ActionBarWindow = { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }; - public static final int ActionBarWindow_windowActionBar = 0; - public static final int ActionBarWindow_windowActionBarOverlay = 1; - public static final int ActionBarWindow_windowFixedHeightMajor = 6; - public static final int ActionBarWindow_windowFixedHeightMinor = 4; - public static final int ActionBarWindow_windowFixedWidthMajor = 3; - public static final int ActionBarWindow_windowFixedWidthMinor = 5; - 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 = 1; - 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 = 0; - 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 = { 0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f, 0x7f010031 }; - 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 = { 0x7f01006a, 0x7f01006b }; - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - public static final int ActivityChooserView_initialActivityCount = 0; - public static final int[] CompatTextView = { 0x7f01006d }; - public static final int CompatTextView_textAllCaps = 0; - public static final int[] LinearLayoutICS = { 0x7f01002e, 0x7f010055, 0x7f010056 }; - 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, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 }; - 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, 0x7f01005a, 0x7f01005b }; - 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, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }; - 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 = { 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }; - 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, 0x7f010038, 0x7f010039 }; - public static final int View_android_focusable = 0; - public static final int View_paddingEnd = 2; - public static final int View_paddingStart = 1; + public static final int AppBaseTheme = 0x7f080000; + public static final int AppTheme = 0x7f080001; } } diff --git a/src/java/PluginQR/res/layout/fragment_main.xml b/src/java/PluginQR/res/layout/fragment_main.xml index 99f21199..1fe90b04 100644 --- a/src/java/PluginQR/res/layout/fragment_main.xml +++ b/src/java/PluginQR/res/layout/fragment_main.xml @@ -2,16 +2,58 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" + android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="keepass2android.plugin.qr.MainActivity$PlaceholderFragment" > +