diff --git a/.idea/dictionaries/zhangxinxin.xml b/.idea/dictionaries/zhangxinxin.xml
deleted file mode 100644
index 08ed68e..0000000
--- a/.idea/dictionaries/zhangxinxin.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..97626ba
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index 39139a6..0295558 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -3,14 +3,14 @@
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 94a25f7..35eb1dd 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
index 31a6d47..189621c 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -21,6 +21,7 @@ android {
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
+ compile project(':swipeback')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
diff --git a/app/src/main/java/com/lauren/simplenews/news/widget/NewsDetailActivity.java b/app/src/main/java/com/lauren/simplenews/news/widget/NewsDetailActivity.java
index 06db72d..8a50d80 100644
--- a/app/src/main/java/com/lauren/simplenews/news/widget/NewsDetailActivity.java
+++ b/app/src/main/java/com/lauren/simplenews/news/widget/NewsDetailActivity.java
@@ -2,7 +2,6 @@
import android.os.Bundle;
import android.support.design.widget.CollapsingToolbarLayout;
-import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.ImageView;
@@ -13,10 +12,14 @@
import com.lauren.simplenews.news.presenter.NewsDetailPresenter;
import com.lauren.simplenews.news.presenter.NewsDetailPresenterImpl;
import com.lauren.simplenews.news.view.NewsDetailView;
+import com.lauren.simplenews.utils.DensityUtil;
import com.lauren.simplenews.utils.ImageLoaderUtils;
import org.sufficientlysecure.htmltextview.HtmlTextView;
+import me.imid.swipebacklayout.lib.SwipeBackLayout;
+import me.imid.swipebacklayout.lib.app.SwipeBackActivity;
+
/**
* Description : 新闻详情界面
* Author : lauren
@@ -24,12 +27,13 @@
* Blog : http://www.liuling123.com
* Date : 15/12/19
*/
-public class NewsDetailActivity extends AppCompatActivity implements NewsDetailView {
+public class NewsDetailActivity extends SwipeBackActivity implements NewsDetailView {
private NewsBean mNews;
private HtmlTextView mTVNewsContent;
private NewsDetailPresenter mNewsDetailPresenter;
private ProgressBar mProgressBar;
+ private SwipeBackLayout mSwipeBackLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -48,6 +52,10 @@ public void onClick(View view) {
}
});
+ mSwipeBackLayout = getSwipeBackLayout();
+ mSwipeBackLayout.setEdgeSize(DensityUtil.getWidthInPx(this));
+ mSwipeBackLayout.setEdgeTrackingEnabled(SwipeBackLayout.EDGE_LEFT);
+
mNews = (NewsBean) getIntent().getSerializableExtra("news");
CollapsingToolbarLayout collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
diff --git a/app/src/main/java/com/lauren/simplenews/utils/DensityUtil.java b/app/src/main/java/com/lauren/simplenews/utils/DensityUtil.java
index 56825c6..f4a2a89 100644
--- a/app/src/main/java/com/lauren/simplenews/utils/DensityUtil.java
+++ b/app/src/main/java/com/lauren/simplenews/utils/DensityUtil.java
@@ -1,13 +1,16 @@
package com.lauren.simplenews.utils;
-import java.util.concurrent.Executors;
-
import android.content.Context;
+/**
+ * Description :
+ * Author : lauren
+ * Email : lauren.liuling@gmail.com
+ * Blog : http://www.liuling123.com
+ * Date : 15/12/21
+ */
public class DensityUtil {
-
-
public static final int getHeightInPx(Context context) {
final int height = context.getResources().getDisplayMetrics().heightPixels;
return height;
diff --git a/build.gradle b/build.gradle
index e0b366a..1b7886d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:1.5.0'
+ classpath 'com.android.tools.build:gradle:1.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -17,7 +17,3 @@ allprojects {
jcenter()
}
}
-
-task clean(type: Delete) {
- delete rootProject.buildDir
-}
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
index 05ef575..8c0fb64 100644
Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index f23df6e..18f4e9a 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
-#Wed Oct 21 11:34:03 PDT 2015
+#Mon Dec 14 16:34:39 CST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
diff --git a/gradlew b/gradlew
index 9d82f78..91a7e26 100755
--- a/gradlew
+++ b/gradlew
@@ -42,6 +42,11 @@ case "`uname`" in
;;
esac
+# For Cygwin, ensure paths are in UNIX format before anything is touched.
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
@@ -56,9 +61,9 @@ while [ -h "$PRG" ] ; do
fi
done
SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
+cd "`dirname \"$PRG\"`/" >&-
APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
+cd "$SAVED" >&-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
@@ -109,7 +114,6 @@ fi
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
diff --git a/settings.gradle b/settings.gradle
index e7b4def..b92ad5a 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1 +1 @@
-include ':app'
+include ':app',':swipeback'
diff --git a/swipeback/build/generated/source/buildConfig/debug/me/imid/swipebacklayout/lib/BuildConfig.java b/swipeback/build/generated/source/buildConfig/debug/me/imid/swipebacklayout/lib/BuildConfig.java
deleted file mode 100644
index a9e6544..0000000
--- a/swipeback/build/generated/source/buildConfig/debug/me/imid/swipebacklayout/lib/BuildConfig.java
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package me.imid.swipebacklayout.lib;
-
-public final class BuildConfig {
- public static final boolean DEBUG = Boolean.parseBoolean("true");
- public static final String APPLICATION_ID = "me.imid.swipebacklayout.lib";
- public static final String BUILD_TYPE = "debug";
- public static final String FLAVOR = "";
- public static final int VERSION_CODE = 1;
- public static final String VERSION_NAME = "1.0.0";
-}
diff --git a/swipeback/build/generated/source/buildConfig/release/me/imid/swipebacklayout/lib/BuildConfig.java b/swipeback/build/generated/source/buildConfig/release/me/imid/swipebacklayout/lib/BuildConfig.java
deleted file mode 100644
index bbf3910..0000000
--- a/swipeback/build/generated/source/buildConfig/release/me/imid/swipebacklayout/lib/BuildConfig.java
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package me.imid.swipebacklayout.lib;
-
-public final class BuildConfig {
- public static final boolean DEBUG = false;
- public static final String APPLICATION_ID = "me.imid.swipebacklayout.lib";
- public static final String BUILD_TYPE = "release";
- public static final String FLAVOR = "";
- public static final int VERSION_CODE = 1;
- public static final String VERSION_NAME = "1.0.0";
-}
diff --git a/swipeback/build/generated/source/r/debug/me/imid/swipebacklayout/lib/R.java b/swipeback/build/generated/source/r/debug/me/imid/swipebacklayout/lib/R.java
deleted file mode 100644
index 897fea0..0000000
--- a/swipeback/build/generated/source/r/debug/me/imid/swipebacklayout/lib/R.java
+++ /dev/null
@@ -1,6334 +0,0 @@
-/* AUTO-GENERATED FILE. DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found. It
- * should not be modified by hand.
- */
-
-package me.imid.swipebacklayout.lib;
-
-public final class R {
- public static final class anim {
- public static int abc_fade_in=0x7f040000;
- public static int abc_fade_out=0x7f040001;
- public static int abc_grow_fade_in_from_bottom=0x7f040002;
- public static int abc_popup_enter=0x7f040003;
- public static int abc_popup_exit=0x7f040004;
- public static int abc_shrink_fade_out_from_bottom=0x7f040005;
- public static int abc_slide_in_bottom=0x7f040006;
- public static int abc_slide_in_top=0x7f040007;
- public static int abc_slide_out_bottom=0x7f040008;
- public static int abc_slide_out_top=0x7f040009;
- }
- public static final class attr {
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int SwipeBackLayoutStyle=0x7f010000;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionBarDivider=0x7f010069;
- /**
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 int actionBarItemBackground=0x7f01006a;
- /**
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 int actionBarPopupTheme=0x7f010063;
- /**
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).
-
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.
-
May be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
wrap_content
0
-
- */
- public static int actionBarSize=0x7f010068;
- /**
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 int actionBarSplitStyle=0x7f010065;
- /**
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 int actionBarStyle=0x7f010064;
- /**
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 int actionBarTabBarStyle=0x7f01005f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionBarTabStyle=0x7f01005e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionBarTabTextStyle=0x7f010060;
- /**
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 int actionBarTheme=0x7f010066;
- /**
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 int actionBarWidgetTheme=0x7f010067;
- /**
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 int actionButtonStyle=0x7f010083;
- /**
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 int actionDropDownStyle=0x7f01007f;
- /**
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 int actionLayout=0x7f010035;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionMenuTextAppearance=0x7f01006b;
- /**
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 int actionMenuTextColor=0x7f01006c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionModeBackground=0x7f01006f;
- /**
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 int actionModeCloseButtonStyle=0x7f01006e;
- /**
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 int actionModeCloseDrawable=0x7f010071;
- /**
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 int actionModeCopyDrawable=0x7f010073;
- /**
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 int actionModeCutDrawable=0x7f010072;
- /**
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 int actionModeFindDrawable=0x7f010077;
- /**
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 int actionModePasteDrawable=0x7f010074;
- /**
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 int actionModePopupWindowStyle=0x7f010079;
- /**
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 int actionModeSelectAllDrawable=0x7f010075;
- /**
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 int actionModeShareDrawable=0x7f010076;
- /**
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 int actionModeSplitBackground=0x7f010070;
- /**
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 int actionModeStyle=0x7f01006d;
- /**
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 int actionModeWebSearchDrawable=0x7f010078;
- /**
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 int actionOverflowButtonStyle=0x7f010061;
- /**
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 int actionOverflowMenuStyle=0x7f010062;
- /**
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 int actionProviderClass=0x7f010037;
- /**
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 int actionViewClass=0x7f010036;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int activityChooserViewStyle=0x7f01008b;
- /**
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 int alertDialogButtonGroupStyle=0x7f0100ae;
- /**
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 int alertDialogCenterButtons=0x7f0100af;
- /**
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 int alertDialogStyle=0x7f0100ad;
- /**
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 int alertDialogTheme=0x7f0100b0;
- /**
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 int allowStacking=0x7f010026;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name") or
-theme attribute (in the form
-"?[package:][type:]name")
-containing a value of this type.
- */
- public static int arrowHeadLength=0x7f01002d;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name") or
-theme attribute (in the form
-"?[package:][type:]name")
-containing a value of this type.
- */
- public static int arrowShaftLength=0x7f01002e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int autoCompleteTextViewStyle=0x7f0100b5;
- /**
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 int background=0x7f01000d;
- /**
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 int backgroundSplit=0x7f01000f;
- /**
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 int backgroundStacked=0x7f01000e;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int backgroundTint=0x7f0100d2;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- */
- public static int backgroundTintMode=0x7f0100d3;
- /**
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 int barLength=0x7f01002f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int borderlessButtonStyle=0x7f010088;
- /**
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 int buttonBarButtonStyle=0x7f010085;
- /**
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 int buttonBarNegativeButtonStyle=0x7f0100b3;
- /**
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 int buttonBarNeutralButtonStyle=0x7f0100b4;
- /**
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 int buttonBarPositiveButtonStyle=0x7f0100b2;
- /**
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 int buttonBarStyle=0x7f010084;
- /**
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 int buttonPanelSideLayout=0x7f010020;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int buttonStyle=0x7f0100b6;
- /**
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 int buttonStyleSmall=0x7f0100b7;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int buttonTint=0x7f010027;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- */
- public static int buttonTintMode=0x7f010028;
- /**
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 int checkboxStyle=0x7f0100b8;
- /**
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 int checkedTextViewStyle=0x7f0100b9;
- /**
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 int closeIcon=0x7f01003f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int closeItemLayout=0x7f01001d;
- /**
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 int collapseContentDescription=0x7f0100c9;
- /**
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 int collapseIcon=0x7f0100c8;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int color=0x7f010029;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorAccent=0x7f0100a6;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorButtonNormal=0x7f0100aa;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorControlActivated=0x7f0100a8;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorControlHighlight=0x7f0100a9;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorControlNormal=0x7f0100a7;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorPrimary=0x7f0100a4;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorPrimaryDark=0x7f0100a5;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorSwitchThumbNormal=0x7f0100ab;
- /**
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 int commitIcon=0x7f010044;
- /**
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 int contentInsetEnd=0x7f010018;
- /**
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 int contentInsetLeft=0x7f010019;
- /**
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 int contentInsetRight=0x7f01001a;
- /**
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 int contentInsetStart=0x7f010017;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int controlBackground=0x7f0100ac;
- /**
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 int customNavigationLayout=0x7f010010;
- /**
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 int defaultQueryHint=0x7f01003e;
- /**
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 int dialogPreferredPadding=0x7f01007d;
- /**
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 int dialogTheme=0x7f01007c;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
useLogo
0x1
-
showHome
0x2
-
homeAsUp
0x4
-
showTitle
0x8
-
showCustom
0x10
-
disableHome
0x20
-
- */
- public static int displayOptions=0x7f010006;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int divider=0x7f01000c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int dividerHorizontal=0x7f01008a;
- /**
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 int dividerPadding=0x7f010033;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int dividerVertical=0x7f010089;
- /**
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 int drawableSize=0x7f01002b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int drawerArrowStyle=0x7f010001;
- /**
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 int dropDownListViewStyle=0x7f01009c;
- /**
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 int dropdownListPreferredItemHeight=0x7f010080;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
left
0
-
right
1
-
bottom
2
-
all
3
-
- */
- public static int edge_flag=0x7f010049;
- /**
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 int edge_size=0x7f010048;
- /**
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 int editTextBackground=0x7f010091;
- /**
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 int editTextColor=0x7f010090;
- /**
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 int editTextStyle=0x7f0100ba;
- /**
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 int elevation=0x7f01001b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int expandActivityOverflowButtonDrawable=0x7f01001f;
- /**
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 int gapBetweenBars=0x7f01002c;
- /**
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 int goIcon=0x7f010040;
- /**
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 int height=0x7f010002;
- /**
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 int hideOnContentScroll=0x7f010016;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int homeAsUpIndicator=0x7f010082;
- /**
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 int homeLayout=0x7f010011;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int icon=0x7f01000a;
- /**
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 int iconifiedByDefault=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 int imageButtonStyle=0x7f010092;
- /**
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 int indeterminateProgressStyle=0x7f010013;
- /**
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 int initialActivityCount=0x7f01001e;
- /**
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 int isLightTheme=0x7f010003;
- /**
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 int itemPadding=0x7f010015;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int layout=0x7f01003b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int listChoiceBackgroundIndicator=0x7f0100a3;
- /**
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 int listDividerAlertDialog=0x7f01007e;
- /**
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 int listItemLayout=0x7f010024;
- /**
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 int listLayout=0x7f010021;
- /**
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 int listPopupWindowStyle=0x7f01009d;
- /**
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 int listPreferredItemHeight=0x7f010097;
- /**
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 int listPreferredItemHeightLarge=0x7f010099;
- /**
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 int listPreferredItemHeightSmall=0x7f010098;
- /**
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 int listPreferredItemPaddingLeft=0x7f01009a;
- /**
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 int listPreferredItemPaddingRight=0x7f01009b;
- /**
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 int logo=0x7f01000b;
- /**
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 int logoDescription=0x7f0100cc;
- /**
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 int maxButtonHeight=0x7f0100c7;
- /**
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 int measureWithLargestChild=0x7f010031;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int multiChoiceItemLayout=0x7f010022;
- /**
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 int navigationContentDescription=0x7f0100cb;
- /**
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 int navigationIcon=0x7f0100ca;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
normal
0
-
listMode
1
-
tabMode
2
-
- */
- public static int navigationMode=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 int overlapAnchor=0x7f010039;
- /**
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 int paddingEnd=0x7f0100d0;
- /**
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 int paddingStart=0x7f0100cf;
- /**
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 int panelBackground=0x7f0100a0;
- /**
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 int panelMenuListTheme=0x7f0100a2;
- /**
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 int panelMenuListWidth=0x7f0100a1;
- /**
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 int popupMenuStyle=0x7f01008e;
- /**
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 int popupTheme=0x7f01001c;
- /**
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 int popupWindowStyle=0x7f01008f;
- /**
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 int preserveIconSpacing=0x7f010038;
- /**
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 int progressBarPadding=0x7f010014;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int progressBarStyle=0x7f010012;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int queryBackground=0x7f010046;
- /**
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 int queryHint=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 int radioButtonStyle=0x7f0100bb;
- /**
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 int ratingBarStyle=0x7f0100bc;
- /**
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 int searchHintIcon=0x7f010042;
- /**
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 int searchIcon=0x7f010041;
- /**
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 int searchViewStyle=0x7f010096;
- /**
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 int seekBarStyle=0x7f0100bd;
- /**
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 int selectableItemBackground=0x7f010086;
- /**
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 int selectableItemBackgroundBorderless=0x7f010087;
- /**
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 int shadow_bottom=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 int shadow_left=0x7f01004a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int shadow_right=0x7f01004b;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
never
0
-
ifRoom
1
-
always
2
-
withText
4
-
collapseActionView
8
-
- */
- public static int showAsAction=0x7f010034;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
beginning
1
-
middle
2
-
end
4
-
- */
- public static int showDividers=0x7f010032;
- /**
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 int showText=0x7f010053;
- /**
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 int singleChoiceItemLayout=0x7f010023;
- /**
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 int spinBars=0x7f01002a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int spinnerDropDownItemStyle=0x7f010081;
- /**
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 int spinnerStyle=0x7f0100be;
- /**
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 int splitTrack=0x7f010052;
- /**
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 int state_above_anchor=0x7f01003a;
- /**
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 int submitBackground=0x7f010047;
- /**
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 int subtitle=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 int subtitleTextAppearance=0x7f0100c1;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int subtitleTextColor=0x7f0100ce;
- /**
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 int subtitleTextStyle=0x7f010009;
- /**
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 int suggestionRowLayout=0x7f010045;
- /**
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 int switchMinWidth=0x7f010050;
- /**
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 int switchPadding=0x7f010051;
- /**
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 int switchStyle=0x7f0100bf;
- /**
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 int switchTextAppearance=0x7f01004f;
- /**
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 int textAllCaps=0x7f010025;
- /**
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 int textAppearanceLargePopupMenu=0x7f01007a;
- /**
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 int textAppearanceListItem=0x7f01009e;
- /**
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 int textAppearanceListItemSmall=0x7f01009f;
- /**
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 int textAppearanceSearchResultSubtitle=0x7f010094;
- /**
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 int textAppearanceSearchResultTitle=0x7f010093;
- /**
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 int textAppearanceSmallPopupMenu=0x7f01007b;
- /**
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 int textColorAlertDialogListItem=0x7f0100b1;
- /**
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 int textColorSearchUrl=0x7f010095;
- /**
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 int theme=0x7f0100d1;
- /**
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 int thickness=0x7f010030;
- /**
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 int thumbTextPadding=0x7f01004e;
- /**
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 int title=0x7f010004;
- /**
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 int titleMarginBottom=0x7f0100c6;
- /**
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 int titleMarginEnd=0x7f0100c4;
- /**
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 int titleMarginStart=0x7f0100c3;
- /**
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 int titleMarginTop=0x7f0100c5;
- /**
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 int titleMargins=0x7f0100c2;
- /**
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 int titleTextAppearance=0x7f0100c0;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int titleTextColor=0x7f0100cd;
- /**
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 int titleTextStyle=0x7f010008;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int toolbarNavigationButtonStyle=0x7f01008d;
- /**
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 int toolbarStyle=0x7f01008c;
- /**
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 int track=0x7f01004d;
- /**
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 int voiceIcon=0x7f010043;
- /**
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 int windowActionBar=0x7f010054;
- /**
Must be a boolean value, either "true" or "false".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name") or
-theme attribute (in the form
-"?[package:][type:]name")
-containing a value of this type.
- */
- public static int windowActionBarOverlay=0x7f010056;
- /**
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 int windowActionModeOverlay=0x7f010057;
- /**
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 int windowFixedHeightMajor=0x7f01005b;
- /**
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 int windowFixedHeightMinor=0x7f010059;
- /**
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 int windowFixedWidthMajor=0x7f010058;
- /**
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 int windowFixedWidthMinor=0x7f01005a;
- /**
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 int windowMinWidthMajor=0x7f01005c;
- /**
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 int windowMinWidthMinor=0x7f01005d;
- /**
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 int windowNoTitle=0x7f010055;
- }
- public static final class bool {
- public static int abc_action_bar_embed_tabs=0x7f060003;
- public static int abc_action_bar_embed_tabs_pre_jb=0x7f060001;
- public static int abc_action_bar_expanded_action_views_exclusive=0x7f060004;
- public static int abc_allow_stacked_button_bar=0x7f060000;
- public static int abc_config_actionMenuItemAllCaps=0x7f060005;
- public static int abc_config_allowActionMenuItemTextWithIcon=0x7f060002;
- public static int abc_config_closeDialogWhenTouchOutside=0x7f060006;
- public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f060007;
- }
- public static final class color {
- public static int abc_background_cache_hint_selector_material_dark=0x7f0a003a;
- public static int abc_background_cache_hint_selector_material_light=0x7f0a003b;
- public static int abc_color_highlight_material=0x7f0a003c;
- public static int abc_input_method_navigation_guard=0x7f0a0000;
- public static int abc_primary_text_disable_only_material_dark=0x7f0a003d;
- public static int abc_primary_text_disable_only_material_light=0x7f0a003e;
- public static int abc_primary_text_material_dark=0x7f0a003f;
- public static int abc_primary_text_material_light=0x7f0a0040;
- public static int abc_search_url_text=0x7f0a0041;
- public static int abc_search_url_text_normal=0x7f0a0001;
- public static int abc_search_url_text_pressed=0x7f0a0002;
- public static int abc_search_url_text_selected=0x7f0a0003;
- public static int abc_secondary_text_material_dark=0x7f0a0042;
- public static int abc_secondary_text_material_light=0x7f0a0043;
- public static int accent_material_dark=0x7f0a0004;
- public static int accent_material_light=0x7f0a0005;
- public static int background_floating_material_dark=0x7f0a0006;
- public static int background_floating_material_light=0x7f0a0007;
- public static int background_material_dark=0x7f0a0008;
- public static int background_material_light=0x7f0a0009;
- public static int bright_foreground_disabled_material_dark=0x7f0a000a;
- public static int bright_foreground_disabled_material_light=0x7f0a000b;
- public static int bright_foreground_inverse_material_dark=0x7f0a000c;
- public static int bright_foreground_inverse_material_light=0x7f0a000d;
- public static int bright_foreground_material_dark=0x7f0a000e;
- public static int bright_foreground_material_light=0x7f0a000f;
- public static int button_material_dark=0x7f0a0010;
- public static int button_material_light=0x7f0a0011;
- public static int dim_foreground_disabled_material_dark=0x7f0a0012;
- public static int dim_foreground_disabled_material_light=0x7f0a0013;
- public static int dim_foreground_material_dark=0x7f0a0014;
- public static int dim_foreground_material_light=0x7f0a0015;
- public static int foreground_material_dark=0x7f0a0016;
- public static int foreground_material_light=0x7f0a0017;
- public static int highlighted_text_material_dark=0x7f0a0018;
- public static int highlighted_text_material_light=0x7f0a0019;
- public static int hint_foreground_material_dark=0x7f0a001a;
- public static int hint_foreground_material_light=0x7f0a001b;
- public static int material_blue_grey_800=0x7f0a001c;
- public static int material_blue_grey_900=0x7f0a001d;
- public static int material_blue_grey_950=0x7f0a001e;
- public static int material_deep_teal_200=0x7f0a001f;
- public static int material_deep_teal_500=0x7f0a0020;
- public static int material_grey_100=0x7f0a0021;
- public static int material_grey_300=0x7f0a0022;
- public static int material_grey_50=0x7f0a0023;
- public static int material_grey_600=0x7f0a0024;
- public static int material_grey_800=0x7f0a0025;
- public static int material_grey_850=0x7f0a0026;
- public static int material_grey_900=0x7f0a0027;
- public static int primary_dark_material_dark=0x7f0a0028;
- public static int primary_dark_material_light=0x7f0a0029;
- public static int primary_material_dark=0x7f0a002a;
- public static int primary_material_light=0x7f0a002b;
- public static int primary_text_default_material_dark=0x7f0a002c;
- public static int primary_text_default_material_light=0x7f0a002d;
- public static int primary_text_disabled_material_dark=0x7f0a002e;
- public static int primary_text_disabled_material_light=0x7f0a002f;
- public static int ripple_material_dark=0x7f0a0030;
- public static int ripple_material_light=0x7f0a0031;
- public static int secondary_text_default_material_dark=0x7f0a0032;
- public static int secondary_text_default_material_light=0x7f0a0033;
- public static int secondary_text_disabled_material_dark=0x7f0a0034;
- public static int secondary_text_disabled_material_light=0x7f0a0035;
- public static int switch_thumb_disabled_material_dark=0x7f0a0036;
- public static int switch_thumb_disabled_material_light=0x7f0a0037;
- public static int switch_thumb_material_dark=0x7f0a0044;
- public static int switch_thumb_material_light=0x7f0a0045;
- public static int switch_thumb_normal_material_dark=0x7f0a0038;
- public static int switch_thumb_normal_material_light=0x7f0a0039;
- }
- public static final class dimen {
- public static int abc_action_bar_content_inset_material=0x7f07000d;
- public static int abc_action_bar_default_height_material=0x7f070001;
- public static int abc_action_bar_default_padding_end_material=0x7f07000e;
- public static int abc_action_bar_default_padding_start_material=0x7f07000f;
- public static int abc_action_bar_icon_vertical_padding_material=0x7f070011;
- public static int abc_action_bar_overflow_padding_end_material=0x7f070012;
- public static int abc_action_bar_overflow_padding_start_material=0x7f070013;
- public static int abc_action_bar_progress_bar_size=0x7f070002;
- public static int abc_action_bar_stacked_max_height=0x7f070014;
- public static int abc_action_bar_stacked_tab_max_width=0x7f070015;
- public static int abc_action_bar_subtitle_bottom_margin_material=0x7f070016;
- public static int abc_action_bar_subtitle_top_margin_material=0x7f070017;
- public static int abc_action_button_min_height_material=0x7f070018;
- public static int abc_action_button_min_width_material=0x7f070019;
- public static int abc_action_button_min_width_overflow_material=0x7f07001a;
- public static int abc_alert_dialog_button_bar_height=0x7f070000;
- public static int abc_button_inset_horizontal_material=0x7f07001b;
- public static int abc_button_inset_vertical_material=0x7f07001c;
- public static int abc_button_padding_horizontal_material=0x7f07001d;
- public static int abc_button_padding_vertical_material=0x7f07001e;
- public static int abc_config_prefDialogWidth=0x7f070005;
- public static int abc_control_corner_material=0x7f07001f;
- public static int abc_control_inset_material=0x7f070020;
- public static int abc_control_padding_material=0x7f070021;
- public static int abc_dialog_fixed_height_major=0x7f070006;
- public static int abc_dialog_fixed_height_minor=0x7f070007;
- public static int abc_dialog_fixed_width_major=0x7f070008;
- public static int abc_dialog_fixed_width_minor=0x7f070009;
- public static int abc_dialog_list_padding_vertical_material=0x7f070022;
- public static int abc_dialog_min_width_major=0x7f07000a;
- public static int abc_dialog_min_width_minor=0x7f07000b;
- public static int abc_dialog_padding_material=0x7f070023;
- public static int abc_dialog_padding_top_material=0x7f070024;
- public static int abc_disabled_alpha_material_dark=0x7f070025;
- public static int abc_disabled_alpha_material_light=0x7f070026;
- public static int abc_dropdownitem_icon_width=0x7f070027;
- public static int abc_dropdownitem_text_padding_left=0x7f070028;
- public static int abc_dropdownitem_text_padding_right=0x7f070029;
- public static int abc_edit_text_inset_bottom_material=0x7f07002a;
- public static int abc_edit_text_inset_horizontal_material=0x7f07002b;
- public static int abc_edit_text_inset_top_material=0x7f07002c;
- public static int abc_floating_window_z=0x7f07002d;
- public static int abc_list_item_padding_horizontal_material=0x7f07002e;
- public static int abc_panel_menu_list_width=0x7f07002f;
- public static int abc_search_view_preferred_width=0x7f070030;
- public static int abc_search_view_text_min_width=0x7f07000c;
- public static int abc_seekbar_track_background_height_material=0x7f070031;
- public static int abc_seekbar_track_progress_height_material=0x7f070032;
- public static int abc_select_dialog_padding_start_material=0x7f070033;
- public static int abc_switch_padding=0x7f070010;
- public static int abc_text_size_body_1_material=0x7f070034;
- public static int abc_text_size_body_2_material=0x7f070035;
- public static int abc_text_size_button_material=0x7f070036;
- public static int abc_text_size_caption_material=0x7f070037;
- public static int abc_text_size_display_1_material=0x7f070038;
- public static int abc_text_size_display_2_material=0x7f070039;
- public static int abc_text_size_display_3_material=0x7f07003a;
- public static int abc_text_size_display_4_material=0x7f07003b;
- public static int abc_text_size_headline_material=0x7f07003c;
- public static int abc_text_size_large_material=0x7f07003d;
- public static int abc_text_size_medium_material=0x7f07003e;
- public static int abc_text_size_menu_material=0x7f07003f;
- public static int abc_text_size_small_material=0x7f070040;
- public static int abc_text_size_subhead_material=0x7f070041;
- public static int abc_text_size_subtitle_material_toolbar=0x7f070003;
- public static int abc_text_size_title_material=0x7f070042;
- public static int abc_text_size_title_material_toolbar=0x7f070004;
- public static int disabled_alpha_material_dark=0x7f070043;
- public static int disabled_alpha_material_light=0x7f070044;
- public static int highlight_alpha_material_colored=0x7f070045;
- public static int highlight_alpha_material_dark=0x7f070046;
- public static int highlight_alpha_material_light=0x7f070047;
- public static int notification_large_icon_height=0x7f070048;
- public static int notification_large_icon_width=0x7f070049;
- public static int notification_subtext_size=0x7f07004a;
- }
- public static final class drawable {
- public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
- public static int abc_action_bar_item_background_material=0x7f020001;
- public static int abc_btn_borderless_material=0x7f020002;
- public static int abc_btn_check_material=0x7f020003;
- public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
- public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
- public static int abc_btn_colored_material=0x7f020006;
- public static int abc_btn_default_mtrl_shape=0x7f020007;
- public static int abc_btn_radio_material=0x7f020008;
- public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
- public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
- public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
- public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
- public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
- public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
- public static int abc_cab_background_internal_bg=0x7f02000f;
- public static int abc_cab_background_top_material=0x7f020010;
- public static int abc_cab_background_top_mtrl_alpha=0x7f020011;
- public static int abc_control_background_material=0x7f020012;
- public static int abc_dialog_material_background_dark=0x7f020013;
- public static int abc_dialog_material_background_light=0x7f020014;
- public static int abc_edit_text_material=0x7f020015;
- public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
- public static int abc_ic_clear_mtrl_alpha=0x7f020017;
- public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
- public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
- public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
- public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
- public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
- public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
- public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
- public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
- public static int abc_ic_search_api_mtrl_alpha=0x7f020020;
- public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020021;
- public static int abc_item_background_holo_dark=0x7f020022;
- public static int abc_item_background_holo_light=0x7f020023;
- public static int abc_list_divider_mtrl_alpha=0x7f020024;
- public static int abc_list_focused_holo=0x7f020025;
- public static int abc_list_longpressed_holo=0x7f020026;
- public static int abc_list_pressed_holo_dark=0x7f020027;
- public static int abc_list_pressed_holo_light=0x7f020028;
- public static int abc_list_selector_background_transition_holo_dark=0x7f020029;
- public static int abc_list_selector_background_transition_holo_light=0x7f02002a;
- public static int abc_list_selector_disabled_holo_dark=0x7f02002b;
- public static int abc_list_selector_disabled_holo_light=0x7f02002c;
- public static int abc_list_selector_holo_dark=0x7f02002d;
- public static int abc_list_selector_holo_light=0x7f02002e;
- public static int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f;
- public static int abc_popup_background_mtrl_mult=0x7f020030;
- public static int abc_ratingbar_full_material=0x7f020031;
- public static int abc_scrubber_control_off_mtrl_alpha=0x7f020032;
- public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020033;
- public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f020034;
- public static int abc_scrubber_primary_mtrl_alpha=0x7f020035;
- public static int abc_scrubber_track_mtrl_alpha=0x7f020036;
- public static int abc_seekbar_thumb_material=0x7f020037;
- public static int abc_seekbar_track_material=0x7f020038;
- public static int abc_spinner_mtrl_am_alpha=0x7f020039;
- public static int abc_spinner_textfield_background_material=0x7f02003a;
- public static int abc_switch_thumb_material=0x7f02003b;
- public static int abc_switch_track_mtrl_alpha=0x7f02003c;
- public static int abc_tab_indicator_material=0x7f02003d;
- public static int abc_tab_indicator_mtrl_alpha=0x7f02003e;
- public static int abc_text_cursor_material=0x7f02003f;
- public static int abc_textfield_activated_mtrl_alpha=0x7f020040;
- public static int abc_textfield_default_mtrl_alpha=0x7f020041;
- public static int abc_textfield_search_activated_mtrl_alpha=0x7f020042;
- public static int abc_textfield_search_default_mtrl_alpha=0x7f020043;
- public static int abc_textfield_search_material=0x7f020044;
- public static int notification_template_icon_bg=0x7f020048;
- public static int shadow_bottom=0x7f020045;
- public static int shadow_left=0x7f020046;
- public static int shadow_right=0x7f020047;
- }
- public static final class id {
- public static int action0=0x7f0b0054;
- public static int action_bar=0x7f0b0045;
- public static int action_bar_activity_content=0x7f0b0000;
- public static int action_bar_container=0x7f0b0044;
- public static int action_bar_root=0x7f0b0040;
- public static int action_bar_spinner=0x7f0b0001;
- public static int action_bar_subtitle=0x7f0b0026;
- public static int action_bar_title=0x7f0b0025;
- public static int action_context_bar=0x7f0b0046;
- public static int action_divider=0x7f0b0058;
- public static int action_menu_divider=0x7f0b0002;
- public static int action_menu_presenter=0x7f0b0003;
- public static int action_mode_bar=0x7f0b0042;
- public static int action_mode_bar_stub=0x7f0b0041;
- public static int action_mode_close_button=0x7f0b0027;
- public static int activity_chooser_view_content=0x7f0b0028;
- public static int alertTitle=0x7f0b0034;
- public static int all=0x7f0b0020;
- public static int always=0x7f0b001b;
- public static int beginning=0x7f0b0018;
- public static int bottom=0x7f0b0021;
- public static int buttonPanel=0x7f0b002f;
- public static int cancel_action=0x7f0b0055;
- public static int checkbox=0x7f0b003d;
- public static int chronometer=0x7f0b005b;
- public static int collapseActionView=0x7f0b001c;
- public static int contentPanel=0x7f0b0035;
- public static int custom=0x7f0b003b;
- public static int customPanel=0x7f0b003a;
- public static int decor_content_parent=0x7f0b0043;
- public static int default_activity_button=0x7f0b002b;
- public static int disableHome=0x7f0b000c;
- public static int edit_query=0x7f0b0047;
- public static int end=0x7f0b0019;
- public static int end_padder=0x7f0b0060;
- public static int expand_activities_button=0x7f0b0029;
- public static int expanded_menu=0x7f0b003c;
- public static int home=0x7f0b0004;
- public static int homeAsUp=0x7f0b000d;
- public static int icon=0x7f0b002d;
- public static int ifRoom=0x7f0b001d;
- public static int image=0x7f0b002a;
- public static int info=0x7f0b005f;
- public static int left=0x7f0b0022;
- public static int line1=0x7f0b0059;
- public static int line3=0x7f0b005d;
- public static int listMode=0x7f0b0009;
- public static int list_item=0x7f0b002c;
- public static int media_actions=0x7f0b0057;
- public static int middle=0x7f0b001a;
- public static int multiply=0x7f0b0013;
- public static int never=0x7f0b001e;
- public static int none=0x7f0b000e;
- public static int normal=0x7f0b000a;
- public static int parentPanel=0x7f0b0031;
- public static int progress_circular=0x7f0b0005;
- public static int progress_horizontal=0x7f0b0006;
- public static int radio=0x7f0b003f;
- public static int right=0x7f0b0023;
- public static int screen=0x7f0b0014;
- public static int scrollIndicatorDown=0x7f0b0039;
- public static int scrollIndicatorUp=0x7f0b0036;
- public static int scrollView=0x7f0b0037;
- public static int search_badge=0x7f0b0049;
- public static int search_bar=0x7f0b0048;
- public static int search_button=0x7f0b004a;
- public static int search_close_btn=0x7f0b004f;
- public static int search_edit_frame=0x7f0b004b;
- public static int search_go_btn=0x7f0b0051;
- public static int search_mag_icon=0x7f0b004c;
- public static int search_plate=0x7f0b004d;
- public static int search_src_text=0x7f0b004e;
- public static int search_voice_btn=0x7f0b0052;
- public static int select_dialog_listview=0x7f0b0053;
- public static int shortcut=0x7f0b003e;
- public static int showCustom=0x7f0b000f;
- public static int showHome=0x7f0b0010;
- public static int showTitle=0x7f0b0011;
- public static int spacer=0x7f0b0030;
- public static int split_action_bar=0x7f0b0007;
- public static int src_atop=0x7f0b0015;
- public static int src_in=0x7f0b0016;
- public static int src_over=0x7f0b0017;
- public static int status_bar_latest_event_content=0x7f0b0056;
- public static int submit_area=0x7f0b0050;
- public static int swipe=0x7f0b0061;
- public static int tabMode=0x7f0b000b;
- public static int text=0x7f0b005e;
- public static int text2=0x7f0b005c;
- public static int textSpacerNoButtons=0x7f0b0038;
- public static int time=0x7f0b005a;
- public static int title=0x7f0b002e;
- public static int title_template=0x7f0b0033;
- public static int topPanel=0x7f0b0032;
- public static int up=0x7f0b0008;
- public static int useLogo=0x7f0b0012;
- public static int withText=0x7f0b001f;
- public static int wrap_content=0x7f0b0024;
- }
- public static final class integer {
- public static int abc_config_activityDefaultDur=0x7f090001;
- public static int abc_config_activityShortDur=0x7f090002;
- public static int abc_max_action_buttons=0x7f090000;
- public static int cancel_button_image_alpha=0x7f090003;
- public static int status_bar_notification_info_maxnum=0x7f090004;
- }
- public static final class layout {
- public static int abc_action_bar_title_item=0x7f030000;
- public static int abc_action_bar_up_container=0x7f030001;
- public static int abc_action_bar_view_list_nav_layout=0x7f030002;
- public static int abc_action_menu_item_layout=0x7f030003;
- public static int abc_action_menu_layout=0x7f030004;
- public static int abc_action_mode_bar=0x7f030005;
- public static int abc_action_mode_close_item_material=0x7f030006;
- public static int abc_activity_chooser_view=0x7f030007;
- public static int abc_activity_chooser_view_list_item=0x7f030008;
- public static int abc_alert_dialog_button_bar_material=0x7f030009;
- public static int abc_alert_dialog_material=0x7f03000a;
- public static int abc_dialog_title_material=0x7f03000b;
- public static int abc_expanded_menu_layout=0x7f03000c;
- public static int abc_list_menu_item_checkbox=0x7f03000d;
- public static int abc_list_menu_item_icon=0x7f03000e;
- public static int abc_list_menu_item_layout=0x7f03000f;
- public static int abc_list_menu_item_radio=0x7f030010;
- public static int abc_popup_menu_item_layout=0x7f030011;
- public static int abc_screen_content_include=0x7f030012;
- public static int abc_screen_simple=0x7f030013;
- public static int abc_screen_simple_overlay_action_mode=0x7f030014;
- public static int abc_screen_toolbar=0x7f030015;
- public static int abc_search_dropdown_item_icons_2line=0x7f030016;
- public static int abc_search_view=0x7f030017;
- public static int abc_select_dialog_material=0x7f030018;
- public static int notification_media_action=0x7f030019;
- public static int notification_media_cancel_action=0x7f03001a;
- public static int notification_template_big_media=0x7f03001b;
- public static int notification_template_big_media_narrow=0x7f03001c;
- public static int notification_template_lines=0x7f03001d;
- public static int notification_template_media=0x7f03001e;
- public static int notification_template_part_chronometer=0x7f03001f;
- public static int notification_template_part_time=0x7f030020;
- public static int select_dialog_item_material=0x7f030021;
- public static int select_dialog_multichoice_material=0x7f030022;
- public static int select_dialog_singlechoice_material=0x7f030023;
- public static int support_simple_spinner_dropdown_item=0x7f030024;
- public static int swipeback_layout=0x7f030025;
- }
- public static final class string {
- public static int abc_action_bar_home_description=0x7f050000;
- public static int abc_action_bar_home_description_format=0x7f050001;
- public static int abc_action_bar_home_subtitle_description_format=0x7f050002;
- public static int abc_action_bar_up_description=0x7f050003;
- public static int abc_action_menu_overflow_description=0x7f050004;
- public static int abc_action_mode_done=0x7f050005;
- public static int abc_activity_chooser_view_see_all=0x7f050006;
- public static int abc_activitychooserview_choose_application=0x7f050007;
- public static int abc_capital_off=0x7f050008;
- public static int abc_capital_on=0x7f050009;
- public static int abc_search_hint=0x7f05000a;
- public static int abc_searchview_description_clear=0x7f05000b;
- public static int abc_searchview_description_query=0x7f05000c;
- public static int abc_searchview_description_search=0x7f05000d;
- public static int abc_searchview_description_submit=0x7f05000e;
- public static int abc_searchview_description_voice=0x7f05000f;
- public static int abc_shareactionprovider_share_with=0x7f050010;
- public static int abc_shareactionprovider_share_with_application=0x7f050011;
- public static int abc_toolbar_collapse_description=0x7f050012;
- public static int status_bar_notification_info_overflow=0x7f050013;
- }
- public static final class style {
- public static int AlertDialog_AppCompat=0x7f08007d;
- public static int AlertDialog_AppCompat_Light=0x7f08007e;
- public static int Animation_AppCompat_Dialog=0x7f08007f;
- public static int Animation_AppCompat_DropDownUp=0x7f080080;
- public static int Base_AlertDialog_AppCompat=0x7f080081;
- public static int Base_AlertDialog_AppCompat_Light=0x7f080082;
- public static int Base_Animation_AppCompat_Dialog=0x7f080083;
- public static int Base_Animation_AppCompat_DropDownUp=0x7f080084;
- public static int Base_DialogWindowTitle_AppCompat=0x7f080085;
- public static int Base_DialogWindowTitleBackground_AppCompat=0x7f080086;
- public static int Base_TextAppearance_AppCompat=0x7f08002f;
- public static int Base_TextAppearance_AppCompat_Body1=0x7f080030;
- public static int Base_TextAppearance_AppCompat_Body2=0x7f080031;
- public static int Base_TextAppearance_AppCompat_Button=0x7f080019;
- public static int Base_TextAppearance_AppCompat_Caption=0x7f080032;
- public static int Base_TextAppearance_AppCompat_Display1=0x7f080033;
- public static int Base_TextAppearance_AppCompat_Display2=0x7f080034;
- public static int Base_TextAppearance_AppCompat_Display3=0x7f080035;
- public static int Base_TextAppearance_AppCompat_Display4=0x7f080036;
- public static int Base_TextAppearance_AppCompat_Headline=0x7f080037;
- public static int Base_TextAppearance_AppCompat_Inverse=0x7f080004;
- public static int Base_TextAppearance_AppCompat_Large=0x7f080038;
- public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080005;
- public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080039;
- public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08003a;
- public static int Base_TextAppearance_AppCompat_Medium=0x7f08003b;
- public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080006;
- public static int Base_TextAppearance_AppCompat_Menu=0x7f08003c;
- public static int Base_TextAppearance_AppCompat_SearchResult=0x7f080087;
- public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003d;
- public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003e;
- public static int Base_TextAppearance_AppCompat_Small=0x7f08003f;
- public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080007;
- public static int Base_TextAppearance_AppCompat_Subhead=0x7f080040;
- public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080008;
- public static int Base_TextAppearance_AppCompat_Title=0x7f080041;
- public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080009;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080042;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080043;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080044;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080045;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080046;
- public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080047;
- public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080048;
- public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f080049;
- public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080079;
- public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080088;
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08004a;
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08004b;
- public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004c;
- public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004d;
- public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080089;
- public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004e;
- public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004f;
- public static int Base_Theme_AppCompat=0x7f080050;
- public static int Base_Theme_AppCompat_CompactMenu=0x7f08008a;
- public static int Base_Theme_AppCompat_Dialog=0x7f08000a;
- public static int Base_Theme_AppCompat_Dialog_Alert=0x7f08008b;
- public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08008c;
- public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08008d;
- public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001;
- public static int Base_Theme_AppCompat_Light=0x7f080051;
- public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08008e;
- public static int Base_Theme_AppCompat_Light_Dialog=0x7f08000b;
- public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08008f;
- public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f080090;
- public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080091;
- public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002;
- public static int Base_ThemeOverlay_AppCompat=0x7f080092;
- public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080093;
- public static int Base_ThemeOverlay_AppCompat_Dark=0x7f080094;
- public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080095;
- public static int Base_ThemeOverlay_AppCompat_Light=0x7f080096;
- public static int Base_V11_Theme_AppCompat_Dialog=0x7f08000c;
- public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000d;
- public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080015;
- public static int Base_V12_Widget_AppCompat_EditText=0x7f080016;
- public static int Base_V21_Theme_AppCompat=0x7f080052;
- public static int Base_V21_Theme_AppCompat_Dialog=0x7f080053;
- public static int Base_V21_Theme_AppCompat_Light=0x7f080054;
- public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080055;
- public static int Base_V22_Theme_AppCompat=0x7f080077;
- public static int Base_V22_Theme_AppCompat_Light=0x7f080078;
- public static int Base_V23_Theme_AppCompat=0x7f08007a;
- public static int Base_V23_Theme_AppCompat_Light=0x7f08007b;
- public static int Base_V7_Theme_AppCompat=0x7f080097;
- public static int Base_V7_Theme_AppCompat_Dialog=0x7f080098;
- public static int Base_V7_Theme_AppCompat_Light=0x7f080099;
- public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f08009a;
- public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f08009b;
- public static int Base_V7_Widget_AppCompat_EditText=0x7f08009c;
- public static int Base_Widget_AppCompat_ActionBar=0x7f08009d;
- public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f08009e;
- public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08009f;
- public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f080056;
- public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f080057;
- public static int Base_Widget_AppCompat_ActionButton=0x7f080058;
- public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080059;
- public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08005a;
- public static int Base_Widget_AppCompat_ActionMode=0x7f0800a0;
- public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0800a1;
- public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080017;
- public static int Base_Widget_AppCompat_Button=0x7f08005b;
- public static int Base_Widget_AppCompat_Button_Borderless=0x7f08005c;
- public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005d;
- public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800a2;
- public static int Base_Widget_AppCompat_Button_Colored=0x7f08007c;
- public static int Base_Widget_AppCompat_Button_Small=0x7f08005e;
- public static int Base_Widget_AppCompat_ButtonBar=0x7f08005f;
- public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800a3;
- public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080060;
- public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080061;
- public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800a4;
- public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000;
- public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800a5;
- public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080062;
- public static int Base_Widget_AppCompat_EditText=0x7f080018;
- public static int Base_Widget_AppCompat_ImageButton=0x7f080063;
- public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0800a6;
- public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800a7;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800a8;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080064;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080065;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080066;
- public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f080067;
- public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080068;
- public static int Base_Widget_AppCompat_ListPopupWindow=0x7f080069;
- public static int Base_Widget_AppCompat_ListView=0x7f08006a;
- public static int Base_Widget_AppCompat_ListView_DropDown=0x7f08006b;
- public static int Base_Widget_AppCompat_ListView_Menu=0x7f08006c;
- public static int Base_Widget_AppCompat_PopupMenu=0x7f08006d;
- public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006e;
- public static int Base_Widget_AppCompat_PopupWindow=0x7f0800a9;
- public static int Base_Widget_AppCompat_ProgressBar=0x7f08000e;
- public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08000f;
- public static int Base_Widget_AppCompat_RatingBar=0x7f08006f;
- public static int Base_Widget_AppCompat_SearchView=0x7f0800aa;
- public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800ab;
- public static int Base_Widget_AppCompat_SeekBar=0x7f080070;
- public static int Base_Widget_AppCompat_Spinner=0x7f080071;
- public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f080003;
- public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080072;
- public static int Base_Widget_AppCompat_Toolbar=0x7f0800ac;
- public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080073;
- public static int Platform_AppCompat=0x7f080010;
- public static int Platform_AppCompat_Light=0x7f080011;
- public static int Platform_ThemeOverlay_AppCompat=0x7f080074;
- public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f080075;
- public static int Platform_ThemeOverlay_AppCompat_Light=0x7f080076;
- public static int Platform_V11_AppCompat=0x7f080012;
- public static int Platform_V11_AppCompat_Light=0x7f080013;
- public static int Platform_V14_AppCompat=0x7f08001a;
- public static int Platform_V14_AppCompat_Light=0x7f08001b;
- public static int Platform_Widget_AppCompat_Spinner=0x7f080014;
- public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080021;
- public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080022;
- public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080023;
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080024;
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080025;
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080026;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080027;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080028;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080029;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002a;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002b;
- public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002c;
- public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f08002d;
- public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f08002e;
- public static int SwipeBackLayout=0x7f0800ad;
- public static int TextAppearance_AppCompat=0x7f0800ae;
- public static int TextAppearance_AppCompat_Body1=0x7f0800af;
- public static int TextAppearance_AppCompat_Body2=0x7f0800b0;
- public static int TextAppearance_AppCompat_Button=0x7f0800b1;
- public static int TextAppearance_AppCompat_Caption=0x7f0800b2;
- public static int TextAppearance_AppCompat_Display1=0x7f0800b3;
- public static int TextAppearance_AppCompat_Display2=0x7f0800b4;
- public static int TextAppearance_AppCompat_Display3=0x7f0800b5;
- public static int TextAppearance_AppCompat_Display4=0x7f0800b6;
- public static int TextAppearance_AppCompat_Headline=0x7f0800b7;
- public static int TextAppearance_AppCompat_Inverse=0x7f0800b8;
- public static int TextAppearance_AppCompat_Large=0x7f0800b9;
- public static int TextAppearance_AppCompat_Large_Inverse=0x7f0800ba;
- public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800bb;
- public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800bc;
- public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800bd;
- public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800be;
- public static int TextAppearance_AppCompat_Medium=0x7f0800bf;
- public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0800c0;
- public static int TextAppearance_AppCompat_Menu=0x7f0800c1;
- public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800c2;
- public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0800c3;
- public static int TextAppearance_AppCompat_Small=0x7f0800c4;
- public static int TextAppearance_AppCompat_Small_Inverse=0x7f0800c5;
- public static int TextAppearance_AppCompat_Subhead=0x7f0800c6;
- public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800c7;
- public static int TextAppearance_AppCompat_Title=0x7f0800c8;
- public static int TextAppearance_AppCompat_Title_Inverse=0x7f0800c9;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ca;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800cb;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800cc;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800cd;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800ce;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800cf;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800d0;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800d1;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800d2;
- public static int TextAppearance_AppCompat_Widget_Button=0x7f0800d3;
- public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800d4;
- public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800d5;
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800d6;
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800d7;
- public static int TextAppearance_AppCompat_Widget_Switch=0x7f0800d8;
- public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800d9;
- public static int TextAppearance_StatusBar_EventContent=0x7f08001c;
- public static int TextAppearance_StatusBar_EventContent_Info=0x7f08001d;
- public static int TextAppearance_StatusBar_EventContent_Line2=0x7f08001e;
- public static int TextAppearance_StatusBar_EventContent_Time=0x7f08001f;
- public static int TextAppearance_StatusBar_EventContent_Title=0x7f080020;
- public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800da;
- public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800db;
- public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800dc;
- public static int Theme_AppCompat=0x7f0800dd;
- public static int Theme_AppCompat_CompactMenu=0x7f0800de;
- public static int Theme_AppCompat_Dialog=0x7f0800df;
- public static int Theme_AppCompat_Dialog_Alert=0x7f0800e0;
- public static int Theme_AppCompat_Dialog_MinWidth=0x7f0800e1;
- public static int Theme_AppCompat_DialogWhenLarge=0x7f0800e2;
- public static int Theme_AppCompat_Light=0x7f0800e3;
- public static int Theme_AppCompat_Light_DarkActionBar=0x7f0800e4;
- public static int Theme_AppCompat_Light_Dialog=0x7f0800e5;
- public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0800e6;
- public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800e7;
- public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800e8;
- public static int Theme_AppCompat_Light_NoActionBar=0x7f0800e9;
- public static int Theme_AppCompat_NoActionBar=0x7f0800ea;
- public static int ThemeOverlay_AppCompat=0x7f0800eb;
- public static int ThemeOverlay_AppCompat_ActionBar=0x7f0800ec;
- public static int ThemeOverlay_AppCompat_Dark=0x7f0800ed;
- public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800ee;
- public static int ThemeOverlay_AppCompat_Light=0x7f0800ef;
- public static int Widget_AppCompat_ActionBar=0x7f0800f0;
- public static int Widget_AppCompat_ActionBar_Solid=0x7f0800f1;
- public static int Widget_AppCompat_ActionBar_TabBar=0x7f0800f2;
- public static int Widget_AppCompat_ActionBar_TabText=0x7f0800f3;
- public static int Widget_AppCompat_ActionBar_TabView=0x7f0800f4;
- public static int Widget_AppCompat_ActionButton=0x7f0800f5;
- public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0800f6;
- public static int Widget_AppCompat_ActionButton_Overflow=0x7f0800f7;
- public static int Widget_AppCompat_ActionMode=0x7f0800f8;
- public static int Widget_AppCompat_ActivityChooserView=0x7f0800f9;
- public static int Widget_AppCompat_AutoCompleteTextView=0x7f0800fa;
- public static int Widget_AppCompat_Button=0x7f0800fb;
- public static int Widget_AppCompat_Button_Borderless=0x7f0800fc;
- public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0800fd;
- public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800fe;
- public static int Widget_AppCompat_Button_Colored=0x7f0800ff;
- public static int Widget_AppCompat_Button_Small=0x7f080100;
- public static int Widget_AppCompat_ButtonBar=0x7f080101;
- public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080102;
- public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f080103;
- public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f080104;
- public static int Widget_AppCompat_CompoundButton_Switch=0x7f080105;
- public static int Widget_AppCompat_DrawerArrowToggle=0x7f080106;
- public static int Widget_AppCompat_DropDownItem_Spinner=0x7f080107;
- public static int Widget_AppCompat_EditText=0x7f080108;
- public static int Widget_AppCompat_ImageButton=0x7f080109;
- public static int Widget_AppCompat_Light_ActionBar=0x7f08010a;
- public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f08010b;
- public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f08010c;
- public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08010d;
- public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08010e;
- public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f08010f;
- public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080110;
- public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f080111;
- public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080112;
- public static int Widget_AppCompat_Light_ActionButton=0x7f080113;
- public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080114;
- public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080115;
- public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080116;
- public static int Widget_AppCompat_Light_ActivityChooserView=0x7f080117;
- public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080118;
- public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080119;
- public static int Widget_AppCompat_Light_ListPopupWindow=0x7f08011a;
- public static int Widget_AppCompat_Light_ListView_DropDown=0x7f08011b;
- public static int Widget_AppCompat_Light_PopupMenu=0x7f08011c;
- public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08011d;
- public static int Widget_AppCompat_Light_SearchView=0x7f08011e;
- public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08011f;
- public static int Widget_AppCompat_ListPopupWindow=0x7f080120;
- public static int Widget_AppCompat_ListView=0x7f080121;
- public static int Widget_AppCompat_ListView_DropDown=0x7f080122;
- public static int Widget_AppCompat_ListView_Menu=0x7f080123;
- public static int Widget_AppCompat_PopupMenu=0x7f080124;
- public static int Widget_AppCompat_PopupMenu_Overflow=0x7f080125;
- public static int Widget_AppCompat_PopupWindow=0x7f080126;
- public static int Widget_AppCompat_ProgressBar=0x7f080127;
- public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f080128;
- public static int Widget_AppCompat_RatingBar=0x7f080129;
- public static int Widget_AppCompat_SearchView=0x7f08012a;
- public static int Widget_AppCompat_SearchView_ActionBar=0x7f08012b;
- public static int Widget_AppCompat_SeekBar=0x7f08012c;
- public static int Widget_AppCompat_Spinner=0x7f08012d;
- public static int Widget_AppCompat_Spinner_DropDown=0x7f08012e;
- public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08012f;
- public static int Widget_AppCompat_Spinner_Underlined=0x7f080130;
- public static int Widget_AppCompat_TextView_SpinnerItem=0x7f080131;
- public static int Widget_AppCompat_Toolbar=0x7f080132;
- public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f080133;
- }
- public static final class styleable {
- /** Attributes that can be used with a ActionBar.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#background}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:background
- */
- public static int ActionBar_background = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundSplit}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:backgroundSplit
- */
- public static int ActionBar_backgroundSplit = 12;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundStacked}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:backgroundStacked
- */
- public static int ActionBar_backgroundStacked = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetEnd}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetEnd
- */
- public static int ActionBar_contentInsetEnd = 21;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetLeft}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetLeft
- */
- public static int ActionBar_contentInsetLeft = 22;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetRight}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetRight
- */
- public static int ActionBar_contentInsetRight = 23;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetStart}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetStart
- */
- public static int ActionBar_contentInsetStart = 20;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#customNavigationLayout}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:customNavigationLayout
- */
- public static int ActionBar_customNavigationLayout = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#displayOptions}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
useLogo
0x1
-
showHome
0x2
-
homeAsUp
0x4
-
showTitle
0x8
-
showCustom
0x10
-
disableHome
0x20
-
- @attr name me.imid.swipebacklayout.lib:displayOptions
- */
- public static int ActionBar_displayOptions = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#divider}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:divider
- */
- public static int ActionBar_divider = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#elevation}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:elevation
- */
- public static int ActionBar_elevation = 24;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#height}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:height
- */
- public static int ActionBar_height = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#hideOnContentScroll}
- attribute's value can be found in the {@link #ActionBar} 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 me.imid.swipebacklayout.lib:hideOnContentScroll
- */
- public static int ActionBar_hideOnContentScroll = 19;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#homeAsUpIndicator}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:homeAsUpIndicator
- */
- public static int ActionBar_homeAsUpIndicator = 26;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#homeLayout}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:homeLayout
- */
- public static int ActionBar_homeLayout = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#icon}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:icon
- */
- public static int ActionBar_icon = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#indeterminateProgressStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:indeterminateProgressStyle
- */
- public static int ActionBar_indeterminateProgressStyle = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#itemPadding}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:itemPadding
- */
- public static int ActionBar_itemPadding = 18;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#logo}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:logo
- */
- public static int ActionBar_logo = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#navigationMode}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
normal
0
-
listMode
1
-
tabMode
2
-
- @attr name me.imid.swipebacklayout.lib:navigationMode
- */
- public static int ActionBar_navigationMode = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupTheme}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupTheme
- */
- public static int ActionBar_popupTheme = 25;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#progressBarPadding}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:progressBarPadding
- */
- public static int ActionBar_progressBarPadding = 17;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#progressBarStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:progressBarStyle
- */
- public static int ActionBar_progressBarStyle = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:subtitle
- */
- public static int ActionBar_subtitle = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:subtitleTextStyle
- */
- public static int ActionBar_subtitleTextStyle = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#title}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:title
- */
- public static int ActionBar_title = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:titleTextStyle
- */
- public static int ActionBar_titleTextStyle = 5;
- /** Attributes that can be used with a ActionBarLayout.
-
- @see #ActionBarLayout_android_layout_gravity
- */
- public static final int[] ActionBarLayout = {
- 0x010100b3
- };
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_gravity}
- attribute's value can be found in the {@link #ActionBarLayout} array.
- @attr name android:layout_gravity
- */
- public static int ActionBarLayout_android_layout_gravity = 0;
- /** Attributes that can be used with a ActionMenuItemView.
-
- @see #ActionMenuItemView_android_minWidth
- */
- public static final int[] ActionMenuItemView = {
- 0x0101013f
- };
- /**
-
This symbol is the offset where the {@link android.R.attr#minWidth}
- attribute's value can be found in the {@link #ActionMenuItemView} array.
- @attr name android:minWidth
- */
- public static int ActionMenuItemView_android_minWidth = 0;
- /** Attributes that can be used with a ActionMenuView.
- */
- public static final int[] ActionMenuView = {
-
- };
- /** Attributes that can be used with a ActionMode.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#background}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:background
- */
- public static int ActionMode_background = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundSplit}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:backgroundSplit
- */
- public static int ActionMode_backgroundSplit = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#closeItemLayout}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:closeItemLayout
- */
- public static int ActionMode_closeItemLayout = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#height}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:height
- */
- public static int ActionMode_height = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextStyle}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:subtitleTextStyle
- */
- public static int ActionMode_subtitleTextStyle = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextStyle}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:titleTextStyle
- */
- public static int ActionMode_titleTextStyle = 1;
- /** Attributes that can be used with a ActivityChooserView.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#expandActivityOverflowButtonDrawable}
- attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:expandActivityOverflowButtonDrawable
- */
- public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#initialActivityCount}
- attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:initialActivityCount
- */
- public static int ActivityChooserView_initialActivityCount = 0;
- /** Attributes that can be used with a AlertDialog.
-
This symbol is the offset where the {@link android.R.attr#layout}
- attribute's value can be found in the {@link #AlertDialog} array.
- @attr name android:layout
- */
- public static int AlertDialog_android_layout = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonPanelSideLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonPanelSideLayout
- */
- public static int AlertDialog_buttonPanelSideLayout = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listItemLayout
- */
- public static int AlertDialog_listItemLayout = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listLayout
- */
- public static int AlertDialog_listLayout = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#multiChoiceItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:multiChoiceItemLayout
- */
- public static int AlertDialog_multiChoiceItemLayout = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#singleChoiceItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:singleChoiceItemLayout
- */
- public static int AlertDialog_singleChoiceItemLayout = 4;
- /** Attributes that can be used with a AppCompatTextView.
-
This symbol is the offset where the {@link android.R.attr#textAppearance}
- attribute's value can be found in the {@link #AppCompatTextView} array.
- @attr name android:textAppearance
- */
- public static int AppCompatTextView_android_textAppearance = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAllCaps}
- attribute's value can be found in the {@link #AppCompatTextView} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textAllCaps
- */
- public static int AppCompatTextView_textAllCaps = 1;
- /** Attributes that can be used with a ButtonBarLayout.
-
- @see #ButtonBarLayout_allowStacking
- */
- public static final int[] ButtonBarLayout = {
- 0x7f010026
- };
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#allowStacking}
- attribute's value can be found in the {@link #ButtonBarLayout} 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 me.imid.swipebacklayout.lib:allowStacking
- */
- public static int ButtonBarLayout_allowStacking = 0;
- /** Attributes that can be used with a CompoundButton.
-
This symbol is the offset where the {@link android.R.attr#button}
- attribute's value can be found in the {@link #CompoundButton} array.
- @attr name android:button
- */
- public static int CompoundButton_android_button = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonTint}
- attribute's value can be found in the {@link #CompoundButton} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:buttonTint
- */
- public static int CompoundButton_buttonTint = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonTintMode}
- attribute's value can be found in the {@link #CompoundButton} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- @attr name me.imid.swipebacklayout.lib:buttonTintMode
- */
- public static int CompoundButton_buttonTintMode = 2;
- /** Attributes that can be used with a DrawerArrowToggle.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#arrowHeadLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:arrowHeadLength
- */
- public static int DrawerArrowToggle_arrowHeadLength = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#arrowShaftLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:arrowShaftLength
- */
- public static int DrawerArrowToggle_arrowShaftLength = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#barLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:barLength
- */
- public static int DrawerArrowToggle_barLength = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#color}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:color
- */
- public static int DrawerArrowToggle_color = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#drawableSize}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:drawableSize
- */
- public static int DrawerArrowToggle_drawableSize = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#gapBetweenBars}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:gapBetweenBars
- */
- public static int DrawerArrowToggle_gapBetweenBars = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#spinBars}
- attribute's value can be found in the {@link #DrawerArrowToggle} 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 me.imid.swipebacklayout.lib:spinBars
- */
- public static int DrawerArrowToggle_spinBars = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#thickness}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:thickness
- */
- public static int DrawerArrowToggle_thickness = 7;
- /** Attributes that can be used with a LinearLayoutCompat.
-
This symbol is the offset where the {@link android.R.attr#baselineAligned}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:baselineAligned
- */
- public static int LinearLayoutCompat_android_baselineAligned = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:baselineAlignedChildIndex
- */
- public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#gravity}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:gravity
- */
- public static int LinearLayoutCompat_android_gravity = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#orientation}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:orientation
- */
- public static int LinearLayoutCompat_android_orientation = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#weightSum}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:weightSum
- */
- public static int LinearLayoutCompat_android_weightSum = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#divider}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:divider
- */
- public static int LinearLayoutCompat_divider = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dividerPadding}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:dividerPadding
- */
- public static int LinearLayoutCompat_dividerPadding = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#measureWithLargestChild}
- attribute's value can be found in the {@link #LinearLayoutCompat} 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 me.imid.swipebacklayout.lib:measureWithLargestChild
- */
- public static int LinearLayoutCompat_measureWithLargestChild = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#showDividers}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
beginning
1
-
middle
2
-
end
4
-
- @attr name me.imid.swipebacklayout.lib:showDividers
- */
- public static int LinearLayoutCompat_showDividers = 7;
- /** Attributes that can be used with a LinearLayoutCompat_Layout.
-
This symbol is the offset where the {@link android.R.attr#layout_gravity}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_gravity
- */
- public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_height}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_height
- */
- public static int LinearLayoutCompat_Layout_android_layout_height = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_weight}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_weight
- */
- public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_width}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_width
- */
- public static int LinearLayoutCompat_Layout_android_layout_width = 1;
- /** Attributes that can be used with a ListPopupWindow.
-
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
- attribute's value can be found in the {@link #ListPopupWindow} array.
- @attr name android:dropDownHorizontalOffset
- */
- public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
- attribute's value can be found in the {@link #ListPopupWindow} array.
- @attr name android:dropDownVerticalOffset
- */
- public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
- /** Attributes that can be used with a MenuGroup.
-
This symbol is the offset where the {@link android.R.attr#checkableBehavior}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:checkableBehavior
- */
- public static int MenuGroup_android_checkableBehavior = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#enabled}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:enabled
- */
- public static int MenuGroup_android_enabled = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#id}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:id
- */
- public static int MenuGroup_android_id = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#menuCategory}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:menuCategory
- */
- public static int MenuGroup_android_menuCategory = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#orderInCategory}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:orderInCategory
- */
- public static int MenuGroup_android_orderInCategory = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#visible}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:visible
- */
- public static int MenuGroup_android_visible = 2;
- /** Attributes that can be used with a MenuItem.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionLayout}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionLayout
- */
- public static int MenuItem_actionLayout = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionProviderClass}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:actionProviderClass
- */
- public static int MenuItem_actionProviderClass = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionViewClass}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:actionViewClass
- */
- public static int MenuItem_actionViewClass = 15;
- /**
-
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:alphabeticShortcut
- */
- public static int MenuItem_android_alphabeticShortcut = 9;
- /**
-
This symbol is the offset where the {@link android.R.attr#checkable}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:checkable
- */
- public static int MenuItem_android_checkable = 11;
- /**
-
This symbol is the offset where the {@link android.R.attr#checked}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:checked
- */
- public static int MenuItem_android_checked = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#enabled}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:enabled
- */
- public static int MenuItem_android_enabled = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#icon}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:icon
- */
- public static int MenuItem_android_icon = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#id}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:id
- */
- public static int MenuItem_android_id = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#menuCategory}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:menuCategory
- */
- public static int MenuItem_android_menuCategory = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#numericShortcut}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:numericShortcut
- */
- public static int MenuItem_android_numericShortcut = 10;
- /**
-
This symbol is the offset where the {@link android.R.attr#onClick}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:onClick
- */
- public static int MenuItem_android_onClick = 12;
- /**
-
This symbol is the offset where the {@link android.R.attr#orderInCategory}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:orderInCategory
- */
- public static int MenuItem_android_orderInCategory = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#title}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:title
- */
- public static int MenuItem_android_title = 7;
- /**
-
This symbol is the offset where the {@link android.R.attr#titleCondensed}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:titleCondensed
- */
- public static int MenuItem_android_titleCondensed = 8;
- /**
-
This symbol is the offset where the {@link android.R.attr#visible}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:visible
- */
- public static int MenuItem_android_visible = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#showAsAction}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
never
0
-
ifRoom
1
-
always
2
-
withText
4
-
collapseActionView
8
-
- @attr name me.imid.swipebacklayout.lib:showAsAction
- */
- public static int MenuItem_showAsAction = 13;
- /** Attributes that can be used with a MenuView.
-
This symbol is the offset where the {@link android.R.attr#headerBackground}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:headerBackground
- */
- public static int MenuView_android_headerBackground = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:horizontalDivider
- */
- public static int MenuView_android_horizontalDivider = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#itemBackground}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:itemBackground
- */
- public static int MenuView_android_itemBackground = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:itemIconDisabledAlpha
- */
- public static int MenuView_android_itemIconDisabledAlpha = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:itemTextAppearance
- */
- public static int MenuView_android_itemTextAppearance = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#verticalDivider}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:verticalDivider
- */
- public static int MenuView_android_verticalDivider = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:windowAnimationStyle
- */
- public static int MenuView_android_windowAnimationStyle = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#preserveIconSpacing}
- attribute's value can be found in the {@link #MenuView} 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 me.imid.swipebacklayout.lib:preserveIconSpacing
- */
- public static int MenuView_preserveIconSpacing = 7;
- /** Attributes that can be used with a PopupWindow.
-
This symbol is the offset where the {@link android.R.attr#popupBackground}
- attribute's value can be found in the {@link #PopupWindow} array.
- @attr name android:popupBackground
- */
- public static int PopupWindow_android_popupBackground = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#overlapAnchor}
- attribute's value can be found in the {@link #PopupWindow} 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 me.imid.swipebacklayout.lib:overlapAnchor
- */
- public static int PopupWindow_overlapAnchor = 1;
- /** Attributes that can be used with a PopupWindowBackgroundState.
-
- @see #PopupWindowBackgroundState_state_above_anchor
- */
- public static final int[] PopupWindowBackgroundState = {
- 0x7f01003a
- };
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#state_above_anchor}
- attribute's value can be found in the {@link #PopupWindowBackgroundState} 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 me.imid.swipebacklayout.lib:state_above_anchor
- */
- public static int PopupWindowBackgroundState_state_above_anchor = 0;
- /** Attributes that can be used with a SearchView.
-
This symbol is the offset where the {@link android.R.attr#focusable}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:focusable
- */
- public static int SearchView_android_focusable = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#imeOptions}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:imeOptions
- */
- public static int SearchView_android_imeOptions = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#inputType}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:inputType
- */
- public static int SearchView_android_inputType = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#maxWidth}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:maxWidth
- */
- public static int SearchView_android_maxWidth = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#closeIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:closeIcon
- */
- public static int SearchView_closeIcon = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#commitIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:commitIcon
- */
- public static int SearchView_commitIcon = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#defaultQueryHint}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:defaultQueryHint
- */
- public static int SearchView_defaultQueryHint = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#goIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:goIcon
- */
- public static int SearchView_goIcon = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#iconifiedByDefault}
- attribute's value can be found in the {@link #SearchView} 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 me.imid.swipebacklayout.lib:iconifiedByDefault
- */
- public static int SearchView_iconifiedByDefault = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#layout}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:layout
- */
- public static int SearchView_layout = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#queryBackground}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:queryBackground
- */
- public static int SearchView_queryBackground = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#queryHint}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:queryHint
- */
- public static int SearchView_queryHint = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#searchHintIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:searchHintIcon
- */
- public static int SearchView_searchHintIcon = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#searchIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:searchIcon
- */
- public static int SearchView_searchIcon = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#submitBackground}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:submitBackground
- */
- public static int SearchView_submitBackground = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#suggestionRowLayout}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:suggestionRowLayout
- */
- public static int SearchView_suggestionRowLayout = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#voiceIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:voiceIcon
- */
- public static int SearchView_voiceIcon = 12;
- /** Attributes that can be used with a Spinner.
-
This symbol is the offset where the {@link android.R.attr#dropDownWidth}
- attribute's value can be found in the {@link #Spinner} array.
- @attr name android:dropDownWidth
- */
- public static int Spinner_android_dropDownWidth = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#popupBackground}
- attribute's value can be found in the {@link #Spinner} array.
- @attr name android:popupBackground
- */
- public static int Spinner_android_popupBackground = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#prompt}
- attribute's value can be found in the {@link #Spinner} array.
- @attr name android:prompt
- */
- public static int Spinner_android_prompt = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupTheme}
- attribute's value can be found in the {@link #Spinner} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupTheme
- */
- public static int Spinner_popupTheme = 3;
- /** Attributes that can be used with a SwipeBackLayout.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#edge_flag}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
left
0
-
right
1
-
bottom
2
-
all
3
-
- @attr name me.imid.swipebacklayout.lib:edge_flag
- */
- public static int SwipeBackLayout_edge_flag = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#edge_size}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:edge_size
- */
- public static int SwipeBackLayout_edge_size = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#shadow_bottom}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:shadow_bottom
- */
- public static int SwipeBackLayout_shadow_bottom = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#shadow_left}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:shadow_left
- */
- public static int SwipeBackLayout_shadow_left = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#shadow_right}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:shadow_right
- */
- public static int SwipeBackLayout_shadow_right = 3;
- /** Attributes that can be used with a SwitchCompat.
-
This symbol is the offset where the {@link android.R.attr#textOff}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @attr name android:textOff
- */
- public static int SwitchCompat_android_textOff = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#textOn}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @attr name android:textOn
- */
- public static int SwitchCompat_android_textOn = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#thumb}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @attr name android:thumb
- */
- public static int SwitchCompat_android_thumb = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#showText}
- attribute's value can be found in the {@link #SwitchCompat} 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 me.imid.swipebacklayout.lib:showText
- */
- public static int SwitchCompat_showText = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#splitTrack}
- attribute's value can be found in the {@link #SwitchCompat} 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 me.imid.swipebacklayout.lib:splitTrack
- */
- public static int SwitchCompat_splitTrack = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchMinWidth}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:switchMinWidth
- */
- public static int SwitchCompat_switchMinWidth = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchPadding}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:switchPadding
- */
- public static int SwitchCompat_switchPadding = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchTextAppearance}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:switchTextAppearance
- */
- public static int SwitchCompat_switchTextAppearance = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#thumbTextPadding}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:thumbTextPadding
- */
- public static int SwitchCompat_thumbTextPadding = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#track}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:track
- */
- public static int SwitchCompat_track = 3;
- /** Attributes that can be used with a TextAppearance.
-
This symbol is the offset where the {@link android.R.attr#shadowColor}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowColor
- */
- public static int TextAppearance_android_shadowColor = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowDx}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowDx
- */
- public static int TextAppearance_android_shadowDx = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowDy}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowDy
- */
- public static int TextAppearance_android_shadowDy = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowRadius}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowRadius
- */
- public static int TextAppearance_android_shadowRadius = 7;
- /**
-
This symbol is the offset where the {@link android.R.attr#textColor}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textColor
- */
- public static int TextAppearance_android_textColor = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#textSize}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textSize
- */
- public static int TextAppearance_android_textSize = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#textStyle}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textStyle
- */
- public static int TextAppearance_android_textStyle = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#typeface}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:typeface
- */
- public static int TextAppearance_android_typeface = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAllCaps}
- attribute's value can be found in the {@link #TextAppearance} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textAllCaps
- */
- public static int TextAppearance_textAllCaps = 8;
- /** Attributes that can be used with a Theme.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarDivider}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarDivider
- */
- public static int Theme_actionBarDivider = 23;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarItemBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarItemBackground
- */
- public static int Theme_actionBarItemBackground = 24;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarPopupTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarPopupTheme
- */
- public static int Theme_actionBarPopupTheme = 17;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarSize}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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).
-
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.
-
May be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
wrap_content
0
-
- @attr name me.imid.swipebacklayout.lib:actionBarSize
- */
- public static int Theme_actionBarSize = 22;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarSplitStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarSplitStyle
- */
- public static int Theme_actionBarSplitStyle = 19;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarStyle
- */
- public static int Theme_actionBarStyle = 18;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTabBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTabBarStyle
- */
- public static int Theme_actionBarTabBarStyle = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTabStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTabStyle
- */
- public static int Theme_actionBarTabStyle = 12;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTabTextStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTabTextStyle
- */
- public static int Theme_actionBarTabTextStyle = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTheme
- */
- public static int Theme_actionBarTheme = 20;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarWidgetTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarWidgetTheme
- */
- public static int Theme_actionBarWidgetTheme = 21;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionButtonStyle
- */
- public static int Theme_actionButtonStyle = 49;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionDropDownStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionDropDownStyle
- */
- public static int Theme_actionDropDownStyle = 45;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionMenuTextAppearance}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionMenuTextAppearance
- */
- public static int Theme_actionMenuTextAppearance = 25;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionMenuTextColor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:actionMenuTextColor
- */
- public static int Theme_actionMenuTextColor = 26;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeBackground
- */
- public static int Theme_actionModeBackground = 29;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCloseButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCloseButtonStyle
- */
- public static int Theme_actionModeCloseButtonStyle = 28;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCloseDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCloseDrawable
- */
- public static int Theme_actionModeCloseDrawable = 31;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCopyDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCopyDrawable
- */
- public static int Theme_actionModeCopyDrawable = 33;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCutDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCutDrawable
- */
- public static int Theme_actionModeCutDrawable = 32;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeFindDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeFindDrawable
- */
- public static int Theme_actionModeFindDrawable = 37;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModePasteDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModePasteDrawable
- */
- public static int Theme_actionModePasteDrawable = 34;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModePopupWindowStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModePopupWindowStyle
- */
- public static int Theme_actionModePopupWindowStyle = 39;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeSelectAllDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeSelectAllDrawable
- */
- public static int Theme_actionModeSelectAllDrawable = 35;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeShareDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeShareDrawable
- */
- public static int Theme_actionModeShareDrawable = 36;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeSplitBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeSplitBackground
- */
- public static int Theme_actionModeSplitBackground = 30;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeStyle
- */
- public static int Theme_actionModeStyle = 27;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeWebSearchDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeWebSearchDrawable
- */
- public static int Theme_actionModeWebSearchDrawable = 38;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionOverflowButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionOverflowButtonStyle
- */
- public static int Theme_actionOverflowButtonStyle = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionOverflowMenuStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionOverflowMenuStyle
- */
- public static int Theme_actionOverflowMenuStyle = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#activityChooserViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:activityChooserViewStyle
- */
- public static int Theme_activityChooserViewStyle = 57;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogButtonGroupStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:alertDialogButtonGroupStyle
- */
- public static int Theme_alertDialogButtonGroupStyle = 92;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogCenterButtons}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:alertDialogCenterButtons
- */
- public static int Theme_alertDialogCenterButtons = 93;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:alertDialogStyle
- */
- public static int Theme_alertDialogStyle = 91;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:alertDialogTheme
- */
- public static int Theme_alertDialogTheme = 94;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
- attribute's value can be found in the {@link #Theme} array.
- @attr name android:windowAnimationStyle
- */
- public static int Theme_android_windowAnimationStyle = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
- attribute's value can be found in the {@link #Theme} array.
- @attr name android:windowIsFloating
- */
- public static int Theme_android_windowIsFloating = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#autoCompleteTextViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:autoCompleteTextViewStyle
- */
- public static int Theme_autoCompleteTextViewStyle = 99;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#borderlessButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:borderlessButtonStyle
- */
- public static int Theme_borderlessButtonStyle = 54;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarButtonStyle
- */
- public static int Theme_buttonBarButtonStyle = 51;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarNegativeButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarNegativeButtonStyle
- */
- public static int Theme_buttonBarNegativeButtonStyle = 97;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarNeutralButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarNeutralButtonStyle
- */
- public static int Theme_buttonBarNeutralButtonStyle = 98;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarPositiveButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarPositiveButtonStyle
- */
- public static int Theme_buttonBarPositiveButtonStyle = 96;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarStyle
- */
- public static int Theme_buttonBarStyle = 50;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonStyle
- */
- public static int Theme_buttonStyle = 100;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonStyleSmall}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonStyleSmall
- */
- public static int Theme_buttonStyleSmall = 101;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#checkboxStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:checkboxStyle
- */
- public static int Theme_checkboxStyle = 102;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#checkedTextViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:checkedTextViewStyle
- */
- public static int Theme_checkedTextViewStyle = 103;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorAccent}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorAccent
- */
- public static int Theme_colorAccent = 84;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorButtonNormal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorButtonNormal
- */
- public static int Theme_colorButtonNormal = 88;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorControlActivated}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorControlActivated
- */
- public static int Theme_colorControlActivated = 86;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorControlHighlight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorControlHighlight
- */
- public static int Theme_colorControlHighlight = 87;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorControlNormal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorControlNormal
- */
- public static int Theme_colorControlNormal = 85;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorPrimary}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorPrimary
- */
- public static int Theme_colorPrimary = 82;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorPrimaryDark}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorPrimaryDark
- */
- public static int Theme_colorPrimaryDark = 83;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorSwitchThumbNormal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorSwitchThumbNormal
- */
- public static int Theme_colorSwitchThumbNormal = 89;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#controlBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:controlBackground
- */
- public static int Theme_controlBackground = 90;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dialogPreferredPadding}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:dialogPreferredPadding
- */
- public static int Theme_dialogPreferredPadding = 43;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dialogTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dialogTheme
- */
- public static int Theme_dialogTheme = 42;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dividerHorizontal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dividerHorizontal
- */
- public static int Theme_dividerHorizontal = 56;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dividerVertical}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dividerVertical
- */
- public static int Theme_dividerVertical = 55;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dropDownListViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dropDownListViewStyle
- */
- public static int Theme_dropDownListViewStyle = 74;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dropdownListPreferredItemHeight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:dropdownListPreferredItemHeight
- */
- public static int Theme_dropdownListPreferredItemHeight = 46;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#editTextBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:editTextBackground
- */
- public static int Theme_editTextBackground = 63;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#editTextColor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:editTextColor
- */
- public static int Theme_editTextColor = 62;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#editTextStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:editTextStyle
- */
- public static int Theme_editTextStyle = 104;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#homeAsUpIndicator}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:homeAsUpIndicator
- */
- public static int Theme_homeAsUpIndicator = 48;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#imageButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:imageButtonStyle
- */
- public static int Theme_imageButtonStyle = 64;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listChoiceBackgroundIndicator}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listChoiceBackgroundIndicator
- */
- public static int Theme_listChoiceBackgroundIndicator = 81;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listDividerAlertDialog}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listDividerAlertDialog
- */
- public static int Theme_listDividerAlertDialog = 44;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPopupWindowStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listPopupWindowStyle
- */
- public static int Theme_listPopupWindowStyle = 75;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemHeight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemHeight
- */
- public static int Theme_listPreferredItemHeight = 69;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemHeightLarge}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemHeightLarge
- */
- public static int Theme_listPreferredItemHeightLarge = 71;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemHeightSmall}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemHeightSmall
- */
- public static int Theme_listPreferredItemHeightSmall = 70;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemPaddingLeft}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemPaddingLeft
- */
- public static int Theme_listPreferredItemPaddingLeft = 72;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemPaddingRight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemPaddingRight
- */
- public static int Theme_listPreferredItemPaddingRight = 73;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#panelBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:panelBackground
- */
- public static int Theme_panelBackground = 78;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#panelMenuListTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:panelMenuListTheme
- */
- public static int Theme_panelMenuListTheme = 80;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#panelMenuListWidth}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:panelMenuListWidth
- */
- public static int Theme_panelMenuListWidth = 79;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupMenuStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupMenuStyle
- */
- public static int Theme_popupMenuStyle = 60;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupWindowStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupWindowStyle
- */
- public static int Theme_popupWindowStyle = 61;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#radioButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:radioButtonStyle
- */
- public static int Theme_radioButtonStyle = 105;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#ratingBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:ratingBarStyle
- */
- public static int Theme_ratingBarStyle = 106;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#searchViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:searchViewStyle
- */
- public static int Theme_searchViewStyle = 68;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#seekBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:seekBarStyle
- */
- public static int Theme_seekBarStyle = 107;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#selectableItemBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:selectableItemBackground
- */
- public static int Theme_selectableItemBackground = 52;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#selectableItemBackgroundBorderless}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:selectableItemBackgroundBorderless
- */
- public static int Theme_selectableItemBackgroundBorderless = 53;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#spinnerDropDownItemStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:spinnerDropDownItemStyle
- */
- public static int Theme_spinnerDropDownItemStyle = 47;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#spinnerStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:spinnerStyle
- */
- public static int Theme_spinnerStyle = 108;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:switchStyle
- */
- public static int Theme_switchStyle = 109;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceLargePopupMenu}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceLargePopupMenu
- */
- public static int Theme_textAppearanceLargePopupMenu = 40;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceListItem}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceListItem
- */
- public static int Theme_textAppearanceListItem = 76;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceListItemSmall}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceListItemSmall
- */
- public static int Theme_textAppearanceListItemSmall = 77;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceSearchResultSubtitle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceSearchResultSubtitle
- */
- public static int Theme_textAppearanceSearchResultSubtitle = 66;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceSearchResultTitle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceSearchResultTitle
- */
- public static int Theme_textAppearanceSearchResultTitle = 65;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceSmallPopupMenu}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceSmallPopupMenu
- */
- public static int Theme_textAppearanceSmallPopupMenu = 41;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textColorAlertDialogListItem}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textColorAlertDialogListItem
- */
- public static int Theme_textColorAlertDialogListItem = 95;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textColorSearchUrl}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textColorSearchUrl
- */
- public static int Theme_textColorSearchUrl = 67;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#toolbarNavigationButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:toolbarNavigationButtonStyle
- */
- public static int Theme_toolbarNavigationButtonStyle = 59;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#toolbarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:toolbarStyle
- */
- public static int Theme_toolbarStyle = 58;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowActionBar}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowActionBar
- */
- public static int Theme_windowActionBar = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowActionBarOverlay}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowActionBarOverlay
- */
- public static int Theme_windowActionBarOverlay = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowActionModeOverlay}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowActionModeOverlay
- */
- public static int Theme_windowActionModeOverlay = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedHeightMajor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedHeightMajor
- */
- public static int Theme_windowFixedHeightMajor = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedHeightMinor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedHeightMinor
- */
- public static int Theme_windowFixedHeightMinor = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedWidthMajor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedWidthMajor
- */
- public static int Theme_windowFixedWidthMajor = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedWidthMinor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedWidthMinor
- */
- public static int Theme_windowFixedWidthMinor = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowMinWidthMajor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowMinWidthMajor
- */
- public static int Theme_windowMinWidthMajor = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowMinWidthMinor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowMinWidthMinor
- */
- public static int Theme_windowMinWidthMinor = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowNoTitle}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowNoTitle
- */
- public static int Theme_windowNoTitle = 3;
- /** Attributes that can be used with a Toolbar.
-
This symbol is the offset where the {@link android.R.attr#gravity}
- attribute's value can be found in the {@link #Toolbar} array.
- @attr name android:gravity
- */
- public static int Toolbar_android_gravity = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#minHeight}
- attribute's value can be found in the {@link #Toolbar} array.
- @attr name android:minHeight
- */
- public static int Toolbar_android_minHeight = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#collapseContentDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:collapseContentDescription
- */
- public static int Toolbar_collapseContentDescription = 19;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#collapseIcon}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:collapseIcon
- */
- public static int Toolbar_collapseIcon = 18;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetEnd}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetEnd
- */
- public static int Toolbar_contentInsetEnd = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetLeft}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetLeft
- */
- public static int Toolbar_contentInsetLeft = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetRight}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetRight
- */
- public static int Toolbar_contentInsetRight = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetStart}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetStart
- */
- public static int Toolbar_contentInsetStart = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#logo}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:logo
- */
- public static int Toolbar_logo = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#logoDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:logoDescription
- */
- public static int Toolbar_logoDescription = 22;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#maxButtonHeight}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:maxButtonHeight
- */
- public static int Toolbar_maxButtonHeight = 17;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#navigationContentDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:navigationContentDescription
- */
- public static int Toolbar_navigationContentDescription = 21;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#navigationIcon}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:navigationIcon
- */
- public static int Toolbar_navigationIcon = 20;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupTheme}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupTheme
- */
- public static int Toolbar_popupTheme = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitle}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:subtitle
- */
- public static int Toolbar_subtitle = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextAppearance}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:subtitleTextAppearance
- */
- public static int Toolbar_subtitleTextAppearance = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextColor}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:subtitleTextColor
- */
- public static int Toolbar_subtitleTextColor = 24;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#title}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:title
- */
- public static int Toolbar_title = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginBottom}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginBottom
- */
- public static int Toolbar_titleMarginBottom = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginEnd}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginEnd
- */
- public static int Toolbar_titleMarginEnd = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginStart}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginStart
- */
- public static int Toolbar_titleMarginStart = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginTop}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginTop
- */
- public static int Toolbar_titleMarginTop = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMargins}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMargins
- */
- public static int Toolbar_titleMargins = 12;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextAppearance}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:titleTextAppearance
- */
- public static int Toolbar_titleTextAppearance = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextColor}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:titleTextColor
- */
- public static int Toolbar_titleTextColor = 23;
- /** Attributes that can be used with a View.
-
This symbol is the offset where the {@link android.R.attr#focusable}
- attribute's value can be found in the {@link #View} array.
- @attr name android:focusable
- */
- public static int View_android_focusable = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#theme}
- attribute's value can be found in the {@link #View} array.
- @attr name android:theme
- */
- public static int View_android_theme = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#paddingEnd}
- attribute's value can be found in the {@link #View} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:paddingEnd
- */
- public static int View_paddingEnd = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#paddingStart}
- attribute's value can be found in the {@link #View} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:paddingStart
- */
- public static int View_paddingStart = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#theme}
- attribute's value can be found in the {@link #View} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:theme
- */
- public static int View_theme = 4;
- /** Attributes that can be used with a ViewBackgroundHelper.
-
This symbol is the offset where the {@link android.R.attr#background}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
- @attr name android:background
- */
- public static int ViewBackgroundHelper_android_background = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundTint}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:backgroundTint
- */
- public static int ViewBackgroundHelper_backgroundTint = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundTintMode}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- @attr name me.imid.swipebacklayout.lib:backgroundTintMode
- */
- public static int ViewBackgroundHelper_backgroundTintMode = 2;
- /** Attributes that can be used with a ViewStubCompat.
-
This symbol is the offset where the {@link android.R.attr#id}
- attribute's value can be found in the {@link #ViewStubCompat} array.
- @attr name android:id
- */
- public static int ViewStubCompat_android_id = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#inflatedId}
- attribute's value can be found in the {@link #ViewStubCompat} array.
- @attr name android:inflatedId
- */
- public static int ViewStubCompat_android_inflatedId = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout}
- attribute's value can be found in the {@link #ViewStubCompat} array.
- @attr name android:layout
- */
- public static int ViewStubCompat_android_layout = 1;
- };
-}
diff --git a/swipeback/build/generated/source/r/release/me/imid/swipebacklayout/lib/R.java b/swipeback/build/generated/source/r/release/me/imid/swipebacklayout/lib/R.java
deleted file mode 100644
index 897fea0..0000000
--- a/swipeback/build/generated/source/r/release/me/imid/swipebacklayout/lib/R.java
+++ /dev/null
@@ -1,6334 +0,0 @@
-/* AUTO-GENERATED FILE. DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found. It
- * should not be modified by hand.
- */
-
-package me.imid.swipebacklayout.lib;
-
-public final class R {
- public static final class anim {
- public static int abc_fade_in=0x7f040000;
- public static int abc_fade_out=0x7f040001;
- public static int abc_grow_fade_in_from_bottom=0x7f040002;
- public static int abc_popup_enter=0x7f040003;
- public static int abc_popup_exit=0x7f040004;
- public static int abc_shrink_fade_out_from_bottom=0x7f040005;
- public static int abc_slide_in_bottom=0x7f040006;
- public static int abc_slide_in_top=0x7f040007;
- public static int abc_slide_out_bottom=0x7f040008;
- public static int abc_slide_out_top=0x7f040009;
- }
- public static final class attr {
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int SwipeBackLayoutStyle=0x7f010000;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionBarDivider=0x7f010069;
- /**
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 int actionBarItemBackground=0x7f01006a;
- /**
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 int actionBarPopupTheme=0x7f010063;
- /**
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).
-
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.
-
May be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
wrap_content
0
-
- */
- public static int actionBarSize=0x7f010068;
- /**
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 int actionBarSplitStyle=0x7f010065;
- /**
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 int actionBarStyle=0x7f010064;
- /**
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 int actionBarTabBarStyle=0x7f01005f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionBarTabStyle=0x7f01005e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionBarTabTextStyle=0x7f010060;
- /**
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 int actionBarTheme=0x7f010066;
- /**
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 int actionBarWidgetTheme=0x7f010067;
- /**
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 int actionButtonStyle=0x7f010083;
- /**
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 int actionDropDownStyle=0x7f01007f;
- /**
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 int actionLayout=0x7f010035;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionMenuTextAppearance=0x7f01006b;
- /**
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 int actionMenuTextColor=0x7f01006c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int actionModeBackground=0x7f01006f;
- /**
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 int actionModeCloseButtonStyle=0x7f01006e;
- /**
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 int actionModeCloseDrawable=0x7f010071;
- /**
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 int actionModeCopyDrawable=0x7f010073;
- /**
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 int actionModeCutDrawable=0x7f010072;
- /**
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 int actionModeFindDrawable=0x7f010077;
- /**
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 int actionModePasteDrawable=0x7f010074;
- /**
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 int actionModePopupWindowStyle=0x7f010079;
- /**
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 int actionModeSelectAllDrawable=0x7f010075;
- /**
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 int actionModeShareDrawable=0x7f010076;
- /**
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 int actionModeSplitBackground=0x7f010070;
- /**
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 int actionModeStyle=0x7f01006d;
- /**
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 int actionModeWebSearchDrawable=0x7f010078;
- /**
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 int actionOverflowButtonStyle=0x7f010061;
- /**
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 int actionOverflowMenuStyle=0x7f010062;
- /**
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 int actionProviderClass=0x7f010037;
- /**
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 int actionViewClass=0x7f010036;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int activityChooserViewStyle=0x7f01008b;
- /**
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 int alertDialogButtonGroupStyle=0x7f0100ae;
- /**
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 int alertDialogCenterButtons=0x7f0100af;
- /**
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 int alertDialogStyle=0x7f0100ad;
- /**
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 int alertDialogTheme=0x7f0100b0;
- /**
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 int allowStacking=0x7f010026;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name") or
-theme attribute (in the form
-"?[package:][type:]name")
-containing a value of this type.
- */
- public static int arrowHeadLength=0x7f01002d;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package:]type:name") or
-theme attribute (in the form
-"?[package:][type:]name")
-containing a value of this type.
- */
- public static int arrowShaftLength=0x7f01002e;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int autoCompleteTextViewStyle=0x7f0100b5;
- /**
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 int background=0x7f01000d;
- /**
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 int backgroundSplit=0x7f01000f;
- /**
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 int backgroundStacked=0x7f01000e;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int backgroundTint=0x7f0100d2;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- */
- public static int backgroundTintMode=0x7f0100d3;
- /**
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 int barLength=0x7f01002f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int borderlessButtonStyle=0x7f010088;
- /**
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 int buttonBarButtonStyle=0x7f010085;
- /**
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 int buttonBarNegativeButtonStyle=0x7f0100b3;
- /**
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 int buttonBarNeutralButtonStyle=0x7f0100b4;
- /**
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 int buttonBarPositiveButtonStyle=0x7f0100b2;
- /**
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 int buttonBarStyle=0x7f010084;
- /**
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 int buttonPanelSideLayout=0x7f010020;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int buttonStyle=0x7f0100b6;
- /**
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 int buttonStyleSmall=0x7f0100b7;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int buttonTint=0x7f010027;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- */
- public static int buttonTintMode=0x7f010028;
- /**
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 int checkboxStyle=0x7f0100b8;
- /**
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 int checkedTextViewStyle=0x7f0100b9;
- /**
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 int closeIcon=0x7f01003f;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int closeItemLayout=0x7f01001d;
- /**
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 int collapseContentDescription=0x7f0100c9;
- /**
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 int collapseIcon=0x7f0100c8;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int color=0x7f010029;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorAccent=0x7f0100a6;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorButtonNormal=0x7f0100aa;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorControlActivated=0x7f0100a8;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorControlHighlight=0x7f0100a9;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorControlNormal=0x7f0100a7;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorPrimary=0x7f0100a4;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorPrimaryDark=0x7f0100a5;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int colorSwitchThumbNormal=0x7f0100ab;
- /**
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 int commitIcon=0x7f010044;
- /**
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 int contentInsetEnd=0x7f010018;
- /**
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 int contentInsetLeft=0x7f010019;
- /**
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 int contentInsetRight=0x7f01001a;
- /**
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 int contentInsetStart=0x7f010017;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int controlBackground=0x7f0100ac;
- /**
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 int customNavigationLayout=0x7f010010;
- /**
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 int defaultQueryHint=0x7f01003e;
- /**
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 int dialogPreferredPadding=0x7f01007d;
- /**
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 int dialogTheme=0x7f01007c;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
useLogo
0x1
-
showHome
0x2
-
homeAsUp
0x4
-
showTitle
0x8
-
showCustom
0x10
-
disableHome
0x20
-
- */
- public static int displayOptions=0x7f010006;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int divider=0x7f01000c;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int dividerHorizontal=0x7f01008a;
- /**
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 int dividerPadding=0x7f010033;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int dividerVertical=0x7f010089;
- /**
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 int drawableSize=0x7f01002b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int drawerArrowStyle=0x7f010001;
- /**
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 int dropDownListViewStyle=0x7f01009c;
- /**
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 int dropdownListPreferredItemHeight=0x7f010080;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
left
0
-
right
1
-
bottom
2
-
all
3
-
- */
- public static int edge_flag=0x7f010049;
- /**
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 int edge_size=0x7f010048;
- /**
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 int editTextBackground=0x7f010091;
- /**
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 int editTextColor=0x7f010090;
- /**
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 int editTextStyle=0x7f0100ba;
- /**
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 int elevation=0x7f01001b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int expandActivityOverflowButtonDrawable=0x7f01001f;
- /**
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 int gapBetweenBars=0x7f01002c;
- /**
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 int goIcon=0x7f010040;
- /**
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 int height=0x7f010002;
- /**
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 int hideOnContentScroll=0x7f010016;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int homeAsUpIndicator=0x7f010082;
- /**
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 int homeLayout=0x7f010011;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int icon=0x7f01000a;
- /**
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 int iconifiedByDefault=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 int imageButtonStyle=0x7f010092;
- /**
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 int indeterminateProgressStyle=0x7f010013;
- /**
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 int initialActivityCount=0x7f01001e;
- /**
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 int isLightTheme=0x7f010003;
- /**
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 int itemPadding=0x7f010015;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int layout=0x7f01003b;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int listChoiceBackgroundIndicator=0x7f0100a3;
- /**
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 int listDividerAlertDialog=0x7f01007e;
- /**
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 int listItemLayout=0x7f010024;
- /**
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 int listLayout=0x7f010021;
- /**
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 int listPopupWindowStyle=0x7f01009d;
- /**
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 int listPreferredItemHeight=0x7f010097;
- /**
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 int listPreferredItemHeightLarge=0x7f010099;
- /**
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 int listPreferredItemHeightSmall=0x7f010098;
- /**
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 int listPreferredItemPaddingLeft=0x7f01009a;
- /**
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 int listPreferredItemPaddingRight=0x7f01009b;
- /**
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 int logo=0x7f01000b;
- /**
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 int logoDescription=0x7f0100cc;
- /**
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 int maxButtonHeight=0x7f0100c7;
- /**
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 int measureWithLargestChild=0x7f010031;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int multiChoiceItemLayout=0x7f010022;
- /**
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 int navigationContentDescription=0x7f0100cb;
- /**
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 int navigationIcon=0x7f0100ca;
- /**
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
normal
0
-
listMode
1
-
tabMode
2
-
- */
- public static int navigationMode=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 int overlapAnchor=0x7f010039;
- /**
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 int paddingEnd=0x7f0100d0;
- /**
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 int paddingStart=0x7f0100cf;
- /**
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 int panelBackground=0x7f0100a0;
- /**
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 int panelMenuListTheme=0x7f0100a2;
- /**
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 int panelMenuListWidth=0x7f0100a1;
- /**
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 int popupMenuStyle=0x7f01008e;
- /**
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 int popupTheme=0x7f01001c;
- /**
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 int popupWindowStyle=0x7f01008f;
- /**
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 int preserveIconSpacing=0x7f010038;
- /**
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 int progressBarPadding=0x7f010014;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int progressBarStyle=0x7f010012;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int queryBackground=0x7f010046;
- /**
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 int queryHint=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 int radioButtonStyle=0x7f0100bb;
- /**
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 int ratingBarStyle=0x7f0100bc;
- /**
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 int searchHintIcon=0x7f010042;
- /**
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 int searchIcon=0x7f010041;
- /**
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 int searchViewStyle=0x7f010096;
- /**
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 int seekBarStyle=0x7f0100bd;
- /**
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 int selectableItemBackground=0x7f010086;
- /**
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 int selectableItemBackgroundBorderless=0x7f010087;
- /**
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 int shadow_bottom=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 int shadow_left=0x7f01004a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int shadow_right=0x7f01004b;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
never
0
-
ifRoom
1
-
always
2
-
withText
4
-
collapseActionView
8
-
- */
- public static int showAsAction=0x7f010034;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
beginning
1
-
middle
2
-
end
4
-
- */
- public static int showDividers=0x7f010032;
- /**
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 int showText=0x7f010053;
- /**
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 int singleChoiceItemLayout=0x7f010023;
- /**
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 int spinBars=0x7f01002a;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int spinnerDropDownItemStyle=0x7f010081;
- /**
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 int spinnerStyle=0x7f0100be;
- /**
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 int splitTrack=0x7f010052;
- /**
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 int state_above_anchor=0x7f01003a;
- /**
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 int submitBackground=0x7f010047;
- /**
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 int subtitle=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 int subtitleTextAppearance=0x7f0100c1;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int subtitleTextColor=0x7f0100ce;
- /**
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 int subtitleTextStyle=0x7f010009;
- /**
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 int suggestionRowLayout=0x7f010045;
- /**
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 int switchMinWidth=0x7f010050;
- /**
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 int switchPadding=0x7f010051;
- /**
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 int switchStyle=0x7f0100bf;
- /**
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 int switchTextAppearance=0x7f01004f;
- /**
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 int textAllCaps=0x7f010025;
- /**
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 int textAppearanceLargePopupMenu=0x7f01007a;
- /**
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 int textAppearanceListItem=0x7f01009e;
- /**
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 int textAppearanceListItemSmall=0x7f01009f;
- /**
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 int textAppearanceSearchResultSubtitle=0x7f010094;
- /**
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 int textAppearanceSearchResultTitle=0x7f010093;
- /**
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 int textAppearanceSmallPopupMenu=0x7f01007b;
- /**
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 int textColorAlertDialogListItem=0x7f0100b1;
- /**
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 int textColorSearchUrl=0x7f010095;
- /**
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 int theme=0x7f0100d1;
- /**
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 int thickness=0x7f010030;
- /**
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 int thumbTextPadding=0x7f01004e;
- /**
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 int title=0x7f010004;
- /**
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 int titleMarginBottom=0x7f0100c6;
- /**
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 int titleMarginEnd=0x7f0100c4;
- /**
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 int titleMarginStart=0x7f0100c3;
- /**
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 int titleMarginTop=0x7f0100c5;
- /**
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 int titleMargins=0x7f0100c2;
- /**
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 int titleTextAppearance=0x7f0100c0;
- /**
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 int titleTextColor=0x7f0100cd;
- /**
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 int titleTextStyle=0x7f010008;
- /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- */
- public static int toolbarNavigationButtonStyle=0x7f01008d;
- /**
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 int toolbarStyle=0x7f01008c;
- /**
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 int track=0x7f01004d;
- /**
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 int voiceIcon=0x7f010043;
- /**
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 int windowActionBar=0x7f010054;
- /**
Must be a boolean value, either "true" or "false".
-
This may also be a reference to a resource (in the form
-"@[package:]type:name") or
-theme attribute (in the form
-"?[package:][type:]name")
-containing a value of this type.
- */
- public static int windowActionBarOverlay=0x7f010056;
- /**
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 int windowActionModeOverlay=0x7f010057;
- /**
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 int windowFixedHeightMajor=0x7f01005b;
- /**
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 int windowFixedHeightMinor=0x7f010059;
- /**
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 int windowFixedWidthMajor=0x7f010058;
- /**
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 int windowFixedWidthMinor=0x7f01005a;
- /**
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 int windowMinWidthMajor=0x7f01005c;
- /**
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 int windowMinWidthMinor=0x7f01005d;
- /**
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 int windowNoTitle=0x7f010055;
- }
- public static final class bool {
- public static int abc_action_bar_embed_tabs=0x7f060003;
- public static int abc_action_bar_embed_tabs_pre_jb=0x7f060001;
- public static int abc_action_bar_expanded_action_views_exclusive=0x7f060004;
- public static int abc_allow_stacked_button_bar=0x7f060000;
- public static int abc_config_actionMenuItemAllCaps=0x7f060005;
- public static int abc_config_allowActionMenuItemTextWithIcon=0x7f060002;
- public static int abc_config_closeDialogWhenTouchOutside=0x7f060006;
- public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f060007;
- }
- public static final class color {
- public static int abc_background_cache_hint_selector_material_dark=0x7f0a003a;
- public static int abc_background_cache_hint_selector_material_light=0x7f0a003b;
- public static int abc_color_highlight_material=0x7f0a003c;
- public static int abc_input_method_navigation_guard=0x7f0a0000;
- public static int abc_primary_text_disable_only_material_dark=0x7f0a003d;
- public static int abc_primary_text_disable_only_material_light=0x7f0a003e;
- public static int abc_primary_text_material_dark=0x7f0a003f;
- public static int abc_primary_text_material_light=0x7f0a0040;
- public static int abc_search_url_text=0x7f0a0041;
- public static int abc_search_url_text_normal=0x7f0a0001;
- public static int abc_search_url_text_pressed=0x7f0a0002;
- public static int abc_search_url_text_selected=0x7f0a0003;
- public static int abc_secondary_text_material_dark=0x7f0a0042;
- public static int abc_secondary_text_material_light=0x7f0a0043;
- public static int accent_material_dark=0x7f0a0004;
- public static int accent_material_light=0x7f0a0005;
- public static int background_floating_material_dark=0x7f0a0006;
- public static int background_floating_material_light=0x7f0a0007;
- public static int background_material_dark=0x7f0a0008;
- public static int background_material_light=0x7f0a0009;
- public static int bright_foreground_disabled_material_dark=0x7f0a000a;
- public static int bright_foreground_disabled_material_light=0x7f0a000b;
- public static int bright_foreground_inverse_material_dark=0x7f0a000c;
- public static int bright_foreground_inverse_material_light=0x7f0a000d;
- public static int bright_foreground_material_dark=0x7f0a000e;
- public static int bright_foreground_material_light=0x7f0a000f;
- public static int button_material_dark=0x7f0a0010;
- public static int button_material_light=0x7f0a0011;
- public static int dim_foreground_disabled_material_dark=0x7f0a0012;
- public static int dim_foreground_disabled_material_light=0x7f0a0013;
- public static int dim_foreground_material_dark=0x7f0a0014;
- public static int dim_foreground_material_light=0x7f0a0015;
- public static int foreground_material_dark=0x7f0a0016;
- public static int foreground_material_light=0x7f0a0017;
- public static int highlighted_text_material_dark=0x7f0a0018;
- public static int highlighted_text_material_light=0x7f0a0019;
- public static int hint_foreground_material_dark=0x7f0a001a;
- public static int hint_foreground_material_light=0x7f0a001b;
- public static int material_blue_grey_800=0x7f0a001c;
- public static int material_blue_grey_900=0x7f0a001d;
- public static int material_blue_grey_950=0x7f0a001e;
- public static int material_deep_teal_200=0x7f0a001f;
- public static int material_deep_teal_500=0x7f0a0020;
- public static int material_grey_100=0x7f0a0021;
- public static int material_grey_300=0x7f0a0022;
- public static int material_grey_50=0x7f0a0023;
- public static int material_grey_600=0x7f0a0024;
- public static int material_grey_800=0x7f0a0025;
- public static int material_grey_850=0x7f0a0026;
- public static int material_grey_900=0x7f0a0027;
- public static int primary_dark_material_dark=0x7f0a0028;
- public static int primary_dark_material_light=0x7f0a0029;
- public static int primary_material_dark=0x7f0a002a;
- public static int primary_material_light=0x7f0a002b;
- public static int primary_text_default_material_dark=0x7f0a002c;
- public static int primary_text_default_material_light=0x7f0a002d;
- public static int primary_text_disabled_material_dark=0x7f0a002e;
- public static int primary_text_disabled_material_light=0x7f0a002f;
- public static int ripple_material_dark=0x7f0a0030;
- public static int ripple_material_light=0x7f0a0031;
- public static int secondary_text_default_material_dark=0x7f0a0032;
- public static int secondary_text_default_material_light=0x7f0a0033;
- public static int secondary_text_disabled_material_dark=0x7f0a0034;
- public static int secondary_text_disabled_material_light=0x7f0a0035;
- public static int switch_thumb_disabled_material_dark=0x7f0a0036;
- public static int switch_thumb_disabled_material_light=0x7f0a0037;
- public static int switch_thumb_material_dark=0x7f0a0044;
- public static int switch_thumb_material_light=0x7f0a0045;
- public static int switch_thumb_normal_material_dark=0x7f0a0038;
- public static int switch_thumb_normal_material_light=0x7f0a0039;
- }
- public static final class dimen {
- public static int abc_action_bar_content_inset_material=0x7f07000d;
- public static int abc_action_bar_default_height_material=0x7f070001;
- public static int abc_action_bar_default_padding_end_material=0x7f07000e;
- public static int abc_action_bar_default_padding_start_material=0x7f07000f;
- public static int abc_action_bar_icon_vertical_padding_material=0x7f070011;
- public static int abc_action_bar_overflow_padding_end_material=0x7f070012;
- public static int abc_action_bar_overflow_padding_start_material=0x7f070013;
- public static int abc_action_bar_progress_bar_size=0x7f070002;
- public static int abc_action_bar_stacked_max_height=0x7f070014;
- public static int abc_action_bar_stacked_tab_max_width=0x7f070015;
- public static int abc_action_bar_subtitle_bottom_margin_material=0x7f070016;
- public static int abc_action_bar_subtitle_top_margin_material=0x7f070017;
- public static int abc_action_button_min_height_material=0x7f070018;
- public static int abc_action_button_min_width_material=0x7f070019;
- public static int abc_action_button_min_width_overflow_material=0x7f07001a;
- public static int abc_alert_dialog_button_bar_height=0x7f070000;
- public static int abc_button_inset_horizontal_material=0x7f07001b;
- public static int abc_button_inset_vertical_material=0x7f07001c;
- public static int abc_button_padding_horizontal_material=0x7f07001d;
- public static int abc_button_padding_vertical_material=0x7f07001e;
- public static int abc_config_prefDialogWidth=0x7f070005;
- public static int abc_control_corner_material=0x7f07001f;
- public static int abc_control_inset_material=0x7f070020;
- public static int abc_control_padding_material=0x7f070021;
- public static int abc_dialog_fixed_height_major=0x7f070006;
- public static int abc_dialog_fixed_height_minor=0x7f070007;
- public static int abc_dialog_fixed_width_major=0x7f070008;
- public static int abc_dialog_fixed_width_minor=0x7f070009;
- public static int abc_dialog_list_padding_vertical_material=0x7f070022;
- public static int abc_dialog_min_width_major=0x7f07000a;
- public static int abc_dialog_min_width_minor=0x7f07000b;
- public static int abc_dialog_padding_material=0x7f070023;
- public static int abc_dialog_padding_top_material=0x7f070024;
- public static int abc_disabled_alpha_material_dark=0x7f070025;
- public static int abc_disabled_alpha_material_light=0x7f070026;
- public static int abc_dropdownitem_icon_width=0x7f070027;
- public static int abc_dropdownitem_text_padding_left=0x7f070028;
- public static int abc_dropdownitem_text_padding_right=0x7f070029;
- public static int abc_edit_text_inset_bottom_material=0x7f07002a;
- public static int abc_edit_text_inset_horizontal_material=0x7f07002b;
- public static int abc_edit_text_inset_top_material=0x7f07002c;
- public static int abc_floating_window_z=0x7f07002d;
- public static int abc_list_item_padding_horizontal_material=0x7f07002e;
- public static int abc_panel_menu_list_width=0x7f07002f;
- public static int abc_search_view_preferred_width=0x7f070030;
- public static int abc_search_view_text_min_width=0x7f07000c;
- public static int abc_seekbar_track_background_height_material=0x7f070031;
- public static int abc_seekbar_track_progress_height_material=0x7f070032;
- public static int abc_select_dialog_padding_start_material=0x7f070033;
- public static int abc_switch_padding=0x7f070010;
- public static int abc_text_size_body_1_material=0x7f070034;
- public static int abc_text_size_body_2_material=0x7f070035;
- public static int abc_text_size_button_material=0x7f070036;
- public static int abc_text_size_caption_material=0x7f070037;
- public static int abc_text_size_display_1_material=0x7f070038;
- public static int abc_text_size_display_2_material=0x7f070039;
- public static int abc_text_size_display_3_material=0x7f07003a;
- public static int abc_text_size_display_4_material=0x7f07003b;
- public static int abc_text_size_headline_material=0x7f07003c;
- public static int abc_text_size_large_material=0x7f07003d;
- public static int abc_text_size_medium_material=0x7f07003e;
- public static int abc_text_size_menu_material=0x7f07003f;
- public static int abc_text_size_small_material=0x7f070040;
- public static int abc_text_size_subhead_material=0x7f070041;
- public static int abc_text_size_subtitle_material_toolbar=0x7f070003;
- public static int abc_text_size_title_material=0x7f070042;
- public static int abc_text_size_title_material_toolbar=0x7f070004;
- public static int disabled_alpha_material_dark=0x7f070043;
- public static int disabled_alpha_material_light=0x7f070044;
- public static int highlight_alpha_material_colored=0x7f070045;
- public static int highlight_alpha_material_dark=0x7f070046;
- public static int highlight_alpha_material_light=0x7f070047;
- public static int notification_large_icon_height=0x7f070048;
- public static int notification_large_icon_width=0x7f070049;
- public static int notification_subtext_size=0x7f07004a;
- }
- public static final class drawable {
- public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
- public static int abc_action_bar_item_background_material=0x7f020001;
- public static int abc_btn_borderless_material=0x7f020002;
- public static int abc_btn_check_material=0x7f020003;
- public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
- public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
- public static int abc_btn_colored_material=0x7f020006;
- public static int abc_btn_default_mtrl_shape=0x7f020007;
- public static int abc_btn_radio_material=0x7f020008;
- public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
- public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
- public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
- public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
- public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
- public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
- public static int abc_cab_background_internal_bg=0x7f02000f;
- public static int abc_cab_background_top_material=0x7f020010;
- public static int abc_cab_background_top_mtrl_alpha=0x7f020011;
- public static int abc_control_background_material=0x7f020012;
- public static int abc_dialog_material_background_dark=0x7f020013;
- public static int abc_dialog_material_background_light=0x7f020014;
- public static int abc_edit_text_material=0x7f020015;
- public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
- public static int abc_ic_clear_mtrl_alpha=0x7f020017;
- public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
- public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
- public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
- public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
- public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
- public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
- public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
- public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
- public static int abc_ic_search_api_mtrl_alpha=0x7f020020;
- public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020021;
- public static int abc_item_background_holo_dark=0x7f020022;
- public static int abc_item_background_holo_light=0x7f020023;
- public static int abc_list_divider_mtrl_alpha=0x7f020024;
- public static int abc_list_focused_holo=0x7f020025;
- public static int abc_list_longpressed_holo=0x7f020026;
- public static int abc_list_pressed_holo_dark=0x7f020027;
- public static int abc_list_pressed_holo_light=0x7f020028;
- public static int abc_list_selector_background_transition_holo_dark=0x7f020029;
- public static int abc_list_selector_background_transition_holo_light=0x7f02002a;
- public static int abc_list_selector_disabled_holo_dark=0x7f02002b;
- public static int abc_list_selector_disabled_holo_light=0x7f02002c;
- public static int abc_list_selector_holo_dark=0x7f02002d;
- public static int abc_list_selector_holo_light=0x7f02002e;
- public static int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f;
- public static int abc_popup_background_mtrl_mult=0x7f020030;
- public static int abc_ratingbar_full_material=0x7f020031;
- public static int abc_scrubber_control_off_mtrl_alpha=0x7f020032;
- public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020033;
- public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f020034;
- public static int abc_scrubber_primary_mtrl_alpha=0x7f020035;
- public static int abc_scrubber_track_mtrl_alpha=0x7f020036;
- public static int abc_seekbar_thumb_material=0x7f020037;
- public static int abc_seekbar_track_material=0x7f020038;
- public static int abc_spinner_mtrl_am_alpha=0x7f020039;
- public static int abc_spinner_textfield_background_material=0x7f02003a;
- public static int abc_switch_thumb_material=0x7f02003b;
- public static int abc_switch_track_mtrl_alpha=0x7f02003c;
- public static int abc_tab_indicator_material=0x7f02003d;
- public static int abc_tab_indicator_mtrl_alpha=0x7f02003e;
- public static int abc_text_cursor_material=0x7f02003f;
- public static int abc_textfield_activated_mtrl_alpha=0x7f020040;
- public static int abc_textfield_default_mtrl_alpha=0x7f020041;
- public static int abc_textfield_search_activated_mtrl_alpha=0x7f020042;
- public static int abc_textfield_search_default_mtrl_alpha=0x7f020043;
- public static int abc_textfield_search_material=0x7f020044;
- public static int notification_template_icon_bg=0x7f020048;
- public static int shadow_bottom=0x7f020045;
- public static int shadow_left=0x7f020046;
- public static int shadow_right=0x7f020047;
- }
- public static final class id {
- public static int action0=0x7f0b0054;
- public static int action_bar=0x7f0b0045;
- public static int action_bar_activity_content=0x7f0b0000;
- public static int action_bar_container=0x7f0b0044;
- public static int action_bar_root=0x7f0b0040;
- public static int action_bar_spinner=0x7f0b0001;
- public static int action_bar_subtitle=0x7f0b0026;
- public static int action_bar_title=0x7f0b0025;
- public static int action_context_bar=0x7f0b0046;
- public static int action_divider=0x7f0b0058;
- public static int action_menu_divider=0x7f0b0002;
- public static int action_menu_presenter=0x7f0b0003;
- public static int action_mode_bar=0x7f0b0042;
- public static int action_mode_bar_stub=0x7f0b0041;
- public static int action_mode_close_button=0x7f0b0027;
- public static int activity_chooser_view_content=0x7f0b0028;
- public static int alertTitle=0x7f0b0034;
- public static int all=0x7f0b0020;
- public static int always=0x7f0b001b;
- public static int beginning=0x7f0b0018;
- public static int bottom=0x7f0b0021;
- public static int buttonPanel=0x7f0b002f;
- public static int cancel_action=0x7f0b0055;
- public static int checkbox=0x7f0b003d;
- public static int chronometer=0x7f0b005b;
- public static int collapseActionView=0x7f0b001c;
- public static int contentPanel=0x7f0b0035;
- public static int custom=0x7f0b003b;
- public static int customPanel=0x7f0b003a;
- public static int decor_content_parent=0x7f0b0043;
- public static int default_activity_button=0x7f0b002b;
- public static int disableHome=0x7f0b000c;
- public static int edit_query=0x7f0b0047;
- public static int end=0x7f0b0019;
- public static int end_padder=0x7f0b0060;
- public static int expand_activities_button=0x7f0b0029;
- public static int expanded_menu=0x7f0b003c;
- public static int home=0x7f0b0004;
- public static int homeAsUp=0x7f0b000d;
- public static int icon=0x7f0b002d;
- public static int ifRoom=0x7f0b001d;
- public static int image=0x7f0b002a;
- public static int info=0x7f0b005f;
- public static int left=0x7f0b0022;
- public static int line1=0x7f0b0059;
- public static int line3=0x7f0b005d;
- public static int listMode=0x7f0b0009;
- public static int list_item=0x7f0b002c;
- public static int media_actions=0x7f0b0057;
- public static int middle=0x7f0b001a;
- public static int multiply=0x7f0b0013;
- public static int never=0x7f0b001e;
- public static int none=0x7f0b000e;
- public static int normal=0x7f0b000a;
- public static int parentPanel=0x7f0b0031;
- public static int progress_circular=0x7f0b0005;
- public static int progress_horizontal=0x7f0b0006;
- public static int radio=0x7f0b003f;
- public static int right=0x7f0b0023;
- public static int screen=0x7f0b0014;
- public static int scrollIndicatorDown=0x7f0b0039;
- public static int scrollIndicatorUp=0x7f0b0036;
- public static int scrollView=0x7f0b0037;
- public static int search_badge=0x7f0b0049;
- public static int search_bar=0x7f0b0048;
- public static int search_button=0x7f0b004a;
- public static int search_close_btn=0x7f0b004f;
- public static int search_edit_frame=0x7f0b004b;
- public static int search_go_btn=0x7f0b0051;
- public static int search_mag_icon=0x7f0b004c;
- public static int search_plate=0x7f0b004d;
- public static int search_src_text=0x7f0b004e;
- public static int search_voice_btn=0x7f0b0052;
- public static int select_dialog_listview=0x7f0b0053;
- public static int shortcut=0x7f0b003e;
- public static int showCustom=0x7f0b000f;
- public static int showHome=0x7f0b0010;
- public static int showTitle=0x7f0b0011;
- public static int spacer=0x7f0b0030;
- public static int split_action_bar=0x7f0b0007;
- public static int src_atop=0x7f0b0015;
- public static int src_in=0x7f0b0016;
- public static int src_over=0x7f0b0017;
- public static int status_bar_latest_event_content=0x7f0b0056;
- public static int submit_area=0x7f0b0050;
- public static int swipe=0x7f0b0061;
- public static int tabMode=0x7f0b000b;
- public static int text=0x7f0b005e;
- public static int text2=0x7f0b005c;
- public static int textSpacerNoButtons=0x7f0b0038;
- public static int time=0x7f0b005a;
- public static int title=0x7f0b002e;
- public static int title_template=0x7f0b0033;
- public static int topPanel=0x7f0b0032;
- public static int up=0x7f0b0008;
- public static int useLogo=0x7f0b0012;
- public static int withText=0x7f0b001f;
- public static int wrap_content=0x7f0b0024;
- }
- public static final class integer {
- public static int abc_config_activityDefaultDur=0x7f090001;
- public static int abc_config_activityShortDur=0x7f090002;
- public static int abc_max_action_buttons=0x7f090000;
- public static int cancel_button_image_alpha=0x7f090003;
- public static int status_bar_notification_info_maxnum=0x7f090004;
- }
- public static final class layout {
- public static int abc_action_bar_title_item=0x7f030000;
- public static int abc_action_bar_up_container=0x7f030001;
- public static int abc_action_bar_view_list_nav_layout=0x7f030002;
- public static int abc_action_menu_item_layout=0x7f030003;
- public static int abc_action_menu_layout=0x7f030004;
- public static int abc_action_mode_bar=0x7f030005;
- public static int abc_action_mode_close_item_material=0x7f030006;
- public static int abc_activity_chooser_view=0x7f030007;
- public static int abc_activity_chooser_view_list_item=0x7f030008;
- public static int abc_alert_dialog_button_bar_material=0x7f030009;
- public static int abc_alert_dialog_material=0x7f03000a;
- public static int abc_dialog_title_material=0x7f03000b;
- public static int abc_expanded_menu_layout=0x7f03000c;
- public static int abc_list_menu_item_checkbox=0x7f03000d;
- public static int abc_list_menu_item_icon=0x7f03000e;
- public static int abc_list_menu_item_layout=0x7f03000f;
- public static int abc_list_menu_item_radio=0x7f030010;
- public static int abc_popup_menu_item_layout=0x7f030011;
- public static int abc_screen_content_include=0x7f030012;
- public static int abc_screen_simple=0x7f030013;
- public static int abc_screen_simple_overlay_action_mode=0x7f030014;
- public static int abc_screen_toolbar=0x7f030015;
- public static int abc_search_dropdown_item_icons_2line=0x7f030016;
- public static int abc_search_view=0x7f030017;
- public static int abc_select_dialog_material=0x7f030018;
- public static int notification_media_action=0x7f030019;
- public static int notification_media_cancel_action=0x7f03001a;
- public static int notification_template_big_media=0x7f03001b;
- public static int notification_template_big_media_narrow=0x7f03001c;
- public static int notification_template_lines=0x7f03001d;
- public static int notification_template_media=0x7f03001e;
- public static int notification_template_part_chronometer=0x7f03001f;
- public static int notification_template_part_time=0x7f030020;
- public static int select_dialog_item_material=0x7f030021;
- public static int select_dialog_multichoice_material=0x7f030022;
- public static int select_dialog_singlechoice_material=0x7f030023;
- public static int support_simple_spinner_dropdown_item=0x7f030024;
- public static int swipeback_layout=0x7f030025;
- }
- public static final class string {
- public static int abc_action_bar_home_description=0x7f050000;
- public static int abc_action_bar_home_description_format=0x7f050001;
- public static int abc_action_bar_home_subtitle_description_format=0x7f050002;
- public static int abc_action_bar_up_description=0x7f050003;
- public static int abc_action_menu_overflow_description=0x7f050004;
- public static int abc_action_mode_done=0x7f050005;
- public static int abc_activity_chooser_view_see_all=0x7f050006;
- public static int abc_activitychooserview_choose_application=0x7f050007;
- public static int abc_capital_off=0x7f050008;
- public static int abc_capital_on=0x7f050009;
- public static int abc_search_hint=0x7f05000a;
- public static int abc_searchview_description_clear=0x7f05000b;
- public static int abc_searchview_description_query=0x7f05000c;
- public static int abc_searchview_description_search=0x7f05000d;
- public static int abc_searchview_description_submit=0x7f05000e;
- public static int abc_searchview_description_voice=0x7f05000f;
- public static int abc_shareactionprovider_share_with=0x7f050010;
- public static int abc_shareactionprovider_share_with_application=0x7f050011;
- public static int abc_toolbar_collapse_description=0x7f050012;
- public static int status_bar_notification_info_overflow=0x7f050013;
- }
- public static final class style {
- public static int AlertDialog_AppCompat=0x7f08007d;
- public static int AlertDialog_AppCompat_Light=0x7f08007e;
- public static int Animation_AppCompat_Dialog=0x7f08007f;
- public static int Animation_AppCompat_DropDownUp=0x7f080080;
- public static int Base_AlertDialog_AppCompat=0x7f080081;
- public static int Base_AlertDialog_AppCompat_Light=0x7f080082;
- public static int Base_Animation_AppCompat_Dialog=0x7f080083;
- public static int Base_Animation_AppCompat_DropDownUp=0x7f080084;
- public static int Base_DialogWindowTitle_AppCompat=0x7f080085;
- public static int Base_DialogWindowTitleBackground_AppCompat=0x7f080086;
- public static int Base_TextAppearance_AppCompat=0x7f08002f;
- public static int Base_TextAppearance_AppCompat_Body1=0x7f080030;
- public static int Base_TextAppearance_AppCompat_Body2=0x7f080031;
- public static int Base_TextAppearance_AppCompat_Button=0x7f080019;
- public static int Base_TextAppearance_AppCompat_Caption=0x7f080032;
- public static int Base_TextAppearance_AppCompat_Display1=0x7f080033;
- public static int Base_TextAppearance_AppCompat_Display2=0x7f080034;
- public static int Base_TextAppearance_AppCompat_Display3=0x7f080035;
- public static int Base_TextAppearance_AppCompat_Display4=0x7f080036;
- public static int Base_TextAppearance_AppCompat_Headline=0x7f080037;
- public static int Base_TextAppearance_AppCompat_Inverse=0x7f080004;
- public static int Base_TextAppearance_AppCompat_Large=0x7f080038;
- public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080005;
- public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080039;
- public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08003a;
- public static int Base_TextAppearance_AppCompat_Medium=0x7f08003b;
- public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080006;
- public static int Base_TextAppearance_AppCompat_Menu=0x7f08003c;
- public static int Base_TextAppearance_AppCompat_SearchResult=0x7f080087;
- public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003d;
- public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003e;
- public static int Base_TextAppearance_AppCompat_Small=0x7f08003f;
- public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080007;
- public static int Base_TextAppearance_AppCompat_Subhead=0x7f080040;
- public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080008;
- public static int Base_TextAppearance_AppCompat_Title=0x7f080041;
- public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080009;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080042;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080043;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080044;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080045;
- public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080046;
- public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080047;
- public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080048;
- public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f080049;
- public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080079;
- public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080088;
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08004a;
- public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08004b;
- public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004c;
- public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004d;
- public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080089;
- public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004e;
- public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004f;
- public static int Base_Theme_AppCompat=0x7f080050;
- public static int Base_Theme_AppCompat_CompactMenu=0x7f08008a;
- public static int Base_Theme_AppCompat_Dialog=0x7f08000a;
- public static int Base_Theme_AppCompat_Dialog_Alert=0x7f08008b;
- public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08008c;
- public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08008d;
- public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001;
- public static int Base_Theme_AppCompat_Light=0x7f080051;
- public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08008e;
- public static int Base_Theme_AppCompat_Light_Dialog=0x7f08000b;
- public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08008f;
- public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f080090;
- public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080091;
- public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002;
- public static int Base_ThemeOverlay_AppCompat=0x7f080092;
- public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080093;
- public static int Base_ThemeOverlay_AppCompat_Dark=0x7f080094;
- public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080095;
- public static int Base_ThemeOverlay_AppCompat_Light=0x7f080096;
- public static int Base_V11_Theme_AppCompat_Dialog=0x7f08000c;
- public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000d;
- public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080015;
- public static int Base_V12_Widget_AppCompat_EditText=0x7f080016;
- public static int Base_V21_Theme_AppCompat=0x7f080052;
- public static int Base_V21_Theme_AppCompat_Dialog=0x7f080053;
- public static int Base_V21_Theme_AppCompat_Light=0x7f080054;
- public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080055;
- public static int Base_V22_Theme_AppCompat=0x7f080077;
- public static int Base_V22_Theme_AppCompat_Light=0x7f080078;
- public static int Base_V23_Theme_AppCompat=0x7f08007a;
- public static int Base_V23_Theme_AppCompat_Light=0x7f08007b;
- public static int Base_V7_Theme_AppCompat=0x7f080097;
- public static int Base_V7_Theme_AppCompat_Dialog=0x7f080098;
- public static int Base_V7_Theme_AppCompat_Light=0x7f080099;
- public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f08009a;
- public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f08009b;
- public static int Base_V7_Widget_AppCompat_EditText=0x7f08009c;
- public static int Base_Widget_AppCompat_ActionBar=0x7f08009d;
- public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f08009e;
- public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08009f;
- public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f080056;
- public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f080057;
- public static int Base_Widget_AppCompat_ActionButton=0x7f080058;
- public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080059;
- public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08005a;
- public static int Base_Widget_AppCompat_ActionMode=0x7f0800a0;
- public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0800a1;
- public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080017;
- public static int Base_Widget_AppCompat_Button=0x7f08005b;
- public static int Base_Widget_AppCompat_Button_Borderless=0x7f08005c;
- public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005d;
- public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800a2;
- public static int Base_Widget_AppCompat_Button_Colored=0x7f08007c;
- public static int Base_Widget_AppCompat_Button_Small=0x7f08005e;
- public static int Base_Widget_AppCompat_ButtonBar=0x7f08005f;
- public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800a3;
- public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080060;
- public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080061;
- public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800a4;
- public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000;
- public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800a5;
- public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080062;
- public static int Base_Widget_AppCompat_EditText=0x7f080018;
- public static int Base_Widget_AppCompat_ImageButton=0x7f080063;
- public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0800a6;
- public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800a7;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800a8;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080064;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080065;
- public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080066;
- public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f080067;
- public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080068;
- public static int Base_Widget_AppCompat_ListPopupWindow=0x7f080069;
- public static int Base_Widget_AppCompat_ListView=0x7f08006a;
- public static int Base_Widget_AppCompat_ListView_DropDown=0x7f08006b;
- public static int Base_Widget_AppCompat_ListView_Menu=0x7f08006c;
- public static int Base_Widget_AppCompat_PopupMenu=0x7f08006d;
- public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006e;
- public static int Base_Widget_AppCompat_PopupWindow=0x7f0800a9;
- public static int Base_Widget_AppCompat_ProgressBar=0x7f08000e;
- public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08000f;
- public static int Base_Widget_AppCompat_RatingBar=0x7f08006f;
- public static int Base_Widget_AppCompat_SearchView=0x7f0800aa;
- public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800ab;
- public static int Base_Widget_AppCompat_SeekBar=0x7f080070;
- public static int Base_Widget_AppCompat_Spinner=0x7f080071;
- public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f080003;
- public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080072;
- public static int Base_Widget_AppCompat_Toolbar=0x7f0800ac;
- public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080073;
- public static int Platform_AppCompat=0x7f080010;
- public static int Platform_AppCompat_Light=0x7f080011;
- public static int Platform_ThemeOverlay_AppCompat=0x7f080074;
- public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f080075;
- public static int Platform_ThemeOverlay_AppCompat_Light=0x7f080076;
- public static int Platform_V11_AppCompat=0x7f080012;
- public static int Platform_V11_AppCompat_Light=0x7f080013;
- public static int Platform_V14_AppCompat=0x7f08001a;
- public static int Platform_V14_AppCompat_Light=0x7f08001b;
- public static int Platform_Widget_AppCompat_Spinner=0x7f080014;
- public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080021;
- public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080022;
- public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080023;
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080024;
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080025;
- public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080026;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080027;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080028;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080029;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002a;
- public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002b;
- public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002c;
- public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f08002d;
- public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f08002e;
- public static int SwipeBackLayout=0x7f0800ad;
- public static int TextAppearance_AppCompat=0x7f0800ae;
- public static int TextAppearance_AppCompat_Body1=0x7f0800af;
- public static int TextAppearance_AppCompat_Body2=0x7f0800b0;
- public static int TextAppearance_AppCompat_Button=0x7f0800b1;
- public static int TextAppearance_AppCompat_Caption=0x7f0800b2;
- public static int TextAppearance_AppCompat_Display1=0x7f0800b3;
- public static int TextAppearance_AppCompat_Display2=0x7f0800b4;
- public static int TextAppearance_AppCompat_Display3=0x7f0800b5;
- public static int TextAppearance_AppCompat_Display4=0x7f0800b6;
- public static int TextAppearance_AppCompat_Headline=0x7f0800b7;
- public static int TextAppearance_AppCompat_Inverse=0x7f0800b8;
- public static int TextAppearance_AppCompat_Large=0x7f0800b9;
- public static int TextAppearance_AppCompat_Large_Inverse=0x7f0800ba;
- public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800bb;
- public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800bc;
- public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800bd;
- public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800be;
- public static int TextAppearance_AppCompat_Medium=0x7f0800bf;
- public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0800c0;
- public static int TextAppearance_AppCompat_Menu=0x7f0800c1;
- public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800c2;
- public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0800c3;
- public static int TextAppearance_AppCompat_Small=0x7f0800c4;
- public static int TextAppearance_AppCompat_Small_Inverse=0x7f0800c5;
- public static int TextAppearance_AppCompat_Subhead=0x7f0800c6;
- public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800c7;
- public static int TextAppearance_AppCompat_Title=0x7f0800c8;
- public static int TextAppearance_AppCompat_Title_Inverse=0x7f0800c9;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800ca;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800cb;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800cc;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800cd;
- public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800ce;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800cf;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800d0;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800d1;
- public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800d2;
- public static int TextAppearance_AppCompat_Widget_Button=0x7f0800d3;
- public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800d4;
- public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800d5;
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800d6;
- public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800d7;
- public static int TextAppearance_AppCompat_Widget_Switch=0x7f0800d8;
- public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800d9;
- public static int TextAppearance_StatusBar_EventContent=0x7f08001c;
- public static int TextAppearance_StatusBar_EventContent_Info=0x7f08001d;
- public static int TextAppearance_StatusBar_EventContent_Line2=0x7f08001e;
- public static int TextAppearance_StatusBar_EventContent_Time=0x7f08001f;
- public static int TextAppearance_StatusBar_EventContent_Title=0x7f080020;
- public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800da;
- public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800db;
- public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800dc;
- public static int Theme_AppCompat=0x7f0800dd;
- public static int Theme_AppCompat_CompactMenu=0x7f0800de;
- public static int Theme_AppCompat_Dialog=0x7f0800df;
- public static int Theme_AppCompat_Dialog_Alert=0x7f0800e0;
- public static int Theme_AppCompat_Dialog_MinWidth=0x7f0800e1;
- public static int Theme_AppCompat_DialogWhenLarge=0x7f0800e2;
- public static int Theme_AppCompat_Light=0x7f0800e3;
- public static int Theme_AppCompat_Light_DarkActionBar=0x7f0800e4;
- public static int Theme_AppCompat_Light_Dialog=0x7f0800e5;
- public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0800e6;
- public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800e7;
- public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800e8;
- public static int Theme_AppCompat_Light_NoActionBar=0x7f0800e9;
- public static int Theme_AppCompat_NoActionBar=0x7f0800ea;
- public static int ThemeOverlay_AppCompat=0x7f0800eb;
- public static int ThemeOverlay_AppCompat_ActionBar=0x7f0800ec;
- public static int ThemeOverlay_AppCompat_Dark=0x7f0800ed;
- public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800ee;
- public static int ThemeOverlay_AppCompat_Light=0x7f0800ef;
- public static int Widget_AppCompat_ActionBar=0x7f0800f0;
- public static int Widget_AppCompat_ActionBar_Solid=0x7f0800f1;
- public static int Widget_AppCompat_ActionBar_TabBar=0x7f0800f2;
- public static int Widget_AppCompat_ActionBar_TabText=0x7f0800f3;
- public static int Widget_AppCompat_ActionBar_TabView=0x7f0800f4;
- public static int Widget_AppCompat_ActionButton=0x7f0800f5;
- public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0800f6;
- public static int Widget_AppCompat_ActionButton_Overflow=0x7f0800f7;
- public static int Widget_AppCompat_ActionMode=0x7f0800f8;
- public static int Widget_AppCompat_ActivityChooserView=0x7f0800f9;
- public static int Widget_AppCompat_AutoCompleteTextView=0x7f0800fa;
- public static int Widget_AppCompat_Button=0x7f0800fb;
- public static int Widget_AppCompat_Button_Borderless=0x7f0800fc;
- public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0800fd;
- public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800fe;
- public static int Widget_AppCompat_Button_Colored=0x7f0800ff;
- public static int Widget_AppCompat_Button_Small=0x7f080100;
- public static int Widget_AppCompat_ButtonBar=0x7f080101;
- public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080102;
- public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f080103;
- public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f080104;
- public static int Widget_AppCompat_CompoundButton_Switch=0x7f080105;
- public static int Widget_AppCompat_DrawerArrowToggle=0x7f080106;
- public static int Widget_AppCompat_DropDownItem_Spinner=0x7f080107;
- public static int Widget_AppCompat_EditText=0x7f080108;
- public static int Widget_AppCompat_ImageButton=0x7f080109;
- public static int Widget_AppCompat_Light_ActionBar=0x7f08010a;
- public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f08010b;
- public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f08010c;
- public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08010d;
- public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08010e;
- public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f08010f;
- public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080110;
- public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f080111;
- public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080112;
- public static int Widget_AppCompat_Light_ActionButton=0x7f080113;
- public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080114;
- public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080115;
- public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080116;
- public static int Widget_AppCompat_Light_ActivityChooserView=0x7f080117;
- public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080118;
- public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080119;
- public static int Widget_AppCompat_Light_ListPopupWindow=0x7f08011a;
- public static int Widget_AppCompat_Light_ListView_DropDown=0x7f08011b;
- public static int Widget_AppCompat_Light_PopupMenu=0x7f08011c;
- public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08011d;
- public static int Widget_AppCompat_Light_SearchView=0x7f08011e;
- public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08011f;
- public static int Widget_AppCompat_ListPopupWindow=0x7f080120;
- public static int Widget_AppCompat_ListView=0x7f080121;
- public static int Widget_AppCompat_ListView_DropDown=0x7f080122;
- public static int Widget_AppCompat_ListView_Menu=0x7f080123;
- public static int Widget_AppCompat_PopupMenu=0x7f080124;
- public static int Widget_AppCompat_PopupMenu_Overflow=0x7f080125;
- public static int Widget_AppCompat_PopupWindow=0x7f080126;
- public static int Widget_AppCompat_ProgressBar=0x7f080127;
- public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f080128;
- public static int Widget_AppCompat_RatingBar=0x7f080129;
- public static int Widget_AppCompat_SearchView=0x7f08012a;
- public static int Widget_AppCompat_SearchView_ActionBar=0x7f08012b;
- public static int Widget_AppCompat_SeekBar=0x7f08012c;
- public static int Widget_AppCompat_Spinner=0x7f08012d;
- public static int Widget_AppCompat_Spinner_DropDown=0x7f08012e;
- public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08012f;
- public static int Widget_AppCompat_Spinner_Underlined=0x7f080130;
- public static int Widget_AppCompat_TextView_SpinnerItem=0x7f080131;
- public static int Widget_AppCompat_Toolbar=0x7f080132;
- public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f080133;
- }
- public static final class styleable {
- /** Attributes that can be used with a ActionBar.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#background}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:background
- */
- public static int ActionBar_background = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundSplit}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:backgroundSplit
- */
- public static int ActionBar_backgroundSplit = 12;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundStacked}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:backgroundStacked
- */
- public static int ActionBar_backgroundStacked = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetEnd}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetEnd
- */
- public static int ActionBar_contentInsetEnd = 21;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetLeft}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetLeft
- */
- public static int ActionBar_contentInsetLeft = 22;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetRight}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetRight
- */
- public static int ActionBar_contentInsetRight = 23;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetStart}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetStart
- */
- public static int ActionBar_contentInsetStart = 20;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#customNavigationLayout}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:customNavigationLayout
- */
- public static int ActionBar_customNavigationLayout = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#displayOptions}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
useLogo
0x1
-
showHome
0x2
-
homeAsUp
0x4
-
showTitle
0x8
-
showCustom
0x10
-
disableHome
0x20
-
- @attr name me.imid.swipebacklayout.lib:displayOptions
- */
- public static int ActionBar_displayOptions = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#divider}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:divider
- */
- public static int ActionBar_divider = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#elevation}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:elevation
- */
- public static int ActionBar_elevation = 24;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#height}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:height
- */
- public static int ActionBar_height = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#hideOnContentScroll}
- attribute's value can be found in the {@link #ActionBar} 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 me.imid.swipebacklayout.lib:hideOnContentScroll
- */
- public static int ActionBar_hideOnContentScroll = 19;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#homeAsUpIndicator}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:homeAsUpIndicator
- */
- public static int ActionBar_homeAsUpIndicator = 26;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#homeLayout}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:homeLayout
- */
- public static int ActionBar_homeLayout = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#icon}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:icon
- */
- public static int ActionBar_icon = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#indeterminateProgressStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:indeterminateProgressStyle
- */
- public static int ActionBar_indeterminateProgressStyle = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#itemPadding}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:itemPadding
- */
- public static int ActionBar_itemPadding = 18;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#logo}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:logo
- */
- public static int ActionBar_logo = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#navigationMode}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
normal
0
-
listMode
1
-
tabMode
2
-
- @attr name me.imid.swipebacklayout.lib:navigationMode
- */
- public static int ActionBar_navigationMode = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupTheme}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupTheme
- */
- public static int ActionBar_popupTheme = 25;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#progressBarPadding}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:progressBarPadding
- */
- public static int ActionBar_progressBarPadding = 17;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#progressBarStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:progressBarStyle
- */
- public static int ActionBar_progressBarStyle = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:subtitle
- */
- public static int ActionBar_subtitle = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:subtitleTextStyle
- */
- public static int ActionBar_subtitleTextStyle = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#title}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:title
- */
- public static int ActionBar_title = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:titleTextStyle
- */
- public static int ActionBar_titleTextStyle = 5;
- /** Attributes that can be used with a ActionBarLayout.
-
- @see #ActionBarLayout_android_layout_gravity
- */
- public static final int[] ActionBarLayout = {
- 0x010100b3
- };
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_gravity}
- attribute's value can be found in the {@link #ActionBarLayout} array.
- @attr name android:layout_gravity
- */
- public static int ActionBarLayout_android_layout_gravity = 0;
- /** Attributes that can be used with a ActionMenuItemView.
-
- @see #ActionMenuItemView_android_minWidth
- */
- public static final int[] ActionMenuItemView = {
- 0x0101013f
- };
- /**
-
This symbol is the offset where the {@link android.R.attr#minWidth}
- attribute's value can be found in the {@link #ActionMenuItemView} array.
- @attr name android:minWidth
- */
- public static int ActionMenuItemView_android_minWidth = 0;
- /** Attributes that can be used with a ActionMenuView.
- */
- public static final int[] ActionMenuView = {
-
- };
- /** Attributes that can be used with a ActionMode.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#background}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:background
- */
- public static int ActionMode_background = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundSplit}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:backgroundSplit
- */
- public static int ActionMode_backgroundSplit = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#closeItemLayout}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:closeItemLayout
- */
- public static int ActionMode_closeItemLayout = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#height}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:height
- */
- public static int ActionMode_height = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextStyle}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:subtitleTextStyle
- */
- public static int ActionMode_subtitleTextStyle = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextStyle}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:titleTextStyle
- */
- public static int ActionMode_titleTextStyle = 1;
- /** Attributes that can be used with a ActivityChooserView.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#expandActivityOverflowButtonDrawable}
- attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:expandActivityOverflowButtonDrawable
- */
- public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#initialActivityCount}
- attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:initialActivityCount
- */
- public static int ActivityChooserView_initialActivityCount = 0;
- /** Attributes that can be used with a AlertDialog.
-
This symbol is the offset where the {@link android.R.attr#layout}
- attribute's value can be found in the {@link #AlertDialog} array.
- @attr name android:layout
- */
- public static int AlertDialog_android_layout = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonPanelSideLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonPanelSideLayout
- */
- public static int AlertDialog_buttonPanelSideLayout = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listItemLayout
- */
- public static int AlertDialog_listItemLayout = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listLayout
- */
- public static int AlertDialog_listLayout = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#multiChoiceItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:multiChoiceItemLayout
- */
- public static int AlertDialog_multiChoiceItemLayout = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#singleChoiceItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:singleChoiceItemLayout
- */
- public static int AlertDialog_singleChoiceItemLayout = 4;
- /** Attributes that can be used with a AppCompatTextView.
-
This symbol is the offset where the {@link android.R.attr#textAppearance}
- attribute's value can be found in the {@link #AppCompatTextView} array.
- @attr name android:textAppearance
- */
- public static int AppCompatTextView_android_textAppearance = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAllCaps}
- attribute's value can be found in the {@link #AppCompatTextView} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textAllCaps
- */
- public static int AppCompatTextView_textAllCaps = 1;
- /** Attributes that can be used with a ButtonBarLayout.
-
- @see #ButtonBarLayout_allowStacking
- */
- public static final int[] ButtonBarLayout = {
- 0x7f010026
- };
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#allowStacking}
- attribute's value can be found in the {@link #ButtonBarLayout} 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 me.imid.swipebacklayout.lib:allowStacking
- */
- public static int ButtonBarLayout_allowStacking = 0;
- /** Attributes that can be used with a CompoundButton.
-
This symbol is the offset where the {@link android.R.attr#button}
- attribute's value can be found in the {@link #CompoundButton} array.
- @attr name android:button
- */
- public static int CompoundButton_android_button = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonTint}
- attribute's value can be found in the {@link #CompoundButton} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:buttonTint
- */
- public static int CompoundButton_buttonTint = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonTintMode}
- attribute's value can be found in the {@link #CompoundButton} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- @attr name me.imid.swipebacklayout.lib:buttonTintMode
- */
- public static int CompoundButton_buttonTintMode = 2;
- /** Attributes that can be used with a DrawerArrowToggle.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#arrowHeadLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:arrowHeadLength
- */
- public static int DrawerArrowToggle_arrowHeadLength = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#arrowShaftLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:arrowShaftLength
- */
- public static int DrawerArrowToggle_arrowShaftLength = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#barLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:barLength
- */
- public static int DrawerArrowToggle_barLength = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#color}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:color
- */
- public static int DrawerArrowToggle_color = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#drawableSize}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:drawableSize
- */
- public static int DrawerArrowToggle_drawableSize = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#gapBetweenBars}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:gapBetweenBars
- */
- public static int DrawerArrowToggle_gapBetweenBars = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#spinBars}
- attribute's value can be found in the {@link #DrawerArrowToggle} 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 me.imid.swipebacklayout.lib:spinBars
- */
- public static int DrawerArrowToggle_spinBars = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#thickness}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:thickness
- */
- public static int DrawerArrowToggle_thickness = 7;
- /** Attributes that can be used with a LinearLayoutCompat.
-
This symbol is the offset where the {@link android.R.attr#baselineAligned}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:baselineAligned
- */
- public static int LinearLayoutCompat_android_baselineAligned = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:baselineAlignedChildIndex
- */
- public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#gravity}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:gravity
- */
- public static int LinearLayoutCompat_android_gravity = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#orientation}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:orientation
- */
- public static int LinearLayoutCompat_android_orientation = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#weightSum}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @attr name android:weightSum
- */
- public static int LinearLayoutCompat_android_weightSum = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#divider}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:divider
- */
- public static int LinearLayoutCompat_divider = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dividerPadding}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:dividerPadding
- */
- public static int LinearLayoutCompat_dividerPadding = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#measureWithLargestChild}
- attribute's value can be found in the {@link #LinearLayoutCompat} 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 me.imid.swipebacklayout.lib:measureWithLargestChild
- */
- public static int LinearLayoutCompat_measureWithLargestChild = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#showDividers}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
none
0
-
beginning
1
-
middle
2
-
end
4
-
- @attr name me.imid.swipebacklayout.lib:showDividers
- */
- public static int LinearLayoutCompat_showDividers = 7;
- /** Attributes that can be used with a LinearLayoutCompat_Layout.
-
This symbol is the offset where the {@link android.R.attr#layout_gravity}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_gravity
- */
- public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_height}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_height
- */
- public static int LinearLayoutCompat_Layout_android_layout_height = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_weight}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_weight
- */
- public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout_width}
- attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
- @attr name android:layout_width
- */
- public static int LinearLayoutCompat_Layout_android_layout_width = 1;
- /** Attributes that can be used with a ListPopupWindow.
-
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
- attribute's value can be found in the {@link #ListPopupWindow} array.
- @attr name android:dropDownHorizontalOffset
- */
- public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
- attribute's value can be found in the {@link #ListPopupWindow} array.
- @attr name android:dropDownVerticalOffset
- */
- public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
- /** Attributes that can be used with a MenuGroup.
-
This symbol is the offset where the {@link android.R.attr#checkableBehavior}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:checkableBehavior
- */
- public static int MenuGroup_android_checkableBehavior = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#enabled}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:enabled
- */
- public static int MenuGroup_android_enabled = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#id}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:id
- */
- public static int MenuGroup_android_id = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#menuCategory}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:menuCategory
- */
- public static int MenuGroup_android_menuCategory = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#orderInCategory}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:orderInCategory
- */
- public static int MenuGroup_android_orderInCategory = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#visible}
- attribute's value can be found in the {@link #MenuGroup} array.
- @attr name android:visible
- */
- public static int MenuGroup_android_visible = 2;
- /** Attributes that can be used with a MenuItem.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionLayout}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionLayout
- */
- public static int MenuItem_actionLayout = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionProviderClass}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:actionProviderClass
- */
- public static int MenuItem_actionProviderClass = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionViewClass}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:actionViewClass
- */
- public static int MenuItem_actionViewClass = 15;
- /**
-
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:alphabeticShortcut
- */
- public static int MenuItem_android_alphabeticShortcut = 9;
- /**
-
This symbol is the offset where the {@link android.R.attr#checkable}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:checkable
- */
- public static int MenuItem_android_checkable = 11;
- /**
-
This symbol is the offset where the {@link android.R.attr#checked}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:checked
- */
- public static int MenuItem_android_checked = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#enabled}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:enabled
- */
- public static int MenuItem_android_enabled = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#icon}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:icon
- */
- public static int MenuItem_android_icon = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#id}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:id
- */
- public static int MenuItem_android_id = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#menuCategory}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:menuCategory
- */
- public static int MenuItem_android_menuCategory = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#numericShortcut}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:numericShortcut
- */
- public static int MenuItem_android_numericShortcut = 10;
- /**
-
This symbol is the offset where the {@link android.R.attr#onClick}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:onClick
- */
- public static int MenuItem_android_onClick = 12;
- /**
-
This symbol is the offset where the {@link android.R.attr#orderInCategory}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:orderInCategory
- */
- public static int MenuItem_android_orderInCategory = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#title}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:title
- */
- public static int MenuItem_android_title = 7;
- /**
-
This symbol is the offset where the {@link android.R.attr#titleCondensed}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:titleCondensed
- */
- public static int MenuItem_android_titleCondensed = 8;
- /**
-
This symbol is the offset where the {@link android.R.attr#visible}
- attribute's value can be found in the {@link #MenuItem} array.
- @attr name android:visible
- */
- public static int MenuItem_android_visible = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#showAsAction}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
never
0
-
ifRoom
1
-
always
2
-
withText
4
-
collapseActionView
8
-
- @attr name me.imid.swipebacklayout.lib:showAsAction
- */
- public static int MenuItem_showAsAction = 13;
- /** Attributes that can be used with a MenuView.
-
This symbol is the offset where the {@link android.R.attr#headerBackground}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:headerBackground
- */
- public static int MenuView_android_headerBackground = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:horizontalDivider
- */
- public static int MenuView_android_horizontalDivider = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#itemBackground}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:itemBackground
- */
- public static int MenuView_android_itemBackground = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:itemIconDisabledAlpha
- */
- public static int MenuView_android_itemIconDisabledAlpha = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:itemTextAppearance
- */
- public static int MenuView_android_itemTextAppearance = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#verticalDivider}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:verticalDivider
- */
- public static int MenuView_android_verticalDivider = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
- attribute's value can be found in the {@link #MenuView} array.
- @attr name android:windowAnimationStyle
- */
- public static int MenuView_android_windowAnimationStyle = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#preserveIconSpacing}
- attribute's value can be found in the {@link #MenuView} 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 me.imid.swipebacklayout.lib:preserveIconSpacing
- */
- public static int MenuView_preserveIconSpacing = 7;
- /** Attributes that can be used with a PopupWindow.
-
This symbol is the offset where the {@link android.R.attr#popupBackground}
- attribute's value can be found in the {@link #PopupWindow} array.
- @attr name android:popupBackground
- */
- public static int PopupWindow_android_popupBackground = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#overlapAnchor}
- attribute's value can be found in the {@link #PopupWindow} 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 me.imid.swipebacklayout.lib:overlapAnchor
- */
- public static int PopupWindow_overlapAnchor = 1;
- /** Attributes that can be used with a PopupWindowBackgroundState.
-
- @see #PopupWindowBackgroundState_state_above_anchor
- */
- public static final int[] PopupWindowBackgroundState = {
- 0x7f01003a
- };
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#state_above_anchor}
- attribute's value can be found in the {@link #PopupWindowBackgroundState} 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 me.imid.swipebacklayout.lib:state_above_anchor
- */
- public static int PopupWindowBackgroundState_state_above_anchor = 0;
- /** Attributes that can be used with a SearchView.
-
This symbol is the offset where the {@link android.R.attr#focusable}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:focusable
- */
- public static int SearchView_android_focusable = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#imeOptions}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:imeOptions
- */
- public static int SearchView_android_imeOptions = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#inputType}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:inputType
- */
- public static int SearchView_android_inputType = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#maxWidth}
- attribute's value can be found in the {@link #SearchView} array.
- @attr name android:maxWidth
- */
- public static int SearchView_android_maxWidth = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#closeIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:closeIcon
- */
- public static int SearchView_closeIcon = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#commitIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:commitIcon
- */
- public static int SearchView_commitIcon = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#defaultQueryHint}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:defaultQueryHint
- */
- public static int SearchView_defaultQueryHint = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#goIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:goIcon
- */
- public static int SearchView_goIcon = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#iconifiedByDefault}
- attribute's value can be found in the {@link #SearchView} 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 me.imid.swipebacklayout.lib:iconifiedByDefault
- */
- public static int SearchView_iconifiedByDefault = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#layout}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:layout
- */
- public static int SearchView_layout = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#queryBackground}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:queryBackground
- */
- public static int SearchView_queryBackground = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#queryHint}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:queryHint
- */
- public static int SearchView_queryHint = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#searchHintIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:searchHintIcon
- */
- public static int SearchView_searchHintIcon = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#searchIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:searchIcon
- */
- public static int SearchView_searchIcon = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#submitBackground}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:submitBackground
- */
- public static int SearchView_submitBackground = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#suggestionRowLayout}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:suggestionRowLayout
- */
- public static int SearchView_suggestionRowLayout = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#voiceIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:voiceIcon
- */
- public static int SearchView_voiceIcon = 12;
- /** Attributes that can be used with a Spinner.
-
This symbol is the offset where the {@link android.R.attr#dropDownWidth}
- attribute's value can be found in the {@link #Spinner} array.
- @attr name android:dropDownWidth
- */
- public static int Spinner_android_dropDownWidth = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#popupBackground}
- attribute's value can be found in the {@link #Spinner} array.
- @attr name android:popupBackground
- */
- public static int Spinner_android_popupBackground = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#prompt}
- attribute's value can be found in the {@link #Spinner} array.
- @attr name android:prompt
- */
- public static int Spinner_android_prompt = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupTheme}
- attribute's value can be found in the {@link #Spinner} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupTheme
- */
- public static int Spinner_popupTheme = 3;
- /** Attributes that can be used with a SwipeBackLayout.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#edge_flag}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
left
0
-
right
1
-
bottom
2
-
all
3
-
- @attr name me.imid.swipebacklayout.lib:edge_flag
- */
- public static int SwipeBackLayout_edge_flag = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#edge_size}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:edge_size
- */
- public static int SwipeBackLayout_edge_size = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#shadow_bottom}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:shadow_bottom
- */
- public static int SwipeBackLayout_shadow_bottom = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#shadow_left}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:shadow_left
- */
- public static int SwipeBackLayout_shadow_left = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#shadow_right}
- attribute's value can be found in the {@link #SwipeBackLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:shadow_right
- */
- public static int SwipeBackLayout_shadow_right = 3;
- /** Attributes that can be used with a SwitchCompat.
-
This symbol is the offset where the {@link android.R.attr#textOff}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @attr name android:textOff
- */
- public static int SwitchCompat_android_textOff = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#textOn}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @attr name android:textOn
- */
- public static int SwitchCompat_android_textOn = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#thumb}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @attr name android:thumb
- */
- public static int SwitchCompat_android_thumb = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#showText}
- attribute's value can be found in the {@link #SwitchCompat} 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 me.imid.swipebacklayout.lib:showText
- */
- public static int SwitchCompat_showText = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#splitTrack}
- attribute's value can be found in the {@link #SwitchCompat} 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 me.imid.swipebacklayout.lib:splitTrack
- */
- public static int SwitchCompat_splitTrack = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchMinWidth}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:switchMinWidth
- */
- public static int SwitchCompat_switchMinWidth = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchPadding}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:switchPadding
- */
- public static int SwitchCompat_switchPadding = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchTextAppearance}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:switchTextAppearance
- */
- public static int SwitchCompat_switchTextAppearance = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#thumbTextPadding}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:thumbTextPadding
- */
- public static int SwitchCompat_thumbTextPadding = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#track}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:track
- */
- public static int SwitchCompat_track = 3;
- /** Attributes that can be used with a TextAppearance.
-
This symbol is the offset where the {@link android.R.attr#shadowColor}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowColor
- */
- public static int TextAppearance_android_shadowColor = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowDx}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowDx
- */
- public static int TextAppearance_android_shadowDx = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowDy}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowDy
- */
- public static int TextAppearance_android_shadowDy = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowRadius}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowRadius
- */
- public static int TextAppearance_android_shadowRadius = 7;
- /**
-
This symbol is the offset where the {@link android.R.attr#textColor}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textColor
- */
- public static int TextAppearance_android_textColor = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#textSize}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textSize
- */
- public static int TextAppearance_android_textSize = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#textStyle}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textStyle
- */
- public static int TextAppearance_android_textStyle = 2;
- /**
-
This symbol is the offset where the {@link android.R.attr#typeface}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:typeface
- */
- public static int TextAppearance_android_typeface = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAllCaps}
- attribute's value can be found in the {@link #TextAppearance} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textAllCaps
- */
- public static int TextAppearance_textAllCaps = 8;
- /** Attributes that can be used with a Theme.
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarDivider}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarDivider
- */
- public static int Theme_actionBarDivider = 23;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarItemBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarItemBackground
- */
- public static int Theme_actionBarItemBackground = 24;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarPopupTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarPopupTheme
- */
- public static int Theme_actionBarPopupTheme = 17;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarSize}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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).
-
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.
-
May be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
wrap_content
0
-
- @attr name me.imid.swipebacklayout.lib:actionBarSize
- */
- public static int Theme_actionBarSize = 22;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarSplitStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarSplitStyle
- */
- public static int Theme_actionBarSplitStyle = 19;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarStyle
- */
- public static int Theme_actionBarStyle = 18;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTabBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTabBarStyle
- */
- public static int Theme_actionBarTabBarStyle = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTabStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTabStyle
- */
- public static int Theme_actionBarTabStyle = 12;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTabTextStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTabTextStyle
- */
- public static int Theme_actionBarTabTextStyle = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarTheme
- */
- public static int Theme_actionBarTheme = 20;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionBarWidgetTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionBarWidgetTheme
- */
- public static int Theme_actionBarWidgetTheme = 21;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionButtonStyle
- */
- public static int Theme_actionButtonStyle = 49;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionDropDownStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionDropDownStyle
- */
- public static int Theme_actionDropDownStyle = 45;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionMenuTextAppearance}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionMenuTextAppearance
- */
- public static int Theme_actionMenuTextAppearance = 25;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionMenuTextColor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:actionMenuTextColor
- */
- public static int Theme_actionMenuTextColor = 26;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeBackground
- */
- public static int Theme_actionModeBackground = 29;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCloseButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCloseButtonStyle
- */
- public static int Theme_actionModeCloseButtonStyle = 28;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCloseDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCloseDrawable
- */
- public static int Theme_actionModeCloseDrawable = 31;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCopyDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCopyDrawable
- */
- public static int Theme_actionModeCopyDrawable = 33;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeCutDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeCutDrawable
- */
- public static int Theme_actionModeCutDrawable = 32;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeFindDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeFindDrawable
- */
- public static int Theme_actionModeFindDrawable = 37;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModePasteDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModePasteDrawable
- */
- public static int Theme_actionModePasteDrawable = 34;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModePopupWindowStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModePopupWindowStyle
- */
- public static int Theme_actionModePopupWindowStyle = 39;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeSelectAllDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeSelectAllDrawable
- */
- public static int Theme_actionModeSelectAllDrawable = 35;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeShareDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeShareDrawable
- */
- public static int Theme_actionModeShareDrawable = 36;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeSplitBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeSplitBackground
- */
- public static int Theme_actionModeSplitBackground = 30;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeStyle
- */
- public static int Theme_actionModeStyle = 27;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionModeWebSearchDrawable}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionModeWebSearchDrawable
- */
- public static int Theme_actionModeWebSearchDrawable = 38;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionOverflowButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionOverflowButtonStyle
- */
- public static int Theme_actionOverflowButtonStyle = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#actionOverflowMenuStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:actionOverflowMenuStyle
- */
- public static int Theme_actionOverflowMenuStyle = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#activityChooserViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:activityChooserViewStyle
- */
- public static int Theme_activityChooserViewStyle = 57;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogButtonGroupStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:alertDialogButtonGroupStyle
- */
- public static int Theme_alertDialogButtonGroupStyle = 92;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogCenterButtons}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:alertDialogCenterButtons
- */
- public static int Theme_alertDialogCenterButtons = 93;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:alertDialogStyle
- */
- public static int Theme_alertDialogStyle = 91;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#alertDialogTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:alertDialogTheme
- */
- public static int Theme_alertDialogTheme = 94;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
- attribute's value can be found in the {@link #Theme} array.
- @attr name android:windowAnimationStyle
- */
- public static int Theme_android_windowAnimationStyle = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
- attribute's value can be found in the {@link #Theme} array.
- @attr name android:windowIsFloating
- */
- public static int Theme_android_windowIsFloating = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#autoCompleteTextViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:autoCompleteTextViewStyle
- */
- public static int Theme_autoCompleteTextViewStyle = 99;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#borderlessButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:borderlessButtonStyle
- */
- public static int Theme_borderlessButtonStyle = 54;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarButtonStyle
- */
- public static int Theme_buttonBarButtonStyle = 51;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarNegativeButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarNegativeButtonStyle
- */
- public static int Theme_buttonBarNegativeButtonStyle = 97;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarNeutralButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarNeutralButtonStyle
- */
- public static int Theme_buttonBarNeutralButtonStyle = 98;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarPositiveButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarPositiveButtonStyle
- */
- public static int Theme_buttonBarPositiveButtonStyle = 96;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonBarStyle
- */
- public static int Theme_buttonBarStyle = 50;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonStyle
- */
- public static int Theme_buttonStyle = 100;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#buttonStyleSmall}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:buttonStyleSmall
- */
- public static int Theme_buttonStyleSmall = 101;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#checkboxStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:checkboxStyle
- */
- public static int Theme_checkboxStyle = 102;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#checkedTextViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:checkedTextViewStyle
- */
- public static int Theme_checkedTextViewStyle = 103;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorAccent}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorAccent
- */
- public static int Theme_colorAccent = 84;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorButtonNormal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorButtonNormal
- */
- public static int Theme_colorButtonNormal = 88;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorControlActivated}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorControlActivated
- */
- public static int Theme_colorControlActivated = 86;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorControlHighlight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorControlHighlight
- */
- public static int Theme_colorControlHighlight = 87;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorControlNormal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorControlNormal
- */
- public static int Theme_colorControlNormal = 85;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorPrimary}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorPrimary
- */
- public static int Theme_colorPrimary = 82;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorPrimaryDark}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorPrimaryDark
- */
- public static int Theme_colorPrimaryDark = 83;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#colorSwitchThumbNormal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:colorSwitchThumbNormal
- */
- public static int Theme_colorSwitchThumbNormal = 89;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#controlBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:controlBackground
- */
- public static int Theme_controlBackground = 90;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dialogPreferredPadding}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:dialogPreferredPadding
- */
- public static int Theme_dialogPreferredPadding = 43;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dialogTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dialogTheme
- */
- public static int Theme_dialogTheme = 42;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dividerHorizontal}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dividerHorizontal
- */
- public static int Theme_dividerHorizontal = 56;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dividerVertical}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dividerVertical
- */
- public static int Theme_dividerVertical = 55;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dropDownListViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:dropDownListViewStyle
- */
- public static int Theme_dropDownListViewStyle = 74;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#dropdownListPreferredItemHeight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:dropdownListPreferredItemHeight
- */
- public static int Theme_dropdownListPreferredItemHeight = 46;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#editTextBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:editTextBackground
- */
- public static int Theme_editTextBackground = 63;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#editTextColor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:editTextColor
- */
- public static int Theme_editTextColor = 62;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#editTextStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:editTextStyle
- */
- public static int Theme_editTextStyle = 104;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#homeAsUpIndicator}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:homeAsUpIndicator
- */
- public static int Theme_homeAsUpIndicator = 48;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#imageButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:imageButtonStyle
- */
- public static int Theme_imageButtonStyle = 64;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listChoiceBackgroundIndicator}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listChoiceBackgroundIndicator
- */
- public static int Theme_listChoiceBackgroundIndicator = 81;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listDividerAlertDialog}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listDividerAlertDialog
- */
- public static int Theme_listDividerAlertDialog = 44;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPopupWindowStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:listPopupWindowStyle
- */
- public static int Theme_listPopupWindowStyle = 75;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemHeight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemHeight
- */
- public static int Theme_listPreferredItemHeight = 69;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemHeightLarge}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemHeightLarge
- */
- public static int Theme_listPreferredItemHeightLarge = 71;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemHeightSmall}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemHeightSmall
- */
- public static int Theme_listPreferredItemHeightSmall = 70;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemPaddingLeft}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemPaddingLeft
- */
- public static int Theme_listPreferredItemPaddingLeft = 72;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#listPreferredItemPaddingRight}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:listPreferredItemPaddingRight
- */
- public static int Theme_listPreferredItemPaddingRight = 73;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#panelBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:panelBackground
- */
- public static int Theme_panelBackground = 78;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#panelMenuListTheme}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:panelMenuListTheme
- */
- public static int Theme_panelMenuListTheme = 80;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#panelMenuListWidth}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:panelMenuListWidth
- */
- public static int Theme_panelMenuListWidth = 79;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupMenuStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupMenuStyle
- */
- public static int Theme_popupMenuStyle = 60;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupWindowStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupWindowStyle
- */
- public static int Theme_popupWindowStyle = 61;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#radioButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:radioButtonStyle
- */
- public static int Theme_radioButtonStyle = 105;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#ratingBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:ratingBarStyle
- */
- public static int Theme_ratingBarStyle = 106;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#searchViewStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:searchViewStyle
- */
- public static int Theme_searchViewStyle = 68;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#seekBarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:seekBarStyle
- */
- public static int Theme_seekBarStyle = 107;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#selectableItemBackground}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:selectableItemBackground
- */
- public static int Theme_selectableItemBackground = 52;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#selectableItemBackgroundBorderless}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:selectableItemBackgroundBorderless
- */
- public static int Theme_selectableItemBackgroundBorderless = 53;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#spinnerDropDownItemStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:spinnerDropDownItemStyle
- */
- public static int Theme_spinnerDropDownItemStyle = 47;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#spinnerStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:spinnerStyle
- */
- public static int Theme_spinnerStyle = 108;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#switchStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:switchStyle
- */
- public static int Theme_switchStyle = 109;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceLargePopupMenu}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceLargePopupMenu
- */
- public static int Theme_textAppearanceLargePopupMenu = 40;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceListItem}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceListItem
- */
- public static int Theme_textAppearanceListItem = 76;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceListItemSmall}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceListItemSmall
- */
- public static int Theme_textAppearanceListItemSmall = 77;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceSearchResultSubtitle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceSearchResultSubtitle
- */
- public static int Theme_textAppearanceSearchResultSubtitle = 66;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceSearchResultTitle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceSearchResultTitle
- */
- public static int Theme_textAppearanceSearchResultTitle = 65;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textAppearanceSmallPopupMenu}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:textAppearanceSmallPopupMenu
- */
- public static int Theme_textAppearanceSmallPopupMenu = 41;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textColorAlertDialogListItem}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textColorAlertDialogListItem
- */
- public static int Theme_textColorAlertDialogListItem = 95;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#textColorSearchUrl}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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".
- @attr name me.imid.swipebacklayout.lib:textColorSearchUrl
- */
- public static int Theme_textColorSearchUrl = 67;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#toolbarNavigationButtonStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:toolbarNavigationButtonStyle
- */
- public static int Theme_toolbarNavigationButtonStyle = 59;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#toolbarStyle}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:toolbarStyle
- */
- public static int Theme_toolbarStyle = 58;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowActionBar}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowActionBar
- */
- public static int Theme_windowActionBar = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowActionBarOverlay}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowActionBarOverlay
- */
- public static int Theme_windowActionBarOverlay = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowActionModeOverlay}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowActionModeOverlay
- */
- public static int Theme_windowActionModeOverlay = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedHeightMajor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedHeightMajor
- */
- public static int Theme_windowFixedHeightMajor = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedHeightMinor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedHeightMinor
- */
- public static int Theme_windowFixedHeightMinor = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedWidthMajor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedWidthMajor
- */
- public static int Theme_windowFixedWidthMajor = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowFixedWidthMinor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowFixedWidthMinor
- */
- public static int Theme_windowFixedWidthMinor = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowMinWidthMajor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowMinWidthMajor
- */
- public static int Theme_windowMinWidthMajor = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowMinWidthMinor}
- attribute's value can be found in the {@link #Theme} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:windowMinWidthMinor
- */
- public static int Theme_windowMinWidthMinor = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#windowNoTitle}
- attribute's value can be found in the {@link #Theme} 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 me.imid.swipebacklayout.lib:windowNoTitle
- */
- public static int Theme_windowNoTitle = 3;
- /** Attributes that can be used with a Toolbar.
-
This symbol is the offset where the {@link android.R.attr#gravity}
- attribute's value can be found in the {@link #Toolbar} array.
- @attr name android:gravity
- */
- public static int Toolbar_android_gravity = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#minHeight}
- attribute's value can be found in the {@link #Toolbar} array.
- @attr name android:minHeight
- */
- public static int Toolbar_android_minHeight = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#collapseContentDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:collapseContentDescription
- */
- public static int Toolbar_collapseContentDescription = 19;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#collapseIcon}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:collapseIcon
- */
- public static int Toolbar_collapseIcon = 18;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetEnd}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetEnd
- */
- public static int Toolbar_contentInsetEnd = 6;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetLeft}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetLeft
- */
- public static int Toolbar_contentInsetLeft = 7;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetRight}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetRight
- */
- public static int Toolbar_contentInsetRight = 8;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#contentInsetStart}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:contentInsetStart
- */
- public static int Toolbar_contentInsetStart = 5;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#logo}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:logo
- */
- public static int Toolbar_logo = 4;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#logoDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:logoDescription
- */
- public static int Toolbar_logoDescription = 22;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#maxButtonHeight}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:maxButtonHeight
- */
- public static int Toolbar_maxButtonHeight = 17;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#navigationContentDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:navigationContentDescription
- */
- public static int Toolbar_navigationContentDescription = 21;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#navigationIcon}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:navigationIcon
- */
- public static int Toolbar_navigationIcon = 20;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#popupTheme}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:popupTheme
- */
- public static int Toolbar_popupTheme = 9;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitle}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:subtitle
- */
- public static int Toolbar_subtitle = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextAppearance}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:subtitleTextAppearance
- */
- public static int Toolbar_subtitleTextAppearance = 11;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#subtitleTextColor}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:subtitleTextColor
- */
- public static int Toolbar_subtitleTextColor = 24;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#title}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:title
- */
- public static int Toolbar_title = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginBottom}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginBottom
- */
- public static int Toolbar_titleMarginBottom = 16;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginEnd}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginEnd
- */
- public static int Toolbar_titleMarginEnd = 14;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginStart}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginStart
- */
- public static int Toolbar_titleMarginStart = 13;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMarginTop}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMarginTop
- */
- public static int Toolbar_titleMarginTop = 15;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleMargins}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:titleMargins
- */
- public static int Toolbar_titleMargins = 12;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextAppearance}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:titleTextAppearance
- */
- public static int Toolbar_titleTextAppearance = 10;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#titleTextColor}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:titleTextColor
- */
- public static int Toolbar_titleTextColor = 23;
- /** Attributes that can be used with a View.
-
This symbol is the offset where the {@link android.R.attr#focusable}
- attribute's value can be found in the {@link #View} array.
- @attr name android:focusable
- */
- public static int View_android_focusable = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#theme}
- attribute's value can be found in the {@link #View} array.
- @attr name android:theme
- */
- public static int View_android_theme = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#paddingEnd}
- attribute's value can be found in the {@link #View} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:paddingEnd
- */
- public static int View_paddingEnd = 3;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#paddingStart}
- attribute's value can be found in the {@link #View} array.
-
-
-
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.
- @attr name me.imid.swipebacklayout.lib:paddingStart
- */
- public static int View_paddingStart = 2;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#theme}
- attribute's value can be found in the {@link #View} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name"
-or to a theme attribute in the form "?[package:][type:]name".
- @attr name me.imid.swipebacklayout.lib:theme
- */
- public static int View_theme = 4;
- /** Attributes that can be used with a ViewBackgroundHelper.
-
This symbol is the offset where the {@link android.R.attr#background}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
- @attr name android:background
- */
- public static int ViewBackgroundHelper_android_background = 0;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundTint}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-
Must be a color value, in the form of "#rgb", "#argb",
-"#rrggbb", or "#aarrggbb".
-
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 me.imid.swipebacklayout.lib:backgroundTint
- */
- public static int ViewBackgroundHelper_backgroundTint = 1;
- /**
-
This symbol is the offset where the {@link me.imid.swipebacklayout.lib.R.attr#backgroundTintMode}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-
Constant
Value
Description
-
src_over
3
-
src_in
5
-
src_atop
9
-
multiply
14
-
screen
15
-
- @attr name me.imid.swipebacklayout.lib:backgroundTintMode
- */
- public static int ViewBackgroundHelper_backgroundTintMode = 2;
- /** Attributes that can be used with a ViewStubCompat.
-
This symbol is the offset where the {@link android.R.attr#id}
- attribute's value can be found in the {@link #ViewStubCompat} array.
- @attr name android:id
- */
- public static int ViewStubCompat_android_id = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#inflatedId}
- attribute's value can be found in the {@link #ViewStubCompat} array.
- @attr name android:inflatedId
- */
- public static int ViewStubCompat_android_inflatedId = 2;
- /**
-