Full Code of GcsSloop/Rotate3dAnimation for AI

master ec0b590cb1ee cached
24 files
494.3 KB
141.3k tokens
39 symbols
1 requests
Download .txt
Showing preview only (513K chars total). Download the full file or copy to clipboard to get everything.
Repository: GcsSloop/Rotate3dAnimation
Branch: master
Commit: ec0b590cb1ee
Files: 24
Total size: 494.3 KB

Directory structure:
gitextract_5_p9d6rk/

├── .gitignore
├── APK/
│   └── 3D翻转.apk
├── Code/
│   └── com/
│       └── sloop/
│           └── animation/
│               └── Rotate3dAnimation.java
├── LICENSE
├── README.md
└── Sample/
    ├── .classpath
    ├── .project
    ├── .settings/
    │   └── org.eclipse.jdt.core.prefs
    ├── AndroidManifest.xml
    ├── gen/
    │   ├── android/
    │   │   └── support/
    │   │       └── v7/
    │   │           └── appcompat/
    │   │               └── R.java
    │   └── com/
    │       └── sloop/
    │           └── fz3d/
    │               ├── BuildConfig.java
    │               └── R.java
    ├── proguard-project.txt
    ├── project.properties
    ├── res/
    │   ├── layout/
    │   │   └── activity_main.xml
    │   ├── menu/
    │   │   └── main.xml
    │   ├── values/
    │   │   ├── dimens.xml
    │   │   ├── strings.xml
    │   │   └── styles.xml
    │   ├── values-v11/
    │   │   └── styles.xml
    │   ├── values-v14/
    │   │   └── styles.xml
    │   └── values-w820dp/
    │       └── dimens.xml
    └── src/
        └── com/
            └── sloop/
                ├── animation/
                │   └── Rotate3dAnimation.java
                └── fz3d/
                    └── MainActivity.java

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*


================================================
FILE: Code/com/sloop/animation/Rotate3dAnimation.java
================================================
/**
 * @Title: Rotate3dAnimation.java
 * @Package com.sloop.animation
 * Copyright: Copyright (c) 2015
 * 
 * @author sloop
 * @date 2015年3月10日 上午11:20:10
 * @version V1.0
 */

package com.sloop.animation;

import android.graphics.Camera;
import android.graphics.Matrix;
import android.util.Log;
import android.view.ContextThemeWrapper;
import android.view.animation.Animation;
import android.view.animation.Transformation;

/**
 * 3D翻转特效
 * @ClassName: Rotate3dAnimation
 * @author sloop
 * @date 2015年3月10日 上午11:20:10
 */

public class Rotate3dAnimation extends Animation {

	// 开始角度
	private final float mFromDegrees;
	// 结束角度
	private final float mToDegrees;
	// 中心点
	private final float mCenterX;
	private final float mCenterY;
	private final float mDepthZ;	//深度
	// 是否需要扭曲
	private final boolean mReverse;
	// 摄像头
	private Camera mCamera;
	ContextThemeWrapper context;
	//新增--像素比例(默认值为1)
	float scale = 1;

	/**
	 * 创建一个新的实例 Rotate3dAnimation. 
	 * @param fromDegrees	开始角度
	 * @param toDegrees		结束角度
	 * @param centerX		中心点x坐标
	 * @param centerY		中心点y坐标
	 * @param depthZ		深度
	 * @param reverse		是否扭曲
	 */
	public Rotate3dAnimation(ContextThemeWrapper context, float fromDegrees, float toDegrees, float centerX, float centerY, float depthZ, boolean reverse) {
		this.context = context;
		mFromDegrees = fromDegrees;
		mToDegrees = toDegrees;
		mCenterX = centerX;
		mCenterY = centerY;
		mDepthZ = depthZ;
		mReverse = reverse;
		//获取手机像素比 (即dp与px的比例)
		scale = context.getResources().getDisplayMetrics().density;
		Log.e("scale",""+scale);
	}

	@Override
	public void initialize(int width, int height, int parentWidth, int parentHeight) {
		
		super.initialize(width, height, parentWidth, parentHeight);
		mCamera = new Camera();
	}

	// 生成Transformation
	@Override
	protected void applyTransformation(float interpolatedTime, Transformation t) {
		final float fromDegrees = mFromDegrees;
		// 生成中间角度
		float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);

		
		final float centerX = mCenterX;
		final float centerY = mCenterY;
		final Camera camera = mCamera;

		final Matrix matrix = t.getMatrix();

		camera.save();
		if (mReverse) {
			camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);
		} else {
			camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));
		}
		camera.rotateY(degrees);
		// 取得变换后的矩阵
		camera.getMatrix(matrix);
		camera.restore();

//----------------------------------------------------------------------------
		/** 
		 * 修复打脸问题		( ̄ε(# ̄)☆╰╮( ̄▽ ̄///)
		 * 简要介绍:
		 * 原来的3D翻转会由于屏幕像素密度问题而出现效果相差很大
		 * 例如在屏幕像素比为1,5的手机上显示效果基本正常,
		 * 而在像素比3,0的手机上面感觉翻转感觉要超出屏幕边缘,
		 * 有种迎面打脸的感觉、
		 * 
		 * 解决方案
		 * 利用屏幕像素密度对变换矩阵进行校正,
		 * 保证了在所有清晰度的手机上显示的效果基本相同。
		 *  
		 */
		float[] mValues = {0,0,0,0,0,0,0,0,0};
		matrix.getValues(mValues);			//获取数值
		mValues[6] = mValues[6]/scale;			//数值修正
		matrix.setValues(mValues);			//重新赋值
		
//		Log.e("TAG", "mValues["+0+"]="+mValues[0]+"------------\t"+"mValues["+6+"]="+mValues[6]);
//----------------------------------------------------------------------------

		matrix.preTranslate(-centerX, -centerY);
		matrix.postTranslate(centerX, centerY);
	}
	


}


================================================
FILE: LICENSE
================================================
Eclipse Public License - v 1.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

a) in the case of the initial Contributor, the initial code and documentation
   distributed under this Agreement, and
b) in the case of each subsequent Contributor:
    i) changes to the Program, and
   ii) additions to the Program;

   where such changes and/or additions to the Program originate from and are
   distributed by that particular Contributor. A Contribution 'originates'
   from a Contributor if it was added to the Program by such Contributor
   itself or anyone acting on such Contributor's behalf. Contributions do not
   include additions to the Program which: (i) are separate modules of
   software distributed in conjunction with the Program under their own
   license agreement, and (ii) are not derivative works of the Program.

"Contributor" means any person or entity that distributes the Program.

"Licensed Patents" mean patent claims licensable by a Contributor which are
necessarily infringed by the use or sale of its Contribution alone or when
combined with the Program.

"Program" means the Contributions distributed in accordance with this
Agreement.

"Recipient" means anyone who receives the Program under this Agreement,
including all Contributors.

2. GRANT OF RIGHTS
  a) Subject to the terms of this Agreement, each Contributor hereby grants
     Recipient a non-exclusive, worldwide, royalty-free copyright license to
     reproduce, prepare derivative works of, publicly display, publicly
     perform, distribute and sublicense the Contribution of such Contributor,
     if any, and such derivative works, in source code and object code form.
  b) Subject to the terms of this Agreement, each Contributor hereby grants
     Recipient a non-exclusive, worldwide, royalty-free patent license under
     Licensed Patents to make, use, sell, offer to sell, import and otherwise
     transfer the Contribution of such Contributor, if any, in source code and
     object code form. This patent license shall apply to the combination of
     the Contribution and the Program if, at the time the Contribution is
     added by the Contributor, such addition of the Contribution causes such
     combination to be covered by the Licensed Patents. The patent license
     shall not apply to any other combinations which include the Contribution.
     No hardware per se is licensed hereunder.
  c) Recipient understands that although each Contributor grants the licenses
     to its Contributions set forth herein, no assurances are provided by any
     Contributor that the Program does not infringe the patent or other
     intellectual property rights of any other entity. Each Contributor
     disclaims any liability to Recipient for claims brought by any other
     entity based on infringement of intellectual property rights or
     otherwise. As a condition to exercising the rights and licenses granted
     hereunder, each Recipient hereby assumes sole responsibility to secure
     any other intellectual property rights needed, if any. For example, if a
     third party patent license is required to allow Recipient to distribute
     the Program, it is Recipient's responsibility to acquire that license
     before distributing the Program.
  d) Each Contributor represents that to its knowledge it has sufficient
     copyright rights in its Contribution, if any, to grant the copyright
     license set forth in this Agreement.

3. REQUIREMENTS

A Contributor may choose to distribute the Program in object code form under
its own license agreement, provided that:

  a) it complies with the terms and conditions of this Agreement; and
  b) its license agreement:
      i) effectively disclaims on behalf of all Contributors all warranties
         and conditions, express and implied, including warranties or
         conditions of title and non-infringement, and implied warranties or
         conditions of merchantability and fitness for a particular purpose;
     ii) effectively excludes on behalf of all Contributors all liability for
         damages, including direct, indirect, special, incidental and
         consequential damages, such as lost profits;
    iii) states that any provisions which differ from this Agreement are
         offered by that Contributor alone and not by any other party; and
     iv) states that source code for the Program is available from such
         Contributor, and informs licensees how to obtain it in a reasonable
         manner on or through a medium customarily used for software exchange.

When the Program is made available in source code form:

  a) it must be made available under this Agreement; and
  b) a copy of this Agreement must be included with each copy of the Program.
     Contributors may not remove or alter any copyright notices contained
     within the Program.

Each Contributor must identify itself as the originator of its Contribution,
if
any, in a manner that reasonably allows subsequent Recipients to identify the
originator of the Contribution.

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with
respect to end users, business partners and the like. While this license is
intended to facilitate the commercial use of the Program, the Contributor who
includes the Program in a commercial product offering should do so in a manner
which does not create potential liability for other Contributors. Therefore,
if a Contributor includes the Program in a commercial product offering, such
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
every other Contributor ("Indemnified Contributor") against any losses,
damages and costs (collectively "Losses") arising from claims, lawsuits and
other legal actions brought by a third party against the Indemnified
Contributor to the extent caused by the acts or omissions of such Commercial
Contributor in connection with its distribution of the Program in a commercial
product offering. The obligations in this section do not apply to any claims
or Losses relating to any actual or alleged intellectual property
infringement. In order to qualify, an Indemnified Contributor must:
a) promptly notify the Commercial Contributor in writing of such claim, and
b) allow the Commercial Contributor to control, and cooperate with the
Commercial Contributor in, the defense and any related settlement
negotiations. The Indemnified Contributor may participate in any such claim at
its own expense.

For example, a Contributor might include the Program in a commercial product
offering, Product X. That Contributor is then a Commercial Contributor. If
that Commercial Contributor then makes performance claims, or offers
warranties related to Product X, those performance claims and warranties are
such Commercial Contributor's responsibility alone. Under this section, the
Commercial Contributor would have to defend claims against the other
Contributors related to those performance claims and warranties, and if a
court requires any other Contributor to pay any damages as a result, the
Commercial Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
Recipient is solely responsible for determining the appropriateness of using
and distributing the Program and assumes all risks associated with its
exercise of rights under this Agreement , including but not limited to the
risks and costs of program errors, compliance with applicable laws, damage to
or loss of data, programs or equipment, and unavailability or interruption of
operations.

6. DISCLAIMER OF LIABILITY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGES.

7. GENERAL

If any provision of this Agreement is invalid or unenforceable under
applicable law, it shall not affect the validity or enforceability of the
remainder of the terms of this Agreement, and without further action by the
parties hereto, such provision shall be reformed to the minimum extent
necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Program itself
(excluding combinations of the Program with other software or hardware)
infringes such Recipient's patent(s), then such Recipient's rights granted
under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to
comply with any of the material terms or conditions of this Agreement and does
not cure such failure in a reasonable period of time after becoming aware of
such noncompliance. If all Recipient's rights under this Agreement terminate,
Recipient agrees to cease use and distribution of the Program as soon as
reasonably practicable. However, Recipient's obligations under this Agreement
and any licenses granted by Recipient relating to the Program shall continue
and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in
order to avoid inconsistency the Agreement is copyrighted and may only be
modified in the following manner. The Agreement Steward reserves the right to
publish new versions (including revisions) of this Agreement from time to
time. No one other than the Agreement Steward has the right to modify this
Agreement. The Eclipse Foundation is the initial Agreement Steward. The
Eclipse Foundation may assign the responsibility to serve as the Agreement
Steward to a suitable separate entity. Each new version of the Agreement will
be given a distinguishing version number. The Program (including
Contributions) may always be distributed subject to the version of the
Agreement under which it was received. In addition, after a new version of the
Agreement is published, Contributor may elect to distribute the Program
(including its Contributions) under the new version. Except as expressly
stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
licenses to the intellectual property of any Contributor under this Agreement,
whether expressly, by implication, estoppel or otherwise. All rights in the
Program not expressly granted under this Agreement are reserved.

This Agreement is governed by the laws of the State of New York and the
intellectual property laws of the United States of America. No party to this
Agreement will bring a legal action under this Agreement more than one year
after the cause of action arose. Each party waives its rights to a jury trial in
any resulting litigation.



================================================
FILE: README.md
================================================
# <img src="http://ww4.sinaimg.cn/large/005Xtdi2jw1f2jx68ugicj3074074jrm.jpg" width=36 /> 安卓3D翻转效果  

## 作者微博:  [@GcsSloop](http://weibo.com/GcsSloop)

### 基于谷歌官方提供的3D翻转示例进行修改,修复了在不同像素密度的设备上显示效果差异过大的问题。

## 修正前后对比

<b>修正前</b> | <b>修正后</b>
--- | ---
![image](https://github.com/GcsSloop/Rotate3dAnimation/blob/master/Pic/%E4%BF%AE%E6%AD%A3%E5%89%8D.gif) | ![image](https://github.com/GcsSloop/Rotate3dAnimation/blob/master/Pic/%E4%BF%AE%E6%AD%A3%E5%90%8E.gif)


## 该文件已经包含在另一个仓库中,你可以[点击这里](https://github.com/GcsSloop/SUtil)查看。

# 调用示例:
``` java
        // 计算中心点(这里是使用view的中心作为旋转的中心点)
		final float centerX = view.getWidth() / 2.0f;
		final float centerY = view.getHeight() / 2.0f;

        //括号内参数分别为(上下文,开始角度,结束角度,x轴中心点,y轴中心点,深度,是否扭曲)
		final Rotate3dAnimation rotation = new Rotate3dAnimation(this, start, end, centerX, centerY, 1.0f, true);
		rotation.setDuration(1500);                               //设置动画时长
		rotation.setFillAfter(true);                              //保持旋转后效果
		rotation.setInterpolator(new AccelerateInterpolator());   //设置插值器

		rotation.setAnimationListener(new AnimationListener() {   //设置监听器

			@Override
			public void onAnimationStart(Animation animation) {
			}

			@Override
			public void onAnimationRepeat(Animation animation) {
			}

			@Override
			public void onAnimationEnd(Animation animation) {
			}
		});
		view.startAnimation(rotation);                            //开始动画

```



## About Me

<a href="https://github.com/GcsSloop/SloopBlog/blob/master/FINDME.md" target="_blank"> <img src="http://ww4.sinaimg.cn/large/005Xtdi2gw1f1qn89ihu3j315o0dwwjc.jpg" width=300 height=100 /> </a>


================================================
FILE: Sample/.classpath
================================================
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry kind="src" path="src"/>
	<classpathentry kind="src" path="gen"/>
	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
	<classpathentry kind="output" path="bin/classes"/>
</classpath>


================================================
FILE: Sample/.project
================================================
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>Sample__3D翻转</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
	</natures>
</projectDescription>


================================================
FILE: Sample/.settings/org.eclipse.jdt.core.prefs
================================================
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.source=1.6


================================================
FILE: Sample/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sloop.fz3d"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="22" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:theme="@android:style/Theme.Holo.Light"
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


================================================
FILE: Sample/gen/android/support/v7/appcompat/R.java
================================================
/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */
package android.support.v7.appcompat;

public final class R {
	public static final class anim {
		public static final int abc_fade_in = 0x7f040000;
		public static final int abc_fade_out = 0x7f040001;
		public static final int abc_grow_fade_in_from_bottom = 0x7f040002;
		public static final int abc_popup_enter = 0x7f040003;
		public static final int abc_popup_exit = 0x7f040004;
		public static final int abc_shrink_fade_out_from_bottom = 0x7f040005;
		public static final int abc_slide_in_bottom = 0x7f040006;
		public static final int abc_slide_in_top = 0x7f040007;
		public static final int abc_slide_out_bottom = 0x7f040008;
		public static final int abc_slide_out_top = 0x7f040009;
	}
	public static final class attr {
		public static final int actionBarDivider = 0x7f010018;
		public static final int actionBarItemBackground = 0x7f010019;
		public static final int actionBarPopupTheme = 0x7f010012;
		public static final int actionBarSize = 0x7f010017;
		public static final int actionBarSplitStyle = 0x7f010014;
		public static final int actionBarStyle = 0x7f010013;
		public static final int actionBarTabBarStyle = 0x7f01000e;
		public static final int actionBarTabStyle = 0x7f01000d;
		public static final int actionBarTabTextStyle = 0x7f01000f;
		public static final int actionBarTheme = 0x7f010015;
		public static final int actionBarWidgetTheme = 0x7f010016;
		public static final int actionButtonStyle = 0x7f010032;
		public static final int actionDropDownStyle = 0x7f01002e;
		public static final int actionLayout = 0x7f01008b;
		public static final int actionMenuTextAppearance = 0x7f01001a;
		public static final int actionMenuTextColor = 0x7f01001b;
		public static final int actionModeBackground = 0x7f01001e;
		public static final int actionModeCloseButtonStyle = 0x7f01001d;
		public static final int actionModeCloseDrawable = 0x7f010020;
		public static final int actionModeCopyDrawable = 0x7f010022;
		public static final int actionModeCutDrawable = 0x7f010021;
		public static final int actionModeFindDrawable = 0x7f010026;
		public static final int actionModePasteDrawable = 0x7f010023;
		public static final int actionModePopupWindowStyle = 0x7f010028;
		public static final int actionModeSelectAllDrawable = 0x7f010024;
		public static final int actionModeShareDrawable = 0x7f010025;
		public static final int actionModeSplitBackground = 0x7f01001f;
		public static final int actionModeStyle = 0x7f01001c;
		public static final int actionModeWebSearchDrawable = 0x7f010027;
		public static final int actionOverflowButtonStyle = 0x7f010010;
		public static final int actionOverflowMenuStyle = 0x7f010011;
		public static final int actionProviderClass = 0x7f01008d;
		public static final int actionViewClass = 0x7f01008c;
		public static final int activityChooserViewStyle = 0x7f010039;
		public static final int alertDialogButtonGroupStyle = 0x7f01005a;
		public static final int alertDialogCenterButtons = 0x7f01005b;
		public static final int alertDialogStyle = 0x7f010059;
		public static final int alertDialogTheme = 0x7f01005c;
		public static final int autoCompleteTextViewStyle = 0x7f010061;
		public static final int background = 0x7f010073;
		public static final int backgroundSplit = 0x7f010075;
		public static final int backgroundStacked = 0x7f010074;
		public static final int backgroundTint = 0x7f010087;
		public static final int backgroundTintMode = 0x7f010088;
		public static final int barSize = 0x7f0100b8;
		public static final int buttonBarButtonStyle = 0x7f010034;
		public static final int buttonBarNegativeButtonStyle = 0x7f01005f;
		public static final int buttonBarNeutralButtonStyle = 0x7f010060;
		public static final int buttonBarPositiveButtonStyle = 0x7f01005e;
		public static final int buttonBarStyle = 0x7f010033;
		public static final int buttonPanelSideLayout = 0x7f0100c2;
		public static final int buttonStyle = 0x7f010062;
		public static final int buttonStyleSmall = 0x7f010063;
		public static final int checkboxStyle = 0x7f010064;
		public static final int checkedTextViewStyle = 0x7f010065;
		public static final int closeIcon = 0x7f010095;
		public static final int closeItemLayout = 0x7f010083;
		public static final int collapseContentDescription = 0x7f0100ad;
		public static final int collapseIcon = 0x7f0100ac;
		public static final int color = 0x7f0100b2;
		public static final int colorAccent = 0x7f010053;
		public static final int colorButtonNormal = 0x7f010057;
		public static final int colorControlActivated = 0x7f010055;
		public static final int colorControlHighlight = 0x7f010056;
		public static final int colorControlNormal = 0x7f010054;
		public static final int colorPrimary = 0x7f010051;
		public static final int colorPrimaryDark = 0x7f010052;
		public static final int colorSwitchThumbNormal = 0x7f010058;
		public static final int commitIcon = 0x7f01009a;
		public static final int contentInsetEnd = 0x7f01007e;
		public static final int contentInsetLeft = 0x7f01007f;
		public static final int contentInsetRight = 0x7f010080;
		public static final int contentInsetStart = 0x7f01007d;
		public static final int customNavigationLayout = 0x7f010076;
		public static final int dialogPreferredPadding = 0x7f01002c;
		public static final int dialogTheme = 0x7f01002b;
		public static final int disableChildrenWhenDisabled = 0x7f010091;
		public static final int displayOptions = 0x7f01006c;
		public static final int divider = 0x7f010072;
		public static final int dividerHorizontal = 0x7f010038;
		public static final int dividerPadding = 0x7f0100a3;
		public static final int dividerVertical = 0x7f010037;
		public static final int drawableSize = 0x7f0100b4;
		public static final int drawerArrowStyle = 0x7f0100ba;
		public static final int dropDownListViewStyle = 0x7f010049;
		public static final int dropdownListPreferredItemHeight = 0x7f01002f;
		public static final int editTextBackground = 0x7f01003f;
		public static final int editTextColor = 0x7f01003e;
		public static final int editTextStyle = 0x7f010066;
		public static final int elevation = 0x7f010081;
		public static final int expandActivityOverflowButtonDrawable = 0x7f01009f;
		public static final int gapBetweenBars = 0x7f0100b5;
		public static final int goIcon = 0x7f010096;
		public static final int height = 0x7f010001;
		public static final int hideOnContentScroll = 0x7f01007c;
		public static final int homeAsUpIndicator = 0x7f010031;
		public static final int homeLayout = 0x7f010077;
		public static final int icon = 0x7f010070;
		public static final int iconifiedByDefault = 0x7f010093;
		public static final int indeterminateProgressStyle = 0x7f010079;
		public static final int initialActivityCount = 0x7f01009e;
		public static final int isLightTheme = 0x7f010002;
		public static final int itemPadding = 0x7f01007b;
		public static final int layout = 0x7f010092;
		public static final int listChoiceBackgroundIndicator = 0x7f010050;
		public static final int listDividerAlertDialog = 0x7f01002d;
		public static final int listItemLayout = 0x7f0100c6;
		public static final int listLayout = 0x7f0100c3;
		public static final int listPopupWindowStyle = 0x7f01004a;
		public static final int listPreferredItemHeight = 0x7f010044;
		public static final int listPreferredItemHeightLarge = 0x7f010046;
		public static final int listPreferredItemHeightSmall = 0x7f010045;
		public static final int listPreferredItemPaddingLeft = 0x7f010047;
		public static final int listPreferredItemPaddingRight = 0x7f010048;
		public static final int logo = 0x7f010071;
		public static final int maxButtonHeight = 0x7f0100ab;
		public static final int measureWithLargestChild = 0x7f0100a1;
		public static final int middleBarArrowSize = 0x7f0100b7;
		public static final int multiChoiceItemLayout = 0x7f0100c4;
		public static final int navigationContentDescription = 0x7f0100af;
		public static final int navigationIcon = 0x7f0100ae;
		public static final int navigationMode = 0x7f01006b;
		public static final int overlapAnchor = 0x7f0100b1;
		public static final int paddingEnd = 0x7f010085;
		public static final int paddingStart = 0x7f010084;
		public static final int panelBackground = 0x7f01004d;
		public static final int panelMenuListTheme = 0x7f01004f;
		public static final int panelMenuListWidth = 0x7f01004e;
		public static final int popupMenuStyle = 0x7f01003c;
		public static final int popupPromptView = 0x7f010090;
		public static final int popupTheme = 0x7f010082;
		public static final int popupWindowStyle = 0x7f01003d;
		public static final int preserveIconSpacing = 0x7f010089;
		public static final int progressBarPadding = 0x7f01007a;
		public static final int progressBarStyle = 0x7f010078;
		public static final int prompt = 0x7f01008e;
		public static final int queryBackground = 0x7f01009c;
		public static final int queryHint = 0x7f010094;
		public static final int radioButtonStyle = 0x7f010067;
		public static final int ratingBarStyle = 0x7f010068;
		public static final int searchHintIcon = 0x7f010098;
		public static final int searchIcon = 0x7f010097;
		public static final int searchViewStyle = 0x7f010043;
		public static final int selectableItemBackground = 0x7f010035;
		public static final int selectableItemBackgroundBorderless = 0x7f010036;
		public static final int showAsAction = 0x7f01008a;
		public static final int showDividers = 0x7f0100a2;
		public static final int showText = 0x7f0100c1;
		public static final int singleChoiceItemLayout = 0x7f0100c5;
		public static final int spinBars = 0x7f0100b3;
		public static final int spinnerDropDownItemStyle = 0x7f010030;
		public static final int spinnerMode = 0x7f01008f;
		public static final int spinnerStyle = 0x7f010069;
		public static final int splitTrack = 0x7f0100c0;
		public static final int state_above_anchor = 0x7f0100b0;
		public static final int submitBackground = 0x7f01009d;
		public static final int subtitle = 0x7f01006d;
		public static final int subtitleTextAppearance = 0x7f0100a5;
		public static final int subtitleTextStyle = 0x7f01006f;
		public static final int suggestionRowLayout = 0x7f01009b;
		public static final int switchMinWidth = 0x7f0100be;
		public static final int switchPadding = 0x7f0100bf;
		public static final int switchStyle = 0x7f01006a;
		public static final int switchTextAppearance = 0x7f0100bd;
		public static final int textAllCaps = 0x7f0100a0;
		public static final int textAppearanceLargePopupMenu = 0x7f010029;
		public static final int textAppearanceListItem = 0x7f01004b;
		public static final int textAppearanceListItemSmall = 0x7f01004c;
		public static final int textAppearanceSearchResultSubtitle = 0x7f010041;
		public static final int textAppearanceSearchResultTitle = 0x7f010040;
		public static final int textAppearanceSmallPopupMenu = 0x7f01002a;
		public static final int textColorAlertDialogListItem = 0x7f01005d;
		public static final int textColorSearchUrl = 0x7f010042;
		public static final int theme = 0x7f010086;
		public static final int thickness = 0x7f0100b9;
		public static final int thumbTextPadding = 0x7f0100bc;
		public static final int title = 0x7f010000;
		public static final int titleMarginBottom = 0x7f0100aa;
		public static final int titleMarginEnd = 0x7f0100a8;
		public static final int titleMarginStart = 0x7f0100a7;
		public static final int titleMarginTop = 0x7f0100a9;
		public static final int titleMargins = 0x7f0100a6;
		public static final int titleTextAppearance = 0x7f0100a4;
		public static final int titleTextStyle = 0x7f01006e;
		public static final int toolbarNavigationButtonStyle = 0x7f01003b;
		public static final int toolbarStyle = 0x7f01003a;
		public static final int topBottomBarArrowSize = 0x7f0100b6;
		public static final int track = 0x7f0100bb;
		public static final int voiceIcon = 0x7f010099;
		public static final int windowActionBar = 0x7f010003;
		public static final int windowActionBarOverlay = 0x7f010005;
		public static final int windowActionModeOverlay = 0x7f010006;
		public static final int windowFixedHeightMajor = 0x7f01000a;
		public static final int windowFixedHeightMinor = 0x7f010008;
		public static final int windowFixedWidthMajor = 0x7f010007;
		public static final int windowFixedWidthMinor = 0x7f010009;
		public static final int windowMinWidthMajor = 0x7f01000b;
		public static final int windowMinWidthMinor = 0x7f01000c;
		public static final int windowNoTitle = 0x7f010004;
	}
	public static final class bool {
		public static final int abc_action_bar_embed_tabs = 0x7f050000;
		public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f050001;
		public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f050002;
		public static final int abc_config_actionMenuItemAllCaps = 0x7f050005;
		public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f050004;
		public static final int abc_config_closeDialogWhenTouchOutside = 0x7f050006;
		public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f050003;
	}
	public static final class color {
		public static final int abc_background_cache_hint_selector_material_dark = 0x7f060033;
		public static final int abc_background_cache_hint_selector_material_light = 0x7f060034;
		public static final int abc_input_method_navigation_guard = 0x7f060003;
		public static final int abc_primary_text_disable_only_material_dark = 0x7f060035;
		public static final int abc_primary_text_disable_only_material_light = 0x7f060036;
		public static final int abc_primary_text_material_dark = 0x7f060037;
		public static final int abc_primary_text_material_light = 0x7f060038;
		public static final int abc_search_url_text = 0x7f060039;
		public static final int abc_search_url_text_normal = 0x7f060000;
		public static final int abc_search_url_text_pressed = 0x7f060002;
		public static final int abc_search_url_text_selected = 0x7f060001;
		public static final int abc_secondary_text_material_dark = 0x7f06003a;
		public static final int abc_secondary_text_material_light = 0x7f06003b;
		public static final int accent_material_dark = 0x7f06000f;
		public static final int accent_material_light = 0x7f06000e;
		public static final int background_floating_material_dark = 0x7f060006;
		public static final int background_floating_material_light = 0x7f060007;
		public static final int background_material_dark = 0x7f060004;
		public static final int background_material_light = 0x7f060005;
		public static final int bright_foreground_disabled_material_dark = 0x7f060018;
		public static final int bright_foreground_disabled_material_light = 0x7f060019;
		public static final int bright_foreground_inverse_material_dark = 0x7f06001a;
		public static final int bright_foreground_inverse_material_light = 0x7f06001b;
		public static final int bright_foreground_material_dark = 0x7f060016;
		public static final int bright_foreground_material_light = 0x7f060017;
		public static final int button_material_dark = 0x7f060010;
		public static final int button_material_light = 0x7f060011;
		public static final int dim_foreground_disabled_material_dark = 0x7f06001e;
		public static final int dim_foreground_disabled_material_light = 0x7f06001f;
		public static final int dim_foreground_material_dark = 0x7f06001c;
		public static final int dim_foreground_material_light = 0x7f06001d;
		public static final int highlighted_text_material_dark = 0x7f060022;
		public static final int highlighted_text_material_light = 0x7f060023;
		public static final int hint_foreground_material_dark = 0x7f060020;
		public static final int hint_foreground_material_light = 0x7f060021;
		public static final int link_text_material_dark = 0x7f060024;
		public static final int link_text_material_light = 0x7f060025;
		public static final int material_blue_grey_800 = 0x7f060030;
		public static final int material_blue_grey_900 = 0x7f060031;
		public static final int material_blue_grey_950 = 0x7f060032;
		public static final int material_deep_teal_200 = 0x7f06002e;
		public static final int material_deep_teal_500 = 0x7f06002f;
		public static final int primary_dark_material_dark = 0x7f06000a;
		public static final int primary_dark_material_light = 0x7f06000b;
		public static final int primary_material_dark = 0x7f060008;
		public static final int primary_material_light = 0x7f060009;
		public static final int primary_text_default_material_dark = 0x7f060028;
		public static final int primary_text_default_material_light = 0x7f060026;
		public static final int primary_text_disabled_material_dark = 0x7f06002c;
		public static final int primary_text_disabled_material_light = 0x7f06002a;
		public static final int ripple_material_dark = 0x7f06000c;
		public static final int ripple_material_light = 0x7f06000d;
		public static final int secondary_text_default_material_dark = 0x7f060029;
		public static final int secondary_text_default_material_light = 0x7f060027;
		public static final int secondary_text_disabled_material_dark = 0x7f06002d;
		public static final int secondary_text_disabled_material_light = 0x7f06002b;
		public static final int switch_thumb_disabled_material_dark = 0x7f060014;
		public static final int switch_thumb_disabled_material_light = 0x7f060015;
		public static final int switch_thumb_material_dark = 0x7f06003c;
		public static final int switch_thumb_material_light = 0x7f06003d;
		public static final int switch_thumb_normal_material_dark = 0x7f060012;
		public static final int switch_thumb_normal_material_light = 0x7f060013;
	}
	public static final class dimen {
		public static final int abc_action_bar_content_inset_material = 0x7f070025;
		public static final int abc_action_bar_default_height_material = 0x7f070023;
		public static final int abc_action_bar_default_padding_material = 0x7f070024;
		public static final int abc_action_bar_icon_vertical_padding_material = 0x7f070028;
		public static final int abc_action_bar_navigation_padding_start_material = 0x7f070026;
		public static final int abc_action_bar_overflow_padding_end_material = 0x7f070027;
		public static final int abc_action_bar_overflow_padding_start_material = 0x7f07002c;
		public static final int abc_action_bar_progress_bar_size = 0x7f070005;
		public static final int abc_action_bar_stacked_max_height = 0x7f070004;
		public static final int abc_action_bar_stacked_tab_max_width = 0x7f070003;
		public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f07002a;
		public static final int abc_action_bar_subtitle_top_margin_material = 0x7f070029;
		public static final int abc_action_button_min_height_material = 0x7f07002f;
		public static final int abc_action_button_min_width_material = 0x7f07002e;
		public static final int abc_action_button_min_width_overflow_material = 0x7f07002d;
		public static final int abc_alert_dialog_button_bar_height = 0x7f07001d;
		public static final int abc_button_inset_horizontal_material = 0x7f070011;
		public static final int abc_button_inset_vertical_material = 0x7f070010;
		public static final int abc_button_padding_horizontal_material = 0x7f070013;
		public static final int abc_button_padding_vertical_material = 0x7f070012;
		public static final int abc_config_prefDialogWidth = 0x7f070002;
		public static final int abc_control_corner_material = 0x7f070016;
		public static final int abc_control_inset_material = 0x7f070014;
		public static final int abc_control_padding_material = 0x7f070015;
		public static final int abc_dialog_list_padding_vertical_material = 0x7f07001e;
		public static final int abc_dialog_min_width_major = 0x7f07001f;
		public static final int abc_dialog_min_width_minor = 0x7f070020;
		public static final int abc_dialog_padding_material = 0x7f07001b;
		public static final int abc_dialog_padding_top_material = 0x7f07001c;
		public static final int abc_disabled_alpha_material_dark = 0x7f070041;
		public static final int abc_disabled_alpha_material_light = 0x7f070040;
		public static final int abc_dropdownitem_icon_width = 0x7f07000b;
		public static final int abc_dropdownitem_text_padding_left = 0x7f070009;
		public static final int abc_dropdownitem_text_padding_right = 0x7f07000a;
		public static final int abc_edit_text_inset_bottom_material = 0x7f070019;
		public static final int abc_edit_text_inset_horizontal_material = 0x7f070017;
		public static final int abc_edit_text_inset_top_material = 0x7f070018;
		public static final int abc_floating_window_z = 0x7f07003f;
		public static final int abc_list_item_padding_horizontal_material = 0x7f07002b;
		public static final int abc_panel_menu_list_width = 0x7f070006;
		public static final int abc_search_view_preferred_width = 0x7f070008;
		public static final int abc_search_view_text_min_width = 0x7f070007;
		public static final int abc_switch_padding = 0x7f07001a;
		public static final int abc_text_size_body_1_material = 0x7f070039;
		public static final int abc_text_size_body_2_material = 0x7f070038;
		public static final int abc_text_size_button_material = 0x7f07003b;
		public static final int abc_text_size_caption_material = 0x7f07003a;
		public static final int abc_text_size_display_1_material = 0x7f070033;
		public static final int abc_text_size_display_2_material = 0x7f070032;
		public static final int abc_text_size_display_3_material = 0x7f070031;
		public static final int abc_text_size_display_4_material = 0x7f070030;
		public static final int abc_text_size_headline_material = 0x7f070034;
		public static final int abc_text_size_large_material = 0x7f07003c;
		public static final int abc_text_size_medium_material = 0x7f07003d;
		public static final int abc_text_size_menu_material = 0x7f070037;
		public static final int abc_text_size_small_material = 0x7f07003e;
		public static final int abc_text_size_subhead_material = 0x7f070036;
		public static final int abc_text_size_subtitle_material_toolbar = 0x7f070022;
		public static final int abc_text_size_title_material = 0x7f070035;
		public static final int abc_text_size_title_material_toolbar = 0x7f070021;
		public static final int dialog_fixed_height_major = 0x7f07000e;
		public static final int dialog_fixed_height_minor = 0x7f07000f;
		public static final int dialog_fixed_width_major = 0x7f07000c;
		public static final int dialog_fixed_width_minor = 0x7f07000d;
		public static final int disabled_alpha_material_dark = 0x7f070001;
		public static final int disabled_alpha_material_light = 0x7f070000;
	}
	public static final class drawable {
		public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
		public static final int abc_btn_borderless_material = 0x7f020001;
		public static final int abc_btn_check_material = 0x7f020002;
		public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020003;
		public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020004;
		public static final int abc_btn_default_mtrl_shape = 0x7f020005;
		public static final int abc_btn_radio_material = 0x7f020006;
		public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020007;
		public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f020008;
		public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f020009;
		public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000a;
		public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000b;
		public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000c;
		public static final int abc_cab_background_internal_bg = 0x7f02000d;
		public static final int abc_cab_background_top_material = 0x7f02000e;
		public static final int abc_cab_background_top_mtrl_alpha = 0x7f02000f;
		public static final int abc_dialog_material_background_dark = 0x7f020010;
		public static final int abc_dialog_material_background_light = 0x7f020011;
		public static final int abc_edit_text_material = 0x7f020012;
		public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020013;
		public static final int abc_ic_clear_mtrl_alpha = 0x7f020014;
		public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020015;
		public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020016;
		public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020017;
		public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020018;
		public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f020019;
		public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001a;
		public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001b;
		public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001c;
		public static final int abc_ic_search_api_mtrl_alpha = 0x7f02001d;
		public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f02001e;
		public static final int abc_item_background_holo_dark = 0x7f02001f;
		public static final int abc_item_background_holo_light = 0x7f020020;
		public static final int abc_list_divider_mtrl_alpha = 0x7f020021;
		public static final int abc_list_focused_holo = 0x7f020022;
		public static final int abc_list_longpressed_holo = 0x7f020023;
		public static final int abc_list_pressed_holo_dark = 0x7f020024;
		public static final int abc_list_pressed_holo_light = 0x7f020025;
		public static final int abc_list_selector_background_transition_holo_dark = 0x7f020026;
		public static final int abc_list_selector_background_transition_holo_light = 0x7f020027;
		public static final int abc_list_selector_disabled_holo_dark = 0x7f020028;
		public static final int abc_list_selector_disabled_holo_light = 0x7f020029;
		public static final int abc_list_selector_holo_dark = 0x7f02002a;
		public static final int abc_list_selector_holo_light = 0x7f02002b;
		public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002c;
		public static final int abc_popup_background_mtrl_mult = 0x7f02002d;
		public static final int abc_ratingbar_full_material = 0x7f02002e;
		public static final int abc_spinner_mtrl_am_alpha = 0x7f02002f;
		public static final int abc_spinner_textfield_background_material = 0x7f020030;
		public static final int abc_switch_thumb_material = 0x7f020031;
		public static final int abc_switch_track_mtrl_alpha = 0x7f020032;
		public static final int abc_tab_indicator_material = 0x7f020033;
		public static final int abc_tab_indicator_mtrl_alpha = 0x7f020034;
		public static final int abc_text_cursor_mtrl_alpha = 0x7f020035;
		public static final int abc_textfield_activated_mtrl_alpha = 0x7f020036;
		public static final int abc_textfield_default_mtrl_alpha = 0x7f020037;
		public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020038;
		public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020039;
		public static final int abc_textfield_search_material = 0x7f02003a;
	}
	public static final class id {
		public static final int action_bar = 0x7f090040;
		public static final int action_bar_activity_content = 0x7f090003;
		public static final int action_bar_container = 0x7f09003f;
		public static final int action_bar_root = 0x7f09003b;
		public static final int action_bar_spinner = 0x7f090002;
		public static final int action_bar_subtitle = 0x7f090024;
		public static final int action_bar_title = 0x7f090023;
		public static final int action_context_bar = 0x7f090041;
		public static final int action_menu_divider = 0x7f090005;
		public static final int action_menu_presenter = 0x7f090006;
		public static final int action_mode_bar = 0x7f09003d;
		public static final int action_mode_bar_stub = 0x7f09003c;
		public static final int action_mode_close_button = 0x7f090025;
		public static final int activity_chooser_view_content = 0x7f090026;
		public static final int alertTitle = 0x7f090030;
		public static final int always = 0x7f090019;
		public static final int beginning = 0x7f090020;
		public static final int buttonPanel = 0x7f090036;
		public static final int checkbox = 0x7f090038;
		public static final int collapseActionView = 0x7f09001a;
		public static final int contentPanel = 0x7f090031;
		public static final int custom = 0x7f090035;
		public static final int customPanel = 0x7f090034;
		public static final int decor_content_parent = 0x7f09003e;
		public static final int default_activity_button = 0x7f090029;
		public static final int dialog = 0x7f09001e;
		public static final int disableHome = 0x7f09000d;
		public static final int dropdown = 0x7f09001f;
		public static final int edit_query = 0x7f090042;
		public static final int end = 0x7f090021;
		public static final int expand_activities_button = 0x7f090027;
		public static final int expanded_menu = 0x7f090037;
		public static final int home = 0x7f090000;
		public static final int homeAsUp = 0x7f09000e;
		public static final int icon = 0x7f09002b;
		public static final int ifRoom = 0x7f09001b;
		public static final int image = 0x7f090028;
		public static final int listMode = 0x7f09000a;
		public static final int list_item = 0x7f09002a;
		public static final int middle = 0x7f090022;
		public static final int multiply = 0x7f090014;
		public static final int never = 0x7f09001c;
		public static final int none = 0x7f09000f;
		public static final int normal = 0x7f09000b;
		public static final int parentPanel = 0x7f09002d;
		public static final int progress_circular = 0x7f090007;
		public static final int progress_horizontal = 0x7f090008;
		public static final int radio = 0x7f09003a;
		public static final int screen = 0x7f090015;
		public static final int scrollView = 0x7f090032;
		public static final int search_badge = 0x7f090044;
		public static final int search_bar = 0x7f090043;
		public static final int search_button = 0x7f090045;
		public static final int search_close_btn = 0x7f09004a;
		public static final int search_edit_frame = 0x7f090046;
		public static final int search_go_btn = 0x7f09004c;
		public static final int search_mag_icon = 0x7f090047;
		public static final int search_plate = 0x7f090048;
		public static final int search_src_text = 0x7f090049;
		public static final int search_voice_btn = 0x7f09004d;
		public static final int select_dialog_listview = 0x7f09004e;
		public static final int shortcut = 0x7f090039;
		public static final int showCustom = 0x7f090010;
		public static final int showHome = 0x7f090011;
		public static final int showTitle = 0x7f090012;
		public static final int split_action_bar = 0x7f090004;
		public static final int src_atop = 0x7f090016;
		public static final int src_in = 0x7f090017;
		public static final int src_over = 0x7f090018;
		public static final int submit_area = 0x7f09004b;
		public static final int tabMode = 0x7f09000c;
		public static final int textSpacerNoButtons = 0x7f090033;
		public static final int title = 0x7f09002c;
		public static final int title_template = 0x7f09002f;
		public static final int topPanel = 0x7f09002e;
		public static final int up = 0x7f090001;
		public static final int useLogo = 0x7f090013;
		public static final int withText = 0x7f09001d;
		public static final int wrap_content = 0x7f090009;
	}
	public static final class integer {
		public static final int abc_config_activityDefaultDur = 0x7f080001;
		public static final int abc_config_activityShortDur = 0x7f080000;
		public static final int abc_max_action_buttons = 0x7f080002;
	}
	public static final class layout {
		public static final int abc_action_bar_title_item = 0x7f030000;
		public static final int abc_action_bar_up_container = 0x7f030001;
		public static final int abc_action_bar_view_list_nav_layout = 0x7f030002;
		public static final int abc_action_menu_item_layout = 0x7f030003;
		public static final int abc_action_menu_layout = 0x7f030004;
		public static final int abc_action_mode_bar = 0x7f030005;
		public static final int abc_action_mode_close_item_material = 0x7f030006;
		public static final int abc_activity_chooser_view = 0x7f030007;
		public static final int abc_activity_chooser_view_list_item = 0x7f030008;
		public static final int abc_alert_dialog_material = 0x7f030009;
		public static final int abc_dialog_title_material = 0x7f03000a;
		public static final int abc_expanded_menu_layout = 0x7f03000b;
		public static final int abc_list_menu_item_checkbox = 0x7f03000c;
		public static final int abc_list_menu_item_icon = 0x7f03000d;
		public static final int abc_list_menu_item_layout = 0x7f03000e;
		public static final int abc_list_menu_item_radio = 0x7f03000f;
		public static final int abc_popup_menu_item_layout = 0x7f030010;
		public static final int abc_screen_content_include = 0x7f030011;
		public static final int abc_screen_simple = 0x7f030012;
		public static final int abc_screen_simple_overlay_action_mode = 0x7f030013;
		public static final int abc_screen_toolbar = 0x7f030014;
		public static final int abc_search_dropdown_item_icons_2line = 0x7f030015;
		public static final int abc_search_view = 0x7f030016;
		public static final int abc_select_dialog_material = 0x7f030017;
		public static final int abc_simple_dropdown_hint = 0x7f030018;
		public static final int select_dialog_item_material = 0x7f03001a;
		public static final int select_dialog_multichoice_material = 0x7f03001b;
		public static final int select_dialog_singlechoice_material = 0x7f03001c;
		public static final int support_simple_spinner_dropdown_item = 0x7f03001d;
	}
	public static final class string {
		public static final int abc_action_bar_home_description = 0x7f0a0001;
		public static final int abc_action_bar_home_description_format = 0x7f0a0005;
		public static final int abc_action_bar_home_subtitle_description_format = 0x7f0a0006;
		public static final int abc_action_bar_up_description = 0x7f0a0002;
		public static final int abc_action_menu_overflow_description = 0x7f0a0003;
		public static final int abc_action_mode_done = 0x7f0a0000;
		public static final int abc_activity_chooser_view_see_all = 0x7f0a000e;
		public static final int abc_activitychooserview_choose_application = 0x7f0a000d;
		public static final int abc_search_hint = 0x7f0a0008;
		public static final int abc_searchview_description_clear = 0x7f0a000a;
		public static final int abc_searchview_description_query = 0x7f0a0009;
		public static final int abc_searchview_description_search = 0x7f0a0007;
		public static final int abc_searchview_description_submit = 0x7f0a000b;
		public static final int abc_searchview_description_voice = 0x7f0a000c;
		public static final int abc_shareactionprovider_share_with = 0x7f0a0010;
		public static final int abc_shareactionprovider_share_with_application = 0x7f0a000f;
		public static final int abc_toolbar_collapse_description = 0x7f0a0004;
	}
	public static final class style {
		public static final int AlertDialog_AppCompat = 0x7f0b0040;
		public static final int AlertDialog_AppCompat_Light = 0x7f0b0041;
		public static final int Animation_AppCompat_Dialog = 0x7f0b0046;
		public static final int Animation_AppCompat_DropDownUp = 0x7f0b0047;
		public static final int Base_AlertDialog_AppCompat = 0x7f0b00bd;
		public static final int Base_AlertDialog_AppCompat_Light = 0x7f0b00be;
		public static final int Base_Animation_AppCompat_Dialog = 0x7f0b00b9;
		public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0b00bc;
		public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0b00b7;
		public static final int Base_DialogWindowTitle_AppCompat = 0x7f0b00b8;
		public static final int Base_TextAppearance_AppCompat = 0x7f0b00bf;
		public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0b00ca;
		public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0b00c9;
		public static final int Base_TextAppearance_AppCompat_Button = 0x7f0b00cd;
		public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0b00cb;
		public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0b00c3;
		public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0b00c2;
		public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0b00c1;
		public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0b00c0;
		public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0b00c4;
		public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0b00ce;
		public static final int Base_TextAppearance_AppCompat_Large = 0x7f0b00cf;
		public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0b00d0;
		public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b009a;
		public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b009b;
		public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0b00d1;
		public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0b00d2;
		public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0b00cc;
		public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0b009c;
		public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b009e;
		public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0b009d;
		public static final int Base_TextAppearance_AppCompat_Small = 0x7f0b00d3;
		public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0b00d4;
		public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0b00c7;
		public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0b00c8;
		public static final int Base_TextAppearance_AppCompat_Title = 0x7f0b00c5;
		public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0b00c6;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0083;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0085;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0087;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0084;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0086;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0082;
		public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b0081;
		public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0090;
		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0098;
		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b0099;
		public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0b00ae;
		public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0b00b6;
		public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0091;
		public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0b00a5;
		public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0b00a4;
		public static final int Base_ThemeOverlay_AppCompat = 0x7f0b0108;
		public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0b010d;
		public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0b010c;
		public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0b010e;
		public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0b010b;
		public static final int Base_Theme_AppCompat = 0x7f0b00f8;
		public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0b00fb;
		public static final int Base_Theme_AppCompat_Dialog = 0x7f0b00fe;
		public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0b0106;
		public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0b0100;
		public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0b0104;
		public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0b0102;
		public static final int Base_Theme_AppCompat_Light = 0x7f0b00f9;
		public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0b00fa;
		public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0b00ff;
		public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b0107;
		public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0b0101;
		public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0b0105;
		public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0b0103;
		public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0b0111;
		public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0b0112;
		public static final int Base_V21_Theme_AppCompat = 0x7f0b0117;
		public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0b0119;
		public static final int Base_V21_Theme_AppCompat_Light = 0x7f0b0118;
		public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0b011a;
		public static final int Base_V7_Theme_AppCompat = 0x7f0b00f6;
		public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0b00fc;
		public static final int Base_V7_Theme_AppCompat_Light = 0x7f0b00f7;
		public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0b00fd;
		public static final int Base_Widget_AppCompat_ActionBar = 0x7f0b0072;
		public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0b0074;
		public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0b0079;
		public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0b007d;
		public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0b007b;
		public static final int Base_Widget_AppCompat_ActionButton = 0x7f0b0076;
		public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0b0077;
		public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0b0078;
		public static final int Base_Widget_AppCompat_ActionMode = 0x7f0b0080;
		public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0b00a0;
		public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0b009f;
		public static final int Base_Widget_AppCompat_Button = 0x7f0b00b0;
		public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0b00ba;
		public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0b00bb;
		public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0b00b2;
		public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0b00b3;
		public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0b00b4;
		public static final int Base_Widget_AppCompat_Button_Small = 0x7f0b00b1;
		public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0b00ab;
		public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0b00ac;
		public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0b00ad;
		public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0b00aa;
		public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0b00a9;
		public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0b008d;
		public static final int Base_Widget_AppCompat_EditText = 0x7f0b00a8;
		public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0b0073;
		public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0075;
		public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b007a;
		public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b007e;
		public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b007f;
		public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b007c;
		public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0b0097;
		public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0b0095;
		public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0b0093;
		public static final int Base_Widget_AppCompat_ListView = 0x7f0b008e;
		public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0b008f;
		public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0b0092;
		public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0b0096;
		public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0b0094;
		public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0b00a1;
		public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0b0089;
		public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0088;
		public static final int Base_Widget_AppCompat_RatingBar = 0x7f0b00af;
		public static final int Base_Widget_AppCompat_SearchView = 0x7f0b00a6;
		public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0b00a7;
		public static final int Base_Widget_AppCompat_Spinner = 0x7f0b008a;
		public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b008c;
		public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0b008b;
		public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0b00b5;
		public static final int Base_Widget_AppCompat_Toolbar = 0x7f0b00a2;
		public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b00a3;
		public static final int Platform_AppCompat = 0x7f0b00f4;
		public static final int Platform_AppCompat_Light = 0x7f0b00f5;
		public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0b0109;
		public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0b010a;
		public static final int Platform_V11_AppCompat = 0x7f0b010f;
		public static final int Platform_V11_AppCompat_Light = 0x7f0b0110;
		public static final int Platform_V12_AppCompat = 0x7f0b0113;
		public static final int Platform_V12_AppCompat_Light = 0x7f0b0114;
		public static final int Platform_V14_AppCompat = 0x7f0b0115;
		public static final int Platform_V14_AppCompat_Light = 0x7f0b0116;
		public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0b00db;
		public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0b00dc;
		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0b00dd;
		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0b00de;
		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0b00df;
		public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0b00d5;
		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0b00d6;
		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0b00d8;
		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0b00d9;
		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0b00d7;
		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0b00da;
		public static final int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b00e0;
		public static final int TextAppearance_AppCompat = 0x7f0b0048;
		public static final int TextAppearance_AppCompat_Body1 = 0x7f0b0053;
		public static final int TextAppearance_AppCompat_Body2 = 0x7f0b0052;
		public static final int TextAppearance_AppCompat_Button = 0x7f0b005d;
		public static final int TextAppearance_AppCompat_Caption = 0x7f0b0054;
		public static final int TextAppearance_AppCompat_Display1 = 0x7f0b004c;
		public static final int TextAppearance_AppCompat_Display2 = 0x7f0b004b;
		public static final int TextAppearance_AppCompat_Display3 = 0x7f0b004a;
		public static final int TextAppearance_AppCompat_Display4 = 0x7f0b0049;
		public static final int TextAppearance_AppCompat_Headline = 0x7f0b004d;
		public static final int TextAppearance_AppCompat_Inverse = 0x7f0b0056;
		public static final int TextAppearance_AppCompat_Large = 0x7f0b0057;
		public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0b0058;
		public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b0064;
		public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b0063;
		public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b002b;
		public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b002c;
		public static final int TextAppearance_AppCompat_Medium = 0x7f0b0059;
		public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0b005a;
		public static final int TextAppearance_AppCompat_Menu = 0x7f0b0055;
		public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b002e;
		public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b002d;
		public static final int TextAppearance_AppCompat_Small = 0x7f0b005b;
		public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0b005c;
		public static final int TextAppearance_AppCompat_Subhead = 0x7f0b0050;
		public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0b0051;
		public static final int TextAppearance_AppCompat_Title = 0x7f0b004e;
		public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0b004f;
		public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0015;
		public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0005;
		public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0007;
		public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0004;
		public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0006;
		public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0018;
		public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0067;
		public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b0017;
		public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b0066;
		public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0019;
		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0029;
		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b002a;
		public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0b005e;
		public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0b005f;
		public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0021;
		public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0b0045;
		public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0b0044;
		public static final int ThemeOverlay_AppCompat = 0x7f0b00ef;
		public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0b00f2;
		public static final int ThemeOverlay_AppCompat_Dark = 0x7f0b00f1;
		public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0b00f3;
		public static final int ThemeOverlay_AppCompat_Light = 0x7f0b00f0;
		public static final int Theme_AppCompat = 0x7f0b00e1;
		public static final int Theme_AppCompat_CompactMenu = 0x7f0b00ee;
		public static final int Theme_AppCompat_Dialog = 0x7f0b00e8;
		public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0b00e6;
		public static final int Theme_AppCompat_Dialog_Alert = 0x7f0b00ea;
		public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0b00ec;
		public static final int Theme_AppCompat_Light = 0x7f0b00e2;
		public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b00e3;
		public static final int Theme_AppCompat_Light_Dialog = 0x7f0b00e9;
		public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b00e7;
		public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0b00eb;
		public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0b00ed;
		public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0b00e5;
		public static final int Theme_AppCompat_NoActionBar = 0x7f0b00e4;
		public static final int Widget_AppCompat_ActionBar = 0x7f0b0000;
		public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b0002;
		public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b000d;
		public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b0011;
		public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b000f;
		public static final int Widget_AppCompat_ActionButton = 0x7f0b000a;
		public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b000b;
		public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b000c;
		public static final int Widget_AppCompat_ActionMode = 0x7f0b0016;
		public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0030;
		public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b002f;
		public static final int Widget_AppCompat_Button = 0x7f0b0038;
		public static final int Widget_AppCompat_ButtonBar = 0x7f0b003d;
		public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0b003e;
		public static final int Widget_AppCompat_Button_Borderless = 0x7f0b003a;
		public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0b003b;
		public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0b003c;
		public static final int Widget_AppCompat_Button_Small = 0x7f0b0039;
		public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0b0035;
		public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0b0036;
		public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0b0034;
		public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0b0012;
		public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b001e;
		public static final int Widget_AppCompat_EditText = 0x7f0b0033;
		public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0001;
		public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0003;
		public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0060;
		public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b000e;
		public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b0061;
		public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b0013;
		public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b0014;
		public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0010;
		public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b0062;
		public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b006a;
		public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b006c;
		public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b006b;
		public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b0065;
		public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0071;
		public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0070;
		public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0068;
		public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0b006f;
		public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b006e;
		public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b0026;
		public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0b0024;
		public static final int Widget_AppCompat_Light_SearchView = 0x7f0b0069;
		public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b006d;
		public static final int Widget_AppCompat_ListPopupWindow = 0x7f0b0022;
		public static final int Widget_AppCompat_ListView = 0x7f0b001f;
		public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b0020;
		public static final int Widget_AppCompat_ListView_Menu = 0x7f0b0027;
		public static final int Widget_AppCompat_PopupMenu = 0x7f0b0025;
		public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0b0023;
		public static final int Widget_AppCompat_PopupWindow = 0x7f0b0028;
		public static final int Widget_AppCompat_ProgressBar = 0x7f0b0009;
		public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0008;
		public static final int Widget_AppCompat_RatingBar = 0x7f0b0037;
		public static final int Widget_AppCompat_SearchView = 0x7f0b0031;
		public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0b0032;
		public static final int Widget_AppCompat_Spinner = 0x7f0b001a;
		public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0b001c;
		public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b001d;
		public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0b001b;
		public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0b003f;
		public static final int Widget_AppCompat_Toolbar = 0x7f0b0042;
		public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b0043;
	}
	public static final class styleable {
		public static final int[] ActionBar = { 0x7f010000, 0x7f010001, 0x7f010031, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082 };
		public static final int[] ActionBarLayout = { 0x010100b3 };
		public static final int ActionBarLayout_android_layout_gravity = 0;
		public static final int ActionBar_background = 11;
		public static final int ActionBar_backgroundSplit = 13;
		public static final int ActionBar_backgroundStacked = 12;
		public static final int ActionBar_contentInsetEnd = 22;
		public static final int ActionBar_contentInsetLeft = 23;
		public static final int ActionBar_contentInsetRight = 24;
		public static final int ActionBar_contentInsetStart = 21;
		public static final int ActionBar_customNavigationLayout = 14;
		public static final int ActionBar_displayOptions = 4;
		public static final int ActionBar_divider = 10;
		public static final int ActionBar_elevation = 25;
		public static final int ActionBar_height = 1;
		public static final int ActionBar_hideOnContentScroll = 20;
		public static final int ActionBar_homeAsUpIndicator = 2;
		public static final int ActionBar_homeLayout = 15;
		public static final int ActionBar_icon = 8;
		public static final int ActionBar_indeterminateProgressStyle = 17;
		public static final int ActionBar_itemPadding = 19;
		public static final int ActionBar_logo = 9;
		public static final int ActionBar_navigationMode = 3;
		public static final int ActionBar_popupTheme = 26;
		public static final int ActionBar_progressBarPadding = 18;
		public static final int ActionBar_progressBarStyle = 16;
		public static final int ActionBar_subtitle = 5;
		public static final int ActionBar_subtitleTextStyle = 7;
		public static final int ActionBar_title = 0;
		public static final int ActionBar_titleTextStyle = 6;
		public static final int[] ActionMenuItemView = { 0x0101013f };
		public static final int ActionMenuItemView_android_minWidth = 0;
		public static final int[] ActionMenuView = { };
		public static final int[] ActionMode = { 0x7f010001, 0x7f01006e, 0x7f01006f, 0x7f010073, 0x7f010075, 0x7f010083 };
		public static final int ActionMode_background = 3;
		public static final int ActionMode_backgroundSplit = 4;
		public static final int ActionMode_closeItemLayout = 5;
		public static final int ActionMode_height = 0;
		public static final int ActionMode_subtitleTextStyle = 2;
		public static final int ActionMode_titleTextStyle = 1;
		public static final int[] ActivityChooserView = { 0x7f01009e, 0x7f01009f };
		public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
		public static final int ActivityChooserView_initialActivityCount = 0;
		public static final int[] AlertDialog = { 0x010100f2, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6 };
		public static final int AlertDialog_android_layout = 0;
		public static final int AlertDialog_buttonPanelSideLayout = 1;
		public static final int AlertDialog_listItemLayout = 5;
		public static final int AlertDialog_listLayout = 2;
		public static final int AlertDialog_multiChoiceItemLayout = 3;
		public static final int AlertDialog_singleChoiceItemLayout = 4;
		public static final int[] AppCompatTextView = { 0x01010034, 0x7f0100a0 };
		public static final int AppCompatTextView_android_textAppearance = 0;
		public static final int AppCompatTextView_textAllCaps = 1;
		public static final int[] DrawerArrowToggle = { 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 };
		public static final int DrawerArrowToggle_barSize = 6;
		public static final int DrawerArrowToggle_color = 0;
		public static final int DrawerArrowToggle_drawableSize = 2;
		public static final int DrawerArrowToggle_gapBetweenBars = 3;
		public static final int DrawerArrowToggle_middleBarArrowSize = 5;
		public static final int DrawerArrowToggle_spinBars = 1;
		public static final int DrawerArrowToggle_thickness = 7;
		public static final int DrawerArrowToggle_topBottomBarArrowSize = 4;
		public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010072, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3 };
		public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
		public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
		public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
		public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
		public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
		public static final int LinearLayoutCompat_android_baselineAligned = 2;
		public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
		public static final int LinearLayoutCompat_android_gravity = 0;
		public static final int LinearLayoutCompat_android_orientation = 1;
		public static final int LinearLayoutCompat_android_weightSum = 4;
		public static final int LinearLayoutCompat_divider = 5;
		public static final int LinearLayoutCompat_dividerPadding = 8;
		public static final int LinearLayoutCompat_measureWithLargestChild = 6;
		public static final int LinearLayoutCompat_showDividers = 7;
		public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
		public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
		public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
		public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
		public static final int MenuGroup_android_checkableBehavior = 5;
		public static final int MenuGroup_android_enabled = 0;
		public static final int MenuGroup_android_id = 1;
		public static final int MenuGroup_android_menuCategory = 3;
		public static final int MenuGroup_android_orderInCategory = 4;
		public static final int MenuGroup_android_visible = 2;
		public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d };
		public static final int MenuItem_actionLayout = 14;
		public static final int MenuItem_actionProviderClass = 16;
		public static final int MenuItem_actionViewClass = 15;
		public static final int MenuItem_android_alphabeticShortcut = 9;
		public static final int MenuItem_android_checkable = 11;
		public static final int MenuItem_android_checked = 3;
		public static final int MenuItem_android_enabled = 1;
		public static final int MenuItem_android_icon = 0;
		public static final int MenuItem_android_id = 2;
		public static final int MenuItem_android_menuCategory = 5;
		public static final int MenuItem_android_numericShortcut = 10;
		public static final int MenuItem_android_onClick = 12;
		public static final int MenuItem_android_orderInCategory = 6;
		public static final int MenuItem_android_title = 7;
		public static final int MenuItem_android_titleCondensed = 8;
		public static final int MenuItem_android_visible = 4;
		public static final int MenuItem_showAsAction = 13;
		public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010089 };
		public static final int MenuView_android_headerBackground = 4;
		public static final int MenuView_android_horizontalDivider = 2;
		public static final int MenuView_android_itemBackground = 5;
		public static final int MenuView_android_itemIconDisabledAlpha = 6;
		public static final int MenuView_android_itemTextAppearance = 1;
		public static final int MenuView_android_verticalDivider = 3;
		public static final int MenuView_android_windowAnimationStyle = 0;
		public static final int MenuView_preserveIconSpacing = 7;
		public static final int[] PopupWindow = { 0x01010176, 0x7f0100b1 };
		public static final int[] PopupWindowBackgroundState = { 0x7f0100b0 };
		public static final int PopupWindowBackgroundState_state_above_anchor = 0;
		public static final int PopupWindow_android_popupBackground = 0;
		public static final int PopupWindow_overlapAnchor = 1;
		public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d };
		public static final int SearchView_android_focusable = 0;
		public static final int SearchView_android_imeOptions = 3;
		public static final int SearchView_android_inputType = 2;
		public static final int SearchView_android_maxWidth = 1;
		public static final int SearchView_closeIcon = 7;
		public static final int SearchView_commitIcon = 12;
		public static final int SearchView_goIcon = 8;
		public static final int SearchView_iconifiedByDefault = 5;
		public static final int SearchView_layout = 4;
		public static final int SearchView_queryBackground = 14;
		public static final int SearchView_queryHint = 6;
		public static final int SearchView_searchHintIcon = 10;
		public static final int SearchView_searchIcon = 9;
		public static final int SearchView_submitBackground = 15;
		public static final int SearchView_suggestionRowLayout = 13;
		public static final int SearchView_voiceIcon = 11;
		public static final int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091 };
		public static final int Spinner_android_background = 1;
		public static final int Spinner_android_dropDownHorizontalOffset = 5;
		public static final int Spinner_android_dropDownSelector = 2;
		public static final int Spinner_android_dropDownVerticalOffset = 6;
		public static final int Spinner_android_dropDownWidth = 4;
		public static final int Spinner_android_gravity = 0;
		public static final int Spinner_android_popupBackground = 3;
		public static final int Spinner_disableChildrenWhenDisabled = 10;
		public static final int Spinner_popupPromptView = 9;
		public static final int Spinner_prompt = 7;
		public static final int Spinner_spinnerMode = 8;
		public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1 };
		public static final int SwitchCompat_android_textOff = 1;
		public static final int SwitchCompat_android_textOn = 0;
		public static final int SwitchCompat_android_thumb = 2;
		public static final int SwitchCompat_showText = 9;
		public static final int SwitchCompat_splitTrack = 8;
		public static final int SwitchCompat_switchMinWidth = 6;
		public static final int SwitchCompat_switchPadding = 7;
		public static final int SwitchCompat_switchTextAppearance = 5;
		public static final int SwitchCompat_thumbTextPadding = 4;
		public static final int SwitchCompat_track = 3;
		public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f0100a0 };
		public static final int TextAppearance_android_textColor = 3;
		public static final int TextAppearance_android_textSize = 0;
		public static final int TextAppearance_android_textStyle = 2;
		public static final int TextAppearance_android_typeface = 1;
		public static final int TextAppearance_textAllCaps = 4;
		public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a };
		public static final int Theme_actionBarDivider = 23;
		public static final int Theme_actionBarItemBackground = 24;
		public static final int Theme_actionBarPopupTheme = 17;
		public static final int Theme_actionBarSize = 22;
		public static final int Theme_actionBarSplitStyle = 19;
		public static final int Theme_actionBarStyle = 18;
		public static final int Theme_actionBarTabBarStyle = 13;
		public static final int Theme_actionBarTabStyle = 12;
		public static final int Theme_actionBarTabTextStyle = 14;
		public static final int Theme_actionBarTheme = 20;
		public static final int Theme_actionBarWidgetTheme = 21;
		public static final int Theme_actionButtonStyle = 49;
		public static final int Theme_actionDropDownStyle = 45;
		public static final int Theme_actionMenuTextAppearance = 25;
		public static final int Theme_actionMenuTextColor = 26;
		public static final int Theme_actionModeBackground = 29;
		public static final int Theme_actionModeCloseButtonStyle = 28;
		public static final int Theme_actionModeCloseDrawable = 31;
		public static final int Theme_actionModeCopyDrawable = 33;
		public static final int Theme_actionModeCutDrawable = 32;
		public static final int Theme_actionModeFindDrawable = 37;
		public static final int Theme_actionModePasteDrawable = 34;
		public static final int Theme_actionModePopupWindowStyle = 39;
		public static final int Theme_actionModeSelectAllDrawable = 35;
		public static final int Theme_actionModeShareDrawable = 36;
		public static final int Theme_actionModeSplitBackground = 30;
		public static final int Theme_actionModeStyle = 27;
		public static final int Theme_actionModeWebSearchDrawable = 38;
		public static final int Theme_actionOverflowButtonStyle = 15;
		public static final int Theme_actionOverflowMenuStyle = 16;
		public static final int Theme_activityChooserViewStyle = 56;
		public static final int Theme_alertDialogButtonGroupStyle = 89;
		public static final int Theme_alertDialogCenterButtons = 90;
		public static final int Theme_alertDialogStyle = 88;
		public static final int Theme_alertDialogTheme = 91;
		public static final int Theme_android_windowAnimationStyle = 1;
		public static final int Theme_android_windowIsFloating = 0;
		public static final int Theme_autoCompleteTextViewStyle = 96;
		public static final int Theme_buttonBarButtonStyle = 51;
		public static final int Theme_buttonBarNegativeButtonStyle = 94;
		public static final int Theme_buttonBarNeutralButtonStyle = 95;
		public static final int Theme_buttonBarPositiveButtonStyle = 93;
		public static final int Theme_buttonBarStyle = 50;
		public static final int Theme_buttonStyle = 97;
		public static final int Theme_buttonStyleSmall = 98;
		public static final int Theme_checkboxStyle = 99;
		public static final int Theme_checkedTextViewStyle = 100;
		public static final int Theme_colorAccent = 82;
		public static final int Theme_colorButtonNormal = 86;
		public static final int Theme_colorControlActivated = 84;
		public static final int Theme_colorControlHighlight = 85;
		public static final int Theme_colorControlNormal = 83;
		public static final int Theme_colorPrimary = 80;
		public static final int Theme_colorPrimaryDark = 81;
		public static final int Theme_colorSwitchThumbNormal = 87;
		public static final int Theme_dialogPreferredPadding = 43;
		public static final int Theme_dialogTheme = 42;
		public static final int Theme_dividerHorizontal = 55;
		public static final int Theme_dividerVertical = 54;
		public static final int Theme_dropDownListViewStyle = 72;
		public static final int Theme_dropdownListPreferredItemHeight = 46;
		public static final int Theme_editTextBackground = 62;
		public static final int Theme_editTextColor = 61;
		public static final int Theme_editTextStyle = 101;
		public static final int Theme_homeAsUpIndicator = 48;
		public static final int Theme_listChoiceBackgroundIndicator = 79;
		public static final int Theme_listDividerAlertDialog = 44;
		public static final int Theme_listPopupWindowStyle = 73;
		public static final int Theme_listPreferredItemHeight = 67;
		public static final int Theme_listPreferredItemHeightLarge = 69;
		public static final int Theme_listPreferredItemHeightSmall = 68;
		public static final int Theme_listPreferredItemPaddingLeft = 70;
		public static final int Theme_listPreferredItemPaddingRight = 71;
		public static final int Theme_panelBackground = 76;
		public static final int Theme_panelMenuListTheme = 78;
		public static final int Theme_panelMenuListWidth = 77;
		public static final int Theme_popupMenuStyle = 59;
		public static final int Theme_popupWindowStyle = 60;
		public static final int Theme_radioButtonStyle = 102;
		public static final int Theme_ratingBarStyle = 103;
		public static final int Theme_searchViewStyle = 66;
		public static final int Theme_selectableItemBackground = 52;
		public static final int Theme_selectableItemBackgroundBorderless = 53;
		public static final int Theme_spinnerDropDownItemStyle = 47;
		public static final int Theme_spinnerStyle = 104;
		public static final int Theme_switchStyle = 105;
		public static final int Theme_textAppearanceLargePopupMenu = 40;
		public static final int Theme_textAppearanceListItem = 74;
		public static final int Theme_textAppearanceListItemSmall = 75;
		public static final int Theme_textAppearanceSearchResultSubtitle = 64;
		public static final int Theme_textAppearanceSearchResultTitle = 63;
		public static final int Theme_textAppearanceSmallPopupMenu = 41;
		public static final int Theme_textColorAlertDialogListItem = 92;
		public static final int Theme_textColorSearchUrl = 65;
		public static final int Theme_toolbarNavigationButtonStyle = 58;
		public static final int Theme_toolbarStyle = 57;
		public static final int Theme_windowActionBar = 2;
		public static final int Theme_windowActionBarOverlay = 4;
		public static final int Theme_windowActionModeOverlay = 5;
		public static final int Theme_windowFixedHeightMajor = 9;
		public static final int Theme_windowFixedHeightMinor = 7;
		public static final int Theme_windowFixedWidthMajor = 6;
		public static final int Theme_windowFixedWidthMinor = 8;
		public static final int Theme_windowMinWidthMajor = 10;
		public static final int Theme_windowMinWidthMinor = 11;
		public static final int Theme_windowNoTitle = 3;
		public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010000, 0x7f01006d, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010082, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af };
		public static final int Toolbar_android_gravity = 0;
		public static final int Toolbar_android_minHeight = 1;
		public static final int Toolbar_collapseContentDescription = 18;
		public static final int Toolbar_collapseIcon = 17;
		public static final int Toolbar_contentInsetEnd = 5;
		public static final int Toolbar_contentInsetLeft = 6;
		public static final int Toolbar_contentInsetRight = 7;
		public static final int Toolbar_contentInsetStart = 4;
		public static final int Toolbar_maxButtonHeight = 16;
		public static final int Toolbar_navigationContentDescription = 20;
		public static final int Toolbar_navigationIcon = 19;
		public static final int Toolbar_popupTheme = 8;
		public static final int Toolbar_subtitle = 3;
		public static final int Toolbar_subtitleTextAppearance = 10;
		public static final int Toolbar_title = 2;
		public static final int Toolbar_titleMarginBottom = 15;
		public static final int Toolbar_titleMarginEnd = 13;
		public static final int Toolbar_titleMarginStart = 12;
		public static final int Toolbar_titleMarginTop = 14;
		public static final int Toolbar_titleMargins = 11;
		public static final int Toolbar_titleTextAppearance = 9;
		public static final int[] View = { 0x01010000, 0x010100da, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088 };
		public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
		public static final int ViewStubCompat_android_id = 0;
		public static final int ViewStubCompat_android_inflatedId = 2;
		public static final int ViewStubCompat_android_layout = 1;
		public static final int View_android_focusable = 1;
		public static final int View_android_theme = 0;
		public static final int View_backgroundTint = 5;
		public static final int View_backgroundTintMode = 6;
		public static final int View_paddingEnd = 3;
		public static final int View_paddingStart = 2;
		public static final int View_theme = 4;
	}
}


================================================
FILE: Sample/gen/com/sloop/fz3d/BuildConfig.java
================================================
/** Automatically generated file. DO NOT MODIFY */
package com.sloop.fz3d;

public final class BuildConfig {
    public final static boolean DEBUG = true;
}

================================================
FILE: Sample/gen/com/sloop/fz3d/R.java
================================================
/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.sloop.fz3d;

public final class R {
    public static final class anim {
        public static final int abc_fade_in=0x7f040000;
        public static final int abc_fade_out=0x7f040001;
        public static final int abc_grow_fade_in_from_bottom=0x7f040002;
        public static final int abc_popup_enter=0x7f040003;
        public static final int abc_popup_exit=0x7f040004;
        public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
        public static final int abc_slide_in_bottom=0x7f040006;
        public static final int abc_slide_in_top=0x7f040007;
        public static final int abc_slide_out_bottom=0x7f040008;
        public static final int abc_slide_out_top=0x7f040009;
    }
    public static final class attr {
        /**  Custom divider drawable to use for elements in the action bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarDivider=0x7f010018;
        /**  Custom item state list drawable background for action bar items. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarItemBackground=0x7f010019;
        /**  Reference to a theme that should be used to inflate popups
             shown by widgets in the action bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarPopupTheme=0x7f010012;
        /**  Size of the Action Bar, including the contextual
             bar used to present Action Modes. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
         */
        public static final int actionBarSize=0x7f010017;
        /**  Reference to a style for the split Action Bar. This style
             controls the split component that holds the menu/action
             buttons. actionBarStyle is still used for the primary
             bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarSplitStyle=0x7f010014;
        /**  Reference to a style for the Action Bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarStyle=0x7f010013;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTabBarStyle=0x7f01000e;
        /**  Default style for tabs within an action bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTabStyle=0x7f01000d;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTabTextStyle=0x7f01000f;
        /**  Reference to a theme that should be used to inflate the
             action bar. This will be inherited by any widget inflated
             into the action bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTheme=0x7f010015;
        /**  Reference to a theme that should be used to inflate widgets
             and layouts destined for the action bar. Most of the time
             this will be a reference to the current theme, but when
             the action bar has a significantly different contrast
             profile than the rest of the activity the difference
             can become important. If this is set to @null the current
             theme will be used.
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarWidgetTheme=0x7f010016;
        /**  Default action button style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionButtonStyle=0x7f010032;
        /**  Default ActionBar dropdown style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionDropDownStyle=0x7f01002e;
        /**  An optional layout to be used as an action view.
             See {@link android.view.MenuItem#setActionView(android.view.View)}
             for more info. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionLayout=0x7f01008b;
        /**  TextAppearance style that will be applied to text that
             appears within action menu items. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionMenuTextAppearance=0x7f01001a;
        /**  Color for text that appears within action menu items. 
 Color for text that appears within action menu items. 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int actionMenuTextColor=0x7f01001b;
        /**  Background drawable to use for action mode UI 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeBackground=0x7f01001e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCloseButtonStyle=0x7f01001d;
        /**  Drawable to use for the close action mode button 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCloseDrawable=0x7f010020;
        /**  Drawable to use for the Copy action button in Contextual Action Bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCopyDrawable=0x7f010022;
        /**  Drawable to use for the Cut action button in Contextual Action Bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCutDrawable=0x7f010021;
        /**  Drawable to use for the Find action button in WebView selection action modes 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeFindDrawable=0x7f010026;
        /**  Drawable to use for the Paste action button in Contextual Action Bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModePasteDrawable=0x7f010023;
        /**  PopupWindow style to use for action modes when showing as a window overlay. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModePopupWindowStyle=0x7f010028;
        /**  Drawable to use for the Select all action button in Contextual Action Bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeSelectAllDrawable=0x7f010024;
        /**  Drawable to use for the Share action button in WebView selection action modes 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeShareDrawable=0x7f010025;
        /**  Background drawable to use for action mode UI in the lower split bar 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeSplitBackground=0x7f01001f;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeStyle=0x7f01001c;
        /**  Drawable to use for the Web Search action button in WebView selection action modes 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeWebSearchDrawable=0x7f010027;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionOverflowButtonStyle=0x7f010010;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionOverflowMenuStyle=0x7f010011;
        /**  The name of an optional ActionProvider class to instantiate an action view
             and perform operations such as default action for that menu item.
             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
             for more info. 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int actionProviderClass=0x7f01008d;
        /**  The name of an optional View class to instantiate and use as an
             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
             for more info. 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int actionViewClass=0x7f01008c;
        /**  Default ActivityChooserView style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int activityChooserViewStyle=0x7f010039;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int alertDialogButtonGroupStyle=0x7f01005a;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int alertDialogCenterButtons=0x7f01005b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int alertDialogStyle=0x7f010059;
        /**  Theme to use for alert dialogs spawned from this theme. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int alertDialogTheme=0x7f01005c;
        /**  Default AutoCompleteTextView style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int autoCompleteTextViewStyle=0x7f010061;
        /**  Specifies a background drawable for the action bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int background=0x7f010073;
        /**  Specifies a background drawable for the bottom component of a split action bar. 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int backgroundSplit=0x7f010075;
        /**  Specifies a background drawable for a second stacked row of the action bar. 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int backgroundStacked=0x7f010074;
        /**  Tint to apply to the background. 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int backgroundTint=0x7f010087;
        /**  Blending mode used to apply the background tint. 
         <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td> The tint is drawn on top of the drawable.
                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>
<tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s
                 color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha
                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>
<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of
                 the tint. [Sa * Da, Sc * Dc] </td></tr>
<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>
</table>
         */
        public static final int backgroundTintMode=0x7f010088;
        /**  The size of the bars when they are parallel to each other 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int barSize=0x7f0100b8;
        /**  Style for buttons within button bars 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarButtonStyle=0x7f010034;
        /**  Style for the "negative" buttons within button bars 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarNegativeButtonStyle=0x7f01005f;
        /**  Style for the "neutral" buttons within button bars 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarNeutralButtonStyle=0x7f010060;
        /**  Style for the "positive" buttons within button bars 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarPositiveButtonStyle=0x7f01005e;
        /**  Style for button bars 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarStyle=0x7f010033;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonPanelSideLayout=0x7f0100c2;
        /**  Normal Button style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonStyle=0x7f010062;
        /**  Small Button style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonStyleSmall=0x7f010063;
        /**  Default Checkbox style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int checkboxStyle=0x7f010064;
        /**  Default CheckedTextView style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int checkedTextViewStyle=0x7f010065;
        /**  Close button icon 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int closeIcon=0x7f010095;
        /**  Specifies a layout to use for the "close" item at the starting edge. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int closeItemLayout=0x7f010083;
        /**  Text to set as the content description for the collapse button. 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int collapseContentDescription=0x7f0100ad;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int collapseIcon=0x7f0100ac;
        /**  The drawing color for the bars 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int color=0x7f0100b2;
        /**  Bright complement to the primary branding color. By default, this is the color applied
             to framework controls (via colorControlActivated). 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorAccent=0x7f010053;
        /**  The color applied to framework buttons in their normal state. 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorButtonNormal=0x7f010057;
        /**  The color applied to framework controls in their activated (ex. checked) state. 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorControlActivated=0x7f010055;
        /**  The color applied to framework control highlights (ex. ripples, list selectors). 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorControlHighlight=0x7f010056;
        /**  The color applied to framework controls in their normal state. 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorControlNormal=0x7f010054;
        /**  The primary branding color for the app. By default, this is the color applied to the
             action bar background. 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorPrimary=0x7f010051;
        /**  Dark variant of the primary branding color. By default, this is the color applied to
             the status bar (via statusBarColor) and navigation bar (via navigationBarColor). 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorPrimaryDark=0x7f010052;
        /**  The color applied to framework switch thumbs in their normal state. 
         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int colorSwitchThumbNormal=0x7f010058;
        /**  Commit icon shown in the query suggestion row 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int commitIcon=0x7f01009a;
        /**  Minimum inset for content views within a bar. Navigation buttons and
             menu views are excepted. Only valid for some themes and configurations. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int contentInsetEnd=0x7f01007e;
        /**  Minimum inset for content views within a bar. Navigation buttons and
             menu views are excepted. Only valid for some themes and configurations. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int contentInsetLeft=0x7f01007f;
        /**  Minimum inset for content views within a bar. Navigation buttons and
             menu views are excepted. Only valid for some themes and configurations. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int contentInsetRight=0x7f010080;
        /**  Minimum inset for content views within a bar. Navigation buttons and
             menu views are excepted. Only valid for some themes and configurations. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int contentInsetStart=0x7f01007d;
        /**  Specifies a layout for custom navigation. Overrides navigationMode. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int customNavigationLayout=0x7f010076;
        /**  Preferred padding for dialog content. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int dialogPreferredPadding=0x7f01002c;
        /**  Theme to use for dialogs spawned from this theme. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dialogTheme=0x7f01002b;
        /**  Whether this spinner should mark child views as enabled/disabled when
             the spinner itself is enabled/disabled. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int disableChildrenWhenDisabled=0x7f010091;
        /**  Options affecting how the action bar is displayed. 
         <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
         */
        public static final int displayOptions=0x7f01006c;
        /**  Specifies the drawable used for item dividers. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int divider=0x7f010072;
        /**  A drawable that may be used as a horizontal divider between visual elements. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dividerHorizontal=0x7f010038;
        /**  Size of padding on either end of a divider. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int dividerPadding=0x7f0100a3;
        /**  A drawable that may be used as a vertical divider between visual elements. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dividerVertical=0x7f010037;
        /**  The total size of the drawable 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int drawableSize=0x7f0100b4;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int drawerArrowStyle=0x7f0100ba;
        /**  ListPopupWindow compatibility 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dropDownListViewStyle=0x7f010049;
        /**  The preferred item height for dropdown lists. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int dropdownListPreferredItemHeight=0x7f01002f;
        /**  EditText background drawable. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int editTextBackground=0x7f01003f;
        /**  EditText text foreground color. 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int editTextColor=0x7f01003e;
        /**  Default EditText style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int editTextStyle=0x7f010066;
        /**  Elevation for the action bar itself 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int elevation=0x7f010081;
        /**  The drawable to show in the button for expanding the activities overflow popup.
             <strong>Note:</strong> Clients would like to set this drawable
             as a clue about the action the chosen activity will perform. For
             example, if share activity is to be chosen the drawable should
             give a clue that sharing is to be performed.
         
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int expandActivityOverflowButtonDrawable=0x7f01009f;
        /**  The max gap between the bars when they are parallel to each other 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int gapBetweenBars=0x7f0100b5;
        /**  Go button icon 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int goIcon=0x7f010096;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int height=0x7f010001;
        /**  Set true to hide the action bar on a vertical nested scroll of content. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int hideOnContentScroll=0x7f01007c;
        /**  Specifies a drawable to use for the 'home as up' indicator. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int homeAsUpIndicator=0x7f010031;
        /**  Specifies a layout to use for the "home" section of the action bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int homeLayout=0x7f010077;
        /**  Specifies the drawable used for the application icon. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int icon=0x7f010070;
        /**  The default state of the SearchView. If true, it will be iconified when not in
             use and expanded when clicked. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int iconifiedByDefault=0x7f010093;
        /**  Specifies a style resource to use for an indeterminate progress spinner. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int indeterminateProgressStyle=0x7f010079;
        /**  The maximal number of items initially shown in the activity list. 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int initialActivityCount=0x7f01009e;
        /**  Specifies whether the theme is light, otherwise it is dark. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int isLightTheme=0x7f010002;
        /**  Specifies padding that should be applied to the left and right sides of
             system-provided items in the bar. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int itemPadding=0x7f01007b;
        /**  The layout to use for the search view. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int layout=0x7f010092;
        /**  Drawable used as a background for selected list items. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listChoiceBackgroundIndicator=0x7f010050;
        /**  The list divider used in alert dialogs. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listDividerAlertDialog=0x7f01002d;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listItemLayout=0x7f0100c6;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listLayout=0x7f0100c3;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listPopupWindowStyle=0x7f01004a;
        /**  The preferred list item height. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemHeight=0x7f010044;
        /**  A larger, more robust list item height. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemHeightLarge=0x7f010046;
        /**  A smaller, sleeker list item height. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemHeightSmall=0x7f010045;
        /**  The preferred padding along the left edge of list items. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemPaddingLeft=0x7f010047;
        /**  The preferred padding along the right edge of list items. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemPaddingRight=0x7f010048;
        /**  Specifies the drawable used for the application logo. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int logo=0x7f010071;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int maxButtonHeight=0x7f0100ab;
        /**  When set to true, all children with a weight will be considered having
             the minimum size of the largest child. If false, all children are
             measured normally. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int measureWithLargestChild=0x7f0100a1;
        /**  The size of the middle bar when top and bottom bars merge into middle bar to form an arrow 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int middleBarArrowSize=0x7f0100b7;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int multiChoiceItemLayout=0x7f0100c4;
        /**  Text to set as the content description for the navigation button
             located at the start of the toolbar. 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int navigationContentDescription=0x7f0100af;
        /**  Icon drawable to use for the navigation button located at
             the start of the toolbar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int navigationIcon=0x7f0100ae;
        /**  The type of navigation to use. 
         <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
         */
        public static final int navigationMode=0x7f01006b;
        /**  Whether the popup window should overlap its anchor view. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int overlapAnchor=0x7f0100b1;
        /**  Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int paddingEnd=0x7f010085;
        /**  Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int paddingStart=0x7f010084;
        /**  The background of a panel when it is inset from the left and right edges of the screen. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int panelBackground=0x7f01004d;
        /**  Default Panel Menu style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int panelMenuListTheme=0x7f01004f;
        /**  Default Panel Menu width. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int panelMenuListWidth=0x7f01004e;
        /**  Default PopupMenu style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int popupMenuStyle=0x7f01003c;
        /**  Reference to a layout to use for displaying a prompt in the dropdown for
             spinnerMode="dropdown". This layout must contain a TextView with the id
             {@code @android:id/text1} to be populated with the prompt text. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int popupPromptView=0x7f010090;
        /**  Reference to a theme that should be used to inflate popups
             shown by widgets in the action bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int popupTheme=0x7f010082;
        /**  Default PopupWindow style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int popupWindowStyle=0x7f01003d;
        /**  Whether space should be reserved in layout when an icon is missing. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int preserveIconSpacing=0x7f010089;
        /**  Specifies the horizontal padding on either end for an embedded progress bar. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int progressBarPadding=0x7f01007a;
        /**  Specifies a style resource to use for an embedded progress bar. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int progressBarStyle=0x7f010078;
        /**  The prompt to display when the spinner's dialog is shown. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int prompt=0x7f01008e;
        /**  Background for the section containing the search query 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int queryBackground=0x7f01009c;
        /**  An optional query hint string to be displayed in the empty query field. 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int queryHint=0x7f010094;
        /**  Default RadioButton style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int radioButtonStyle=0x7f010067;
        /**  Default RatingBar style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int ratingBarStyle=0x7f010068;
        /**  Search icon displayed as a text field hint 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchHintIcon=0x7f010098;
        /**  Search icon 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchIcon=0x7f010097;
        /**  Style for the search query widget. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewStyle=0x7f010043;
        /**  A style that may be applied to buttons or other selectable items
             that should react to pressed and focus states, but that do not
             have a clear visual border along the edges. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int selectableItemBackground=0x7f010035;
        /**  Background drawable for borderless standalone items that need focus/pressed states. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int selectableItemBackgroundBorderless=0x7f010036;
        /**  How this item should display in the Action Bar, if present. 
         <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td> Never show this item in an action bar, show it in the overflow menu instead.
                 Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
                 by the system. Favor this option over "always" where possible.
                 Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
                 the system's limits of how much stuff to put there. This may make
                 your action bar look bad on some screens. In most cases you should
                 use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
                 label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
                 item. When expanded, the action view takes over a
                 larger segment of its container. </td></tr>
</table>
         */
        public static final int showAsAction=0x7f01008a;
        /**  Setting for which dividers to show. 
         <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
         */
        public static final int showDividers=0x7f0100a2;
        /**  Whether to draw on/off text. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int showText=0x7f0100c1;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int singleChoiceItemLayout=0x7f0100c5;
        /**  Whether bars should rotate or not during transition 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int spinBars=0x7f0100b3;
        /**  Default Spinner style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int spinnerDropDownItemStyle=0x7f010030;
        /**  Display mode for spinner options. 
         <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
                 anchored to the spinner widget itself. </td></tr>
</table>
         */
        public static final int spinnerMode=0x7f01008f;
        /**  Default Spinner style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int spinnerStyle=0x7f010069;
        /**  Whether to split the track and leave a gap for the thumb drawable. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int splitTrack=0x7f0100c0;
        /**  State identifier indicating the popup will be above the anchor. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int state_above_anchor=0x7f0100b0;
        /**  Background for the section containing the action (e.g. voice search) 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int submitBackground=0x7f01009d;
        /**  Specifies subtitle text used for navigationMode="normal" 
         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int subtitle=0x7f01006d;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int subtitleTextAppearance=0x7f0100a5;
        /**  Specifies a style to use for subtitle text. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int subtitleTextStyle=0x7f01006f;
        /**  Layout for query suggestion rows 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int suggestionRowLayout=0x7f01009b;
        /**  Minimum width for the switch component 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int switchMinWidth=0x7f0100be;
        /**  Minimum space between the switch and caption text 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int switchPadding=0x7f0100bf;
        /**  Default style for the Switch widget. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int switchStyle=0x7f01006a;
        /**  TextAppearance style for text displayed on the switch thumb. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int switchTextAppearance=0x7f0100bd;
        /**  Present the text in ALL CAPS. This may use a small-caps form when available. 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
         */
        public static final int textAllCaps=0x7f0100a0;
        /**  Text color, typeface, size, and style for the text inside of a popup menu. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceLargePopupMenu=0x7f010029;
        /**  The preferred TextAppearance for the primary text of list items. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceListItem=0x7f01004b;
        /**  The preferred TextAppearance for the primary text of small list items. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceListItemSmall=0x7f01004c;
        /**  Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceSearchResultSubtitle=0x7f010041;
        /**  Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceSearchResultTitle=0x7f010040;
        /**  Text color, typeface, size, and style for small text inside of a popup menu. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceSmallPopupMenu=0x7f01002a;
        /**  Color of list item text in alert dialogs. 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int textColorAlertDialogListItem=0x7f01005d;
        /**  Text color for urls in search suggestions, used by things like global search 
         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int textColorSearchUrl=0x7f010042;
        /**  Deprecated. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int theme=0x7f010086;
        /**  The thickness (stroke size) for the bar paint 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int thickness=0x7f0100b9;
        /**  Amount of padding on either side of text within the switch thumb. 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int thumbTextPadding=0x7f0100bc;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int title=0x7f010000;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int titleMarginBottom=0x7f0100aa;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int titleMarginEnd=0x7f0100a8;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int titleMarginStart=0x7f0100a7;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int titleMarginTop=0x7f0100a9;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int titleMargins=0x7f0100a6;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int titleTextAppearance=0x7f0100a4;
        /**  Specifies a style to use for title text. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int titleTextStyle=0x7f01006e;
        /**  Default Toolar NavigationButtonStyle 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int toolbarNavigationButtonStyle=0x7f01003b;
        /**  Default Toolbar style. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int toolbarStyle=0x7f01003a;
        /**  The size of the top and bottom bars when they merge to the middle bar to form an arrow 
         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int topBottomBarArrowSize=0x7f0100b6;
        /**  Drawable to use as the "track" that the switch thumb slides within. 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int track=0x7f0100bb;
        /**  Voice button icon 
         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int voiceIcon=0x7f010099;
        /**  Flag indicating whether this window should have an Action Bar
             in place of the usual title bar. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowActionBar=0x7f010003;
        /**  Flag indicating whether this window's Action Bar should overlay
             application content. Does nothing if the window would not
             have an Action Bar. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowActionBarOverlay=0x7f010005;
        /**  Flag indicating whether action modes should overlay window content
             when there is not reserved space for their UI (such as an Action Bar). 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowActionModeOverlay=0x7f010006;
        /**  A fixed height for the window along the major axis of the screen,
             that is, when in portrait. Can be either an absolute dimension
             or a fraction of the screen size in that dimension. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedHeightMajor=0x7f01000a;
        /**  A fixed height for the window along the minor axis of the screen,
             that is, when in landscape. Can be either an absolute dimension
             or a fraction of the screen size in that dimension. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedHeightMinor=0x7f010008;
        /**  A fixed width for the window along the major axis of the screen,
             that is, when in landscape. Can be either an absolute dimension
             or a fraction of the screen size in that dimension. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedWidthMajor=0x7f010007;
        /**  A fixed width for the window along the minor axis of the screen,
             that is, when in portrait. Can be either an absolute dimension
             or a fraction of the screen size in that dimension. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedWidthMinor=0x7f010009;
        /**  The minimum width the window is allowed to be, along the major
             axis of the screen.  That is, when in landscape.  Can be either
             an absolute dimension or a fraction of the screen size in that
             dimension. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowMinWidthMajor=0x7f01000b;
        /**  The minimum width the window is allowed to be, along the minor
             axis of the screen.  That is, when in portrait.  Can be either
             an absolute dimension or a fraction of the screen size in that
             dimension. 
         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowMinWidthMinor=0x7f01000c;
        /**  Flag indicating whether there should be no title on this window. 
         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowNoTitle=0x7f010004;
    }
    public static final class bool {
        public static final int abc_action_bar_embed_tabs=0x7f050000;
        public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050001;
        public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050002;
        /**  Whether action menu items should be displayed in ALLCAPS or not.
         Defaults to true. If this is not appropriate for specific locales
         it should be disabled in that locale's resources. 
         */
        public static final int abc_config_actionMenuItemAllCaps=0x7f050005;
        /**  Whether action menu items should obey the "withText" showAsAction
    flag. This may be set to false for situations where space is
    extremely limited. 
 Whether action menu items should obey the "withText" showAsAction.
         This may be set to false for situations where space is
         extremely limited. 
         */
        public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050004;
        public static final int abc_config_closeDialogWhenTouchOutside=0x7f050006;
        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050003;
    }
    public static final class color {
        public static final int abc_background_cache_hint_selector_material_dark=0x7f060033;
        public static final int abc_background_cache_hint_selector_material_light=0x7f060034;
        public static final int abc_input_method_navigation_guard=0x7f060003;
        public static final int abc_primary_text_disable_only_material_dark=0x7f060035;
        public static final int abc_primary_text_disable_only_material_light=0x7f060036;
        public static final int abc_primary_text_material_dark=0x7f060037;
        public static final int abc_primary_text_material_light=0x7f060038;
        public static final int abc_search_url_text=0x7f060039;
        public static final int abc_search_url_text_normal=0x7f060000;
        public static final int abc_search_url_text_pressed=0x7f060002;
        public static final int abc_search_url_text_selected=0x7f060001;
        public static final int abc_secondary_text_material_dark=0x7f06003a;
        public static final int abc_secondary_text_material_light=0x7f06003b;
        public static final int accent_material_dark=0x7f06000f;
        public static final int accent_material_light=0x7f06000e;
        public static final int background
Download .txt
gitextract_5_p9d6rk/

├── .gitignore
├── APK/
│   └── 3D翻转.apk
├── Code/
│   └── com/
│       └── sloop/
│           └── animation/
│               └── Rotate3dAnimation.java
├── LICENSE
├── README.md
└── Sample/
    ├── .classpath
    ├── .project
    ├── .settings/
    │   └── org.eclipse.jdt.core.prefs
    ├── AndroidManifest.xml
    ├── gen/
    │   ├── android/
    │   │   └── support/
    │   │       └── v7/
    │   │           └── appcompat/
    │   │               └── R.java
    │   └── com/
    │       └── sloop/
    │           └── fz3d/
    │               ├── BuildConfig.java
    │               └── R.java
    ├── proguard-project.txt
    ├── project.properties
    ├── res/
    │   ├── layout/
    │   │   └── activity_main.xml
    │   ├── menu/
    │   │   └── main.xml
    │   ├── values/
    │   │   ├── dimens.xml
    │   │   ├── strings.xml
    │   │   └── styles.xml
    │   ├── values-v11/
    │   │   └── styles.xml
    │   ├── values-v14/
    │   │   └── styles.xml
    │   └── values-w820dp/
    │       └── dimens.xml
    └── src/
        └── com/
            └── sloop/
                ├── animation/
                │   └── Rotate3dAnimation.java
                └── fz3d/
                    └── MainActivity.java
Download .txt
SYMBOL INDEX (39 symbols across 6 files)

FILE: Code/com/sloop/animation/Rotate3dAnimation.java
  class Rotate3dAnimation (line 27) | public class Rotate3dAnimation extends Animation {
    method Rotate3dAnimation (line 54) | public Rotate3dAnimation(ContextThemeWrapper context, float fromDegree...
    method initialize (line 67) | @Override
    method applyTransformation (line 75) | @Override

FILE: Sample/gen/android/support/v7/appcompat/R.java
  class R (line 9) | public final class R {
    class anim (line 10) | public static final class anim {
    class attr (line 22) | public static final class attr {
    class bool (line 223) | public static final class bool {
    class color (line 232) | public static final class color {
    class dimen (line 296) | public static final class dimen {
    class drawable (line 364) | public static final class drawable {
    class id (line 425) | public static final class id {
    class integer (line 506) | public static final class integer {
    class layout (line 511) | public static final class layout {
    class string (line 542) | public static final class string {
    class style (line 561) | public static final class style {
    class styleable (line 846) | public static final class styleable {

FILE: Sample/gen/com/sloop/fz3d/BuildConfig.java
  class BuildConfig (line 4) | public final class BuildConfig {

FILE: Sample/gen/com/sloop/fz3d/R.java
  class R (line 10) | public final class R {
    class anim (line 11) | public static final class anim {
    class attr (line 23) | public static final class attr {
    class bool (line 1558) | public static final class bool {
    class color (line 1578) | public static final class color {
    class dimen (line 1654) | public static final class dimen {
    class drawable (line 1844) | public static final class drawable {
    class id (line 1907) | public static final class id {
    class integer (line 1990) | public static final class integer {
    class layout (line 2019) | public static final class layout {
    class menu (line 2051) | public static final class menu {
    class string (line 2054) | public static final class string {
    class style (line 2118) | public static final class style {
    class styleable (line 2523) | public static final class styleable {

FILE: Sample/src/com/sloop/animation/Rotate3dAnimation.java
  class Rotate3dAnimation (line 27) | public class Rotate3dAnimation extends Animation {
    method Rotate3dAnimation (line 54) | public Rotate3dAnimation(ContextThemeWrapper context, float fromDegree...
    method initialize (line 67) | @Override
    method applyTransformation (line 75) | @Override

FILE: Sample/src/com/sloop/fz3d/MainActivity.java
  class MainActivity (line 12) | public class MainActivity extends Activity {
    method onCreate (line 16) | @Override
    method applyRotation (line 32) | private void applyRotation(float start, float end) {
Condensed preview — 24 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (524K chars).
[
  {
    "path": ".gitignore",
    "chars": 189,
    "preview": "*.class\n\n# Mobile Tools for Java (J2ME)\n.mtj.tmp/\n\n# Package Files #\n*.jar\n*.war\n*.ear\n\n# virtual machine crash logs, se"
  },
  {
    "path": "Code/com/sloop/animation/Rotate3dAnimation.java",
    "chars": 3159,
    "preview": "/**\n * @Title: Rotate3dAnimation.java\n * @Package com.sloop.animation\n * Copyright: Copyright (c) 2015\n * \n * @author sl"
  },
  {
    "path": "LICENSE",
    "chars": 11515,
    "preview": "Eclipse Public License - v 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC\nLICENSE (\"AG"
  },
  {
    "path": "README.md",
    "chars": 1627,
    "preview": "# <img src=\"http://ww4.sinaimg.cn/large/005Xtdi2jw1f2jx68ugicj3074074jrm.jpg\" width=36 /> 安卓3D翻转效果  \n\n## 作者微博:  [@GcsSlo"
  },
  {
    "path": "Sample/.classpath",
    "chars": 466,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<classpath>\n\t<classpathentry kind=\"src\" path=\"src\"/>\n\t<classpathentry kind=\"src\" "
  },
  {
    "path": "Sample/.project",
    "chars": 815,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<projectDescription>\n\t<name>Sample__3D翻转</name>\n\t<comment></comment>\n\t<projects>\n"
  },
  {
    "path": "Sample/.settings/org.eclipse.jdt.core.prefs",
    "chars": 173,
    "preview": "eclipse.preferences.version=1\norg.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6\norg.eclipse.jdt.core.compiler.com"
  },
  {
    "path": "Sample/AndroidManifest.xml",
    "chars": 891,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package="
  },
  {
    "path": "Sample/gen/android/support/v7/appcompat/R.java",
    "chars": 78293,
    "preview": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resour"
  },
  {
    "path": "Sample/gen/com/sloop/fz3d/BuildConfig.java",
    "chars": 156,
    "preview": "/** Automatically generated file. DO NOT MODIFY */\npackage com.sloop.fz3d;\n\npublic final class BuildConfig {\n    public "
  },
  {
    "path": "Sample/gen/com/sloop/fz3d/R.java",
    "chars": 399737,
    "preview": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resour"
  },
  {
    "path": "Sample/proguard-project.txt",
    "chars": 781,
    "preview": "# To enable ProGuard in your project, edit project.properties\n# to define the proguard.config property as described in t"
  },
  {
    "path": "Sample/project.properties",
    "chars": 607,
    "preview": "# This file is automatically generated by Android Tools.\n# Do not modify this file -- YOUR CHANGES WILL BE ERASED!\n#\n# T"
  },
  {
    "path": "Sample/res/layout/activity_main.xml",
    "chars": 512,
    "preview": "<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/t"
  },
  {
    "path": "Sample/res/menu/main.xml",
    "chars": 405,
    "preview": "<menu xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\""
  },
  {
    "path": "Sample/res/values/dimens.xml",
    "chars": 213,
    "preview": "<resources>\n\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"activity_horizonta"
  },
  {
    "path": "Sample/res/values/strings.xml",
    "chars": 221,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">Sloop__3D翻转</string>\n    <string name=\"h"
  },
  {
    "path": "Sample/res/values/styles.xml",
    "chars": 682,
    "preview": "<resources>\n\n    <!--\n        Base application theme, dependent on API level. This theme is replaced\n        by AppBaseT"
  },
  {
    "path": "Sample/res/values-v11/styles.xml",
    "chars": 321,
    "preview": "<resources>\n\n    <!--\n        Base application theme for API 11+. This theme completely replaces\n        AppBaseTheme fr"
  },
  {
    "path": "Sample/res/values-v14/styles.xml",
    "chars": 378,
    "preview": "<resources>\n\n    <!--\n        Base application theme for API 14+. This theme completely replaces\n        AppBaseTheme fr"
  },
  {
    "path": "Sample/res/values-w820dp/dimens.xml",
    "chars": 373,
    "preview": "<resources>\n\n    <!--\n         Example customization of dimensions originally defined in res/values/dimens.xml\n         "
  },
  {
    "path": "Sample/src/com/sloop/animation/Rotate3dAnimation.java",
    "chars": 3158,
    "preview": "/**\n * @Title: Rotate3dAnimation.java\n * @Package com.sloop.animation\n * Copyright: Copyright (c) 2015\n * \n * @author sl"
  },
  {
    "path": "Sample/src/com/sloop/fz3d/MainActivity.java",
    "chars": 1530,
    "preview": "package com.sloop.fz3d;\n\nimport android.app.Activity;\nimport android.os.Bundle;\nimport android.view.View;\nimport android"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the GcsSloop/Rotate3dAnimation GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 24 files (494.3 KB), approximately 141.3k tokens, and a symbol index with 39 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!