[
  {
    "path": ".gitignore",
    "content": "*.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, see http://www.java.com/en/download/help/error_hotspot.xml\nhs_err_pid*\n"
  },
  {
    "path": "Code/com/sloop/animation/Rotate3dAnimation.java",
    "content": "/**\n * @Title: Rotate3dAnimation.java\n * @Package com.sloop.animation\n * Copyright: Copyright (c) 2015\n * \n * @author sloop\n * @date 2015年3月10日 上午11:20:10\n * @version V1.0\n */\n\npackage com.sloop.animation;\n\nimport android.graphics.Camera;\nimport android.graphics.Matrix;\nimport android.util.Log;\nimport android.view.ContextThemeWrapper;\nimport android.view.animation.Animation;\nimport android.view.animation.Transformation;\n\n/**\n * 3D翻转特效\n * @ClassName: Rotate3dAnimation\n * @author sloop\n * @date 2015年3月10日 上午11:20:10\n */\n\npublic class Rotate3dAnimation extends Animation {\n\n\t// 开始角度\n\tprivate final float mFromDegrees;\n\t// 结束角度\n\tprivate final float mToDegrees;\n\t// 中心点\n\tprivate final float mCenterX;\n\tprivate final float mCenterY;\n\tprivate final float mDepthZ;\t//深度\n\t// 是否需要扭曲\n\tprivate final boolean mReverse;\n\t// 摄像头\n\tprivate Camera mCamera;\n\tContextThemeWrapper context;\n\t//新增--像素比例（默认值为1）\n\tfloat scale = 1;\n\n\t/**\n\t * 创建一个新的实例 Rotate3dAnimation. \n\t * @param fromDegrees\t开始角度\n\t * @param toDegrees\t\t结束角度\n\t * @param centerX\t\t中心点x坐标\n\t * @param centerY\t\t中心点y坐标\n\t * @param depthZ\t\t深度\n\t * @param reverse\t\t是否扭曲\n\t */\n\tpublic Rotate3dAnimation(ContextThemeWrapper context, float fromDegrees, float toDegrees, float centerX, float centerY, float depthZ, boolean reverse) {\n\t\tthis.context = context;\n\t\tmFromDegrees = fromDegrees;\n\t\tmToDegrees = toDegrees;\n\t\tmCenterX = centerX;\n\t\tmCenterY = centerY;\n\t\tmDepthZ = depthZ;\n\t\tmReverse = reverse;\n\t\t//获取手机像素比 （即dp与px的比例）\n\t\tscale = context.getResources().getDisplayMetrics().density;\n\t\tLog.e(\"scale\",\"\"+scale);\n\t}\n\n\t@Override\n\tpublic void initialize(int width, int height, int parentWidth, int parentHeight) {\n\t\t\n\t\tsuper.initialize(width, height, parentWidth, parentHeight);\n\t\tmCamera = new Camera();\n\t}\n\n\t// 生成Transformation\n\t@Override\n\tprotected void applyTransformation(float interpolatedTime, Transformation t) {\n\t\tfinal float fromDegrees = mFromDegrees;\n\t\t// 生成中间角度\n\t\tfloat degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);\n\n\t\t\n\t\tfinal float centerX = mCenterX;\n\t\tfinal float centerY = mCenterY;\n\t\tfinal Camera camera = mCamera;\n\n\t\tfinal Matrix matrix = t.getMatrix();\n\n\t\tcamera.save();\n\t\tif (mReverse) {\n\t\t\tcamera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);\n\t\t} else {\n\t\t\tcamera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));\n\t\t}\n\t\tcamera.rotateY(degrees);\n\t\t// 取得变换后的矩阵\n\t\tcamera.getMatrix(matrix);\n\t\tcamera.restore();\n\n//----------------------------------------------------------------------------\n\t\t/** \n\t\t * 修复打脸问题\t\t(￣ε(#￣)☆╰╮(￣▽￣///)\n\t\t * 简要介绍：\n\t\t * 原来的3D翻转会由于屏幕像素密度问题而出现效果相差很大\n\t\t * 例如在屏幕像素比为1,5的手机上显示效果基本正常，\n\t\t * 而在像素比3,0的手机上面感觉翻转感觉要超出屏幕边缘，\n\t\t * 有种迎面打脸的感觉、\n\t\t * \n\t\t * 解决方案\n\t\t * 利用屏幕像素密度对变换矩阵进行校正，\n\t\t * 保证了在所有清晰度的手机上显示的效果基本相同。\n\t\t *  \n\t\t */\n\t\tfloat[] mValues = {0,0,0,0,0,0,0,0,0};\n\t\tmatrix.getValues(mValues);\t\t\t//获取数值\n\t\tmValues[6] = mValues[6]/scale;\t\t\t//数值修正\n\t\tmatrix.setValues(mValues);\t\t\t//重新赋值\n\t\t\n//\t\tLog.e(\"TAG\", \"mValues[\"+0+\"]=\"+mValues[0]+\"------------\\t\"+\"mValues[\"+6+\"]=\"+mValues[6]);\n//----------------------------------------------------------------------------\n\n\t\tmatrix.preTranslate(-centerX, -centerY);\n\t\tmatrix.postTranslate(centerX, centerY);\n\t}\n\t\n\n\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "Eclipse Public License - v 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC\nLICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM\nCONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS\n\n\"Contribution\" means:\n\na) in the case of the initial Contributor, the initial code and documentation\n   distributed under this Agreement, and\nb) in the case of each subsequent Contributor:\n    i) changes to the Program, and\n   ii) additions to the Program;\n\n   where such changes and/or additions to the Program originate from and are\n   distributed by that particular Contributor. A Contribution 'originates'\n   from a Contributor if it was added to the Program by such Contributor\n   itself or anyone acting on such Contributor's behalf. Contributions do not\n   include additions to the Program which: (i) are separate modules of\n   software distributed in conjunction with the Program under their own\n   license agreement, and (ii) are not derivative works of the Program.\n\n\"Contributor\" means any person or entity that distributes the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which are\nnecessarily infringed by the use or sale of its Contribution alone or when\ncombined with the Program.\n\n\"Program\" means the Contributions distributed in accordance with this\nAgreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement,\nincluding all Contributors.\n\n2. GRANT OF RIGHTS\n  a) Subject to the terms of this Agreement, each Contributor hereby grants\n     Recipient a non-exclusive, worldwide, royalty-free copyright license to\n     reproduce, prepare derivative works of, publicly display, publicly\n     perform, distribute and sublicense the Contribution of such Contributor,\n     if any, and such derivative works, in source code and object code form.\n  b) Subject to the terms of this Agreement, each Contributor hereby grants\n     Recipient a non-exclusive, worldwide, royalty-free patent license under\n     Licensed Patents to make, use, sell, offer to sell, import and otherwise\n     transfer the Contribution of such Contributor, if any, in source code and\n     object code form. This patent license shall apply to the combination of\n     the Contribution and the Program if, at the time the Contribution is\n     added by the Contributor, such addition of the Contribution causes such\n     combination to be covered by the Licensed Patents. The patent license\n     shall not apply to any other combinations which include the Contribution.\n     No hardware per se is licensed hereunder.\n  c) Recipient understands that although each Contributor grants the licenses\n     to its Contributions set forth herein, no assurances are provided by any\n     Contributor that the Program does not infringe the patent or other\n     intellectual property rights of any other entity. Each Contributor\n     disclaims any liability to Recipient for claims brought by any other\n     entity based on infringement of intellectual property rights or\n     otherwise. As a condition to exercising the rights and licenses granted\n     hereunder, each Recipient hereby assumes sole responsibility to secure\n     any other intellectual property rights needed, if any. For example, if a\n     third party patent license is required to allow Recipient to distribute\n     the Program, it is Recipient's responsibility to acquire that license\n     before distributing the Program.\n  d) Each Contributor represents that to its knowledge it has sufficient\n     copyright rights in its Contribution, if any, to grant the copyright\n     license set forth in this Agreement.\n\n3. REQUIREMENTS\n\nA Contributor may choose to distribute the Program in object code form under\nits own license agreement, provided that:\n\n  a) it complies with the terms and conditions of this Agreement; and\n  b) its license agreement:\n      i) effectively disclaims on behalf of all Contributors all warranties\n         and conditions, express and implied, including warranties or\n         conditions of title and non-infringement, and implied warranties or\n         conditions of merchantability and fitness for a particular purpose;\n     ii) effectively excludes on behalf of all Contributors all liability for\n         damages, including direct, indirect, special, incidental and\n         consequential damages, such as lost profits;\n    iii) states that any provisions which differ from this Agreement are\n         offered by that Contributor alone and not by any other party; and\n     iv) states that source code for the Program is available from such\n         Contributor, and informs licensees how to obtain it in a reasonable\n         manner on or through a medium customarily used for software exchange.\n\nWhen the Program is made available in source code form:\n\n  a) it must be made available under this Agreement; and\n  b) a copy of this Agreement must be included with each copy of the Program.\n     Contributors may not remove or alter any copyright notices contained\n     within the Program.\n\nEach Contributor must identify itself as the originator of its Contribution,\nif\nany, in a manner that reasonably allows subsequent Recipients to identify the\noriginator of the Contribution.\n\n4. COMMERCIAL DISTRIBUTION\n\nCommercial distributors of software may accept certain responsibilities with\nrespect to end users, business partners and the like. While this license is\nintended to facilitate the commercial use of the Program, the Contributor who\nincludes the Program in a commercial product offering should do so in a manner\nwhich does not create potential liability for other Contributors. Therefore,\nif a Contributor includes the Program in a commercial product offering, such\nContributor (\"Commercial Contributor\") hereby agrees to defend and indemnify\nevery other Contributor (\"Indemnified Contributor\") against any losses,\ndamages and costs (collectively \"Losses\") arising from claims, lawsuits and\nother legal actions brought by a third party against the Indemnified\nContributor to the extent caused by the acts or omissions of such Commercial\nContributor in connection with its distribution of the Program in a commercial\nproduct offering. The obligations in this section do not apply to any claims\nor Losses relating to any actual or alleged intellectual property\ninfringement. In order to qualify, an Indemnified Contributor must:\na) promptly notify the Commercial Contributor in writing of such claim, and\nb) allow the Commercial Contributor to control, and cooperate with the\nCommercial Contributor in, the defense and any related settlement\nnegotiations. The Indemnified Contributor may participate in any such claim at\nits own expense.\n\nFor example, a Contributor might include the Program in a commercial product\noffering, Product X. That Contributor is then a Commercial Contributor. If\nthat Commercial Contributor then makes performance claims, or offers\nwarranties related to Product X, those performance claims and warranties are\nsuch Commercial Contributor's responsibility alone. Under this section, the\nCommercial Contributor would have to defend claims against the other\nContributors related to those performance claims and warranties, and if a\ncourt requires any other Contributor to pay any damages as a result, the\nCommercial Contributor must pay those damages.\n\n5. NO WARRANTY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR\nIMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each\nRecipient is solely responsible for determining the appropriateness of using\nand distributing the Program and assumes all risks associated with its\nexercise of rights under this Agreement , including but not limited to the\nrisks and costs of program errors, compliance with applicable laws, damage to\nor loss of data, programs or equipment, and unavailability or interruption of\noperations.\n\n6. DISCLAIMER OF LIABILITY\n\nEXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY\nCONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION\nLOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE\nEXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGES.\n\n7. GENERAL\n\nIf any provision of this Agreement is invalid or unenforceable under\napplicable law, it shall not affect the validity or enforceability of the\nremainder of the terms of this Agreement, and without further action by the\nparties hereto, such provision shall be reformed to the minimum extent\nnecessary to make such provision valid and enforceable.\n\nIf Recipient institutes patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Program itself\n(excluding combinations of the Program with other software or hardware)\ninfringes such Recipient's patent(s), then such Recipient's rights granted\nunder Section 2(b) shall terminate as of the date such litigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails to\ncomply with any of the material terms or conditions of this Agreement and does\nnot cure such failure in a reasonable period of time after becoming aware of\nsuch noncompliance. If all Recipient's rights under this Agreement terminate,\nRecipient agrees to cease use and distribution of the Program as soon as\nreasonably practicable. However, Recipient's obligations under this Agreement\nand any licenses granted by Recipient relating to the Program shall continue\nand survive.\n\nEveryone is permitted to copy and distribute copies of this Agreement, but in\norder to avoid inconsistency the Agreement is copyrighted and may only be\nmodified in the following manner. The Agreement Steward reserves the right to\npublish new versions (including revisions) of this Agreement from time to\ntime. No one other than the Agreement Steward has the right to modify this\nAgreement. The Eclipse Foundation is the initial Agreement Steward. The\nEclipse Foundation may assign the responsibility to serve as the Agreement\nSteward to a suitable separate entity. Each new version of the Agreement will\nbe given a distinguishing version number. The Program (including\nContributions) may always be distributed subject to the version of the\nAgreement under which it was received. In addition, after a new version of the\nAgreement is published, Contributor may elect to distribute the Program\n(including its Contributions) under the new version. Except as expressly\nstated in Sections 2(a) and 2(b) above, Recipient receives no rights or\nlicenses to the intellectual property of any Contributor under this Agreement,\nwhether expressly, by implication, estoppel or otherwise. All rights in the\nProgram not expressly granted under this Agreement are reserved.\n\nThis Agreement is governed by the laws of the State of New York and the\nintellectual property laws of the United States of America. No party to this\nAgreement will bring a legal action under this Agreement more than one year\nafter the cause of action arose. Each party waives its rights to a jury trial in\nany resulting litigation.\n\n"
  },
  {
    "path": "README.md",
    "content": "# <img src=\"http://ww4.sinaimg.cn/large/005Xtdi2jw1f2jx68ugicj3074074jrm.jpg\" width=36 /> 安卓3D翻转效果  \n\n## 作者微博：  [@GcsSloop](http://weibo.com/GcsSloop)\n\n### 基于谷歌官方提供的3D翻转示例进行修改，修复了在不同像素密度的设备上显示效果差异过大的问题。\n\n## 修正前后对比\n\n<b>修正前</b> | <b>修正后</b>\n--- | ---\n![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)\n\n\n## 该文件已经包含在另一个仓库中，你可以[点击这里](https://github.com/GcsSloop/SUtil)查看。\n\n# 调用示例：\n``` java\n        // 计算中心点（这里是使用view的中心作为旋转的中心点）\n\t\tfinal float centerX = view.getWidth() / 2.0f;\n\t\tfinal float centerY = view.getHeight() / 2.0f;\n\n        //括号内参数分别为（上下文，开始角度，结束角度，x轴中心点，y轴中心点，深度，是否扭曲）\n\t\tfinal Rotate3dAnimation rotation = new Rotate3dAnimation(this, start, end, centerX, centerY, 1.0f, true);\n\t\trotation.setDuration(1500);                               //设置动画时长\n\t\trotation.setFillAfter(true);                              //保持旋转后效果\n\t\trotation.setInterpolator(new AccelerateInterpolator());   //设置插值器\n\n\t\trotation.setAnimationListener(new AnimationListener() {   //设置监听器\n\n\t\t\t@Override\n\t\t\tpublic void onAnimationStart(Animation animation) {\n\t\t\t}\n\n\t\t\t@Override\n\t\t\tpublic void onAnimationRepeat(Animation animation) {\n\t\t\t}\n\n\t\t\t@Override\n\t\t\tpublic void onAnimationEnd(Animation animation) {\n\t\t\t}\n\t\t});\n\t\tview.startAnimation(rotation);                            //开始动画\n\n```\n\n\n\n## About Me\n\n<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>\n"
  },
  {
    "path": "Sample/.classpath",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<classpath>\n\t<classpathentry kind=\"src\" path=\"src\"/>\n\t<classpathentry kind=\"src\" path=\"gen\"/>\n\t<classpathentry kind=\"con\" path=\"com.android.ide.eclipse.adt.ANDROID_FRAMEWORK\"/>\n\t<classpathentry exported=\"true\" kind=\"con\" path=\"com.android.ide.eclipse.adt.LIBRARIES\"/>\n\t<classpathentry exported=\"true\" kind=\"con\" path=\"com.android.ide.eclipse.adt.DEPENDENCIES\"/>\n\t<classpathentry kind=\"output\" path=\"bin/classes\"/>\n</classpath>\n"
  },
  {
    "path": "Sample/.project",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<projectDescription>\n\t<name>Sample__3D翻转</name>\n\t<comment></comment>\n\t<projects>\n\t</projects>\n\t<buildSpec>\n\t\t<buildCommand>\n\t\t\t<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>\n\t\t\t<arguments>\n\t\t\t</arguments>\n\t\t</buildCommand>\n\t\t<buildCommand>\n\t\t\t<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>\n\t\t\t<arguments>\n\t\t\t</arguments>\n\t\t</buildCommand>\n\t\t<buildCommand>\n\t\t\t<name>org.eclipse.jdt.core.javabuilder</name>\n\t\t\t<arguments>\n\t\t\t</arguments>\n\t\t</buildCommand>\n\t\t<buildCommand>\n\t\t\t<name>com.android.ide.eclipse.adt.ApkBuilder</name>\n\t\t\t<arguments>\n\t\t\t</arguments>\n\t\t</buildCommand>\n\t</buildSpec>\n\t<natures>\n\t\t<nature>com.android.ide.eclipse.adt.AndroidNature</nature>\n\t\t<nature>org.eclipse.jdt.core.javanature</nature>\n\t</natures>\n</projectDescription>\n"
  },
  {
    "path": "Sample/.settings/org.eclipse.jdt.core.prefs",
    "content": "eclipse.preferences.version=1\norg.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6\norg.eclipse.jdt.core.compiler.compliance=1.6\norg.eclipse.jdt.core.compiler.source=1.6\n"
  },
  {
    "path": "Sample/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.sloop.fz3d\"\n    android:versionCode=\"1\"\n    android:versionName=\"1.0\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"11\"\n        android:targetSdkVersion=\"22\" />\n\n    <application\n        android:allowBackup=\"true\"\n        android:icon=\"@drawable/ic_launcher\"\n        android:label=\"@string/app_name\"\n        android:theme=\"@style/AppTheme\" >\n        <activity\n            android:theme=\"@android:style/Theme.Holo.Light\"\n            android:name=\".MainActivity\"\n            android:label=\"@string/app_name\" >\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\" />\n\n                <category android:name=\"android.intent.category.LAUNCHER\" />\n            </intent-filter>\n        </activity>\n    </application>\n\n</manifest>\n"
  },
  {
    "path": "Sample/gen/android/support/v7/appcompat/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage android.support.v7.appcompat;\n\npublic final class R {\n\tpublic static final class anim {\n\t\tpublic static final int abc_fade_in = 0x7f040000;\n\t\tpublic static final int abc_fade_out = 0x7f040001;\n\t\tpublic static final int abc_grow_fade_in_from_bottom = 0x7f040002;\n\t\tpublic static final int abc_popup_enter = 0x7f040003;\n\t\tpublic static final int abc_popup_exit = 0x7f040004;\n\t\tpublic static final int abc_shrink_fade_out_from_bottom = 0x7f040005;\n\t\tpublic static final int abc_slide_in_bottom = 0x7f040006;\n\t\tpublic static final int abc_slide_in_top = 0x7f040007;\n\t\tpublic static final int abc_slide_out_bottom = 0x7f040008;\n\t\tpublic static final int abc_slide_out_top = 0x7f040009;\n\t}\n\tpublic static final class attr {\n\t\tpublic static final int actionBarDivider = 0x7f010018;\n\t\tpublic static final int actionBarItemBackground = 0x7f010019;\n\t\tpublic static final int actionBarPopupTheme = 0x7f010012;\n\t\tpublic static final int actionBarSize = 0x7f010017;\n\t\tpublic static final int actionBarSplitStyle = 0x7f010014;\n\t\tpublic static final int actionBarStyle = 0x7f010013;\n\t\tpublic static final int actionBarTabBarStyle = 0x7f01000e;\n\t\tpublic static final int actionBarTabStyle = 0x7f01000d;\n\t\tpublic static final int actionBarTabTextStyle = 0x7f01000f;\n\t\tpublic static final int actionBarTheme = 0x7f010015;\n\t\tpublic static final int actionBarWidgetTheme = 0x7f010016;\n\t\tpublic static final int actionButtonStyle = 0x7f010032;\n\t\tpublic static final int actionDropDownStyle = 0x7f01002e;\n\t\tpublic static final int actionLayout = 0x7f01008b;\n\t\tpublic static final int actionMenuTextAppearance = 0x7f01001a;\n\t\tpublic static final int actionMenuTextColor = 0x7f01001b;\n\t\tpublic static final int actionModeBackground = 0x7f01001e;\n\t\tpublic static final int actionModeCloseButtonStyle = 0x7f01001d;\n\t\tpublic static final int actionModeCloseDrawable = 0x7f010020;\n\t\tpublic static final int actionModeCopyDrawable = 0x7f010022;\n\t\tpublic static final int actionModeCutDrawable = 0x7f010021;\n\t\tpublic static final int actionModeFindDrawable = 0x7f010026;\n\t\tpublic static final int actionModePasteDrawable = 0x7f010023;\n\t\tpublic static final int actionModePopupWindowStyle = 0x7f010028;\n\t\tpublic static final int actionModeSelectAllDrawable = 0x7f010024;\n\t\tpublic static final int actionModeShareDrawable = 0x7f010025;\n\t\tpublic static final int actionModeSplitBackground = 0x7f01001f;\n\t\tpublic static final int actionModeStyle = 0x7f01001c;\n\t\tpublic static final int actionModeWebSearchDrawable = 0x7f010027;\n\t\tpublic static final int actionOverflowButtonStyle = 0x7f010010;\n\t\tpublic static final int actionOverflowMenuStyle = 0x7f010011;\n\t\tpublic static final int actionProviderClass = 0x7f01008d;\n\t\tpublic static final int actionViewClass = 0x7f01008c;\n\t\tpublic static final int activityChooserViewStyle = 0x7f010039;\n\t\tpublic static final int alertDialogButtonGroupStyle = 0x7f01005a;\n\t\tpublic static final int alertDialogCenterButtons = 0x7f01005b;\n\t\tpublic static final int alertDialogStyle = 0x7f010059;\n\t\tpublic static final int alertDialogTheme = 0x7f01005c;\n\t\tpublic static final int autoCompleteTextViewStyle = 0x7f010061;\n\t\tpublic static final int background = 0x7f010073;\n\t\tpublic static final int backgroundSplit = 0x7f010075;\n\t\tpublic static final int backgroundStacked = 0x7f010074;\n\t\tpublic static final int backgroundTint = 0x7f010087;\n\t\tpublic static final int backgroundTintMode = 0x7f010088;\n\t\tpublic static final int barSize = 0x7f0100b8;\n\t\tpublic static final int buttonBarButtonStyle = 0x7f010034;\n\t\tpublic static final int buttonBarNegativeButtonStyle = 0x7f01005f;\n\t\tpublic static final int buttonBarNeutralButtonStyle = 0x7f010060;\n\t\tpublic static final int buttonBarPositiveButtonStyle = 0x7f01005e;\n\t\tpublic static final int buttonBarStyle = 0x7f010033;\n\t\tpublic static final int buttonPanelSideLayout = 0x7f0100c2;\n\t\tpublic static final int buttonStyle = 0x7f010062;\n\t\tpublic static final int buttonStyleSmall = 0x7f010063;\n\t\tpublic static final int checkboxStyle = 0x7f010064;\n\t\tpublic static final int checkedTextViewStyle = 0x7f010065;\n\t\tpublic static final int closeIcon = 0x7f010095;\n\t\tpublic static final int closeItemLayout = 0x7f010083;\n\t\tpublic static final int collapseContentDescription = 0x7f0100ad;\n\t\tpublic static final int collapseIcon = 0x7f0100ac;\n\t\tpublic static final int color = 0x7f0100b2;\n\t\tpublic static final int colorAccent = 0x7f010053;\n\t\tpublic static final int colorButtonNormal = 0x7f010057;\n\t\tpublic static final int colorControlActivated = 0x7f010055;\n\t\tpublic static final int colorControlHighlight = 0x7f010056;\n\t\tpublic static final int colorControlNormal = 0x7f010054;\n\t\tpublic static final int colorPrimary = 0x7f010051;\n\t\tpublic static final int colorPrimaryDark = 0x7f010052;\n\t\tpublic static final int colorSwitchThumbNormal = 0x7f010058;\n\t\tpublic static final int commitIcon = 0x7f01009a;\n\t\tpublic static final int contentInsetEnd = 0x7f01007e;\n\t\tpublic static final int contentInsetLeft = 0x7f01007f;\n\t\tpublic static final int contentInsetRight = 0x7f010080;\n\t\tpublic static final int contentInsetStart = 0x7f01007d;\n\t\tpublic static final int customNavigationLayout = 0x7f010076;\n\t\tpublic static final int dialogPreferredPadding = 0x7f01002c;\n\t\tpublic static final int dialogTheme = 0x7f01002b;\n\t\tpublic static final int disableChildrenWhenDisabled = 0x7f010091;\n\t\tpublic static final int displayOptions = 0x7f01006c;\n\t\tpublic static final int divider = 0x7f010072;\n\t\tpublic static final int dividerHorizontal = 0x7f010038;\n\t\tpublic static final int dividerPadding = 0x7f0100a3;\n\t\tpublic static final int dividerVertical = 0x7f010037;\n\t\tpublic static final int drawableSize = 0x7f0100b4;\n\t\tpublic static final int drawerArrowStyle = 0x7f0100ba;\n\t\tpublic static final int dropDownListViewStyle = 0x7f010049;\n\t\tpublic static final int dropdownListPreferredItemHeight = 0x7f01002f;\n\t\tpublic static final int editTextBackground = 0x7f01003f;\n\t\tpublic static final int editTextColor = 0x7f01003e;\n\t\tpublic static final int editTextStyle = 0x7f010066;\n\t\tpublic static final int elevation = 0x7f010081;\n\t\tpublic static final int expandActivityOverflowButtonDrawable = 0x7f01009f;\n\t\tpublic static final int gapBetweenBars = 0x7f0100b5;\n\t\tpublic static final int goIcon = 0x7f010096;\n\t\tpublic static final int height = 0x7f010001;\n\t\tpublic static final int hideOnContentScroll = 0x7f01007c;\n\t\tpublic static final int homeAsUpIndicator = 0x7f010031;\n\t\tpublic static final int homeLayout = 0x7f010077;\n\t\tpublic static final int icon = 0x7f010070;\n\t\tpublic static final int iconifiedByDefault = 0x7f010093;\n\t\tpublic static final int indeterminateProgressStyle = 0x7f010079;\n\t\tpublic static final int initialActivityCount = 0x7f01009e;\n\t\tpublic static final int isLightTheme = 0x7f010002;\n\t\tpublic static final int itemPadding = 0x7f01007b;\n\t\tpublic static final int layout = 0x7f010092;\n\t\tpublic static final int listChoiceBackgroundIndicator = 0x7f010050;\n\t\tpublic static final int listDividerAlertDialog = 0x7f01002d;\n\t\tpublic static final int listItemLayout = 0x7f0100c6;\n\t\tpublic static final int listLayout = 0x7f0100c3;\n\t\tpublic static final int listPopupWindowStyle = 0x7f01004a;\n\t\tpublic static final int listPreferredItemHeight = 0x7f010044;\n\t\tpublic static final int listPreferredItemHeightLarge = 0x7f010046;\n\t\tpublic static final int listPreferredItemHeightSmall = 0x7f010045;\n\t\tpublic static final int listPreferredItemPaddingLeft = 0x7f010047;\n\t\tpublic static final int listPreferredItemPaddingRight = 0x7f010048;\n\t\tpublic static final int logo = 0x7f010071;\n\t\tpublic static final int maxButtonHeight = 0x7f0100ab;\n\t\tpublic static final int measureWithLargestChild = 0x7f0100a1;\n\t\tpublic static final int middleBarArrowSize = 0x7f0100b7;\n\t\tpublic static final int multiChoiceItemLayout = 0x7f0100c4;\n\t\tpublic static final int navigationContentDescription = 0x7f0100af;\n\t\tpublic static final int navigationIcon = 0x7f0100ae;\n\t\tpublic static final int navigationMode = 0x7f01006b;\n\t\tpublic static final int overlapAnchor = 0x7f0100b1;\n\t\tpublic static final int paddingEnd = 0x7f010085;\n\t\tpublic static final int paddingStart = 0x7f010084;\n\t\tpublic static final int panelBackground = 0x7f01004d;\n\t\tpublic static final int panelMenuListTheme = 0x7f01004f;\n\t\tpublic static final int panelMenuListWidth = 0x7f01004e;\n\t\tpublic static final int popupMenuStyle = 0x7f01003c;\n\t\tpublic static final int popupPromptView = 0x7f010090;\n\t\tpublic static final int popupTheme = 0x7f010082;\n\t\tpublic static final int popupWindowStyle = 0x7f01003d;\n\t\tpublic static final int preserveIconSpacing = 0x7f010089;\n\t\tpublic static final int progressBarPadding = 0x7f01007a;\n\t\tpublic static final int progressBarStyle = 0x7f010078;\n\t\tpublic static final int prompt = 0x7f01008e;\n\t\tpublic static final int queryBackground = 0x7f01009c;\n\t\tpublic static final int queryHint = 0x7f010094;\n\t\tpublic static final int radioButtonStyle = 0x7f010067;\n\t\tpublic static final int ratingBarStyle = 0x7f010068;\n\t\tpublic static final int searchHintIcon = 0x7f010098;\n\t\tpublic static final int searchIcon = 0x7f010097;\n\t\tpublic static final int searchViewStyle = 0x7f010043;\n\t\tpublic static final int selectableItemBackground = 0x7f010035;\n\t\tpublic static final int selectableItemBackgroundBorderless = 0x7f010036;\n\t\tpublic static final int showAsAction = 0x7f01008a;\n\t\tpublic static final int showDividers = 0x7f0100a2;\n\t\tpublic static final int showText = 0x7f0100c1;\n\t\tpublic static final int singleChoiceItemLayout = 0x7f0100c5;\n\t\tpublic static final int spinBars = 0x7f0100b3;\n\t\tpublic static final int spinnerDropDownItemStyle = 0x7f010030;\n\t\tpublic static final int spinnerMode = 0x7f01008f;\n\t\tpublic static final int spinnerStyle = 0x7f010069;\n\t\tpublic static final int splitTrack = 0x7f0100c0;\n\t\tpublic static final int state_above_anchor = 0x7f0100b0;\n\t\tpublic static final int submitBackground = 0x7f01009d;\n\t\tpublic static final int subtitle = 0x7f01006d;\n\t\tpublic static final int subtitleTextAppearance = 0x7f0100a5;\n\t\tpublic static final int subtitleTextStyle = 0x7f01006f;\n\t\tpublic static final int suggestionRowLayout = 0x7f01009b;\n\t\tpublic static final int switchMinWidth = 0x7f0100be;\n\t\tpublic static final int switchPadding = 0x7f0100bf;\n\t\tpublic static final int switchStyle = 0x7f01006a;\n\t\tpublic static final int switchTextAppearance = 0x7f0100bd;\n\t\tpublic static final int textAllCaps = 0x7f0100a0;\n\t\tpublic static final int textAppearanceLargePopupMenu = 0x7f010029;\n\t\tpublic static final int textAppearanceListItem = 0x7f01004b;\n\t\tpublic static final int textAppearanceListItemSmall = 0x7f01004c;\n\t\tpublic static final int textAppearanceSearchResultSubtitle = 0x7f010041;\n\t\tpublic static final int textAppearanceSearchResultTitle = 0x7f010040;\n\t\tpublic static final int textAppearanceSmallPopupMenu = 0x7f01002a;\n\t\tpublic static final int textColorAlertDialogListItem = 0x7f01005d;\n\t\tpublic static final int textColorSearchUrl = 0x7f010042;\n\t\tpublic static final int theme = 0x7f010086;\n\t\tpublic static final int thickness = 0x7f0100b9;\n\t\tpublic static final int thumbTextPadding = 0x7f0100bc;\n\t\tpublic static final int title = 0x7f010000;\n\t\tpublic static final int titleMarginBottom = 0x7f0100aa;\n\t\tpublic static final int titleMarginEnd = 0x7f0100a8;\n\t\tpublic static final int titleMarginStart = 0x7f0100a7;\n\t\tpublic static final int titleMarginTop = 0x7f0100a9;\n\t\tpublic static final int titleMargins = 0x7f0100a6;\n\t\tpublic static final int titleTextAppearance = 0x7f0100a4;\n\t\tpublic static final int titleTextStyle = 0x7f01006e;\n\t\tpublic static final int toolbarNavigationButtonStyle = 0x7f01003b;\n\t\tpublic static final int toolbarStyle = 0x7f01003a;\n\t\tpublic static final int topBottomBarArrowSize = 0x7f0100b6;\n\t\tpublic static final int track = 0x7f0100bb;\n\t\tpublic static final int voiceIcon = 0x7f010099;\n\t\tpublic static final int windowActionBar = 0x7f010003;\n\t\tpublic static final int windowActionBarOverlay = 0x7f010005;\n\t\tpublic static final int windowActionModeOverlay = 0x7f010006;\n\t\tpublic static final int windowFixedHeightMajor = 0x7f01000a;\n\t\tpublic static final int windowFixedHeightMinor = 0x7f010008;\n\t\tpublic static final int windowFixedWidthMajor = 0x7f010007;\n\t\tpublic static final int windowFixedWidthMinor = 0x7f010009;\n\t\tpublic static final int windowMinWidthMajor = 0x7f01000b;\n\t\tpublic static final int windowMinWidthMinor = 0x7f01000c;\n\t\tpublic static final int windowNoTitle = 0x7f010004;\n\t}\n\tpublic static final class bool {\n\t\tpublic static final int abc_action_bar_embed_tabs = 0x7f050000;\n\t\tpublic static final int abc_action_bar_embed_tabs_pre_jb = 0x7f050001;\n\t\tpublic static final int abc_action_bar_expanded_action_views_exclusive = 0x7f050002;\n\t\tpublic static final int abc_config_actionMenuItemAllCaps = 0x7f050005;\n\t\tpublic static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f050004;\n\t\tpublic static final int abc_config_closeDialogWhenTouchOutside = 0x7f050006;\n\t\tpublic static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f050003;\n\t}\n\tpublic static final class color {\n\t\tpublic static final int abc_background_cache_hint_selector_material_dark = 0x7f060033;\n\t\tpublic static final int abc_background_cache_hint_selector_material_light = 0x7f060034;\n\t\tpublic static final int abc_input_method_navigation_guard = 0x7f060003;\n\t\tpublic static final int abc_primary_text_disable_only_material_dark = 0x7f060035;\n\t\tpublic static final int abc_primary_text_disable_only_material_light = 0x7f060036;\n\t\tpublic static final int abc_primary_text_material_dark = 0x7f060037;\n\t\tpublic static final int abc_primary_text_material_light = 0x7f060038;\n\t\tpublic static final int abc_search_url_text = 0x7f060039;\n\t\tpublic static final int abc_search_url_text_normal = 0x7f060000;\n\t\tpublic static final int abc_search_url_text_pressed = 0x7f060002;\n\t\tpublic static final int abc_search_url_text_selected = 0x7f060001;\n\t\tpublic static final int abc_secondary_text_material_dark = 0x7f06003a;\n\t\tpublic static final int abc_secondary_text_material_light = 0x7f06003b;\n\t\tpublic static final int accent_material_dark = 0x7f06000f;\n\t\tpublic static final int accent_material_light = 0x7f06000e;\n\t\tpublic static final int background_floating_material_dark = 0x7f060006;\n\t\tpublic static final int background_floating_material_light = 0x7f060007;\n\t\tpublic static final int background_material_dark = 0x7f060004;\n\t\tpublic static final int background_material_light = 0x7f060005;\n\t\tpublic static final int bright_foreground_disabled_material_dark = 0x7f060018;\n\t\tpublic static final int bright_foreground_disabled_material_light = 0x7f060019;\n\t\tpublic static final int bright_foreground_inverse_material_dark = 0x7f06001a;\n\t\tpublic static final int bright_foreground_inverse_material_light = 0x7f06001b;\n\t\tpublic static final int bright_foreground_material_dark = 0x7f060016;\n\t\tpublic static final int bright_foreground_material_light = 0x7f060017;\n\t\tpublic static final int button_material_dark = 0x7f060010;\n\t\tpublic static final int button_material_light = 0x7f060011;\n\t\tpublic static final int dim_foreground_disabled_material_dark = 0x7f06001e;\n\t\tpublic static final int dim_foreground_disabled_material_light = 0x7f06001f;\n\t\tpublic static final int dim_foreground_material_dark = 0x7f06001c;\n\t\tpublic static final int dim_foreground_material_light = 0x7f06001d;\n\t\tpublic static final int highlighted_text_material_dark = 0x7f060022;\n\t\tpublic static final int highlighted_text_material_light = 0x7f060023;\n\t\tpublic static final int hint_foreground_material_dark = 0x7f060020;\n\t\tpublic static final int hint_foreground_material_light = 0x7f060021;\n\t\tpublic static final int link_text_material_dark = 0x7f060024;\n\t\tpublic static final int link_text_material_light = 0x7f060025;\n\t\tpublic static final int material_blue_grey_800 = 0x7f060030;\n\t\tpublic static final int material_blue_grey_900 = 0x7f060031;\n\t\tpublic static final int material_blue_grey_950 = 0x7f060032;\n\t\tpublic static final int material_deep_teal_200 = 0x7f06002e;\n\t\tpublic static final int material_deep_teal_500 = 0x7f06002f;\n\t\tpublic static final int primary_dark_material_dark = 0x7f06000a;\n\t\tpublic static final int primary_dark_material_light = 0x7f06000b;\n\t\tpublic static final int primary_material_dark = 0x7f060008;\n\t\tpublic static final int primary_material_light = 0x7f060009;\n\t\tpublic static final int primary_text_default_material_dark = 0x7f060028;\n\t\tpublic static final int primary_text_default_material_light = 0x7f060026;\n\t\tpublic static final int primary_text_disabled_material_dark = 0x7f06002c;\n\t\tpublic static final int primary_text_disabled_material_light = 0x7f06002a;\n\t\tpublic static final int ripple_material_dark = 0x7f06000c;\n\t\tpublic static final int ripple_material_light = 0x7f06000d;\n\t\tpublic static final int secondary_text_default_material_dark = 0x7f060029;\n\t\tpublic static final int secondary_text_default_material_light = 0x7f060027;\n\t\tpublic static final int secondary_text_disabled_material_dark = 0x7f06002d;\n\t\tpublic static final int secondary_text_disabled_material_light = 0x7f06002b;\n\t\tpublic static final int switch_thumb_disabled_material_dark = 0x7f060014;\n\t\tpublic static final int switch_thumb_disabled_material_light = 0x7f060015;\n\t\tpublic static final int switch_thumb_material_dark = 0x7f06003c;\n\t\tpublic static final int switch_thumb_material_light = 0x7f06003d;\n\t\tpublic static final int switch_thumb_normal_material_dark = 0x7f060012;\n\t\tpublic static final int switch_thumb_normal_material_light = 0x7f060013;\n\t}\n\tpublic static final class dimen {\n\t\tpublic static final int abc_action_bar_content_inset_material = 0x7f070025;\n\t\tpublic static final int abc_action_bar_default_height_material = 0x7f070023;\n\t\tpublic static final int abc_action_bar_default_padding_material = 0x7f070024;\n\t\tpublic static final int abc_action_bar_icon_vertical_padding_material = 0x7f070028;\n\t\tpublic static final int abc_action_bar_navigation_padding_start_material = 0x7f070026;\n\t\tpublic static final int abc_action_bar_overflow_padding_end_material = 0x7f070027;\n\t\tpublic static final int abc_action_bar_overflow_padding_start_material = 0x7f07002c;\n\t\tpublic static final int abc_action_bar_progress_bar_size = 0x7f070005;\n\t\tpublic static final int abc_action_bar_stacked_max_height = 0x7f070004;\n\t\tpublic static final int abc_action_bar_stacked_tab_max_width = 0x7f070003;\n\t\tpublic static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f07002a;\n\t\tpublic static final int abc_action_bar_subtitle_top_margin_material = 0x7f070029;\n\t\tpublic static final int abc_action_button_min_height_material = 0x7f07002f;\n\t\tpublic static final int abc_action_button_min_width_material = 0x7f07002e;\n\t\tpublic static final int abc_action_button_min_width_overflow_material = 0x7f07002d;\n\t\tpublic static final int abc_alert_dialog_button_bar_height = 0x7f07001d;\n\t\tpublic static final int abc_button_inset_horizontal_material = 0x7f070011;\n\t\tpublic static final int abc_button_inset_vertical_material = 0x7f070010;\n\t\tpublic static final int abc_button_padding_horizontal_material = 0x7f070013;\n\t\tpublic static final int abc_button_padding_vertical_material = 0x7f070012;\n\t\tpublic static final int abc_config_prefDialogWidth = 0x7f070002;\n\t\tpublic static final int abc_control_corner_material = 0x7f070016;\n\t\tpublic static final int abc_control_inset_material = 0x7f070014;\n\t\tpublic static final int abc_control_padding_material = 0x7f070015;\n\t\tpublic static final int abc_dialog_list_padding_vertical_material = 0x7f07001e;\n\t\tpublic static final int abc_dialog_min_width_major = 0x7f07001f;\n\t\tpublic static final int abc_dialog_min_width_minor = 0x7f070020;\n\t\tpublic static final int abc_dialog_padding_material = 0x7f07001b;\n\t\tpublic static final int abc_dialog_padding_top_material = 0x7f07001c;\n\t\tpublic static final int abc_disabled_alpha_material_dark = 0x7f070041;\n\t\tpublic static final int abc_disabled_alpha_material_light = 0x7f070040;\n\t\tpublic static final int abc_dropdownitem_icon_width = 0x7f07000b;\n\t\tpublic static final int abc_dropdownitem_text_padding_left = 0x7f070009;\n\t\tpublic static final int abc_dropdownitem_text_padding_right = 0x7f07000a;\n\t\tpublic static final int abc_edit_text_inset_bottom_material = 0x7f070019;\n\t\tpublic static final int abc_edit_text_inset_horizontal_material = 0x7f070017;\n\t\tpublic static final int abc_edit_text_inset_top_material = 0x7f070018;\n\t\tpublic static final int abc_floating_window_z = 0x7f07003f;\n\t\tpublic static final int abc_list_item_padding_horizontal_material = 0x7f07002b;\n\t\tpublic static final int abc_panel_menu_list_width = 0x7f070006;\n\t\tpublic static final int abc_search_view_preferred_width = 0x7f070008;\n\t\tpublic static final int abc_search_view_text_min_width = 0x7f070007;\n\t\tpublic static final int abc_switch_padding = 0x7f07001a;\n\t\tpublic static final int abc_text_size_body_1_material = 0x7f070039;\n\t\tpublic static final int abc_text_size_body_2_material = 0x7f070038;\n\t\tpublic static final int abc_text_size_button_material = 0x7f07003b;\n\t\tpublic static final int abc_text_size_caption_material = 0x7f07003a;\n\t\tpublic static final int abc_text_size_display_1_material = 0x7f070033;\n\t\tpublic static final int abc_text_size_display_2_material = 0x7f070032;\n\t\tpublic static final int abc_text_size_display_3_material = 0x7f070031;\n\t\tpublic static final int abc_text_size_display_4_material = 0x7f070030;\n\t\tpublic static final int abc_text_size_headline_material = 0x7f070034;\n\t\tpublic static final int abc_text_size_large_material = 0x7f07003c;\n\t\tpublic static final int abc_text_size_medium_material = 0x7f07003d;\n\t\tpublic static final int abc_text_size_menu_material = 0x7f070037;\n\t\tpublic static final int abc_text_size_small_material = 0x7f07003e;\n\t\tpublic static final int abc_text_size_subhead_material = 0x7f070036;\n\t\tpublic static final int abc_text_size_subtitle_material_toolbar = 0x7f070022;\n\t\tpublic static final int abc_text_size_title_material = 0x7f070035;\n\t\tpublic static final int abc_text_size_title_material_toolbar = 0x7f070021;\n\t\tpublic static final int dialog_fixed_height_major = 0x7f07000e;\n\t\tpublic static final int dialog_fixed_height_minor = 0x7f07000f;\n\t\tpublic static final int dialog_fixed_width_major = 0x7f07000c;\n\t\tpublic static final int dialog_fixed_width_minor = 0x7f07000d;\n\t\tpublic static final int disabled_alpha_material_dark = 0x7f070001;\n\t\tpublic static final int disabled_alpha_material_light = 0x7f070000;\n\t}\n\tpublic static final class drawable {\n\t\tpublic static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;\n\t\tpublic static final int abc_btn_borderless_material = 0x7f020001;\n\t\tpublic static final int abc_btn_check_material = 0x7f020002;\n\t\tpublic static final int abc_btn_check_to_on_mtrl_000 = 0x7f020003;\n\t\tpublic static final int abc_btn_check_to_on_mtrl_015 = 0x7f020004;\n\t\tpublic static final int abc_btn_default_mtrl_shape = 0x7f020005;\n\t\tpublic static final int abc_btn_radio_material = 0x7f020006;\n\t\tpublic static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020007;\n\t\tpublic static final int abc_btn_radio_to_on_mtrl_015 = 0x7f020008;\n\t\tpublic static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f020009;\n\t\tpublic static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000a;\n\t\tpublic static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000b;\n\t\tpublic static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000c;\n\t\tpublic static final int abc_cab_background_internal_bg = 0x7f02000d;\n\t\tpublic static final int abc_cab_background_top_material = 0x7f02000e;\n\t\tpublic static final int abc_cab_background_top_mtrl_alpha = 0x7f02000f;\n\t\tpublic static final int abc_dialog_material_background_dark = 0x7f020010;\n\t\tpublic static final int abc_dialog_material_background_light = 0x7f020011;\n\t\tpublic static final int abc_edit_text_material = 0x7f020012;\n\t\tpublic static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020013;\n\t\tpublic static final int abc_ic_clear_mtrl_alpha = 0x7f020014;\n\t\tpublic static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020015;\n\t\tpublic static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020016;\n\t\tpublic static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020017;\n\t\tpublic static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020018;\n\t\tpublic static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f020019;\n\t\tpublic static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001a;\n\t\tpublic static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001b;\n\t\tpublic static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001c;\n\t\tpublic static final int abc_ic_search_api_mtrl_alpha = 0x7f02001d;\n\t\tpublic static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f02001e;\n\t\tpublic static final int abc_item_background_holo_dark = 0x7f02001f;\n\t\tpublic static final int abc_item_background_holo_light = 0x7f020020;\n\t\tpublic static final int abc_list_divider_mtrl_alpha = 0x7f020021;\n\t\tpublic static final int abc_list_focused_holo = 0x7f020022;\n\t\tpublic static final int abc_list_longpressed_holo = 0x7f020023;\n\t\tpublic static final int abc_list_pressed_holo_dark = 0x7f020024;\n\t\tpublic static final int abc_list_pressed_holo_light = 0x7f020025;\n\t\tpublic static final int abc_list_selector_background_transition_holo_dark = 0x7f020026;\n\t\tpublic static final int abc_list_selector_background_transition_holo_light = 0x7f020027;\n\t\tpublic static final int abc_list_selector_disabled_holo_dark = 0x7f020028;\n\t\tpublic static final int abc_list_selector_disabled_holo_light = 0x7f020029;\n\t\tpublic static final int abc_list_selector_holo_dark = 0x7f02002a;\n\t\tpublic static final int abc_list_selector_holo_light = 0x7f02002b;\n\t\tpublic static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002c;\n\t\tpublic static final int abc_popup_background_mtrl_mult = 0x7f02002d;\n\t\tpublic static final int abc_ratingbar_full_material = 0x7f02002e;\n\t\tpublic static final int abc_spinner_mtrl_am_alpha = 0x7f02002f;\n\t\tpublic static final int abc_spinner_textfield_background_material = 0x7f020030;\n\t\tpublic static final int abc_switch_thumb_material = 0x7f020031;\n\t\tpublic static final int abc_switch_track_mtrl_alpha = 0x7f020032;\n\t\tpublic static final int abc_tab_indicator_material = 0x7f020033;\n\t\tpublic static final int abc_tab_indicator_mtrl_alpha = 0x7f020034;\n\t\tpublic static final int abc_text_cursor_mtrl_alpha = 0x7f020035;\n\t\tpublic static final int abc_textfield_activated_mtrl_alpha = 0x7f020036;\n\t\tpublic static final int abc_textfield_default_mtrl_alpha = 0x7f020037;\n\t\tpublic static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020038;\n\t\tpublic static final int abc_textfield_search_default_mtrl_alpha = 0x7f020039;\n\t\tpublic static final int abc_textfield_search_material = 0x7f02003a;\n\t}\n\tpublic static final class id {\n\t\tpublic static final int action_bar = 0x7f090040;\n\t\tpublic static final int action_bar_activity_content = 0x7f090003;\n\t\tpublic static final int action_bar_container = 0x7f09003f;\n\t\tpublic static final int action_bar_root = 0x7f09003b;\n\t\tpublic static final int action_bar_spinner = 0x7f090002;\n\t\tpublic static final int action_bar_subtitle = 0x7f090024;\n\t\tpublic static final int action_bar_title = 0x7f090023;\n\t\tpublic static final int action_context_bar = 0x7f090041;\n\t\tpublic static final int action_menu_divider = 0x7f090005;\n\t\tpublic static final int action_menu_presenter = 0x7f090006;\n\t\tpublic static final int action_mode_bar = 0x7f09003d;\n\t\tpublic static final int action_mode_bar_stub = 0x7f09003c;\n\t\tpublic static final int action_mode_close_button = 0x7f090025;\n\t\tpublic static final int activity_chooser_view_content = 0x7f090026;\n\t\tpublic static final int alertTitle = 0x7f090030;\n\t\tpublic static final int always = 0x7f090019;\n\t\tpublic static final int beginning = 0x7f090020;\n\t\tpublic static final int buttonPanel = 0x7f090036;\n\t\tpublic static final int checkbox = 0x7f090038;\n\t\tpublic static final int collapseActionView = 0x7f09001a;\n\t\tpublic static final int contentPanel = 0x7f090031;\n\t\tpublic static final int custom = 0x7f090035;\n\t\tpublic static final int customPanel = 0x7f090034;\n\t\tpublic static final int decor_content_parent = 0x7f09003e;\n\t\tpublic static final int default_activity_button = 0x7f090029;\n\t\tpublic static final int dialog = 0x7f09001e;\n\t\tpublic static final int disableHome = 0x7f09000d;\n\t\tpublic static final int dropdown = 0x7f09001f;\n\t\tpublic static final int edit_query = 0x7f090042;\n\t\tpublic static final int end = 0x7f090021;\n\t\tpublic static final int expand_activities_button = 0x7f090027;\n\t\tpublic static final int expanded_menu = 0x7f090037;\n\t\tpublic static final int home = 0x7f090000;\n\t\tpublic static final int homeAsUp = 0x7f09000e;\n\t\tpublic static final int icon = 0x7f09002b;\n\t\tpublic static final int ifRoom = 0x7f09001b;\n\t\tpublic static final int image = 0x7f090028;\n\t\tpublic static final int listMode = 0x7f09000a;\n\t\tpublic static final int list_item = 0x7f09002a;\n\t\tpublic static final int middle = 0x7f090022;\n\t\tpublic static final int multiply = 0x7f090014;\n\t\tpublic static final int never = 0x7f09001c;\n\t\tpublic static final int none = 0x7f09000f;\n\t\tpublic static final int normal = 0x7f09000b;\n\t\tpublic static final int parentPanel = 0x7f09002d;\n\t\tpublic static final int progress_circular = 0x7f090007;\n\t\tpublic static final int progress_horizontal = 0x7f090008;\n\t\tpublic static final int radio = 0x7f09003a;\n\t\tpublic static final int screen = 0x7f090015;\n\t\tpublic static final int scrollView = 0x7f090032;\n\t\tpublic static final int search_badge = 0x7f090044;\n\t\tpublic static final int search_bar = 0x7f090043;\n\t\tpublic static final int search_button = 0x7f090045;\n\t\tpublic static final int search_close_btn = 0x7f09004a;\n\t\tpublic static final int search_edit_frame = 0x7f090046;\n\t\tpublic static final int search_go_btn = 0x7f09004c;\n\t\tpublic static final int search_mag_icon = 0x7f090047;\n\t\tpublic static final int search_plate = 0x7f090048;\n\t\tpublic static final int search_src_text = 0x7f090049;\n\t\tpublic static final int search_voice_btn = 0x7f09004d;\n\t\tpublic static final int select_dialog_listview = 0x7f09004e;\n\t\tpublic static final int shortcut = 0x7f090039;\n\t\tpublic static final int showCustom = 0x7f090010;\n\t\tpublic static final int showHome = 0x7f090011;\n\t\tpublic static final int showTitle = 0x7f090012;\n\t\tpublic static final int split_action_bar = 0x7f090004;\n\t\tpublic static final int src_atop = 0x7f090016;\n\t\tpublic static final int src_in = 0x7f090017;\n\t\tpublic static final int src_over = 0x7f090018;\n\t\tpublic static final int submit_area = 0x7f09004b;\n\t\tpublic static final int tabMode = 0x7f09000c;\n\t\tpublic static final int textSpacerNoButtons = 0x7f090033;\n\t\tpublic static final int title = 0x7f09002c;\n\t\tpublic static final int title_template = 0x7f09002f;\n\t\tpublic static final int topPanel = 0x7f09002e;\n\t\tpublic static final int up = 0x7f090001;\n\t\tpublic static final int useLogo = 0x7f090013;\n\t\tpublic static final int withText = 0x7f09001d;\n\t\tpublic static final int wrap_content = 0x7f090009;\n\t}\n\tpublic static final class integer {\n\t\tpublic static final int abc_config_activityDefaultDur = 0x7f080001;\n\t\tpublic static final int abc_config_activityShortDur = 0x7f080000;\n\t\tpublic static final int abc_max_action_buttons = 0x7f080002;\n\t}\n\tpublic static final class layout {\n\t\tpublic static final int abc_action_bar_title_item = 0x7f030000;\n\t\tpublic static final int abc_action_bar_up_container = 0x7f030001;\n\t\tpublic static final int abc_action_bar_view_list_nav_layout = 0x7f030002;\n\t\tpublic static final int abc_action_menu_item_layout = 0x7f030003;\n\t\tpublic static final int abc_action_menu_layout = 0x7f030004;\n\t\tpublic static final int abc_action_mode_bar = 0x7f030005;\n\t\tpublic static final int abc_action_mode_close_item_material = 0x7f030006;\n\t\tpublic static final int abc_activity_chooser_view = 0x7f030007;\n\t\tpublic static final int abc_activity_chooser_view_list_item = 0x7f030008;\n\t\tpublic static final int abc_alert_dialog_material = 0x7f030009;\n\t\tpublic static final int abc_dialog_title_material = 0x7f03000a;\n\t\tpublic static final int abc_expanded_menu_layout = 0x7f03000b;\n\t\tpublic static final int abc_list_menu_item_checkbox = 0x7f03000c;\n\t\tpublic static final int abc_list_menu_item_icon = 0x7f03000d;\n\t\tpublic static final int abc_list_menu_item_layout = 0x7f03000e;\n\t\tpublic static final int abc_list_menu_item_radio = 0x7f03000f;\n\t\tpublic static final int abc_popup_menu_item_layout = 0x7f030010;\n\t\tpublic static final int abc_screen_content_include = 0x7f030011;\n\t\tpublic static final int abc_screen_simple = 0x7f030012;\n\t\tpublic static final int abc_screen_simple_overlay_action_mode = 0x7f030013;\n\t\tpublic static final int abc_screen_toolbar = 0x7f030014;\n\t\tpublic static final int abc_search_dropdown_item_icons_2line = 0x7f030015;\n\t\tpublic static final int abc_search_view = 0x7f030016;\n\t\tpublic static final int abc_select_dialog_material = 0x7f030017;\n\t\tpublic static final int abc_simple_dropdown_hint = 0x7f030018;\n\t\tpublic static final int select_dialog_item_material = 0x7f03001a;\n\t\tpublic static final int select_dialog_multichoice_material = 0x7f03001b;\n\t\tpublic static final int select_dialog_singlechoice_material = 0x7f03001c;\n\t\tpublic static final int support_simple_spinner_dropdown_item = 0x7f03001d;\n\t}\n\tpublic static final class string {\n\t\tpublic static final int abc_action_bar_home_description = 0x7f0a0001;\n\t\tpublic static final int abc_action_bar_home_description_format = 0x7f0a0005;\n\t\tpublic static final int abc_action_bar_home_subtitle_description_format = 0x7f0a0006;\n\t\tpublic static final int abc_action_bar_up_description = 0x7f0a0002;\n\t\tpublic static final int abc_action_menu_overflow_description = 0x7f0a0003;\n\t\tpublic static final int abc_action_mode_done = 0x7f0a0000;\n\t\tpublic static final int abc_activity_chooser_view_see_all = 0x7f0a000e;\n\t\tpublic static final int abc_activitychooserview_choose_application = 0x7f0a000d;\n\t\tpublic static final int abc_search_hint = 0x7f0a0008;\n\t\tpublic static final int abc_searchview_description_clear = 0x7f0a000a;\n\t\tpublic static final int abc_searchview_description_query = 0x7f0a0009;\n\t\tpublic static final int abc_searchview_description_search = 0x7f0a0007;\n\t\tpublic static final int abc_searchview_description_submit = 0x7f0a000b;\n\t\tpublic static final int abc_searchview_description_voice = 0x7f0a000c;\n\t\tpublic static final int abc_shareactionprovider_share_with = 0x7f0a0010;\n\t\tpublic static final int abc_shareactionprovider_share_with_application = 0x7f0a000f;\n\t\tpublic static final int abc_toolbar_collapse_description = 0x7f0a0004;\n\t}\n\tpublic static final class style {\n\t\tpublic static final int AlertDialog_AppCompat = 0x7f0b0040;\n\t\tpublic static final int AlertDialog_AppCompat_Light = 0x7f0b0041;\n\t\tpublic static final int Animation_AppCompat_Dialog = 0x7f0b0046;\n\t\tpublic static final int Animation_AppCompat_DropDownUp = 0x7f0b0047;\n\t\tpublic static final int Base_AlertDialog_AppCompat = 0x7f0b00bd;\n\t\tpublic static final int Base_AlertDialog_AppCompat_Light = 0x7f0b00be;\n\t\tpublic static final int Base_Animation_AppCompat_Dialog = 0x7f0b00b9;\n\t\tpublic static final int Base_Animation_AppCompat_DropDownUp = 0x7f0b00bc;\n\t\tpublic static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0b00b7;\n\t\tpublic static final int Base_DialogWindowTitle_AppCompat = 0x7f0b00b8;\n\t\tpublic static final int Base_TextAppearance_AppCompat = 0x7f0b00bf;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0b00ca;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0b00c9;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Button = 0x7f0b00cd;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Caption = 0x7f0b00cb;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0b00c3;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0b00c2;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0b00c1;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0b00c0;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Headline = 0x7f0b00c4;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0b00ce;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Large = 0x7f0b00cf;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0b00d0;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b009a;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b009b;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Medium = 0x7f0b00d1;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0b00d2;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Menu = 0x7f0b00cc;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0b009c;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b009e;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0b009d;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Small = 0x7f0b00d3;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0b00d4;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0b00c7;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0b00c8;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Title = 0x7f0b00c5;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0b00c6;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0083;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0085;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0087;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0084;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0086;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0082;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b0081;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0090;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0098;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b0099;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0b00ae;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0b00b6;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0091;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0b00a5;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0b00a4;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat = 0x7f0b0108;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0b010d;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0b010c;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0b010e;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0b010b;\n\t\tpublic static final int Base_Theme_AppCompat = 0x7f0b00f8;\n\t\tpublic static final int Base_Theme_AppCompat_CompactMenu = 0x7f0b00fb;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog = 0x7f0b00fe;\n\t\tpublic static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0b0106;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0b0100;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0b0104;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0b0102;\n\t\tpublic static final int Base_Theme_AppCompat_Light = 0x7f0b00f9;\n\t\tpublic static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0b00fa;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0b00ff;\n\t\tpublic static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b0107;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0b0101;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0b0105;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0b0103;\n\t\tpublic static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0b0111;\n\t\tpublic static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0b0112;\n\t\tpublic static final int Base_V21_Theme_AppCompat = 0x7f0b0117;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0b0119;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Light = 0x7f0b0118;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0b011a;\n\t\tpublic static final int Base_V7_Theme_AppCompat = 0x7f0b00f6;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0b00fc;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Light = 0x7f0b00f7;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0b00fd;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar = 0x7f0b0072;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0b0074;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0b0079;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0b007d;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0b007b;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton = 0x7f0b0076;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0b0077;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0b0078;\n\t\tpublic static final int Base_Widget_AppCompat_ActionMode = 0x7f0b0080;\n\t\tpublic static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0b00a0;\n\t\tpublic static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0b009f;\n\t\tpublic static final int Base_Widget_AppCompat_Button = 0x7f0b00b0;\n\t\tpublic static final int Base_Widget_AppCompat_ButtonBar = 0x7f0b00ba;\n\t\tpublic static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0b00bb;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0b00b2;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0b00b3;\n\t\tpublic static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0b00b4;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Small = 0x7f0b00b1;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0b00ab;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0b00ac;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0b00ad;\n\t\tpublic static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0b00aa;\n\t\tpublic static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0b00a9;\n\t\tpublic static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0b008d;\n\t\tpublic static final int Base_Widget_AppCompat_EditText = 0x7f0b00a8;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0b0073;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0075;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b007a;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b007e;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b007f;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b007c;\n\t\tpublic static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0b0097;\n\t\tpublic static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0b0095;\n\t\tpublic static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0b0093;\n\t\tpublic static final int Base_Widget_AppCompat_ListView = 0x7f0b008e;\n\t\tpublic static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0b008f;\n\t\tpublic static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0b0092;\n\t\tpublic static final int Base_Widget_AppCompat_PopupMenu = 0x7f0b0096;\n\t\tpublic static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0b0094;\n\t\tpublic static final int Base_Widget_AppCompat_PopupWindow = 0x7f0b00a1;\n\t\tpublic static final int Base_Widget_AppCompat_ProgressBar = 0x7f0b0089;\n\t\tpublic static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0088;\n\t\tpublic static final int Base_Widget_AppCompat_RatingBar = 0x7f0b00af;\n\t\tpublic static final int Base_Widget_AppCompat_SearchView = 0x7f0b00a6;\n\t\tpublic static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0b00a7;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner = 0x7f0b008a;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b008c;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0b008b;\n\t\tpublic static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0b00b5;\n\t\tpublic static final int Base_Widget_AppCompat_Toolbar = 0x7f0b00a2;\n\t\tpublic static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b00a3;\n\t\tpublic static final int Platform_AppCompat = 0x7f0b00f4;\n\t\tpublic static final int Platform_AppCompat_Light = 0x7f0b00f5;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0b0109;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0b010a;\n\t\tpublic static final int Platform_V11_AppCompat = 0x7f0b010f;\n\t\tpublic static final int Platform_V11_AppCompat_Light = 0x7f0b0110;\n\t\tpublic static final int Platform_V12_AppCompat = 0x7f0b0113;\n\t\tpublic static final int Platform_V12_AppCompat_Light = 0x7f0b0114;\n\t\tpublic static final int Platform_V14_AppCompat = 0x7f0b0115;\n\t\tpublic static final int Platform_V14_AppCompat_Light = 0x7f0b0116;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0b00db;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0b00dc;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0b00dd;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0b00de;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0b00df;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0b00d5;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0b00d6;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0b00d8;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0b00d9;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0b00d7;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0b00da;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b00e0;\n\t\tpublic static final int TextAppearance_AppCompat = 0x7f0b0048;\n\t\tpublic static final int TextAppearance_AppCompat_Body1 = 0x7f0b0053;\n\t\tpublic static final int TextAppearance_AppCompat_Body2 = 0x7f0b0052;\n\t\tpublic static final int TextAppearance_AppCompat_Button = 0x7f0b005d;\n\t\tpublic static final int TextAppearance_AppCompat_Caption = 0x7f0b0054;\n\t\tpublic static final int TextAppearance_AppCompat_Display1 = 0x7f0b004c;\n\t\tpublic static final int TextAppearance_AppCompat_Display2 = 0x7f0b004b;\n\t\tpublic static final int TextAppearance_AppCompat_Display3 = 0x7f0b004a;\n\t\tpublic static final int TextAppearance_AppCompat_Display4 = 0x7f0b0049;\n\t\tpublic static final int TextAppearance_AppCompat_Headline = 0x7f0b004d;\n\t\tpublic static final int TextAppearance_AppCompat_Inverse = 0x7f0b0056;\n\t\tpublic static final int TextAppearance_AppCompat_Large = 0x7f0b0057;\n\t\tpublic static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0b0058;\n\t\tpublic static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b0064;\n\t\tpublic static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b0063;\n\t\tpublic static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b002b;\n\t\tpublic static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b002c;\n\t\tpublic static final int TextAppearance_AppCompat_Medium = 0x7f0b0059;\n\t\tpublic static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0b005a;\n\t\tpublic static final int TextAppearance_AppCompat_Menu = 0x7f0b0055;\n\t\tpublic static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b002e;\n\t\tpublic static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b002d;\n\t\tpublic static final int TextAppearance_AppCompat_Small = 0x7f0b005b;\n\t\tpublic static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0b005c;\n\t\tpublic static final int TextAppearance_AppCompat_Subhead = 0x7f0b0050;\n\t\tpublic static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0b0051;\n\t\tpublic static final int TextAppearance_AppCompat_Title = 0x7f0b004e;\n\t\tpublic static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0b004f;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0015;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0005;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0007;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0004;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0006;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0018;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0067;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b0017;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b0066;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0019;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0029;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b002a;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0b005e;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0b005f;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0021;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0b0045;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0b0044;\n\t\tpublic static final int ThemeOverlay_AppCompat = 0x7f0b00ef;\n\t\tpublic static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0b00f2;\n\t\tpublic static final int ThemeOverlay_AppCompat_Dark = 0x7f0b00f1;\n\t\tpublic static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0b00f3;\n\t\tpublic static final int ThemeOverlay_AppCompat_Light = 0x7f0b00f0;\n\t\tpublic static final int Theme_AppCompat = 0x7f0b00e1;\n\t\tpublic static final int Theme_AppCompat_CompactMenu = 0x7f0b00ee;\n\t\tpublic static final int Theme_AppCompat_Dialog = 0x7f0b00e8;\n\t\tpublic static final int Theme_AppCompat_DialogWhenLarge = 0x7f0b00e6;\n\t\tpublic static final int Theme_AppCompat_Dialog_Alert = 0x7f0b00ea;\n\t\tpublic static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0b00ec;\n\t\tpublic static final int Theme_AppCompat_Light = 0x7f0b00e2;\n\t\tpublic static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b00e3;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog = 0x7f0b00e9;\n\t\tpublic static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b00e7;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0b00eb;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0b00ed;\n\t\tpublic static final int Theme_AppCompat_Light_NoActionBar = 0x7f0b00e5;\n\t\tpublic static final int Theme_AppCompat_NoActionBar = 0x7f0b00e4;\n\t\tpublic static final int Widget_AppCompat_ActionBar = 0x7f0b0000;\n\t\tpublic static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b0002;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b000d;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b0011;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b000f;\n\t\tpublic static final int Widget_AppCompat_ActionButton = 0x7f0b000a;\n\t\tpublic static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b000b;\n\t\tpublic static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b000c;\n\t\tpublic static final int Widget_AppCompat_ActionMode = 0x7f0b0016;\n\t\tpublic static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0030;\n\t\tpublic static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b002f;\n\t\tpublic static final int Widget_AppCompat_Button = 0x7f0b0038;\n\t\tpublic static final int Widget_AppCompat_ButtonBar = 0x7f0b003d;\n\t\tpublic static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0b003e;\n\t\tpublic static final int Widget_AppCompat_Button_Borderless = 0x7f0b003a;\n\t\tpublic static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0b003b;\n\t\tpublic static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0b003c;\n\t\tpublic static final int Widget_AppCompat_Button_Small = 0x7f0b0039;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0b0035;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0b0036;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0b0034;\n\t\tpublic static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0b0012;\n\t\tpublic static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b001e;\n\t\tpublic static final int Widget_AppCompat_EditText = 0x7f0b0033;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0001;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0003;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0060;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b000e;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b0061;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b0013;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b0014;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0010;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b0062;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton = 0x7f0b006a;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b006c;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b006b;\n\t\tpublic static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b0065;\n\t\tpublic static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0071;\n\t\tpublic static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0070;\n\t\tpublic static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0068;\n\t\tpublic static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0b006f;\n\t\tpublic static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b006e;\n\t\tpublic static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b0026;\n\t\tpublic static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0b0024;\n\t\tpublic static final int Widget_AppCompat_Light_SearchView = 0x7f0b0069;\n\t\tpublic static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b006d;\n\t\tpublic static final int Widget_AppCompat_ListPopupWindow = 0x7f0b0022;\n\t\tpublic static final int Widget_AppCompat_ListView = 0x7f0b001f;\n\t\tpublic static final int Widget_AppCompat_ListView_DropDown = 0x7f0b0020;\n\t\tpublic static final int Widget_AppCompat_ListView_Menu = 0x7f0b0027;\n\t\tpublic static final int Widget_AppCompat_PopupMenu = 0x7f0b0025;\n\t\tpublic static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0b0023;\n\t\tpublic static final int Widget_AppCompat_PopupWindow = 0x7f0b0028;\n\t\tpublic static final int Widget_AppCompat_ProgressBar = 0x7f0b0009;\n\t\tpublic static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0008;\n\t\tpublic static final int Widget_AppCompat_RatingBar = 0x7f0b0037;\n\t\tpublic static final int Widget_AppCompat_SearchView = 0x7f0b0031;\n\t\tpublic static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0b0032;\n\t\tpublic static final int Widget_AppCompat_Spinner = 0x7f0b001a;\n\t\tpublic static final int Widget_AppCompat_Spinner_DropDown = 0x7f0b001c;\n\t\tpublic static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b001d;\n\t\tpublic static final int Widget_AppCompat_Spinner_Underlined = 0x7f0b001b;\n\t\tpublic static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0b003f;\n\t\tpublic static final int Widget_AppCompat_Toolbar = 0x7f0b0042;\n\t\tpublic static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b0043;\n\t}\n\tpublic static final class styleable {\n\t\tpublic 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 };\n\t\tpublic static final int[] ActionBarLayout = { 0x010100b3 };\n\t\tpublic static final int ActionBarLayout_android_layout_gravity = 0;\n\t\tpublic static final int ActionBar_background = 11;\n\t\tpublic static final int ActionBar_backgroundSplit = 13;\n\t\tpublic static final int ActionBar_backgroundStacked = 12;\n\t\tpublic static final int ActionBar_contentInsetEnd = 22;\n\t\tpublic static final int ActionBar_contentInsetLeft = 23;\n\t\tpublic static final int ActionBar_contentInsetRight = 24;\n\t\tpublic static final int ActionBar_contentInsetStart = 21;\n\t\tpublic static final int ActionBar_customNavigationLayout = 14;\n\t\tpublic static final int ActionBar_displayOptions = 4;\n\t\tpublic static final int ActionBar_divider = 10;\n\t\tpublic static final int ActionBar_elevation = 25;\n\t\tpublic static final int ActionBar_height = 1;\n\t\tpublic static final int ActionBar_hideOnContentScroll = 20;\n\t\tpublic static final int ActionBar_homeAsUpIndicator = 2;\n\t\tpublic static final int ActionBar_homeLayout = 15;\n\t\tpublic static final int ActionBar_icon = 8;\n\t\tpublic static final int ActionBar_indeterminateProgressStyle = 17;\n\t\tpublic static final int ActionBar_itemPadding = 19;\n\t\tpublic static final int ActionBar_logo = 9;\n\t\tpublic static final int ActionBar_navigationMode = 3;\n\t\tpublic static final int ActionBar_popupTheme = 26;\n\t\tpublic static final int ActionBar_progressBarPadding = 18;\n\t\tpublic static final int ActionBar_progressBarStyle = 16;\n\t\tpublic static final int ActionBar_subtitle = 5;\n\t\tpublic static final int ActionBar_subtitleTextStyle = 7;\n\t\tpublic static final int ActionBar_title = 0;\n\t\tpublic static final int ActionBar_titleTextStyle = 6;\n\t\tpublic static final int[] ActionMenuItemView = { 0x0101013f };\n\t\tpublic static final int ActionMenuItemView_android_minWidth = 0;\n\t\tpublic static final int[] ActionMenuView = { };\n\t\tpublic static final int[] ActionMode = { 0x7f010001, 0x7f01006e, 0x7f01006f, 0x7f010073, 0x7f010075, 0x7f010083 };\n\t\tpublic static final int ActionMode_background = 3;\n\t\tpublic static final int ActionMode_backgroundSplit = 4;\n\t\tpublic static final int ActionMode_closeItemLayout = 5;\n\t\tpublic static final int ActionMode_height = 0;\n\t\tpublic static final int ActionMode_subtitleTextStyle = 2;\n\t\tpublic static final int ActionMode_titleTextStyle = 1;\n\t\tpublic static final int[] ActivityChooserView = { 0x7f01009e, 0x7f01009f };\n\t\tpublic static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;\n\t\tpublic static final int ActivityChooserView_initialActivityCount = 0;\n\t\tpublic static final int[] AlertDialog = { 0x010100f2, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6 };\n\t\tpublic static final int AlertDialog_android_layout = 0;\n\t\tpublic static final int AlertDialog_buttonPanelSideLayout = 1;\n\t\tpublic static final int AlertDialog_listItemLayout = 5;\n\t\tpublic static final int AlertDialog_listLayout = 2;\n\t\tpublic static final int AlertDialog_multiChoiceItemLayout = 3;\n\t\tpublic static final int AlertDialog_singleChoiceItemLayout = 4;\n\t\tpublic static final int[] AppCompatTextView = { 0x01010034, 0x7f0100a0 };\n\t\tpublic static final int AppCompatTextView_android_textAppearance = 0;\n\t\tpublic static final int AppCompatTextView_textAllCaps = 1;\n\t\tpublic static final int[] DrawerArrowToggle = { 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 };\n\t\tpublic static final int DrawerArrowToggle_barSize = 6;\n\t\tpublic static final int DrawerArrowToggle_color = 0;\n\t\tpublic static final int DrawerArrowToggle_drawableSize = 2;\n\t\tpublic static final int DrawerArrowToggle_gapBetweenBars = 3;\n\t\tpublic static final int DrawerArrowToggle_middleBarArrowSize = 5;\n\t\tpublic static final int DrawerArrowToggle_spinBars = 1;\n\t\tpublic static final int DrawerArrowToggle_thickness = 7;\n\t\tpublic static final int DrawerArrowToggle_topBottomBarArrowSize = 4;\n\t\tpublic static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010072, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3 };\n\t\tpublic static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_height = 2;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_weight = 3;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_width = 1;\n\t\tpublic static final int LinearLayoutCompat_android_baselineAligned = 2;\n\t\tpublic static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;\n\t\tpublic static final int LinearLayoutCompat_android_gravity = 0;\n\t\tpublic static final int LinearLayoutCompat_android_orientation = 1;\n\t\tpublic static final int LinearLayoutCompat_android_weightSum = 4;\n\t\tpublic static final int LinearLayoutCompat_divider = 5;\n\t\tpublic static final int LinearLayoutCompat_dividerPadding = 8;\n\t\tpublic static final int LinearLayoutCompat_measureWithLargestChild = 6;\n\t\tpublic static final int LinearLayoutCompat_showDividers = 7;\n\t\tpublic static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };\n\t\tpublic static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;\n\t\tpublic static final int ListPopupWindow_android_dropDownVerticalOffset = 1;\n\t\tpublic static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };\n\t\tpublic static final int MenuGroup_android_checkableBehavior = 5;\n\t\tpublic static final int MenuGroup_android_enabled = 0;\n\t\tpublic static final int MenuGroup_android_id = 1;\n\t\tpublic static final int MenuGroup_android_menuCategory = 3;\n\t\tpublic static final int MenuGroup_android_orderInCategory = 4;\n\t\tpublic static final int MenuGroup_android_visible = 2;\n\t\tpublic static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d };\n\t\tpublic static final int MenuItem_actionLayout = 14;\n\t\tpublic static final int MenuItem_actionProviderClass = 16;\n\t\tpublic static final int MenuItem_actionViewClass = 15;\n\t\tpublic static final int MenuItem_android_alphabeticShortcut = 9;\n\t\tpublic static final int MenuItem_android_checkable = 11;\n\t\tpublic static final int MenuItem_android_checked = 3;\n\t\tpublic static final int MenuItem_android_enabled = 1;\n\t\tpublic static final int MenuItem_android_icon = 0;\n\t\tpublic static final int MenuItem_android_id = 2;\n\t\tpublic static final int MenuItem_android_menuCategory = 5;\n\t\tpublic static final int MenuItem_android_numericShortcut = 10;\n\t\tpublic static final int MenuItem_android_onClick = 12;\n\t\tpublic static final int MenuItem_android_orderInCategory = 6;\n\t\tpublic static final int MenuItem_android_title = 7;\n\t\tpublic static final int MenuItem_android_titleCondensed = 8;\n\t\tpublic static final int MenuItem_android_visible = 4;\n\t\tpublic static final int MenuItem_showAsAction = 13;\n\t\tpublic static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010089 };\n\t\tpublic static final int MenuView_android_headerBackground = 4;\n\t\tpublic static final int MenuView_android_horizontalDivider = 2;\n\t\tpublic static final int MenuView_android_itemBackground = 5;\n\t\tpublic static final int MenuView_android_itemIconDisabledAlpha = 6;\n\t\tpublic static final int MenuView_android_itemTextAppearance = 1;\n\t\tpublic static final int MenuView_android_verticalDivider = 3;\n\t\tpublic static final int MenuView_android_windowAnimationStyle = 0;\n\t\tpublic static final int MenuView_preserveIconSpacing = 7;\n\t\tpublic static final int[] PopupWindow = { 0x01010176, 0x7f0100b1 };\n\t\tpublic static final int[] PopupWindowBackgroundState = { 0x7f0100b0 };\n\t\tpublic static final int PopupWindowBackgroundState_state_above_anchor = 0;\n\t\tpublic static final int PopupWindow_android_popupBackground = 0;\n\t\tpublic static final int PopupWindow_overlapAnchor = 1;\n\t\tpublic static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d };\n\t\tpublic static final int SearchView_android_focusable = 0;\n\t\tpublic static final int SearchView_android_imeOptions = 3;\n\t\tpublic static final int SearchView_android_inputType = 2;\n\t\tpublic static final int SearchView_android_maxWidth = 1;\n\t\tpublic static final int SearchView_closeIcon = 7;\n\t\tpublic static final int SearchView_commitIcon = 12;\n\t\tpublic static final int SearchView_goIcon = 8;\n\t\tpublic static final int SearchView_iconifiedByDefault = 5;\n\t\tpublic static final int SearchView_layout = 4;\n\t\tpublic static final int SearchView_queryBackground = 14;\n\t\tpublic static final int SearchView_queryHint = 6;\n\t\tpublic static final int SearchView_searchHintIcon = 10;\n\t\tpublic static final int SearchView_searchIcon = 9;\n\t\tpublic static final int SearchView_submitBackground = 15;\n\t\tpublic static final int SearchView_suggestionRowLayout = 13;\n\t\tpublic static final int SearchView_voiceIcon = 11;\n\t\tpublic static final int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091 };\n\t\tpublic static final int Spinner_android_background = 1;\n\t\tpublic static final int Spinner_android_dropDownHorizontalOffset = 5;\n\t\tpublic static final int Spinner_android_dropDownSelector = 2;\n\t\tpublic static final int Spinner_android_dropDownVerticalOffset = 6;\n\t\tpublic static final int Spinner_android_dropDownWidth = 4;\n\t\tpublic static final int Spinner_android_gravity = 0;\n\t\tpublic static final int Spinner_android_popupBackground = 3;\n\t\tpublic static final int Spinner_disableChildrenWhenDisabled = 10;\n\t\tpublic static final int Spinner_popupPromptView = 9;\n\t\tpublic static final int Spinner_prompt = 7;\n\t\tpublic static final int Spinner_spinnerMode = 8;\n\t\tpublic static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1 };\n\t\tpublic static final int SwitchCompat_android_textOff = 1;\n\t\tpublic static final int SwitchCompat_android_textOn = 0;\n\t\tpublic static final int SwitchCompat_android_thumb = 2;\n\t\tpublic static final int SwitchCompat_showText = 9;\n\t\tpublic static final int SwitchCompat_splitTrack = 8;\n\t\tpublic static final int SwitchCompat_switchMinWidth = 6;\n\t\tpublic static final int SwitchCompat_switchPadding = 7;\n\t\tpublic static final int SwitchCompat_switchTextAppearance = 5;\n\t\tpublic static final int SwitchCompat_thumbTextPadding = 4;\n\t\tpublic static final int SwitchCompat_track = 3;\n\t\tpublic static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f0100a0 };\n\t\tpublic static final int TextAppearance_android_textColor = 3;\n\t\tpublic static final int TextAppearance_android_textSize = 0;\n\t\tpublic static final int TextAppearance_android_textStyle = 2;\n\t\tpublic static final int TextAppearance_android_typeface = 1;\n\t\tpublic static final int TextAppearance_textAllCaps = 4;\n\t\tpublic 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 };\n\t\tpublic static final int Theme_actionBarDivider = 23;\n\t\tpublic static final int Theme_actionBarItemBackground = 24;\n\t\tpublic static final int Theme_actionBarPopupTheme = 17;\n\t\tpublic static final int Theme_actionBarSize = 22;\n\t\tpublic static final int Theme_actionBarSplitStyle = 19;\n\t\tpublic static final int Theme_actionBarStyle = 18;\n\t\tpublic static final int Theme_actionBarTabBarStyle = 13;\n\t\tpublic static final int Theme_actionBarTabStyle = 12;\n\t\tpublic static final int Theme_actionBarTabTextStyle = 14;\n\t\tpublic static final int Theme_actionBarTheme = 20;\n\t\tpublic static final int Theme_actionBarWidgetTheme = 21;\n\t\tpublic static final int Theme_actionButtonStyle = 49;\n\t\tpublic static final int Theme_actionDropDownStyle = 45;\n\t\tpublic static final int Theme_actionMenuTextAppearance = 25;\n\t\tpublic static final int Theme_actionMenuTextColor = 26;\n\t\tpublic static final int Theme_actionModeBackground = 29;\n\t\tpublic static final int Theme_actionModeCloseButtonStyle = 28;\n\t\tpublic static final int Theme_actionModeCloseDrawable = 31;\n\t\tpublic static final int Theme_actionModeCopyDrawable = 33;\n\t\tpublic static final int Theme_actionModeCutDrawable = 32;\n\t\tpublic static final int Theme_actionModeFindDrawable = 37;\n\t\tpublic static final int Theme_actionModePasteDrawable = 34;\n\t\tpublic static final int Theme_actionModePopupWindowStyle = 39;\n\t\tpublic static final int Theme_actionModeSelectAllDrawable = 35;\n\t\tpublic static final int Theme_actionModeShareDrawable = 36;\n\t\tpublic static final int Theme_actionModeSplitBackground = 30;\n\t\tpublic static final int Theme_actionModeStyle = 27;\n\t\tpublic static final int Theme_actionModeWebSearchDrawable = 38;\n\t\tpublic static final int Theme_actionOverflowButtonStyle = 15;\n\t\tpublic static final int Theme_actionOverflowMenuStyle = 16;\n\t\tpublic static final int Theme_activityChooserViewStyle = 56;\n\t\tpublic static final int Theme_alertDialogButtonGroupStyle = 89;\n\t\tpublic static final int Theme_alertDialogCenterButtons = 90;\n\t\tpublic static final int Theme_alertDialogStyle = 88;\n\t\tpublic static final int Theme_alertDialogTheme = 91;\n\t\tpublic static final int Theme_android_windowAnimationStyle = 1;\n\t\tpublic static final int Theme_android_windowIsFloating = 0;\n\t\tpublic static final int Theme_autoCompleteTextViewStyle = 96;\n\t\tpublic static final int Theme_buttonBarButtonStyle = 51;\n\t\tpublic static final int Theme_buttonBarNegativeButtonStyle = 94;\n\t\tpublic static final int Theme_buttonBarNeutralButtonStyle = 95;\n\t\tpublic static final int Theme_buttonBarPositiveButtonStyle = 93;\n\t\tpublic static final int Theme_buttonBarStyle = 50;\n\t\tpublic static final int Theme_buttonStyle = 97;\n\t\tpublic static final int Theme_buttonStyleSmall = 98;\n\t\tpublic static final int Theme_checkboxStyle = 99;\n\t\tpublic static final int Theme_checkedTextViewStyle = 100;\n\t\tpublic static final int Theme_colorAccent = 82;\n\t\tpublic static final int Theme_colorButtonNormal = 86;\n\t\tpublic static final int Theme_colorControlActivated = 84;\n\t\tpublic static final int Theme_colorControlHighlight = 85;\n\t\tpublic static final int Theme_colorControlNormal = 83;\n\t\tpublic static final int Theme_colorPrimary = 80;\n\t\tpublic static final int Theme_colorPrimaryDark = 81;\n\t\tpublic static final int Theme_colorSwitchThumbNormal = 87;\n\t\tpublic static final int Theme_dialogPreferredPadding = 43;\n\t\tpublic static final int Theme_dialogTheme = 42;\n\t\tpublic static final int Theme_dividerHorizontal = 55;\n\t\tpublic static final int Theme_dividerVertical = 54;\n\t\tpublic static final int Theme_dropDownListViewStyle = 72;\n\t\tpublic static final int Theme_dropdownListPreferredItemHeight = 46;\n\t\tpublic static final int Theme_editTextBackground = 62;\n\t\tpublic static final int Theme_editTextColor = 61;\n\t\tpublic static final int Theme_editTextStyle = 101;\n\t\tpublic static final int Theme_homeAsUpIndicator = 48;\n\t\tpublic static final int Theme_listChoiceBackgroundIndicator = 79;\n\t\tpublic static final int Theme_listDividerAlertDialog = 44;\n\t\tpublic static final int Theme_listPopupWindowStyle = 73;\n\t\tpublic static final int Theme_listPreferredItemHeight = 67;\n\t\tpublic static final int Theme_listPreferredItemHeightLarge = 69;\n\t\tpublic static final int Theme_listPreferredItemHeightSmall = 68;\n\t\tpublic static final int Theme_listPreferredItemPaddingLeft = 70;\n\t\tpublic static final int Theme_listPreferredItemPaddingRight = 71;\n\t\tpublic static final int Theme_panelBackground = 76;\n\t\tpublic static final int Theme_panelMenuListTheme = 78;\n\t\tpublic static final int Theme_panelMenuListWidth = 77;\n\t\tpublic static final int Theme_popupMenuStyle = 59;\n\t\tpublic static final int Theme_popupWindowStyle = 60;\n\t\tpublic static final int Theme_radioButtonStyle = 102;\n\t\tpublic static final int Theme_ratingBarStyle = 103;\n\t\tpublic static final int Theme_searchViewStyle = 66;\n\t\tpublic static final int Theme_selectableItemBackground = 52;\n\t\tpublic static final int Theme_selectableItemBackgroundBorderless = 53;\n\t\tpublic static final int Theme_spinnerDropDownItemStyle = 47;\n\t\tpublic static final int Theme_spinnerStyle = 104;\n\t\tpublic static final int Theme_switchStyle = 105;\n\t\tpublic static final int Theme_textAppearanceLargePopupMenu = 40;\n\t\tpublic static final int Theme_textAppearanceListItem = 74;\n\t\tpublic static final int Theme_textAppearanceListItemSmall = 75;\n\t\tpublic static final int Theme_textAppearanceSearchResultSubtitle = 64;\n\t\tpublic static final int Theme_textAppearanceSearchResultTitle = 63;\n\t\tpublic static final int Theme_textAppearanceSmallPopupMenu = 41;\n\t\tpublic static final int Theme_textColorAlertDialogListItem = 92;\n\t\tpublic static final int Theme_textColorSearchUrl = 65;\n\t\tpublic static final int Theme_toolbarNavigationButtonStyle = 58;\n\t\tpublic static final int Theme_toolbarStyle = 57;\n\t\tpublic static final int Theme_windowActionBar = 2;\n\t\tpublic static final int Theme_windowActionBarOverlay = 4;\n\t\tpublic static final int Theme_windowActionModeOverlay = 5;\n\t\tpublic static final int Theme_windowFixedHeightMajor = 9;\n\t\tpublic static final int Theme_windowFixedHeightMinor = 7;\n\t\tpublic static final int Theme_windowFixedWidthMajor = 6;\n\t\tpublic static final int Theme_windowFixedWidthMinor = 8;\n\t\tpublic static final int Theme_windowMinWidthMajor = 10;\n\t\tpublic static final int Theme_windowMinWidthMinor = 11;\n\t\tpublic static final int Theme_windowNoTitle = 3;\n\t\tpublic 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 };\n\t\tpublic static final int Toolbar_android_gravity = 0;\n\t\tpublic static final int Toolbar_android_minHeight = 1;\n\t\tpublic static final int Toolbar_collapseContentDescription = 18;\n\t\tpublic static final int Toolbar_collapseIcon = 17;\n\t\tpublic static final int Toolbar_contentInsetEnd = 5;\n\t\tpublic static final int Toolbar_contentInsetLeft = 6;\n\t\tpublic static final int Toolbar_contentInsetRight = 7;\n\t\tpublic static final int Toolbar_contentInsetStart = 4;\n\t\tpublic static final int Toolbar_maxButtonHeight = 16;\n\t\tpublic static final int Toolbar_navigationContentDescription = 20;\n\t\tpublic static final int Toolbar_navigationIcon = 19;\n\t\tpublic static final int Toolbar_popupTheme = 8;\n\t\tpublic static final int Toolbar_subtitle = 3;\n\t\tpublic static final int Toolbar_subtitleTextAppearance = 10;\n\t\tpublic static final int Toolbar_title = 2;\n\t\tpublic static final int Toolbar_titleMarginBottom = 15;\n\t\tpublic static final int Toolbar_titleMarginEnd = 13;\n\t\tpublic static final int Toolbar_titleMarginStart = 12;\n\t\tpublic static final int Toolbar_titleMarginTop = 14;\n\t\tpublic static final int Toolbar_titleMargins = 11;\n\t\tpublic static final int Toolbar_titleTextAppearance = 9;\n\t\tpublic static final int[] View = { 0x01010000, 0x010100da, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088 };\n\t\tpublic static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };\n\t\tpublic static final int ViewStubCompat_android_id = 0;\n\t\tpublic static final int ViewStubCompat_android_inflatedId = 2;\n\t\tpublic static final int ViewStubCompat_android_layout = 1;\n\t\tpublic static final int View_android_focusable = 1;\n\t\tpublic static final int View_android_theme = 0;\n\t\tpublic static final int View_backgroundTint = 5;\n\t\tpublic static final int View_backgroundTintMode = 6;\n\t\tpublic static final int View_paddingEnd = 3;\n\t\tpublic static final int View_paddingStart = 2;\n\t\tpublic static final int View_theme = 4;\n\t}\n}\n"
  },
  {
    "path": "Sample/gen/com/sloop/fz3d/BuildConfig.java",
    "content": "/** Automatically generated file. DO NOT MODIFY */\npackage com.sloop.fz3d;\n\npublic final class BuildConfig {\n    public final static boolean DEBUG = true;\n}"
  },
  {
    "path": "Sample/gen/com/sloop/fz3d/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\n\npackage com.sloop.fz3d;\n\npublic final class R {\n    public static final class anim {\n        public static final int abc_fade_in=0x7f040000;\n        public static final int abc_fade_out=0x7f040001;\n        public static final int abc_grow_fade_in_from_bottom=0x7f040002;\n        public static final int abc_popup_enter=0x7f040003;\n        public static final int abc_popup_exit=0x7f040004;\n        public static final int abc_shrink_fade_out_from_bottom=0x7f040005;\n        public static final int abc_slide_in_bottom=0x7f040006;\n        public static final int abc_slide_in_top=0x7f040007;\n        public static final int abc_slide_out_bottom=0x7f040008;\n        public static final int abc_slide_out_top=0x7f040009;\n    }\n    public static final class attr {\n        /**  Custom divider drawable to use for elements in the action bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarDivider=0x7f010018;\n        /**  Custom item state list drawable background for action bar items. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarItemBackground=0x7f010019;\n        /**  Reference to a theme that should be used to inflate popups\n             shown by widgets in the action bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarPopupTheme=0x7f010012;\n        /**  Size of the Action Bar, including the contextual\n             bar used to present Action Modes. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n<p>May be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>\n</table>\n         */\n        public static final int actionBarSize=0x7f010017;\n        /**  Reference to a style for the split Action Bar. This style\n             controls the split component that holds the menu/action\n             buttons. actionBarStyle is still used for the primary\n             bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarSplitStyle=0x7f010014;\n        /**  Reference to a style for the Action Bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarStyle=0x7f010013;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTabBarStyle=0x7f01000e;\n        /**  Default style for tabs within an action bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTabStyle=0x7f01000d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTabTextStyle=0x7f01000f;\n        /**  Reference to a theme that should be used to inflate the\n             action bar. This will be inherited by any widget inflated\n             into the action bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTheme=0x7f010015;\n        /**  Reference to a theme that should be used to inflate widgets\n             and layouts destined for the action bar. Most of the time\n             this will be a reference to the current theme, but when\n             the action bar has a significantly different contrast\n             profile than the rest of the activity the difference\n             can become important. If this is set to @null the current\n             theme will be used.\n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarWidgetTheme=0x7f010016;\n        /**  Default action button style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionButtonStyle=0x7f010032;\n        /**  Default ActionBar dropdown style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionDropDownStyle=0x7f01002e;\n        /**  An optional layout to be used as an action view.\n             See {@link android.view.MenuItem#setActionView(android.view.View)}\n             for more info. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionLayout=0x7f01008b;\n        /**  TextAppearance style that will be applied to text that\n             appears within action menu items. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionMenuTextAppearance=0x7f01001a;\n        /**  Color for text that appears within action menu items. \n Color for text that appears within action menu items. \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int actionMenuTextColor=0x7f01001b;\n        /**  Background drawable to use for action mode UI \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeBackground=0x7f01001e;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCloseButtonStyle=0x7f01001d;\n        /**  Drawable to use for the close action mode button \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCloseDrawable=0x7f010020;\n        /**  Drawable to use for the Copy action button in Contextual Action Bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCopyDrawable=0x7f010022;\n        /**  Drawable to use for the Cut action button in Contextual Action Bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCutDrawable=0x7f010021;\n        /**  Drawable to use for the Find action button in WebView selection action modes \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeFindDrawable=0x7f010026;\n        /**  Drawable to use for the Paste action button in Contextual Action Bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModePasteDrawable=0x7f010023;\n        /**  PopupWindow style to use for action modes when showing as a window overlay. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModePopupWindowStyle=0x7f010028;\n        /**  Drawable to use for the Select all action button in Contextual Action Bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeSelectAllDrawable=0x7f010024;\n        /**  Drawable to use for the Share action button in WebView selection action modes \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeShareDrawable=0x7f010025;\n        /**  Background drawable to use for action mode UI in the lower split bar \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeSplitBackground=0x7f01001f;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeStyle=0x7f01001c;\n        /**  Drawable to use for the Web Search action button in WebView selection action modes \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeWebSearchDrawable=0x7f010027;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionOverflowButtonStyle=0x7f010010;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionOverflowMenuStyle=0x7f010011;\n        /**  The name of an optional ActionProvider class to instantiate an action view\n             and perform operations such as default action for that menu item.\n             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}\n             for more info. \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int actionProviderClass=0x7f01008d;\n        /**  The name of an optional View class to instantiate and use as an\n             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}\n             for more info. \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int actionViewClass=0x7f01008c;\n        /**  Default ActivityChooserView style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int activityChooserViewStyle=0x7f010039;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int alertDialogButtonGroupStyle=0x7f01005a;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int alertDialogCenterButtons=0x7f01005b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int alertDialogStyle=0x7f010059;\n        /**  Theme to use for alert dialogs spawned from this theme. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int alertDialogTheme=0x7f01005c;\n        /**  Default AutoCompleteTextView style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int autoCompleteTextViewStyle=0x7f010061;\n        /**  Specifies a background drawable for the action bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int background=0x7f010073;\n        /**  Specifies a background drawable for the bottom component of a split action bar. \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int backgroundSplit=0x7f010075;\n        /**  Specifies a background drawable for a second stacked row of the action bar. \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int backgroundStacked=0x7f010074;\n        /**  Tint to apply to the background. \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int backgroundTint=0x7f010087;\n        /**  Blending mode used to apply the background tint. \n         <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>src_over</code></td><td>3</td><td> The tint is drawn on top of the drawable.\n                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>\n<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\n                 color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>\n<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha\n                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>\n<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of\n                 the tint. [Sa * Da, Sc * Dc] </td></tr>\n<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>\n</table>\n         */\n        public static final int backgroundTintMode=0x7f010088;\n        /**  The size of the bars when they are parallel to each other \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int barSize=0x7f0100b8;\n        /**  Style for buttons within button bars \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarButtonStyle=0x7f010034;\n        /**  Style for the \"negative\" buttons within button bars \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarNegativeButtonStyle=0x7f01005f;\n        /**  Style for the \"neutral\" buttons within button bars \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarNeutralButtonStyle=0x7f010060;\n        /**  Style for the \"positive\" buttons within button bars \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarPositiveButtonStyle=0x7f01005e;\n        /**  Style for button bars \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarStyle=0x7f010033;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonPanelSideLayout=0x7f0100c2;\n        /**  Normal Button style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonStyle=0x7f010062;\n        /**  Small Button style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonStyleSmall=0x7f010063;\n        /**  Default Checkbox style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int checkboxStyle=0x7f010064;\n        /**  Default CheckedTextView style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int checkedTextViewStyle=0x7f010065;\n        /**  Close button icon \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int closeIcon=0x7f010095;\n        /**  Specifies a layout to use for the \"close\" item at the starting edge. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int closeItemLayout=0x7f010083;\n        /**  Text to set as the content description for the collapse button. \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int collapseContentDescription=0x7f0100ad;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int collapseIcon=0x7f0100ac;\n        /**  The drawing color for the bars \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int color=0x7f0100b2;\n        /**  Bright complement to the primary branding color. By default, this is the color applied\n             to framework controls (via colorControlActivated). \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorAccent=0x7f010053;\n        /**  The color applied to framework buttons in their normal state. \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorButtonNormal=0x7f010057;\n        /**  The color applied to framework controls in their activated (ex. checked) state. \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorControlActivated=0x7f010055;\n        /**  The color applied to framework control highlights (ex. ripples, list selectors). \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorControlHighlight=0x7f010056;\n        /**  The color applied to framework controls in their normal state. \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorControlNormal=0x7f010054;\n        /**  The primary branding color for the app. By default, this is the color applied to the\n             action bar background. \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorPrimary=0x7f010051;\n        /**  Dark variant of the primary branding color. By default, this is the color applied to\n             the status bar (via statusBarColor) and navigation bar (via navigationBarColor). \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorPrimaryDark=0x7f010052;\n        /**  The color applied to framework switch thumbs in their normal state. \n         <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorSwitchThumbNormal=0x7f010058;\n        /**  Commit icon shown in the query suggestion row \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int commitIcon=0x7f01009a;\n        /**  Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetEnd=0x7f01007e;\n        /**  Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetLeft=0x7f01007f;\n        /**  Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetRight=0x7f010080;\n        /**  Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetStart=0x7f01007d;\n        /**  Specifies a layout for custom navigation. Overrides navigationMode. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int customNavigationLayout=0x7f010076;\n        /**  Preferred padding for dialog content. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int dialogPreferredPadding=0x7f01002c;\n        /**  Theme to use for dialogs spawned from this theme. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dialogTheme=0x7f01002b;\n        /**  Whether this spinner should mark child views as enabled/disabled when\n             the spinner itself is enabled/disabled. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int disableChildrenWhenDisabled=0x7f010091;\n        /**  Options affecting how the action bar is displayed. \n         <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>\n<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>\n<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>\n<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>\n<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>\n<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>\n</table>\n         */\n        public static final int displayOptions=0x7f01006c;\n        /**  Specifies the drawable used for item dividers. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int divider=0x7f010072;\n        /**  A drawable that may be used as a horizontal divider between visual elements. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dividerHorizontal=0x7f010038;\n        /**  Size of padding on either end of a divider. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int dividerPadding=0x7f0100a3;\n        /**  A drawable that may be used as a vertical divider between visual elements. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dividerVertical=0x7f010037;\n        /**  The total size of the drawable \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int drawableSize=0x7f0100b4;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int drawerArrowStyle=0x7f0100ba;\n        /**  ListPopupWindow compatibility \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dropDownListViewStyle=0x7f010049;\n        /**  The preferred item height for dropdown lists. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int dropdownListPreferredItemHeight=0x7f01002f;\n        /**  EditText background drawable. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int editTextBackground=0x7f01003f;\n        /**  EditText text foreground color. \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int editTextColor=0x7f01003e;\n        /**  Default EditText style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int editTextStyle=0x7f010066;\n        /**  Elevation for the action bar itself \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int elevation=0x7f010081;\n        /**  The drawable to show in the button for expanding the activities overflow popup.\n             <strong>Note:</strong> Clients would like to set this drawable\n             as a clue about the action the chosen activity will perform. For\n             example, if share activity is to be chosen the drawable should\n             give a clue that sharing is to be performed.\n         \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int expandActivityOverflowButtonDrawable=0x7f01009f;\n        /**  The max gap between the bars when they are parallel to each other \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int gapBetweenBars=0x7f0100b5;\n        /**  Go button icon \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int goIcon=0x7f010096;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int height=0x7f010001;\n        /**  Set true to hide the action bar on a vertical nested scroll of content. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int hideOnContentScroll=0x7f01007c;\n        /**  Specifies a drawable to use for the 'home as up' indicator. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int homeAsUpIndicator=0x7f010031;\n        /**  Specifies a layout to use for the \"home\" section of the action bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int homeLayout=0x7f010077;\n        /**  Specifies the drawable used for the application icon. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int icon=0x7f010070;\n        /**  The default state of the SearchView. If true, it will be iconified when not in\n             use and expanded when clicked. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int iconifiedByDefault=0x7f010093;\n        /**  Specifies a style resource to use for an indeterminate progress spinner. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int indeterminateProgressStyle=0x7f010079;\n        /**  The maximal number of items initially shown in the activity list. \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int initialActivityCount=0x7f01009e;\n        /**  Specifies whether the theme is light, otherwise it is dark. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int isLightTheme=0x7f010002;\n        /**  Specifies padding that should be applied to the left and right sides of\n             system-provided items in the bar. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int itemPadding=0x7f01007b;\n        /**  The layout to use for the search view. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int layout=0x7f010092;\n        /**  Drawable used as a background for selected list items. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listChoiceBackgroundIndicator=0x7f010050;\n        /**  The list divider used in alert dialogs. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listDividerAlertDialog=0x7f01002d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listItemLayout=0x7f0100c6;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listLayout=0x7f0100c3;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listPopupWindowStyle=0x7f01004a;\n        /**  The preferred list item height. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemHeight=0x7f010044;\n        /**  A larger, more robust list item height. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemHeightLarge=0x7f010046;\n        /**  A smaller, sleeker list item height. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemHeightSmall=0x7f010045;\n        /**  The preferred padding along the left edge of list items. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemPaddingLeft=0x7f010047;\n        /**  The preferred padding along the right edge of list items. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemPaddingRight=0x7f010048;\n        /**  Specifies the drawable used for the application logo. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int logo=0x7f010071;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int maxButtonHeight=0x7f0100ab;\n        /**  When set to true, all children with a weight will be considered having\n             the minimum size of the largest child. If false, all children are\n             measured normally. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int measureWithLargestChild=0x7f0100a1;\n        /**  The size of the middle bar when top and bottom bars merge into middle bar to form an arrow \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int middleBarArrowSize=0x7f0100b7;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int multiChoiceItemLayout=0x7f0100c4;\n        /**  Text to set as the content description for the navigation button\n             located at the start of the toolbar. \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int navigationContentDescription=0x7f0100af;\n        /**  Icon drawable to use for the navigation button located at\n             the start of the toolbar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int navigationIcon=0x7f0100ae;\n        /**  The type of navigation to use. \n         <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>normal</code></td><td>0</td><td> Normal static title text </td></tr>\n<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>\n<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>\n</table>\n         */\n        public static final int navigationMode=0x7f01006b;\n        /**  Whether the popup window should overlap its anchor view. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int overlapAnchor=0x7f0100b1;\n        /**  Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int paddingEnd=0x7f010085;\n        /**  Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int paddingStart=0x7f010084;\n        /**  The background of a panel when it is inset from the left and right edges of the screen. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int panelBackground=0x7f01004d;\n        /**  Default Panel Menu style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int panelMenuListTheme=0x7f01004f;\n        /**  Default Panel Menu width. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int panelMenuListWidth=0x7f01004e;\n        /**  Default PopupMenu style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupMenuStyle=0x7f01003c;\n        /**  Reference to a layout to use for displaying a prompt in the dropdown for\n             spinnerMode=\"dropdown\". This layout must contain a TextView with the id\n             {@code @android:id/text1} to be populated with the prompt text. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupPromptView=0x7f010090;\n        /**  Reference to a theme that should be used to inflate popups\n             shown by widgets in the action bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupTheme=0x7f010082;\n        /**  Default PopupWindow style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupWindowStyle=0x7f01003d;\n        /**  Whether space should be reserved in layout when an icon is missing. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int preserveIconSpacing=0x7f010089;\n        /**  Specifies the horizontal padding on either end for an embedded progress bar. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int progressBarPadding=0x7f01007a;\n        /**  Specifies a style resource to use for an embedded progress bar. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int progressBarStyle=0x7f010078;\n        /**  The prompt to display when the spinner's dialog is shown. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int prompt=0x7f01008e;\n        /**  Background for the section containing the search query \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int queryBackground=0x7f01009c;\n        /**  An optional query hint string to be displayed in the empty query field. \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int queryHint=0x7f010094;\n        /**  Default RadioButton style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int radioButtonStyle=0x7f010067;\n        /**  Default RatingBar style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int ratingBarStyle=0x7f010068;\n        /**  Search icon displayed as a text field hint \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int searchHintIcon=0x7f010098;\n        /**  Search icon \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int searchIcon=0x7f010097;\n        /**  Style for the search query widget. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int searchViewStyle=0x7f010043;\n        /**  A style that may be applied to buttons or other selectable items\n             that should react to pressed and focus states, but that do not\n             have a clear visual border along the edges. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int selectableItemBackground=0x7f010035;\n        /**  Background drawable for borderless standalone items that need focus/pressed states. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int selectableItemBackgroundBorderless=0x7f010036;\n        /**  How this item should display in the Action Bar, if present. \n         <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<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.\n                 Mutually exclusive with \"ifRoom\" and \"always\". </td></tr>\n<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\n                 by the system. Favor this option over \"always\" where possible.\n                 Mutually exclusive with \"never\" and \"always\". </td></tr>\n<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override\n                 the system's limits of how much stuff to put there. This may make\n                 your action bar look bad on some screens. In most cases you should\n                 use \"ifRoom\" instead. Mutually exclusive with \"ifRoom\" and \"never\". </td></tr>\n<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\n                 label with it even if it has an icon representation. </td></tr>\n<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu\n                 item. When expanded, the action view takes over a\n                 larger segment of its container. </td></tr>\n</table>\n         */\n        public static final int showAsAction=0x7f01008a;\n        /**  Setting for which dividers to show. \n         <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>beginning</code></td><td>1</td><td></td></tr>\n<tr><td><code>middle</code></td><td>2</td><td></td></tr>\n<tr><td><code>end</code></td><td>4</td><td></td></tr>\n</table>\n         */\n        public static final int showDividers=0x7f0100a2;\n        /**  Whether to draw on/off text. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int showText=0x7f0100c1;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int singleChoiceItemLayout=0x7f0100c5;\n        /**  Whether bars should rotate or not during transition \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int spinBars=0x7f0100b3;\n        /**  Default Spinner style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int spinnerDropDownItemStyle=0x7f010030;\n        /**  Display mode for spinner options. \n         <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>\n<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown\n                 anchored to the spinner widget itself. </td></tr>\n</table>\n         */\n        public static final int spinnerMode=0x7f01008f;\n        /**  Default Spinner style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int spinnerStyle=0x7f010069;\n        /**  Whether to split the track and leave a gap for the thumb drawable. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int splitTrack=0x7f0100c0;\n        /**  State identifier indicating the popup will be above the anchor. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int state_above_anchor=0x7f0100b0;\n        /**  Background for the section containing the action (e.g. voice search) \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int submitBackground=0x7f01009d;\n        /**  Specifies subtitle text used for navigationMode=\"normal\" \n         <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int subtitle=0x7f01006d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int subtitleTextAppearance=0x7f0100a5;\n        /**  Specifies a style to use for subtitle text. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int subtitleTextStyle=0x7f01006f;\n        /**  Layout for query suggestion rows \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int suggestionRowLayout=0x7f01009b;\n        /**  Minimum width for the switch component \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int switchMinWidth=0x7f0100be;\n        /**  Minimum space between the switch and caption text \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int switchPadding=0x7f0100bf;\n        /**  Default style for the Switch widget. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int switchStyle=0x7f01006a;\n        /**  TextAppearance style for text displayed on the switch thumb. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int switchTextAppearance=0x7f0100bd;\n        /**  Present the text in ALL CAPS. This may use a small-caps form when available. \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n         */\n        public static final int textAllCaps=0x7f0100a0;\n        /**  Text color, typeface, size, and style for the text inside of a popup menu. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceLargePopupMenu=0x7f010029;\n        /**  The preferred TextAppearance for the primary text of list items. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceListItem=0x7f01004b;\n        /**  The preferred TextAppearance for the primary text of small list items. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceListItemSmall=0x7f01004c;\n        /**  Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceSearchResultSubtitle=0x7f010041;\n        /**  Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceSearchResultTitle=0x7f010040;\n        /**  Text color, typeface, size, and style for small text inside of a popup menu. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceSmallPopupMenu=0x7f01002a;\n        /**  Color of list item text in alert dialogs. \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int textColorAlertDialogListItem=0x7f01005d;\n        /**  Text color for urls in search suggestions, used by things like global search \n         <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int textColorSearchUrl=0x7f010042;\n        /**  Deprecated. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int theme=0x7f010086;\n        /**  The thickness (stroke size) for the bar paint \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int thickness=0x7f0100b9;\n        /**  Amount of padding on either side of text within the switch thumb. \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int thumbTextPadding=0x7f0100bc;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int title=0x7f010000;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginBottom=0x7f0100aa;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginEnd=0x7f0100a8;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginStart=0x7f0100a7;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginTop=0x7f0100a9;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMargins=0x7f0100a6;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int titleTextAppearance=0x7f0100a4;\n        /**  Specifies a style to use for title text. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int titleTextStyle=0x7f01006e;\n        /**  Default Toolar NavigationButtonStyle \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int toolbarNavigationButtonStyle=0x7f01003b;\n        /**  Default Toolbar style. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int toolbarStyle=0x7f01003a;\n        /**  The size of the top and bottom bars when they merge to the middle bar to form an arrow \n         <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int topBottomBarArrowSize=0x7f0100b6;\n        /**  Drawable to use as the \"track\" that the switch thumb slides within. \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int track=0x7f0100bb;\n        /**  Voice button icon \n         <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int voiceIcon=0x7f010099;\n        /**  Flag indicating whether this window should have an Action Bar\n             in place of the usual title bar. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowActionBar=0x7f010003;\n        /**  Flag indicating whether this window's Action Bar should overlay\n             application content. Does nothing if the window would not\n             have an Action Bar. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowActionBarOverlay=0x7f010005;\n        /**  Flag indicating whether action modes should overlay window content\n             when there is not reserved space for their UI (such as an Action Bar). \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowActionModeOverlay=0x7f010006;\n        /**  A fixed height for the window along the major axis of the screen,\n             that is, when in portrait. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedHeightMajor=0x7f01000a;\n        /**  A fixed height for the window along the minor axis of the screen,\n             that is, when in landscape. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedHeightMinor=0x7f010008;\n        /**  A fixed width for the window along the major axis of the screen,\n             that is, when in landscape. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedWidthMajor=0x7f010007;\n        /**  A fixed width for the window along the minor axis of the screen,\n             that is, when in portrait. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedWidthMinor=0x7f010009;\n        /**  The minimum width the window is allowed to be, along the major\n             axis of the screen.  That is, when in landscape.  Can be either\n             an absolute dimension or a fraction of the screen size in that\n             dimension. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowMinWidthMajor=0x7f01000b;\n        /**  The minimum width the window is allowed to be, along the minor\n             axis of the screen.  That is, when in portrait.  Can be either\n             an absolute dimension or a fraction of the screen size in that\n             dimension. \n         <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowMinWidthMinor=0x7f01000c;\n        /**  Flag indicating whether there should be no title on this window. \n         <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowNoTitle=0x7f010004;\n    }\n    public static final class bool {\n        public static final int abc_action_bar_embed_tabs=0x7f050000;\n        public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050001;\n        public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050002;\n        /**  Whether action menu items should be displayed in ALLCAPS or not.\n         Defaults to true. If this is not appropriate for specific locales\n         it should be disabled in that locale's resources. \n         */\n        public static final int abc_config_actionMenuItemAllCaps=0x7f050005;\n        /**  Whether action menu items should obey the \"withText\" showAsAction\n    flag. This may be set to false for situations where space is\n    extremely limited. \n Whether action menu items should obey the \"withText\" showAsAction.\n         This may be set to false for situations where space is\n         extremely limited. \n         */\n        public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050004;\n        public static final int abc_config_closeDialogWhenTouchOutside=0x7f050006;\n        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050003;\n    }\n    public static final class color {\n        public static final int abc_background_cache_hint_selector_material_dark=0x7f060033;\n        public static final int abc_background_cache_hint_selector_material_light=0x7f060034;\n        public static final int abc_input_method_navigation_guard=0x7f060003;\n        public static final int abc_primary_text_disable_only_material_dark=0x7f060035;\n        public static final int abc_primary_text_disable_only_material_light=0x7f060036;\n        public static final int abc_primary_text_material_dark=0x7f060037;\n        public static final int abc_primary_text_material_light=0x7f060038;\n        public static final int abc_search_url_text=0x7f060039;\n        public static final int abc_search_url_text_normal=0x7f060000;\n        public static final int abc_search_url_text_pressed=0x7f060002;\n        public static final int abc_search_url_text_selected=0x7f060001;\n        public static final int abc_secondary_text_material_dark=0x7f06003a;\n        public static final int abc_secondary_text_material_light=0x7f06003b;\n        public static final int accent_material_dark=0x7f06000f;\n        public static final int accent_material_light=0x7f06000e;\n        public static final int background_floating_material_dark=0x7f060006;\n        public static final int background_floating_material_light=0x7f060007;\n        public static final int background_material_dark=0x7f060004;\n        public static final int background_material_light=0x7f060005;\n        /**  White 50% \n         */\n        public static final int bright_foreground_disabled_material_dark=0x7f060018;\n        /**  Black 50% \n         */\n        public static final int bright_foreground_disabled_material_light=0x7f060019;\n        public static final int bright_foreground_inverse_material_dark=0x7f06001a;\n        public static final int bright_foreground_inverse_material_light=0x7f06001b;\n        public static final int bright_foreground_material_dark=0x7f060016;\n        public static final int bright_foreground_material_light=0x7f060017;\n        public static final int button_material_dark=0x7f060010;\n        public static final int button_material_light=0x7f060011;\n        public static final int dim_foreground_disabled_material_dark=0x7f06001e;\n        public static final int dim_foreground_disabled_material_light=0x7f06001f;\n        public static final int dim_foreground_material_dark=0x7f06001c;\n        public static final int dim_foreground_material_light=0x7f06001d;\n        /**  TODO: This is 40% alpha on the default accent color. \n         */\n        public static final int highlighted_text_material_dark=0x7f060022;\n        /**  TODO: This is 40% alpha on the default accent color. \n         */\n        public static final int highlighted_text_material_light=0x7f060023;\n        public static final int hint_foreground_material_dark=0x7f060020;\n        public static final int hint_foreground_material_light=0x7f060021;\n        public static final int link_text_material_dark=0x7f060024;\n        public static final int link_text_material_light=0x7f060025;\n        public static final int material_blue_grey_800=0x7f060030;\n        public static final int material_blue_grey_900=0x7f060031;\n        public static final int material_blue_grey_950=0x7f060032;\n        public static final int material_deep_teal_200=0x7f06002e;\n        public static final int material_deep_teal_500=0x7f06002f;\n        public static final int primary_dark_material_dark=0x7f06000a;\n        public static final int primary_dark_material_light=0x7f06000b;\n        public static final int primary_material_dark=0x7f060008;\n        public static final int primary_material_light=0x7f060009;\n        public static final int primary_text_default_material_dark=0x7f060028;\n        public static final int primary_text_default_material_light=0x7f060026;\n        /**  30% of default values \n         */\n        public static final int primary_text_disabled_material_dark=0x7f06002c;\n        /**  26% of default values \n         */\n        public static final int primary_text_disabled_material_light=0x7f06002a;\n        public static final int ripple_material_dark=0x7f06000c;\n        public static final int ripple_material_light=0x7f06000d;\n        public static final int secondary_text_default_material_dark=0x7f060029;\n        public static final int secondary_text_default_material_light=0x7f060027;\n        public static final int secondary_text_disabled_material_dark=0x7f06002d;\n        public static final int secondary_text_disabled_material_light=0x7f06002b;\n        public static final int switch_thumb_disabled_material_dark=0x7f060014;\n        public static final int switch_thumb_disabled_material_light=0x7f060015;\n        public static final int switch_thumb_material_dark=0x7f06003c;\n        public static final int switch_thumb_material_light=0x7f06003d;\n        public static final int switch_thumb_normal_material_dark=0x7f060012;\n        public static final int switch_thumb_normal_material_light=0x7f060013;\n    }\n    public static final class dimen {\n        /**  Default content inset of an action bar. \n Default content inset of an action bar. \n         */\n        public static final int abc_action_bar_content_inset_material=0x7f070025;\n        /**  Default height of an action bar. \n Default height of an action bar. \n Default height of an action bar. \n         */\n        public static final int abc_action_bar_default_height_material=0x7f070023;\n        /**  Default padding of an action bar. \n Default padding of an action bar. \n Default padding of an action bar. \n         */\n        public static final int abc_action_bar_default_padding_material=0x7f070024;\n        /**  Vertical padding around action bar icons. \n         */\n        public static final int abc_action_bar_icon_vertical_padding_material=0x7f070028;\n        /**  Padding to add to the start of the overflow action button. \n Padding to add to the start of the overflow action button. \n         */\n        public static final int abc_action_bar_navigation_padding_start_material=0x7f070026;\n        /**  Padding to add to the end of the overflow action button. \n Padding to add to the end of the overflow action button. \n         */\n        public static final int abc_action_bar_overflow_padding_end_material=0x7f070027;\n        /**  Padding to add to the start of the overflow action button. \n         */\n        public static final int abc_action_bar_overflow_padding_start_material=0x7f07002c;\n        /**  Size of the indeterminate Progress Bar \n Size of the indeterminate Progress Bar \n         */\n        public static final int abc_action_bar_progress_bar_size=0x7f070005;\n        /**  Maximum height for a stacked tab bar as part of an action bar \n         */\n        public static final int abc_action_bar_stacked_max_height=0x7f070004;\n        /**  Maximum width for a stacked action bar tab. This prevents\n         action bar tabs from becoming too wide on a wide screen when only\n         a few are present. \n         */\n        public static final int abc_action_bar_stacked_tab_max_width=0x7f070003;\n        /**  Bottom margin for action bar subtitles \n         */\n        public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07002a;\n        /**  Top margin for action bar subtitles \n         */\n        public static final int abc_action_bar_subtitle_top_margin_material=0x7f070029;\n        public static final int abc_action_button_min_height_material=0x7f07002f;\n        public static final int abc_action_button_min_width_material=0x7f07002e;\n        public static final int abc_action_button_min_width_overflow_material=0x7f07002d;\n        /**  Dialog button bar height \n Dialog button bar height \n         */\n        public static final int abc_alert_dialog_button_bar_height=0x7f07001d;\n        public static final int abc_button_inset_horizontal_material=0x7f070011;\n        public static final int abc_button_inset_vertical_material=0x7f070010;\n        public static final int abc_button_padding_horizontal_material=0x7f070013;\n        /**  Default inner padding within buttons \n         */\n        public static final int abc_button_padding_vertical_material=0x7f070012;\n        /**  The maximum width we would prefer dialogs to be.  0 if there is no\n    maximum (let them grow as large as the screen).  Actual values are\n    specified for -large and -xlarge configurations. \n see comment in values/config.xml \n see comment in values/config.xml \n         */\n        public static final int abc_config_prefDialogWidth=0x7f070002;\n        /**  Default rounded corner for controls \n         */\n        public static final int abc_control_corner_material=0x7f070016;\n        /**  Default insets (outer padding) around controls \n         */\n        public static final int abc_control_inset_material=0x7f070014;\n        /**  Default inner padding within controls \n         */\n        public static final int abc_control_padding_material=0x7f070015;\n        /**  Padding above and below selection dialog lists. \n         */\n        public static final int abc_dialog_list_padding_vertical_material=0x7f07001e;\n        /**  The platform's desired minimum size for a dialog's width when it\n         is along the major axis (that is the screen is landscape).  This may\n         be either a fraction or a dimension. \n         */\n        public static final int abc_dialog_min_width_major=0x7f07001f;\n        /**  The platform's desired minimum size for a dialog's width when it\n         is along the minor axis (that is the screen is portrait).  This may\n         be either a fraction or a dimension. \n         */\n        public static final int abc_dialog_min_width_minor=0x7f070020;\n        public static final int abc_dialog_padding_material=0x7f07001b;\n        public static final int abc_dialog_padding_top_material=0x7f07001c;\n        public static final int abc_disabled_alpha_material_dark=0x7f070041;\n        public static final int abc_disabled_alpha_material_light=0x7f070040;\n        /**  Width of the icon in a dropdown list \n         */\n        public static final int abc_dropdownitem_icon_width=0x7f07000b;\n        /**  Text padding for dropdown items \n         */\n        public static final int abc_dropdownitem_text_padding_left=0x7f070009;\n        public static final int abc_dropdownitem_text_padding_right=0x7f07000a;\n        public static final int abc_edit_text_inset_bottom_material=0x7f070019;\n        public static final int abc_edit_text_inset_horizontal_material=0x7f070017;\n        public static final int abc_edit_text_inset_top_material=0x7f070018;\n        public static final int abc_floating_window_z=0x7f07003f;\n        /**  Default padding for list items. This should match the action bar\n         content inset so that ListActivity items line up correctly. \n         */\n        public static final int abc_list_item_padding_horizontal_material=0x7f07002b;\n        public static final int abc_panel_menu_list_width=0x7f070006;\n        /**  Preferred width of the search view. \n         */\n        public static final int abc_search_view_preferred_width=0x7f070008;\n        /**  Minimum width of the search view text entry area. \n Minimum width of the search view text entry area. \n Minimum width of the search view text entry area. \n Minimum width of the search view text entry area. \n Minimum width of the search view text entry area. \n         */\n        public static final int abc_search_view_text_min_width=0x7f070007;\n        /**  Since optical insets are not available pre-v18, we add a small amount of padding \n Since SwitchCompat can use optical insets on v18+, reset the manual padding \n         */\n        public static final int abc_switch_padding=0x7f07001a;\n        public static final int abc_text_size_body_1_material=0x7f070039;\n        public static final int abc_text_size_body_2_material=0x7f070038;\n        public static final int abc_text_size_button_material=0x7f07003b;\n        public static final int abc_text_size_caption_material=0x7f07003a;\n        public static final int abc_text_size_display_1_material=0x7f070033;\n        public static final int abc_text_size_display_2_material=0x7f070032;\n        public static final int abc_text_size_display_3_material=0x7f070031;\n        public static final int abc_text_size_display_4_material=0x7f070030;\n        public static final int abc_text_size_headline_material=0x7f070034;\n        public static final int abc_text_size_large_material=0x7f07003c;\n        public static final int abc_text_size_medium_material=0x7f07003d;\n        public static final int abc_text_size_menu_material=0x7f070037;\n        public static final int abc_text_size_small_material=0x7f07003e;\n        public static final int abc_text_size_subhead_material=0x7f070036;\n        /**  Use the default subtitle sizes on tablets. \n Default text size for action bar subtitle.\n         */\n        public static final int abc_text_size_subtitle_material_toolbar=0x7f070022;\n        public static final int abc_text_size_title_material=0x7f070035;\n        /**  Use the default title sizes on tablets. \n Default text size for action bar title.\n         */\n        public static final int abc_text_size_title_material_toolbar=0x7f070021;\n        /**  Default screen margins, per the Android Design guidelines. \n\n         Example customization of dimensions originally defined in res/values/dimens.xml\n         (such as screen margins) for screens with more than 820dp of available width. This\n         would include 7\" and 10\" devices in landscape (~960dp and ~1280dp respectively).\n    \n         */\n        public static final int activity_horizontal_margin=0x7f070042;\n        public static final int activity_vertical_margin=0x7f070043;\n        /**  The platform's desired fixed height for a dialog along the major axis\n         (the screen is in portrait). This may be either a fraction or a dimension.\n The platform's desired fixed height for a dialog along the major axis\n         (the screen is in portrait). This may be either a fraction or a dimension.\n The platform's desired fixed height for a dialog along the major axis\n         (the screen is in portrait). This may be either a fraction or a dimension.\n         */\n        public static final int dialog_fixed_height_major=0x7f07000e;\n        /**  The platform's desired fixed height for a dialog along the minor axis\n         (the screen is in landscape). This may be either a fraction or a dimension.\n The platform's desired fixed height for a dialog along the minor axis\n         (the screen is in landscape). This may be either a fraction or a dimension.\n The platform's desired fixed height for a dialog along the minor axis\n         (the screen is in landscape). This may be either a fraction or a dimension.\n         */\n        public static final int dialog_fixed_height_minor=0x7f07000f;\n        /**  The platform's desired fixed width for a dialog along the major axis\n         (the screen is in landscape). This may be either a fraction or a dimension.\n The platform's desired fixed width for a dialog along the major axis\n         (the screen is in landscape). This may be either a fraction or a dimension.\n The platform's desired fixed width for a dialog along the major axis\n         (the screen is in landscape). This may be either a fraction or a dimension.\n         */\n        public static final int dialog_fixed_width_major=0x7f07000c;\n        /**  The platform's desired fixed width for a dialog along the minor axis\n         (the screen is in portrait). This may be either a fraction or a dimension.\n The platform's desired fixed width for a dialog along the minor axis\n         (the screen is in portrait). This may be either a fraction or a dimension.\n The platform's desired fixed width for a dialog along the minor axis\n         (the screen is in portrait). This may be either a fraction or a dimension.\n         */\n        public static final int dialog_fixed_width_minor=0x7f07000d;\n        public static final int disabled_alpha_material_dark=0x7f070001;\n        public static final int disabled_alpha_material_light=0x7f070000;\n    }\n    public static final class drawable {\n        public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;\n        public static final int abc_btn_borderless_material=0x7f020001;\n        public static final int abc_btn_check_material=0x7f020002;\n        public static final int abc_btn_check_to_on_mtrl_000=0x7f020003;\n        public static final int abc_btn_check_to_on_mtrl_015=0x7f020004;\n        public static final int abc_btn_default_mtrl_shape=0x7f020005;\n        public static final int abc_btn_radio_material=0x7f020006;\n        public static final int abc_btn_radio_to_on_mtrl_000=0x7f020007;\n        public static final int abc_btn_radio_to_on_mtrl_015=0x7f020008;\n        public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f020009;\n        public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000a;\n        public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;\n        public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;\n        public static final int abc_cab_background_internal_bg=0x7f02000d;\n        public static final int abc_cab_background_top_material=0x7f02000e;\n        public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;\n        public static final int abc_dialog_material_background_dark=0x7f020010;\n        public static final int abc_dialog_material_background_light=0x7f020011;\n        public static final int abc_edit_text_material=0x7f020012;\n        public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020013;\n        public static final int abc_ic_clear_mtrl_alpha=0x7f020014;\n        public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020015;\n        public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020016;\n        public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020017;\n        public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020018;\n        public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f020019;\n        public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001a;\n        public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001b;\n        public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001c;\n        public static final int abc_ic_search_api_mtrl_alpha=0x7f02001d;\n        public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f02001e;\n        public static final int abc_item_background_holo_dark=0x7f02001f;\n        public static final int abc_item_background_holo_light=0x7f020020;\n        public static final int abc_list_divider_mtrl_alpha=0x7f020021;\n        public static final int abc_list_focused_holo=0x7f020022;\n        public static final int abc_list_longpressed_holo=0x7f020023;\n        public static final int abc_list_pressed_holo_dark=0x7f020024;\n        public static final int abc_list_pressed_holo_light=0x7f020025;\n        public static final int abc_list_selector_background_transition_holo_dark=0x7f020026;\n        public static final int abc_list_selector_background_transition_holo_light=0x7f020027;\n        public static final int abc_list_selector_disabled_holo_dark=0x7f020028;\n        public static final int abc_list_selector_disabled_holo_light=0x7f020029;\n        public static final int abc_list_selector_holo_dark=0x7f02002a;\n        public static final int abc_list_selector_holo_light=0x7f02002b;\n        public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002c;\n        public static final int abc_popup_background_mtrl_mult=0x7f02002d;\n        public static final int abc_ratingbar_full_material=0x7f02002e;\n        public static final int abc_spinner_mtrl_am_alpha=0x7f02002f;\n        public static final int abc_spinner_textfield_background_material=0x7f020030;\n        public static final int abc_switch_thumb_material=0x7f020031;\n        public static final int abc_switch_track_mtrl_alpha=0x7f020032;\n        public static final int abc_tab_indicator_material=0x7f020033;\n        public static final int abc_tab_indicator_mtrl_alpha=0x7f020034;\n        public static final int abc_text_cursor_mtrl_alpha=0x7f020035;\n        public static final int abc_textfield_activated_mtrl_alpha=0x7f020036;\n        public static final int abc_textfield_default_mtrl_alpha=0x7f020037;\n        public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020038;\n        public static final int abc_textfield_search_default_mtrl_alpha=0x7f020039;\n        public static final int abc_textfield_search_material=0x7f02003a;\n        public static final int ic_launcher=0x7f02003b;\n        public static final int sloop=0x7f02003c;\n    }\n    public static final class id {\n        public static final int action_bar=0x7f090040;\n        public static final int action_bar_activity_content=0x7f090003;\n        public static final int action_bar_container=0x7f09003f;\n        public static final int action_bar_root=0x7f09003b;\n        public static final int action_bar_spinner=0x7f090002;\n        public static final int action_bar_subtitle=0x7f090024;\n        public static final int action_bar_title=0x7f090023;\n        public static final int action_context_bar=0x7f090041;\n        public static final int action_menu_divider=0x7f090005;\n        public static final int action_menu_presenter=0x7f090006;\n        public static final int action_mode_bar=0x7f09003d;\n        public static final int action_mode_bar_stub=0x7f09003c;\n        public static final int action_mode_close_button=0x7f090025;\n        public static final int action_settings=0x7f090050;\n        public static final int activity_chooser_view_content=0x7f090026;\n        public static final int alertTitle=0x7f090030;\n        public static final int always=0x7f090019;\n        public static final int beginning=0x7f090020;\n        public static final int buttonPanel=0x7f090036;\n        public static final int checkbox=0x7f090038;\n        public static final int collapseActionView=0x7f09001a;\n        public static final int contentPanel=0x7f090031;\n        public static final int custom=0x7f090035;\n        public static final int customPanel=0x7f090034;\n        public static final int decor_content_parent=0x7f09003e;\n        public static final int default_activity_button=0x7f090029;\n        public static final int dialog=0x7f09001e;\n        public static final int disableHome=0x7f09000d;\n        public static final int dropdown=0x7f09001f;\n        public static final int edit_query=0x7f090042;\n        public static final int end=0x7f090021;\n        public static final int expand_activities_button=0x7f090027;\n        public static final int expanded_menu=0x7f090037;\n        public static final int home=0x7f090000;\n        public static final int homeAsUp=0x7f09000e;\n        public static final int icon=0x7f09002b;\n        public static final int ifRoom=0x7f09001b;\n        public static final int image=0x7f090028;\n        public static final int iv_sloop=0x7f09004f;\n        public static final int listMode=0x7f09000a;\n        public static final int list_item=0x7f09002a;\n        public static final int middle=0x7f090022;\n        public static final int multiply=0x7f090014;\n        public static final int never=0x7f09001c;\n        public static final int none=0x7f09000f;\n        public static final int normal=0x7f09000b;\n        public static final int parentPanel=0x7f09002d;\n        public static final int progress_circular=0x7f090007;\n        public static final int progress_horizontal=0x7f090008;\n        public static final int radio=0x7f09003a;\n        public static final int screen=0x7f090015;\n        public static final int scrollView=0x7f090032;\n        public static final int search_badge=0x7f090044;\n        public static final int search_bar=0x7f090043;\n        public static final int search_button=0x7f090045;\n        public static final int search_close_btn=0x7f09004a;\n        public static final int search_edit_frame=0x7f090046;\n        public static final int search_go_btn=0x7f09004c;\n        public static final int search_mag_icon=0x7f090047;\n        public static final int search_plate=0x7f090048;\n        public static final int search_src_text=0x7f090049;\n        public static final int search_voice_btn=0x7f09004d;\n        public static final int select_dialog_listview=0x7f09004e;\n        public static final int shortcut=0x7f090039;\n        public static final int showCustom=0x7f090010;\n        public static final int showHome=0x7f090011;\n        public static final int showTitle=0x7f090012;\n        public static final int split_action_bar=0x7f090004;\n        public static final int src_atop=0x7f090016;\n        public static final int src_in=0x7f090017;\n        public static final int src_over=0x7f090018;\n        public static final int submit_area=0x7f09004b;\n        public static final int tabMode=0x7f09000c;\n        public static final int textSpacerNoButtons=0x7f090033;\n        public static final int title=0x7f09002c;\n        public static final int title_template=0x7f09002f;\n        public static final int topPanel=0x7f09002e;\n        public static final int up=0x7f090001;\n        public static final int useLogo=0x7f090013;\n        public static final int withText=0x7f09001d;\n        public static final int wrap_content=0x7f090009;\n    }\n    public static final class integer {\n        public static final int abc_config_activityDefaultDur=0x7f080001;\n        /**  The duration (in milliseconds) of the activity open/close and fragment open/close animations. \n         */\n        public static final int abc_config_activityShortDur=0x7f080000;\n        /**  The maximum number of action buttons that should be permitted within\n         an action bar/action mode. This will be used to determine how many\n         showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n The maximum number of action buttons that should be permitted within\n     an action bar/action mode. This will be used to determine how many\n     showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n The maximum number of action buttons that should be permitted within\n         an action bar/action mode. This will be used to determine how many\n         showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n The maximum number of action buttons that should be permitted within\n         an action bar/action mode. This will be used to determine how many\n         showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n The maximum number of action buttons that should be permitted within\n         an action bar/action mode. This will be used to determine how many\n         showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n The maximum number of action buttons that should be permitted within\n         an action bar/action mode. This will be used to determine how many\n         showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n The maximum number of action buttons that should be permitted within\n         an action bar/action mode. This will be used to determine how many\n         showAsAction=\"ifRoom\" items can fit. \"always\" items can override this. \n         */\n        public static final int abc_max_action_buttons=0x7f080002;\n    }\n    public static final class layout {\n        public static final int abc_action_bar_title_item=0x7f030000;\n        public static final int abc_action_bar_up_container=0x7f030001;\n        public static final int abc_action_bar_view_list_nav_layout=0x7f030002;\n        public static final int abc_action_menu_item_layout=0x7f030003;\n        public static final int abc_action_menu_layout=0x7f030004;\n        public static final int abc_action_mode_bar=0x7f030005;\n        public static final int abc_action_mode_close_item_material=0x7f030006;\n        public static final int abc_activity_chooser_view=0x7f030007;\n        public static final int abc_activity_chooser_view_list_item=0x7f030008;\n        public static final int abc_alert_dialog_material=0x7f030009;\n        public static final int abc_dialog_title_material=0x7f03000a;\n        public static final int abc_expanded_menu_layout=0x7f03000b;\n        public static final int abc_list_menu_item_checkbox=0x7f03000c;\n        public static final int abc_list_menu_item_icon=0x7f03000d;\n        public static final int abc_list_menu_item_layout=0x7f03000e;\n        public static final int abc_list_menu_item_radio=0x7f03000f;\n        public static final int abc_popup_menu_item_layout=0x7f030010;\n        public static final int abc_screen_content_include=0x7f030011;\n        public static final int abc_screen_simple=0x7f030012;\n        public static final int abc_screen_simple_overlay_action_mode=0x7f030013;\n        public static final int abc_screen_toolbar=0x7f030014;\n        public static final int abc_search_dropdown_item_icons_2line=0x7f030015;\n        public static final int abc_search_view=0x7f030016;\n        public static final int abc_select_dialog_material=0x7f030017;\n        public static final int abc_simple_dropdown_hint=0x7f030018;\n        public static final int activity_main=0x7f030019;\n        public static final int select_dialog_item_material=0x7f03001a;\n        public static final int select_dialog_multichoice_material=0x7f03001b;\n        public static final int select_dialog_singlechoice_material=0x7f03001c;\n        public static final int support_simple_spinner_dropdown_item=0x7f03001d;\n    }\n    public static final class menu {\n        public static final int main=0x7f0c0000;\n    }\n    public static final class string {\n        /**  Content description for the action bar \"home\" affordance. [CHAR LIMIT=NONE] \n         */\n        public static final int abc_action_bar_home_description=0x7f0a0001;\n        /**  Formatting string for describing the action bar's title/home/up affordance.\n         This is a single tappable \"button\" that includes the app icon, the Up indicator\n         (usually a \"<\" chevron) and the window title text.\n         %1$s is the title. %2$s is the description of what tapping/clicking the whole\n         thing is going to do. \n         */\n        public static final int abc_action_bar_home_description_format=0x7f0a0005;\n        /**  Just like action_bar_home_description_format, but this one will be used\n         if the window is also providing subtitle text.\n         %1$s is the title. %2$s is the subtitle. %3$s is the description of what\n         tapping/clicking the whole thing is going to do. \n         */\n        public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0006;\n        /**  Content description for the action bar \"up\" affordance. [CHAR LIMIT=NONE] \n         */\n        public static final int abc_action_bar_up_description=0x7f0a0002;\n        /**  Content description for the action menu overflow button. [CHAR LIMIT=NONE] \n         */\n        public static final int abc_action_menu_overflow_description=0x7f0a0003;\n        /**  Label for the \"Done\" button on the far left of action mode toolbars. \n         */\n        public static final int abc_action_mode_done=0x7f0a0000;\n        /**  Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] \n         */\n        public static final int abc_activity_chooser_view_see_all=0x7f0a000e;\n        /**  ActivityChooserView - accessibility support \n Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] \n         */\n        public static final int abc_activitychooserview_choose_application=0x7f0a000d;\n        /**  Default hint text for the system-wide search UI's text field. [CHAR LIMIT=30] \n         */\n        public static final int abc_search_hint=0x7f0a0008;\n        /**  SearchView accessibility description for clear button [CHAR LIMIT=NONE] \n         */\n        public static final int abc_searchview_description_clear=0x7f0a000a;\n        /**  SearchView accessibility description for search text field [CHAR LIMIT=NONE] \n         */\n        public static final int abc_searchview_description_query=0x7f0a0009;\n        /**  SearchView accessibility description for search button [CHAR LIMIT=NONE] \n         */\n        public static final int abc_searchview_description_search=0x7f0a0007;\n        /**  SearchView accessibility description for submit button [CHAR LIMIT=NONE] \n         */\n        public static final int abc_searchview_description_submit=0x7f0a000b;\n        /**  SearchView accessibility description for voice button [CHAR LIMIT=NONE] \n         */\n        public static final int abc_searchview_description_voice=0x7f0a000c;\n        /**  Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] \n         */\n        public static final int abc_shareactionprovider_share_with=0x7f0a0010;\n        /**  Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] \n         */\n        public static final int abc_shareactionprovider_share_with_application=0x7f0a000f;\n        /**  Content description for the Toolbar icon used to collapse an expanded action mode. [CHAR LIMIT=NONE] \n         */\n        public static final int abc_toolbar_collapse_description=0x7f0a0004;\n        public static final int action_settings=0x7f0a0013;\n        public static final int app_name=0x7f0a0011;\n        public static final int hello_world=0x7f0a0012;\n    }\n    public static final class style {\n        public static final int AlertDialog_AppCompat=0x7f0b0040;\n        public static final int AlertDialog_AppCompat_Light=0x7f0b0041;\n        public static final int Animation_AppCompat_Dialog=0x7f0b0046;\n        public static final int Animation_AppCompat_DropDownUp=0x7f0b0047;\n        /** \n        Base application theme, dependent on API level. This theme is replaced\n        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.\n    \n\n            Theme customizations available in newer API levels can go in\n            res/values-vXX/styles.xml, while customizations related to\n            backward-compatibility can go here.\n        \n\n        Base application theme for API 11+. This theme completely replaces\n        AppBaseTheme from res/values/styles.xml on API 11+ devices.\n    \n API 11 theme customizations can go here. \n\n        Base application theme for API 14+. This theme completely replaces\n        AppBaseTheme from BOTH res/values/styles.xml and\n        res/values-v11/styles.xml on API 14+ devices.\n    \n API 14 theme customizations can go here. \n         */\n        public static final int AppBaseTheme=0x7f0b011b;\n        /**  Application theme. \n All customizations that are NOT specific to a particular API-level can go here. \n         */\n        public static final int AppTheme=0x7f0b011c;\n        public static final int Base_AlertDialog_AppCompat=0x7f0b00bd;\n        public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00be;\n        public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b9;\n        public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00bc;\n        public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00b8;\n        public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00b7;\n        public static final int Base_TextAppearance_AppCompat=0x7f0b00bf;\n        public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b00ca;\n        public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b00c9;\n        public static final int Base_TextAppearance_AppCompat_Button=0x7f0b00cd;\n        public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b00cb;\n        public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b00c3;\n        public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b00c2;\n        public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b00c1;\n        public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b00c0;\n        public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b00c4;\n        /**  Deprecated text styles \n Deprecated text styles \n Now deprecated styles \n         */\n        public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b00ce;\n        public static final int Base_TextAppearance_AppCompat_Large=0x7f0b00cf;\n        public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b00d0;\n        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b009a;\n        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b009b;\n        public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b00d1;\n        public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b00d2;\n        public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b00cc;\n        public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b009c;\n        public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b009e;\n        /**  Search View result styles \n         */\n        public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b009d;\n        public static final int Base_TextAppearance_AppCompat_Small=0x7f0b00d3;\n        public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b00d4;\n        public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b00c7;\n        public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00c8;\n        public static final int Base_TextAppearance_AppCompat_Title=0x7f0b00c5;\n        public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b00c6;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0083;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0085;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0087;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0084;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0086;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0082;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0081;\n        public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0090;\n        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0098;\n        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0099;\n        public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b00ae;\n        public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00b6;\n        public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0091;\n        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b00a5;\n        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b00a4;\n        public static final int Base_Theme_AppCompat=0x7f0b00f8;\n        /**  Menu/item attributes \n         */\n        public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00fb;\n        public static final int Base_Theme_AppCompat_Dialog=0x7f0b00fe;\n        public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0100;\n        public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b0104;\n        public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0102;\n        /**  We're not large, so redirect to Theme.AppCompat \n         */\n        public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0106;\n        public static final int Base_Theme_AppCompat_Light=0x7f0b00f9;\n        public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00fa;\n        public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b00ff;\n        public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0101;\n        public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b0105;\n        public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0103;\n        public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0107;\n        /**  Overlay themes \n         */\n        public static final int Base_ThemeOverlay_AppCompat=0x7f0b0108;\n        public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b010d;\n        public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b010c;\n        public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b010e;\n        public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b010b;\n        public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0111;\n        public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0112;\n        public static final int Base_V21_Theme_AppCompat=0x7f0b0117;\n        public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0119;\n        public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0118;\n        public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b011a;\n        /**  Base platform-dependent theme providing an action bar in a dark-themed activity. \n         */\n        public static final int Base_V7_Theme_AppCompat=0x7f0b00f6;\n        public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00fc;\n        /**  Base platform-dependent theme providing an action bar in a light-themed activity. \n         */\n        public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00f7;\n        public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00fd;\n        public static final int Base_Widget_AppCompat_ActionBar=0x7f0b0072;\n        public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b0074;\n        public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b0079;\n        public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b007d;\n        public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b007b;\n        /**  Action Button Styles \n         */\n        public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0076;\n        public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0077;\n        public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0078;\n        public static final int Base_Widget_AppCompat_ActionMode=0x7f0b0080;\n        public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00a0;\n        public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b009f;\n        /**  Bordered ink button \n         */\n        public static final int Base_Widget_AppCompat_Button=0x7f0b00b0;\n        /**  Borderless ink button \n         */\n        public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b00b2;\n        /**  Colored borderless ink button \n         */\n        public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b00b3;\n        public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00b4;\n        /**  Small bordered ink button \n         */\n        public static final int Base_Widget_AppCompat_Button_Small=0x7f0b00b1;\n        public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b00ba;\n        public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00bb;\n        public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b00ab;\n        public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b00ac;\n        public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00ad;\n        /**  contains values used in all dpis except hdpi and xxhdpi \n         */\n        public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b00aa;\n        /**  contains values used in all dpis \n         */\n        public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00a9;\n        public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b008d;\n        public static final int Base_Widget_AppCompat_EditText=0x7f0b00a8;\n        public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b0073;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0075;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b007a;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b007e;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b007f;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b007c;\n        public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0097;\n        public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0095;\n        /**  Popup Menu \n         */\n        public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0093;\n        public static final int Base_Widget_AppCompat_ListView=0x7f0b008e;\n        /**  Spinner Widgets \n         */\n        public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b008f;\n        public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0092;\n        public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0096;\n        public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0094;\n        public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00a1;\n        public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b0089;\n        /**  Progress Bar \n Progress Bar \n         */\n        public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0088;\n        public static final int Base_Widget_AppCompat_RatingBar=0x7f0b00af;\n        public static final int Base_Widget_AppCompat_SearchView=0x7f0b00a6;\n        public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00a7;\n        /**  Spinner Widgets \n         */\n        public static final int Base_Widget_AppCompat_Spinner=0x7f0b008a;\n        public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b008c;\n        public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b008b;\n        public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b00b5;\n        public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00a2;\n        /** \n        Widget.AppCompat.Toolbar style is purposely ommitted. This is because the support\n        Toolbar implementation is used on ALL platforms and relies on the unbundled attrs.\n        The supporting Toolbar styles below only use basic attrs so work fine.\n    \n         */\n        public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00a3;\n        public static final int Platform_AppCompat=0x7f0b00f4;\n        public static final int Platform_AppCompat_Light=0x7f0b00f5;\n        public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0109;\n        public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b010a;\n        public static final int Platform_V11_AppCompat=0x7f0b010f;\n        public static final int Platform_V11_AppCompat_Light=0x7f0b0110;\n        public static final int Platform_V12_AppCompat=0x7f0b0113;\n        public static final int Platform_V12_AppCompat_Light=0x7f0b0114;\n        public static final int Platform_V14_AppCompat=0x7f0b0115;\n        public static final int Platform_V14_AppCompat_Light=0x7f0b0116;\n        public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b00db;\n        public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b00dc;\n        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b00dd;\n        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b00de;\n        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b00df;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b00d6;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b00d8;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b00d9;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b00d7;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b00da;\n        public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b00d5;\n        public static final int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00e0;\n        public static final int TextAppearance_AppCompat=0x7f0b0048;\n        public static final int TextAppearance_AppCompat_Body1=0x7f0b0053;\n        public static final int TextAppearance_AppCompat_Body2=0x7f0b0052;\n        public static final int TextAppearance_AppCompat_Button=0x7f0b005d;\n        public static final int TextAppearance_AppCompat_Caption=0x7f0b0054;\n        public static final int TextAppearance_AppCompat_Display1=0x7f0b004c;\n        public static final int TextAppearance_AppCompat_Display2=0x7f0b004b;\n        public static final int TextAppearance_AppCompat_Display3=0x7f0b004a;\n        public static final int TextAppearance_AppCompat_Display4=0x7f0b0049;\n        public static final int TextAppearance_AppCompat_Headline=0x7f0b004d;\n        public static final int TextAppearance_AppCompat_Inverse=0x7f0b0056;\n        public static final int TextAppearance_AppCompat_Large=0x7f0b0057;\n        public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b0058;\n        public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0064;\n        public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0063;\n        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b002b;\n        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b002c;\n        public static final int TextAppearance_AppCompat_Medium=0x7f0b0059;\n        public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b005a;\n        public static final int TextAppearance_AppCompat_Menu=0x7f0b0055;\n        public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b002e;\n        public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b002d;\n        public static final int TextAppearance_AppCompat_Small=0x7f0b005b;\n        public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b005c;\n        public static final int TextAppearance_AppCompat_Subhead=0x7f0b0050;\n        public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b0051;\n        public static final int TextAppearance_AppCompat_Title=0x7f0b004e;\n        public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b004f;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0015;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0005;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0007;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0004;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0006;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0018;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0067;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0017;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0066;\n        public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0019;\n        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0029;\n        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b002a;\n        public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b005e;\n        public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b005f;\n        public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0021;\n        public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0045;\n        public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0044;\n        /**  Themes in the \"Theme.AppCompat\" family will contain an action bar by default.\n         If Holo themes are available on the current platform version they will be used.\n         A limited Holo-styled action bar will be provided on platform versions older\n         than 3.0. (API 11)\n\n         These theme declarations contain any version-independent specification. Items\n         that need to vary based on platform version should be defined in the corresponding\n         \"Theme.Base\" theme. \n Platform-independent theme providing an action bar in a dark-themed activity. \n         */\n        public static final int Theme_AppCompat=0x7f0b00e1;\n        /**  Menu/item attributes \n         */\n        public static final int Theme_AppCompat_CompactMenu=0x7f0b00ee;\n        public static final int Theme_AppCompat_Dialog=0x7f0b00e8;\n        /**  Material theme for alert dialog windows, which is used by the AlertDialog class.\n         This is basically a dialog but sets the background to empty so it can do\n         two-tone backgrounds. For applications targeting Honeycomb or newer, this is the default\n         AlertDialog theme. \n         */\n        public static final int Theme_AppCompat_Dialog_Alert=0x7f0b00ea;\n        /**  Variant of Theme.AppCompat.Dialog that has a nice minimum width for\n         a regular dialog. \n         */\n        public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b00ec;\n        public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b00e6;\n        /**  Platform-independent theme providing an action bar in a light-themed activity. \n         */\n        public static final int Theme_AppCompat_Light=0x7f0b00e2;\n        /**  Platform-independent theme providing an action bar in a dark-themed activity. \n         */\n        public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b00e3;\n        public static final int Theme_AppCompat_Light_Dialog=0x7f0b00e9;\n        public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b00eb;\n        public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b00ed;\n        public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b00e7;\n        public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b00e5;\n        public static final int Theme_AppCompat_NoActionBar=0x7f0b00e4;\n        public static final int ThemeOverlay_AppCompat=0x7f0b00ef;\n        /**  Theme overlay that replaces the normal control color, which by default is the same as the\n         secondary text color, with the primary text color. \n         */\n        public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b00f2;\n        /**  Theme overlay that replaces colors with their dark versions but preserves\n         the value of colorAccent, colorPrimary and its variants. \n         */\n        public static final int ThemeOverlay_AppCompat_Dark=0x7f0b00f1;\n        /**  Theme overlay that replaces colors with their dark versions and replaces the normal\n         control color, which by default is the same as the secondary text color, with the primary\n         text color. \n         */\n        public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00f3;\n        /**  Theme overlay that replaces colors with their light versions but preserves\n         the value of colorAccent, colorPrimary and its variants. \n         */\n        public static final int ThemeOverlay_AppCompat_Light=0x7f0b00f0;\n        /**  Styles in here can be extended for customisation in your application. Each utilises\n         one of the.styles. If Holo themes are available on the current platform version\n         they will be used instead of the compat styles. \n         */\n        public static final int Widget_AppCompat_ActionBar=0x7f0b0000;\n        public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0002;\n        public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b000d;\n        public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0011;\n        public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b000f;\n        public static final int Widget_AppCompat_ActionButton=0x7f0b000a;\n        public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b000b;\n        public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b000c;\n        public static final int Widget_AppCompat_ActionMode=0x7f0b0016;\n        public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0030;\n        public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b002f;\n        public static final int Widget_AppCompat_Button=0x7f0b0038;\n        public static final int Widget_AppCompat_Button_Borderless=0x7f0b003a;\n        public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b003b;\n        public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b003c;\n        public static final int Widget_AppCompat_Button_Small=0x7f0b0039;\n        public static final int Widget_AppCompat_ButtonBar=0x7f0b003d;\n        public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b003e;\n        public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0035;\n        public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0036;\n        public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0034;\n        public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0012;\n        /**  This style has an extra indirection to properly set RTL attributes. See styles_rtl.xml \n         */\n        public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b001e;\n        public static final int Widget_AppCompat_EditText=0x7f0b0033;\n        public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0001;\n        public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0003;\n        /** \n         The following themes are deprecated.\n    \n         */\n        public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0060;\n        public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b000e;\n        public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0061;\n        public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0013;\n        public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0014;\n        public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0010;\n        public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0062;\n        public static final int Widget_AppCompat_Light_ActionButton=0x7f0b006a;\n        public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b006c;\n        public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b006b;\n        public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0065;\n        public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0071;\n        public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0070;\n        public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0068;\n        public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b006f;\n        public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b006e;\n        public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0026;\n        public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0024;\n        public static final int Widget_AppCompat_Light_SearchView=0x7f0b0069;\n        public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b006d;\n        public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0022;\n        public static final int Widget_AppCompat_ListView=0x7f0b001f;\n        public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0020;\n        public static final int Widget_AppCompat_ListView_Menu=0x7f0b0027;\n        public static final int Widget_AppCompat_PopupMenu=0x7f0b0025;\n        public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0023;\n        public static final int Widget_AppCompat_PopupWindow=0x7f0b0028;\n        public static final int Widget_AppCompat_ProgressBar=0x7f0b0009;\n        public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0008;\n        public static final int Widget_AppCompat_RatingBar=0x7f0b0037;\n        public static final int Widget_AppCompat_SearchView=0x7f0b0031;\n        public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0032;\n        public static final int Widget_AppCompat_Spinner=0x7f0b001a;\n        public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b001c;\n        public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b001d;\n        public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b001b;\n        public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b003f;\n        /**  Toolbar \n         */\n        public static final int Widget_AppCompat_Toolbar=0x7f0b0042;\n        public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0043;\n    }\n    public static final class styleable {\n        /**  ============================================ \n Attributes used to style the Action Bar.\n         These should be set on your theme; the default actionBarStyle will\n         propagate them to the correct elements as needed.\n\n         Please Note: when overriding attributes for an ActionBar style\n         you must specify each attribute twice: once with the \"android:\"\n         namespace prefix and once without. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionBar_background com.sloop.fz3d:background}</code></td><td> Specifies a background drawable for the action bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_backgroundSplit com.sloop.fz3d:backgroundSplit}</code></td><td> Specifies a background drawable for the bottom component of a split action bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_backgroundStacked com.sloop.fz3d:backgroundStacked}</code></td><td> Specifies a background drawable for a second stacked row of the action bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetEnd com.sloop.fz3d:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetLeft com.sloop.fz3d:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetRight com.sloop.fz3d:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetStart com.sloop.fz3d:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_customNavigationLayout com.sloop.fz3d:customNavigationLayout}</code></td><td> Specifies a layout for custom navigation.</td></tr>\n           <tr><td><code>{@link #ActionBar_displayOptions com.sloop.fz3d:displayOptions}</code></td><td> Options affecting how the action bar is displayed.</td></tr>\n           <tr><td><code>{@link #ActionBar_divider com.sloop.fz3d:divider}</code></td><td> Specifies the drawable used for item dividers.</td></tr>\n           <tr><td><code>{@link #ActionBar_elevation com.sloop.fz3d:elevation}</code></td><td> Elevation for the action bar itself </td></tr>\n           <tr><td><code>{@link #ActionBar_height com.sloop.fz3d:height}</code></td><td> Specifies a fixed height.</td></tr>\n           <tr><td><code>{@link #ActionBar_hideOnContentScroll com.sloop.fz3d:hideOnContentScroll}</code></td><td> Set true to hide the action bar on a vertical nested scroll of content.</td></tr>\n           <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.sloop.fz3d:homeAsUpIndicator}</code></td><td> Up navigation glyph </td></tr>\n           <tr><td><code>{@link #ActionBar_homeLayout com.sloop.fz3d:homeLayout}</code></td><td> Specifies a layout to use for the \"home\" section of the action bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_icon com.sloop.fz3d:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr>\n           <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.sloop.fz3d:indeterminateProgressStyle}</code></td><td> Specifies a style resource to use for an indeterminate progress spinner.</td></tr>\n           <tr><td><code>{@link #ActionBar_itemPadding com.sloop.fz3d:itemPadding}</code></td><td> Specifies padding that should be applied to the left and right sides of\n             system-provided items in the bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_logo com.sloop.fz3d:logo}</code></td><td> Specifies the drawable used for the application logo.</td></tr>\n           <tr><td><code>{@link #ActionBar_navigationMode com.sloop.fz3d:navigationMode}</code></td><td> The type of navigation to use.</td></tr>\n           <tr><td><code>{@link #ActionBar_popupTheme com.sloop.fz3d:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups\n             shown by widgets in the action bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_progressBarPadding com.sloop.fz3d:progressBarPadding}</code></td><td> Specifies the horizontal padding on either end for an embedded progress bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_progressBarStyle com.sloop.fz3d:progressBarStyle}</code></td><td> Specifies a style resource to use for an embedded progress bar.</td></tr>\n           <tr><td><code>{@link #ActionBar_subtitle com.sloop.fz3d:subtitle}</code></td><td> Specifies subtitle text used for navigationMode=\"normal\" </td></tr>\n           <tr><td><code>{@link #ActionBar_subtitleTextStyle com.sloop.fz3d:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>\n           <tr><td><code>{@link #ActionBar_title com.sloop.fz3d:title}</code></td><td> Specifies title text used for navigationMode=\"normal\" </td></tr>\n           <tr><td><code>{@link #ActionBar_titleTextStyle com.sloop.fz3d:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>\n           </table>\n           @see #ActionBar_background\n           @see #ActionBar_backgroundSplit\n           @see #ActionBar_backgroundStacked\n           @see #ActionBar_contentInsetEnd\n           @see #ActionBar_contentInsetLeft\n           @see #ActionBar_contentInsetRight\n           @see #ActionBar_contentInsetStart\n           @see #ActionBar_customNavigationLayout\n           @see #ActionBar_displayOptions\n           @see #ActionBar_divider\n           @see #ActionBar_elevation\n           @see #ActionBar_height\n           @see #ActionBar_hideOnContentScroll\n           @see #ActionBar_homeAsUpIndicator\n           @see #ActionBar_homeLayout\n           @see #ActionBar_icon\n           @see #ActionBar_indeterminateProgressStyle\n           @see #ActionBar_itemPadding\n           @see #ActionBar_logo\n           @see #ActionBar_navigationMode\n           @see #ActionBar_popupTheme\n           @see #ActionBar_progressBarPadding\n           @see #ActionBar_progressBarStyle\n           @see #ActionBar_subtitle\n           @see #ActionBar_subtitleTextStyle\n           @see #ActionBar_title\n           @see #ActionBar_titleTextStyle\n         */\n        public static final int[] ActionBar = {\n            0x7f010000, 0x7f010001, 0x7f010031, 0x7f01006b,\n            0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,\n            0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,\n            0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,\n            0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,\n            0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,\n            0x7f010080, 0x7f010081, 0x7f010082\n        };\n        /**\n          <p>\n          @attr description\n           Specifies a background drawable for the action bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:background\n        */\n        public static final int ActionBar_background = 11;\n        /**\n          <p>\n          @attr description\n           Specifies a background drawable for the bottom component of a split action bar. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:backgroundSplit\n        */\n        public static final int ActionBar_backgroundSplit = 13;\n        /**\n          <p>\n          @attr description\n           Specifies a background drawable for a second stacked row of the action bar. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:backgroundStacked\n        */\n        public static final int ActionBar_backgroundStacked = 12;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetEnd\n        */\n        public static final int ActionBar_contentInsetEnd = 22;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetLeft\n        */\n        public static final int ActionBar_contentInsetLeft = 23;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetRight\n        */\n        public static final int ActionBar_contentInsetRight = 24;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetStart\n        */\n        public static final int ActionBar_contentInsetStart = 21;\n        /**\n          <p>\n          @attr description\n           Specifies a layout for custom navigation. Overrides navigationMode. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:customNavigationLayout\n        */\n        public static final int ActionBar_customNavigationLayout = 14;\n        /**\n          <p>\n          @attr description\n           Options affecting how the action bar is displayed. \n\n\n          <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>\n<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>\n<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>\n<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>\n<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>\n<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:displayOptions\n        */\n        public static final int ActionBar_displayOptions = 4;\n        /**\n          <p>\n          @attr description\n           Specifies the drawable used for item dividers. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:divider\n        */\n        public static final int ActionBar_divider = 10;\n        /**\n          <p>\n          @attr description\n           Elevation for the action bar itself \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:elevation\n        */\n        public static final int ActionBar_elevation = 25;\n        /**\n          <p>\n          @attr description\n           Specifies a fixed height. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:height\n        */\n        public static final int ActionBar_height = 1;\n        /**\n          <p>\n          @attr description\n           Set true to hide the action bar on a vertical nested scroll of content. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:hideOnContentScroll\n        */\n        public static final int ActionBar_hideOnContentScroll = 20;\n        /**\n          <p>\n          @attr description\n           Up navigation glyph \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:homeAsUpIndicator\n        */\n        public static final int ActionBar_homeAsUpIndicator = 2;\n        /**\n          <p>\n          @attr description\n           Specifies a layout to use for the \"home\" section of the action bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:homeLayout\n        */\n        public static final int ActionBar_homeLayout = 15;\n        /**\n          <p>\n          @attr description\n           Specifies the drawable used for the application icon. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:icon\n        */\n        public static final int ActionBar_icon = 8;\n        /**\n          <p>\n          @attr description\n           Specifies a style resource to use for an indeterminate progress spinner. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:indeterminateProgressStyle\n        */\n        public static final int ActionBar_indeterminateProgressStyle = 17;\n        /**\n          <p>\n          @attr description\n           Specifies padding that should be applied to the left and right sides of\n             system-provided items in the bar. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:itemPadding\n        */\n        public static final int ActionBar_itemPadding = 19;\n        /**\n          <p>\n          @attr description\n           Specifies the drawable used for the application logo. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:logo\n        */\n        public static final int ActionBar_logo = 9;\n        /**\n          <p>\n          @attr description\n           The type of navigation to use. \n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>normal</code></td><td>0</td><td> Normal static title text </td></tr>\n<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>\n<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:navigationMode\n        */\n        public static final int ActionBar_navigationMode = 3;\n        /**\n          <p>\n          @attr description\n           Reference to a theme that should be used to inflate popups\n             shown by widgets in the action bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:popupTheme\n        */\n        public static final int ActionBar_popupTheme = 26;\n        /**\n          <p>\n          @attr description\n           Specifies the horizontal padding on either end for an embedded progress bar. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:progressBarPadding\n        */\n        public static final int ActionBar_progressBarPadding = 18;\n        /**\n          <p>\n          @attr description\n           Specifies a style resource to use for an embedded progress bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:progressBarStyle\n        */\n        public static final int ActionBar_progressBarStyle = 16;\n        /**\n          <p>\n          @attr description\n           Specifies subtitle text used for navigationMode=\"normal\" \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:subtitle\n        */\n        public static final int ActionBar_subtitle = 5;\n        /**\n          <p>\n          @attr description\n           Specifies a style to use for subtitle text. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:subtitleTextStyle\n        */\n        public static final int ActionBar_subtitleTextStyle = 7;\n        /**\n          <p>\n          @attr description\n           Specifies title text used for navigationMode=\"normal\" \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:title\n        */\n        public static final int ActionBar_title = 0;\n        /**\n          <p>\n          @attr description\n           Specifies a style to use for title text. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:titleTextStyle\n        */\n        public static final int ActionBar_titleTextStyle = 6;\n        /**  Valid LayoutParams for views placed in the action bar as custom views. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>\n           </table>\n           @see #ActionBarLayout_android_layout_gravity\n         */\n        public static final int[] ActionBarLayout = {\n            0x010100b3\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}\n          attribute's value can be found in the {@link #ActionBarLayout} array.\n          @attr name android:layout_gravity\n        */\n        public static final int ActionBarLayout_android_layout_gravity = 0;\n        /** Attributes that can be used with a ActionMenuItemView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>\n           </table>\n           @see #ActionMenuItemView_android_minWidth\n         */\n        public static final int[] ActionMenuItemView = {\n            0x0101013f\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#minWidth}\n          attribute's value can be found in the {@link #ActionMenuItemView} array.\n          @attr name android:minWidth\n        */\n        public static final int ActionMenuItemView_android_minWidth = 0;\n        /**  Size of padding on either end of a divider. \n         */\n        public static final int[] ActionMenuView = {\n            \n        };\n        /** Attributes that can be used with a ActionMode.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionMode_background com.sloop.fz3d:background}</code></td><td> Specifies a background for the action mode bar.</td></tr>\n           <tr><td><code>{@link #ActionMode_backgroundSplit com.sloop.fz3d:backgroundSplit}</code></td><td> Specifies a background for the split action mode bar.</td></tr>\n           <tr><td><code>{@link #ActionMode_closeItemLayout com.sloop.fz3d:closeItemLayout}</code></td><td> Specifies a layout to use for the \"close\" item at the starting edge.</td></tr>\n           <tr><td><code>{@link #ActionMode_height com.sloop.fz3d:height}</code></td><td> Specifies a fixed height for the action mode bar.</td></tr>\n           <tr><td><code>{@link #ActionMode_subtitleTextStyle com.sloop.fz3d:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>\n           <tr><td><code>{@link #ActionMode_titleTextStyle com.sloop.fz3d:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>\n           </table>\n           @see #ActionMode_background\n           @see #ActionMode_backgroundSplit\n           @see #ActionMode_closeItemLayout\n           @see #ActionMode_height\n           @see #ActionMode_subtitleTextStyle\n           @see #ActionMode_titleTextStyle\n         */\n        public static final int[] ActionMode = {\n            0x7f010001, 0x7f01006e, 0x7f01006f, 0x7f010073,\n            0x7f010075, 0x7f010083\n        };\n        /**\n          <p>\n          @attr description\n           Specifies a background for the action mode bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:background\n        */\n        public static final int ActionMode_background = 3;\n        /**\n          <p>\n          @attr description\n           Specifies a background for the split action mode bar. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:backgroundSplit\n        */\n        public static final int ActionMode_backgroundSplit = 4;\n        /**\n          <p>\n          @attr description\n           Specifies a layout to use for the \"close\" item at the starting edge. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:closeItemLayout\n        */\n        public static final int ActionMode_closeItemLayout = 5;\n        /**\n          <p>\n          @attr description\n           Specifies a fixed height for the action mode bar. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:height\n        */\n        public static final int ActionMode_height = 0;\n        /**\n          <p>\n          @attr description\n           Specifies a style to use for subtitle text. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:subtitleTextStyle\n        */\n        public static final int ActionMode_subtitleTextStyle = 2;\n        /**\n          <p>\n          @attr description\n           Specifies a style to use for title text. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:titleTextStyle\n        */\n        public static final int ActionMode_titleTextStyle = 1;\n        /**  Attrbitutes for a ActivityChooserView. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.sloop.fz3d:expandActivityOverflowButtonDrawable}</code></td><td> The drawable to show in the button for expanding the activities overflow popup.</td></tr>\n           <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.sloop.fz3d:initialActivityCount}</code></td><td> The maximal number of items initially shown in the activity list.</td></tr>\n           </table>\n           @see #ActivityChooserView_expandActivityOverflowButtonDrawable\n           @see #ActivityChooserView_initialActivityCount\n         */\n        public static final int[] ActivityChooserView = {\n            0x7f01009e, 0x7f01009f\n        };\n        /**\n          <p>\n          @attr description\n           The drawable to show in the button for expanding the activities overflow popup.\n             <strong>Note:</strong> Clients would like to set this drawable\n             as a clue about the action the chosen activity will perform. For\n             example, if share activity is to be chosen the drawable should\n             give a clue that sharing is to be performed.\n         \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:expandActivityOverflowButtonDrawable\n        */\n        public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;\n        /**\n          <p>\n          @attr description\n           The maximal number of items initially shown in the activity list. \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:initialActivityCount\n        */\n        public static final int ActivityChooserView_initialActivityCount = 0;\n        /**  The set of attributes that describe a AlertDialog's theme. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.sloop.fz3d:buttonPanelSideLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_listItemLayout com.sloop.fz3d:listItemLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_listLayout com.sloop.fz3d:listLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.sloop.fz3d:multiChoiceItemLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.sloop.fz3d:singleChoiceItemLayout}</code></td><td></td></tr>\n           </table>\n           @see #AlertDialog_android_layout\n           @see #AlertDialog_buttonPanelSideLayout\n           @see #AlertDialog_listItemLayout\n           @see #AlertDialog_listLayout\n           @see #AlertDialog_multiChoiceItemLayout\n           @see #AlertDialog_singleChoiceItemLayout\n         */\n        public static final int[] AlertDialog = {\n            0x010100f2, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4,\n            0x7f0100c5, 0x7f0100c6\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n          @attr name android:layout\n        */\n        public static final int AlertDialog_android_layout = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#buttonPanelSideLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:buttonPanelSideLayout\n        */\n        public static final int AlertDialog_buttonPanelSideLayout = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#listItemLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:listItemLayout\n        */\n        public static final int AlertDialog_listItemLayout = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#listLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:listLayout\n        */\n        public static final int AlertDialog_listLayout = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#multiChoiceItemLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:multiChoiceItemLayout\n        */\n        public static final int AlertDialog_multiChoiceItemLayout = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#singleChoiceItemLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:singleChoiceItemLayout\n        */\n        public static final int AlertDialog_singleChoiceItemLayout = 4;\n        /** Attributes that can be used with a AppCompatTextView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #AppCompatTextView_textAllCaps com.sloop.fz3d:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>\n           </table>\n           @see #AppCompatTextView_android_textAppearance\n           @see #AppCompatTextView_textAllCaps\n         */\n        public static final int[] AppCompatTextView = {\n            0x01010034, 0x7f0100a0\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textAppearance}\n          attribute's value can be found in the {@link #AppCompatTextView} array.\n          @attr name android:textAppearance\n        */\n        public static final int AppCompatTextView_android_textAppearance = 0;\n        /**\n          <p>\n          @attr description\n           Present the text in ALL CAPS. This may use a small-caps form when available. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAllCaps\n        */\n        public static final int AppCompatTextView_textAllCaps = 1;\n        /** Attributes that can be used with a DrawerArrowToggle.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_barSize com.sloop.fz3d:barSize}</code></td><td> The size of the bars when they are parallel to each other </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_color com.sloop.fz3d:color}</code></td><td> The drawing color for the bars </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.sloop.fz3d:drawableSize}</code></td><td> The total size of the drawable </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.sloop.fz3d:gapBetweenBars}</code></td><td> The max gap between the bars when they are parallel to each other </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_middleBarArrowSize com.sloop.fz3d:middleBarArrowSize}</code></td><td> The size of the middle bar when top and bottom bars merge into middle bar to form an arrow </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_spinBars com.sloop.fz3d:spinBars}</code></td><td> Whether bars should rotate or not during transition </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_thickness com.sloop.fz3d:thickness}</code></td><td> The thickness (stroke size) for the bar paint </td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_topBottomBarArrowSize com.sloop.fz3d:topBottomBarArrowSize}</code></td><td> The size of the top and bottom bars when they merge to the middle bar to form an arrow </td></tr>\n           </table>\n           @see #DrawerArrowToggle_barSize\n           @see #DrawerArrowToggle_color\n           @see #DrawerArrowToggle_drawableSize\n           @see #DrawerArrowToggle_gapBetweenBars\n           @see #DrawerArrowToggle_middleBarArrowSize\n           @see #DrawerArrowToggle_spinBars\n           @see #DrawerArrowToggle_thickness\n           @see #DrawerArrowToggle_topBottomBarArrowSize\n         */\n        public static final int[] DrawerArrowToggle = {\n            0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5,\n            0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9\n        };\n        /**\n          <p>\n          @attr description\n           The size of the bars when they are parallel to each other \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:barSize\n        */\n        public static final int DrawerArrowToggle_barSize = 6;\n        /**\n          <p>\n          @attr description\n           The drawing color for the bars \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:color\n        */\n        public static final int DrawerArrowToggle_color = 0;\n        /**\n          <p>\n          @attr description\n           The total size of the drawable \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:drawableSize\n        */\n        public static final int DrawerArrowToggle_drawableSize = 2;\n        /**\n          <p>\n          @attr description\n           The max gap between the bars when they are parallel to each other \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:gapBetweenBars\n        */\n        public static final int DrawerArrowToggle_gapBetweenBars = 3;\n        /**\n          <p>\n          @attr description\n           The size of the middle bar when top and bottom bars merge into middle bar to form an arrow \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:middleBarArrowSize\n        */\n        public static final int DrawerArrowToggle_middleBarArrowSize = 5;\n        /**\n          <p>\n          @attr description\n           Whether bars should rotate or not during transition \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:spinBars\n        */\n        public static final int DrawerArrowToggle_spinBars = 1;\n        /**\n          <p>\n          @attr description\n           The thickness (stroke size) for the bar paint \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:thickness\n        */\n        public static final int DrawerArrowToggle_thickness = 7;\n        /**\n          <p>\n          @attr description\n           The size of the top and bottom bars when they merge to the middle bar to form an arrow \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:topBottomBarArrowSize\n        */\n        public static final int DrawerArrowToggle_topBottomBarArrowSize = 4;\n        /** Attributes that can be used with a LinearLayoutCompat.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td> When set to false, prevents the layout from aligning its children's\n             baselines.</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td> When a linear layout is part of another layout that is baseline\n          aligned, it can specify which of its children to baseline align to\n          (that is, which child TextView).</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td> Should the layout be a column or a row?  Use \"horizontal\"\n             for a row, \"vertical\" for a column.</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td> Defines the maximum weight sum.</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_divider com.sloop.fz3d:divider}</code></td><td> Drawable to use as a vertical divider between buttons.</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.sloop.fz3d:dividerPadding}</code></td><td> Size of padding on either end of a divider.</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.sloop.fz3d:measureWithLargestChild}</code></td><td> When set to true, all children with a weight will be considered having\n             the minimum size of the largest child.</td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_showDividers com.sloop.fz3d:showDividers}</code></td><td> Setting for which dividers to show.</td></tr>\n           </table>\n           @see #LinearLayoutCompat_android_baselineAligned\n           @see #LinearLayoutCompat_android_baselineAlignedChildIndex\n           @see #LinearLayoutCompat_android_gravity\n           @see #LinearLayoutCompat_android_orientation\n           @see #LinearLayoutCompat_android_weightSum\n           @see #LinearLayoutCompat_divider\n           @see #LinearLayoutCompat_dividerPadding\n           @see #LinearLayoutCompat_measureWithLargestChild\n           @see #LinearLayoutCompat_showDividers\n         */\n        public static final int[] LinearLayoutCompat = {\n            0x010100af, 0x010100c4, 0x01010126, 0x01010127,\n            0x01010128, 0x7f010072, 0x7f0100a1, 0x7f0100a2,\n            0x7f0100a3\n        };\n        /**\n          <p>\n          @attr description\n           When set to false, prevents the layout from aligning its children's\n             baselines. This attribute is particularly useful when the children\n             use different values for gravity. The default value is true. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#baselineAligned}.\n          @attr name android:baselineAligned\n        */\n        public static final int LinearLayoutCompat_android_baselineAligned = 2;\n        /**\n          <p>\n          @attr description\n           When a linear layout is part of another layout that is baseline\n          aligned, it can specify which of its children to baseline align to\n          (that is, which child TextView).\n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#baselineAlignedChildIndex}.\n          @attr name android:baselineAlignedChildIndex\n        */\n        public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#gravity}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n          @attr name android:gravity\n        */\n        public static final int LinearLayoutCompat_android_gravity = 0;\n        /**\n          <p>\n          @attr description\n           Should the layout be a column or a row?  Use \"horizontal\"\n             for a row, \"vertical\" for a column.  The default is\n             horizontal. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#orientation}.\n          @attr name android:orientation\n        */\n        public static final int LinearLayoutCompat_android_orientation = 1;\n        /**\n          <p>\n          @attr description\n           Defines the maximum weight sum. If unspecified, the sum is computed\n             by adding the layout_weight of all of the children. This can be\n             used for instance to give a single child 50% of the total available\n             space by giving it a layout_weight of 0.5 and setting the weightSum\n             to 1.0. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#weightSum}.\n          @attr name android:weightSum\n        */\n        public static final int LinearLayoutCompat_android_weightSum = 4;\n        /**\n          <p>\n          @attr description\n           Drawable to use as a vertical divider between buttons. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:divider\n        */\n        public static final int LinearLayoutCompat_divider = 5;\n        /**\n          <p>\n          @attr description\n           Size of padding on either end of a divider. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dividerPadding\n        */\n        public static final int LinearLayoutCompat_dividerPadding = 8;\n        /**\n          <p>\n          @attr description\n           When set to true, all children with a weight will be considered having\n             the minimum size of the largest child. If false, all children are\n             measured normally. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:measureWithLargestChild\n        */\n        public static final int LinearLayoutCompat_measureWithLargestChild = 6;\n        /**\n          <p>\n          @attr description\n           Setting for which dividers to show. \n\n\n          <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>beginning</code></td><td>1</td><td></td></tr>\n<tr><td><code>middle</code></td><td>2</td><td></td></tr>\n<tr><td><code>end</code></td><td>4</td><td></td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:showDividers\n        */\n        public static final int LinearLayoutCompat_showDividers = 7;\n        /** Attributes that can be used with a LinearLayoutCompat_Layout.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>\n           </table>\n           @see #LinearLayoutCompat_Layout_android_layout_gravity\n           @see #LinearLayoutCompat_Layout_android_layout_height\n           @see #LinearLayoutCompat_Layout_android_layout_weight\n           @see #LinearLayoutCompat_Layout_android_layout_width\n         */\n        public static final int[] LinearLayoutCompat_Layout = {\n            0x010100b3, 0x010100f4, 0x010100f5, 0x01010181\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_gravity\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_height}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_height\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_height = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_weight}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_weight\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_width}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_width\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_width = 1;\n        /** Attributes that can be used with a ListPopupWindow.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td> Amount of pixels by which the drop down should be offset horizontally.</td></tr>\n           <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Amount of pixels by which the drop down should be offset vertically.</td></tr>\n           </table>\n           @see #ListPopupWindow_android_dropDownHorizontalOffset\n           @see #ListPopupWindow_android_dropDownVerticalOffset\n         */\n        public static final int[] ListPopupWindow = {\n            0x010102ac, 0x010102ad\n        };\n        /**\n          <p>\n          @attr description\n           Amount of pixels by which the drop down should be offset horizontally. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#dropDownHorizontalOffset}.\n          @attr name android:dropDownHorizontalOffset\n        */\n        public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;\n        /**\n          <p>\n          @attr description\n           Amount of pixels by which the drop down should be offset vertically. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#dropDownVerticalOffset}.\n          @attr name android:dropDownVerticalOffset\n        */\n        public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;\n        /**  Base attributes that are available to all groups. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td> Whether the items are capable of displaying a check mark.</td></tr>\n           <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td> Whether the items are enabled.</td></tr>\n           <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td> The ID of the group.</td></tr>\n           <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td> The category applied to all items within this group.</td></tr>\n           <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to all items within this group.</td></tr>\n           <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td> Whether the items are shown/visible.</td></tr>\n           </table>\n           @see #MenuGroup_android_checkableBehavior\n           @see #MenuGroup_android_enabled\n           @see #MenuGroup_android_id\n           @see #MenuGroup_android_menuCategory\n           @see #MenuGroup_android_orderInCategory\n           @see #MenuGroup_android_visible\n         */\n        public static final int[] MenuGroup = {\n            0x0101000e, 0x010100d0, 0x01010194, 0x010101de,\n            0x010101df, 0x010101e0\n        };\n        /**\n          <p>\n          @attr description\n           Whether the items are capable of displaying a check mark. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#checkableBehavior}.\n          @attr name android:checkableBehavior\n        */\n        public static final int MenuGroup_android_checkableBehavior = 5;\n        /**\n          <p>\n          @attr description\n           Whether the items are enabled. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#enabled}.\n          @attr name android:enabled\n        */\n        public static final int MenuGroup_android_enabled = 0;\n        /**\n          <p>\n          @attr description\n           The ID of the group. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#id}.\n          @attr name android:id\n        */\n        public static final int MenuGroup_android_id = 1;\n        /**\n          <p>\n          @attr description\n           The category applied to all items within this group.\n             (This will be or'ed with the orderInCategory attribute.) \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#menuCategory}.\n          @attr name android:menuCategory\n        */\n        public static final int MenuGroup_android_menuCategory = 3;\n        /**\n          <p>\n          @attr description\n           The order within the category applied to all items within this group.\n             (This will be or'ed with the category attribute.) \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#orderInCategory}.\n          @attr name android:orderInCategory\n        */\n        public static final int MenuGroup_android_orderInCategory = 4;\n        /**\n          <p>\n          @attr description\n           Whether the items are shown/visible. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#visible}.\n          @attr name android:visible\n        */\n        public static final int MenuGroup_android_visible = 2;\n        /**  Base attributes that are available to all Item objects. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #MenuItem_actionLayout com.sloop.fz3d:actionLayout}</code></td><td> An optional layout to be used as an action view.</td></tr>\n           <tr><td><code>{@link #MenuItem_actionProviderClass com.sloop.fz3d:actionProviderClass}</code></td><td> The name of an optional ActionProvider class to instantiate an action view\n             and perform operations such as default action for that menu item.</td></tr>\n           <tr><td><code>{@link #MenuItem_actionViewClass com.sloop.fz3d:actionViewClass}</code></td><td> The name of an optional View class to instantiate and use as an\n             action view.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td> The alphabetic shortcut key.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td> Whether the item is capable of displaying a check mark.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td> Whether the item is checked.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td> Whether the item is enabled.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td> The icon associated with this item.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td> The ID of the item.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td> The category applied to the item.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td> The numeric shortcut key.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td> Name of a method on the Context used to inflate the menu that will be\n             called when the item is clicked.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to the item.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td> The title associated with the item.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td> The condensed title associated with the item.</td></tr>\n           <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td> Whether the item is shown/visible.</td></tr>\n           <tr><td><code>{@link #MenuItem_showAsAction com.sloop.fz3d:showAsAction}</code></td><td> How this item should display in the Action Bar, if present.</td></tr>\n           </table>\n           @see #MenuItem_actionLayout\n           @see #MenuItem_actionProviderClass\n           @see #MenuItem_actionViewClass\n           @see #MenuItem_android_alphabeticShortcut\n           @see #MenuItem_android_checkable\n           @see #MenuItem_android_checked\n           @see #MenuItem_android_enabled\n           @see #MenuItem_android_icon\n           @see #MenuItem_android_id\n           @see #MenuItem_android_menuCategory\n           @see #MenuItem_android_numericShortcut\n           @see #MenuItem_android_onClick\n           @see #MenuItem_android_orderInCategory\n           @see #MenuItem_android_title\n           @see #MenuItem_android_titleCondensed\n           @see #MenuItem_android_visible\n           @see #MenuItem_showAsAction\n         */\n        public static final int[] MenuItem = {\n            0x01010002, 0x0101000e, 0x010100d0, 0x01010106,\n            0x01010194, 0x010101de, 0x010101df, 0x010101e1,\n            0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,\n            0x0101026f, 0x7f01008a, 0x7f01008b, 0x7f01008c,\n            0x7f01008d\n        };\n        /**\n          <p>\n          @attr description\n           An optional layout to be used as an action view.\n             See {@link android.view.MenuItem#setActionView(android.view.View)}\n             for more info. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionLayout\n        */\n        public static final int MenuItem_actionLayout = 14;\n        /**\n          <p>\n          @attr description\n           The name of an optional ActionProvider class to instantiate an action view\n             and perform operations such as default action for that menu item.\n             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}\n             for more info. \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionProviderClass\n        */\n        public static final int MenuItem_actionProviderClass = 16;\n        /**\n          <p>\n          @attr description\n           The name of an optional View class to instantiate and use as an\n             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}\n             for more info. \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionViewClass\n        */\n        public static final int MenuItem_actionViewClass = 15;\n        /**\n          <p>\n          @attr description\n           The alphabetic shortcut key.  This is the shortcut when using a keyboard\n             with alphabetic keys. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#alphabeticShortcut}.\n          @attr name android:alphabeticShortcut\n        */\n        public static final int MenuItem_android_alphabeticShortcut = 9;\n        /**\n          <p>\n          @attr description\n           Whether the item is capable of displaying a check mark. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#checkable}.\n          @attr name android:checkable\n        */\n        public static final int MenuItem_android_checkable = 11;\n        /**\n          <p>\n          @attr description\n           Whether the item is checked.  Note that you must first have enabled checking with\n             the checkable attribute or else the check mark will not appear. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#checked}.\n          @attr name android:checked\n        */\n        public static final int MenuItem_android_checked = 3;\n        /**\n          <p>\n          @attr description\n           Whether the item is enabled. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#enabled}.\n          @attr name android:enabled\n        */\n        public static final int MenuItem_android_enabled = 1;\n        /**\n          <p>\n          @attr description\n           The icon associated with this item.  This icon will not always be shown, so\n             the title should be sufficient in describing this item. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#icon}.\n          @attr name android:icon\n        */\n        public static final int MenuItem_android_icon = 0;\n        /**\n          <p>\n          @attr description\n           The ID of the item. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#id}.\n          @attr name android:id\n        */\n        public static final int MenuItem_android_id = 2;\n        /**\n          <p>\n          @attr description\n           The category applied to the item.\n             (This will be or'ed with the orderInCategory attribute.) \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#menuCategory}.\n          @attr name android:menuCategory\n        */\n        public static final int MenuItem_android_menuCategory = 5;\n        /**\n          <p>\n          @attr description\n           The numeric shortcut key.  This is the shortcut when using a numeric (e.g., 12-key)\n             keyboard. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#numericShortcut}.\n          @attr name android:numericShortcut\n        */\n        public static final int MenuItem_android_numericShortcut = 10;\n        /**\n          <p>\n          @attr description\n           Name of a method on the Context used to inflate the menu that will be\n             called when the item is clicked. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#onClick}.\n          @attr name android:onClick\n        */\n        public static final int MenuItem_android_onClick = 12;\n        /**\n          <p>\n          @attr description\n           The order within the category applied to the item.\n             (This will be or'ed with the category attribute.) \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#orderInCategory}.\n          @attr name android:orderInCategory\n        */\n        public static final int MenuItem_android_orderInCategory = 6;\n        /**\n          <p>\n          @attr description\n           The title associated with the item. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#title}.\n          @attr name android:title\n        */\n        public static final int MenuItem_android_title = 7;\n        /**\n          <p>\n          @attr description\n           The condensed title associated with the item.  This is used in situations where the\n             normal title may be too long to be displayed. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#titleCondensed}.\n          @attr name android:titleCondensed\n        */\n        public static final int MenuItem_android_titleCondensed = 8;\n        /**\n          <p>\n          @attr description\n           Whether the item is shown/visible. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#visible}.\n          @attr name android:visible\n        */\n        public static final int MenuItem_android_visible = 4;\n        /**\n          <p>\n          @attr description\n           How this item should display in the Action Bar, if present. \n\n\n          <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<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.\n                 Mutually exclusive with \"ifRoom\" and \"always\". </td></tr>\n<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\n                 by the system. Favor this option over \"always\" where possible.\n                 Mutually exclusive with \"never\" and \"always\". </td></tr>\n<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override\n                 the system's limits of how much stuff to put there. This may make\n                 your action bar look bad on some screens. In most cases you should\n                 use \"ifRoom\" instead. Mutually exclusive with \"ifRoom\" and \"never\". </td></tr>\n<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\n                 label with it even if it has an icon representation. </td></tr>\n<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu\n                 item. When expanded, the action view takes over a\n                 larger segment of its container. </td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:showAsAction\n        */\n        public static final int MenuItem_showAsAction = 13;\n        /** Attributes that can be used with a MenuView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td> Default background for the menu header.</td></tr>\n           <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td> Default horizontal divider between rows of menu items.</td></tr>\n           <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td> Default background for each menu item.</td></tr>\n           <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td> Default disabled icon alpha for each menu item that shows an icon.</td></tr>\n           <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td> Default appearance of menu item text.</td></tr>\n           <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td> Default vertical divider between menu items.</td></tr>\n           <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td> Default animations for the menu.</td></tr>\n           <tr><td><code>{@link #MenuView_preserveIconSpacing com.sloop.fz3d:preserveIconSpacing}</code></td><td> Whether space should be reserved in layout when an icon is missing.</td></tr>\n           </table>\n           @see #MenuView_android_headerBackground\n           @see #MenuView_android_horizontalDivider\n           @see #MenuView_android_itemBackground\n           @see #MenuView_android_itemIconDisabledAlpha\n           @see #MenuView_android_itemTextAppearance\n           @see #MenuView_android_verticalDivider\n           @see #MenuView_android_windowAnimationStyle\n           @see #MenuView_preserveIconSpacing\n         */\n        public static final int[] MenuView = {\n            0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,\n            0x0101012f, 0x01010130, 0x01010131, 0x7f010089\n        };\n        /**\n          <p>\n          @attr description\n           Default background for the menu header. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#headerBackground}.\n          @attr name android:headerBackground\n        */\n        public static final int MenuView_android_headerBackground = 4;\n        /**\n          <p>\n          @attr description\n           Default horizontal divider between rows of menu items. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#horizontalDivider}.\n          @attr name android:horizontalDivider\n        */\n        public static final int MenuView_android_horizontalDivider = 2;\n        /**\n          <p>\n          @attr description\n           Default background for each menu item. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#itemBackground}.\n          @attr name android:itemBackground\n        */\n        public static final int MenuView_android_itemBackground = 5;\n        /**\n          <p>\n          @attr description\n           Default disabled icon alpha for each menu item that shows an icon. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#itemIconDisabledAlpha}.\n          @attr name android:itemIconDisabledAlpha\n        */\n        public static final int MenuView_android_itemIconDisabledAlpha = 6;\n        /**\n          <p>\n          @attr description\n           Default appearance of menu item text. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#itemTextAppearance}.\n          @attr name android:itemTextAppearance\n        */\n        public static final int MenuView_android_itemTextAppearance = 1;\n        /**\n          <p>\n          @attr description\n           Default vertical divider between menu items. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#verticalDivider}.\n          @attr name android:verticalDivider\n        */\n        public static final int MenuView_android_verticalDivider = 3;\n        /**\n          <p>\n          @attr description\n           Default animations for the menu. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#windowAnimationStyle}.\n          @attr name android:windowAnimationStyle\n        */\n        public static final int MenuView_android_windowAnimationStyle = 0;\n        /**\n          <p>\n          @attr description\n           Whether space should be reserved in layout when an icon is missing. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:preserveIconSpacing\n        */\n        public static final int MenuView_preserveIconSpacing = 7;\n        /** Attributes that can be used with a PopupWindow.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #PopupWindow_overlapAnchor com.sloop.fz3d:overlapAnchor}</code></td><td> Whether the popup window should overlap its anchor view.</td></tr>\n           </table>\n           @see #PopupWindow_android_popupBackground\n           @see #PopupWindow_overlapAnchor\n         */\n        public static final int[] PopupWindow = {\n            0x01010176, 0x7f0100b1\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}\n          attribute's value can be found in the {@link #PopupWindow} array.\n          @attr name android:popupBackground\n        */\n        public static final int PopupWindow_android_popupBackground = 0;\n        /**\n          <p>\n          @attr description\n           Whether the popup window should overlap its anchor view. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:overlapAnchor\n        */\n        public static final int PopupWindow_overlapAnchor = 1;\n        /** Attributes that can be used with a PopupWindowBackgroundState.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.sloop.fz3d:state_above_anchor}</code></td><td> State identifier indicating the popup will be above the anchor.</td></tr>\n           </table>\n           @see #PopupWindowBackgroundState_state_above_anchor\n         */\n        public static final int[] PopupWindowBackgroundState = {\n            0x7f0100b0\n        };\n        /**\n          <p>\n          @attr description\n           State identifier indicating the popup will be above the anchor. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:state_above_anchor\n        */\n        public static final int PopupWindowBackgroundState_state_above_anchor = 0;\n        /** Attributes that can be used with a SearchView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td> The IME options to set on the query text field.</td></tr>\n           <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td> The input type to set on the query text field.</td></tr>\n           <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td> An optional maximum width of the SearchView.</td></tr>\n           <tr><td><code>{@link #SearchView_closeIcon com.sloop.fz3d:closeIcon}</code></td><td> Close button icon </td></tr>\n           <tr><td><code>{@link #SearchView_commitIcon com.sloop.fz3d:commitIcon}</code></td><td> Commit icon shown in the query suggestion row </td></tr>\n           <tr><td><code>{@link #SearchView_goIcon com.sloop.fz3d:goIcon}</code></td><td> Go button icon </td></tr>\n           <tr><td><code>{@link #SearchView_iconifiedByDefault com.sloop.fz3d:iconifiedByDefault}</code></td><td> The default state of the SearchView.</td></tr>\n           <tr><td><code>{@link #SearchView_layout com.sloop.fz3d:layout}</code></td><td> The layout to use for the search view.</td></tr>\n           <tr><td><code>{@link #SearchView_queryBackground com.sloop.fz3d:queryBackground}</code></td><td> Background for the section containing the search query </td></tr>\n           <tr><td><code>{@link #SearchView_queryHint com.sloop.fz3d:queryHint}</code></td><td> An optional query hint string to be displayed in the empty query field.</td></tr>\n           <tr><td><code>{@link #SearchView_searchHintIcon com.sloop.fz3d:searchHintIcon}</code></td><td> Search icon displayed as a text field hint </td></tr>\n           <tr><td><code>{@link #SearchView_searchIcon com.sloop.fz3d:searchIcon}</code></td><td> Search icon </td></tr>\n           <tr><td><code>{@link #SearchView_submitBackground com.sloop.fz3d:submitBackground}</code></td><td> Background for the section containing the action (e.</td></tr>\n           <tr><td><code>{@link #SearchView_suggestionRowLayout com.sloop.fz3d:suggestionRowLayout}</code></td><td> Layout for query suggestion rows </td></tr>\n           <tr><td><code>{@link #SearchView_voiceIcon com.sloop.fz3d:voiceIcon}</code></td><td> Voice button icon </td></tr>\n           </table>\n           @see #SearchView_android_focusable\n           @see #SearchView_android_imeOptions\n           @see #SearchView_android_inputType\n           @see #SearchView_android_maxWidth\n           @see #SearchView_closeIcon\n           @see #SearchView_commitIcon\n           @see #SearchView_goIcon\n           @see #SearchView_iconifiedByDefault\n           @see #SearchView_layout\n           @see #SearchView_queryBackground\n           @see #SearchView_queryHint\n           @see #SearchView_searchHintIcon\n           @see #SearchView_searchIcon\n           @see #SearchView_submitBackground\n           @see #SearchView_suggestionRowLayout\n           @see #SearchView_voiceIcon\n         */\n        public static final int[] SearchView = {\n            0x010100da, 0x0101011f, 0x01010220, 0x01010264,\n            0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095,\n            0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099,\n            0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#focusable}\n          attribute's value can be found in the {@link #SearchView} array.\n          @attr name android:focusable\n        */\n        public static final int SearchView_android_focusable = 0;\n        /**\n          <p>\n          @attr description\n           The IME options to set on the query text field. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#imeOptions}.\n          @attr name android:imeOptions\n        */\n        public static final int SearchView_android_imeOptions = 3;\n        /**\n          <p>\n          @attr description\n           The input type to set on the query text field. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#inputType}.\n          @attr name android:inputType\n        */\n        public static final int SearchView_android_inputType = 2;\n        /**\n          <p>\n          @attr description\n           An optional maximum width of the SearchView. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#maxWidth}.\n          @attr name android:maxWidth\n        */\n        public static final int SearchView_android_maxWidth = 1;\n        /**\n          <p>\n          @attr description\n           Close button icon \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:closeIcon\n        */\n        public static final int SearchView_closeIcon = 7;\n        /**\n          <p>\n          @attr description\n           Commit icon shown in the query suggestion row \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:commitIcon\n        */\n        public static final int SearchView_commitIcon = 12;\n        /**\n          <p>\n          @attr description\n           Go button icon \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:goIcon\n        */\n        public static final int SearchView_goIcon = 8;\n        /**\n          <p>\n          @attr description\n           The default state of the SearchView. If true, it will be iconified when not in\n             use and expanded when clicked. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:iconifiedByDefault\n        */\n        public static final int SearchView_iconifiedByDefault = 5;\n        /**\n          <p>\n          @attr description\n           The layout to use for the search view. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:layout\n        */\n        public static final int SearchView_layout = 4;\n        /**\n          <p>\n          @attr description\n           Background for the section containing the search query \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:queryBackground\n        */\n        public static final int SearchView_queryBackground = 14;\n        /**\n          <p>\n          @attr description\n           An optional query hint string to be displayed in the empty query field. \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:queryHint\n        */\n        public static final int SearchView_queryHint = 6;\n        /**\n          <p>\n          @attr description\n           Search icon displayed as a text field hint \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:searchHintIcon\n        */\n        public static final int SearchView_searchHintIcon = 10;\n        /**\n          <p>\n          @attr description\n           Search icon \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:searchIcon\n        */\n        public static final int SearchView_searchIcon = 9;\n        /**\n          <p>\n          @attr description\n           Background for the section containing the action (e.g. voice search) \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:submitBackground\n        */\n        public static final int SearchView_submitBackground = 15;\n        /**\n          <p>\n          @attr description\n           Layout for query suggestion rows \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:suggestionRowLayout\n        */\n        public static final int SearchView_suggestionRowLayout = 13;\n        /**\n          <p>\n          @attr description\n           Voice button icon \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:voiceIcon\n        */\n        public static final int SearchView_voiceIcon = 11;\n        /** Attributes that can be used with a Spinner.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #Spinner_android_background android:background}</code></td><td></td></tr>\n           <tr><td><code>{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td> Horizontal offset from the spinner widget for positioning the dropdown\n             in spinnerMode=\"dropdown\".</td></tr>\n           <tr><td><code>{@link #Spinner_android_dropDownSelector android:dropDownSelector}</code></td><td> List selector to use for spinnerMode=\"dropdown\" display.</td></tr>\n           <tr><td><code>{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Vertical offset from the spinner widget for positioning the dropdown in\n             spinnerMode=\"dropdown\".</td></tr>\n           <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td> Width of the dropdown in spinnerMode=\"dropdown\".</td></tr>\n           <tr><td><code>{@link #Spinner_android_gravity android:gravity}</code></td><td> Gravity setting for positioning the currently selected item.</td></tr>\n           <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td> Background drawable to use for the dropdown in spinnerMode=\"dropdown\".</td></tr>\n           <tr><td><code>{@link #Spinner_disableChildrenWhenDisabled com.sloop.fz3d:disableChildrenWhenDisabled}</code></td><td> Whether this spinner should mark child views as enabled/disabled when\n             the spinner itself is enabled/disabled.</td></tr>\n           <tr><td><code>{@link #Spinner_popupPromptView com.sloop.fz3d:popupPromptView}</code></td><td> Reference to a layout to use for displaying a prompt in the dropdown for\n             spinnerMode=\"dropdown\".</td></tr>\n           <tr><td><code>{@link #Spinner_prompt com.sloop.fz3d:prompt}</code></td><td> The prompt to display when the spinner's dialog is shown.</td></tr>\n           <tr><td><code>{@link #Spinner_spinnerMode com.sloop.fz3d:spinnerMode}</code></td><td> Display mode for spinner options.</td></tr>\n           </table>\n           @see #Spinner_android_background\n           @see #Spinner_android_dropDownHorizontalOffset\n           @see #Spinner_android_dropDownSelector\n           @see #Spinner_android_dropDownVerticalOffset\n           @see #Spinner_android_dropDownWidth\n           @see #Spinner_android_gravity\n           @see #Spinner_android_popupBackground\n           @see #Spinner_disableChildrenWhenDisabled\n           @see #Spinner_popupPromptView\n           @see #Spinner_prompt\n           @see #Spinner_spinnerMode\n         */\n        public static final int[] Spinner = {\n            0x010100af, 0x010100d4, 0x01010175, 0x01010176,\n            0x01010262, 0x010102ac, 0x010102ad, 0x7f01008e,\n            0x7f01008f, 0x7f010090, 0x7f010091\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#background}\n          attribute's value can be found in the {@link #Spinner} array.\n          @attr name android:background\n        */\n        public static final int Spinner_android_background = 1;\n        /**\n          <p>\n          @attr description\n           Horizontal offset from the spinner widget for positioning the dropdown\n             in spinnerMode=\"dropdown\". \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#dropDownHorizontalOffset}.\n          @attr name android:dropDownHorizontalOffset\n        */\n        public static final int Spinner_android_dropDownHorizontalOffset = 5;\n        /**\n          <p>\n          @attr description\n           List selector to use for spinnerMode=\"dropdown\" display. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#dropDownSelector}.\n          @attr name android:dropDownSelector\n        */\n        public static final int Spinner_android_dropDownSelector = 2;\n        /**\n          <p>\n          @attr description\n           Vertical offset from the spinner widget for positioning the dropdown in\n             spinnerMode=\"dropdown\". \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#dropDownVerticalOffset}.\n          @attr name android:dropDownVerticalOffset\n        */\n        public static final int Spinner_android_dropDownVerticalOffset = 6;\n        /**\n          <p>\n          @attr description\n           Width of the dropdown in spinnerMode=\"dropdown\". \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#dropDownWidth}.\n          @attr name android:dropDownWidth\n        */\n        public static final int Spinner_android_dropDownWidth = 4;\n        /**\n          <p>\n          @attr description\n           Gravity setting for positioning the currently selected item. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#gravity}.\n          @attr name android:gravity\n        */\n        public static final int Spinner_android_gravity = 0;\n        /**\n          <p>\n          @attr description\n           Background drawable to use for the dropdown in spinnerMode=\"dropdown\". \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#popupBackground}.\n          @attr name android:popupBackground\n        */\n        public static final int Spinner_android_popupBackground = 3;\n        /**\n          <p>\n          @attr description\n           Whether this spinner should mark child views as enabled/disabled when\n             the spinner itself is enabled/disabled. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:disableChildrenWhenDisabled\n        */\n        public static final int Spinner_disableChildrenWhenDisabled = 10;\n        /**\n          <p>\n          @attr description\n           Reference to a layout to use for displaying a prompt in the dropdown for\n             spinnerMode=\"dropdown\". This layout must contain a TextView with the id\n             {@code @android:id/text1} to be populated with the prompt text. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:popupPromptView\n        */\n        public static final int Spinner_popupPromptView = 9;\n        /**\n          <p>\n          @attr description\n           The prompt to display when the spinner's dialog is shown. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:prompt\n        */\n        public static final int Spinner_prompt = 7;\n        /**\n          <p>\n          @attr description\n           Display mode for spinner options. \n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>\n<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown\n                 anchored to the spinner widget itself. </td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:spinnerMode\n        */\n        public static final int Spinner_spinnerMode = 8;\n        /** Attributes that can be used with a SwitchCompat.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td> Text to use when the switch is in the unchecked/\"off\" state.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td> Text to use when the switch is in the checked/\"on\" state.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td> Drawable to use as the \"thumb\" that switches back and forth.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_showText com.sloop.fz3d:showText}</code></td><td> Whether to draw on/off text.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_splitTrack com.sloop.fz3d:splitTrack}</code></td><td> Whether to split the track and leave a gap for the thumb drawable.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_switchMinWidth com.sloop.fz3d:switchMinWidth}</code></td><td> Minimum width for the switch component </td></tr>\n           <tr><td><code>{@link #SwitchCompat_switchPadding com.sloop.fz3d:switchPadding}</code></td><td> Minimum space between the switch and caption text </td></tr>\n           <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.sloop.fz3d:switchTextAppearance}</code></td><td> TextAppearance style for text displayed on the switch thumb.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.sloop.fz3d:thumbTextPadding}</code></td><td> Amount of padding on either side of text within the switch thumb.</td></tr>\n           <tr><td><code>{@link #SwitchCompat_track com.sloop.fz3d:track}</code></td><td> Drawable to use as the \"track\" that the switch thumb slides within.</td></tr>\n           </table>\n           @see #SwitchCompat_android_textOff\n           @see #SwitchCompat_android_textOn\n           @see #SwitchCompat_android_thumb\n           @see #SwitchCompat_showText\n           @see #SwitchCompat_splitTrack\n           @see #SwitchCompat_switchMinWidth\n           @see #SwitchCompat_switchPadding\n           @see #SwitchCompat_switchTextAppearance\n           @see #SwitchCompat_thumbTextPadding\n           @see #SwitchCompat_track\n         */\n        public static final int[] SwitchCompat = {\n            0x01010124, 0x01010125, 0x01010142, 0x7f0100bb,\n            0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,\n            0x7f0100c0, 0x7f0100c1\n        };\n        /**\n          <p>\n          @attr description\n           Text to use when the switch is in the unchecked/\"off\" state. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#textOff}.\n          @attr name android:textOff\n        */\n        public static final int SwitchCompat_android_textOff = 1;\n        /**\n          <p>\n          @attr description\n           Text to use when the switch is in the checked/\"on\" state. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#textOn}.\n          @attr name android:textOn\n        */\n        public static final int SwitchCompat_android_textOn = 0;\n        /**\n          <p>\n          @attr description\n           Drawable to use as the \"thumb\" that switches back and forth. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#thumb}.\n          @attr name android:thumb\n        */\n        public static final int SwitchCompat_android_thumb = 2;\n        /**\n          <p>\n          @attr description\n           Whether to draw on/off text. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:showText\n        */\n        public static final int SwitchCompat_showText = 9;\n        /**\n          <p>\n          @attr description\n           Whether to split the track and leave a gap for the thumb drawable. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:splitTrack\n        */\n        public static final int SwitchCompat_splitTrack = 8;\n        /**\n          <p>\n          @attr description\n           Minimum width for the switch component \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:switchMinWidth\n        */\n        public static final int SwitchCompat_switchMinWidth = 6;\n        /**\n          <p>\n          @attr description\n           Minimum space between the switch and caption text \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:switchPadding\n        */\n        public static final int SwitchCompat_switchPadding = 7;\n        /**\n          <p>\n          @attr description\n           TextAppearance style for text displayed on the switch thumb. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:switchTextAppearance\n        */\n        public static final int SwitchCompat_switchTextAppearance = 5;\n        /**\n          <p>\n          @attr description\n           Amount of padding on either side of text within the switch thumb. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:thumbTextPadding\n        */\n        public static final int SwitchCompat_thumbTextPadding = 4;\n        /**\n          <p>\n          @attr description\n           Drawable to use as the \"track\" that the switch thumb slides within. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:track\n        */\n        public static final int SwitchCompat_track = 3;\n        /** Attributes that can be used with a TextAppearance.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_textAllCaps com.sloop.fz3d:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>\n           </table>\n           @see #TextAppearance_android_textColor\n           @see #TextAppearance_android_textSize\n           @see #TextAppearance_android_textStyle\n           @see #TextAppearance_android_typeface\n           @see #TextAppearance_textAllCaps\n         */\n        public static final int[] TextAppearance = {\n            0x01010095, 0x01010096, 0x01010097, 0x01010098,\n            0x7f0100a0\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textColor}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:textColor\n        */\n        public static final int TextAppearance_android_textColor = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textSize}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:textSize\n        */\n        public static final int TextAppearance_android_textSize = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textStyle}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:textStyle\n        */\n        public static final int TextAppearance_android_textStyle = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#typeface}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:typeface\n        */\n        public static final int TextAppearance_android_typeface = 1;\n        /**\n          <p>\n          @attr description\n           Present the text in ALL CAPS. This may use a small-caps form when available. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAllCaps\n        */\n        public static final int TextAppearance_textAllCaps = 4;\n        /**  These are the standard attributes that make up a complete theme. \n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #Theme_actionBarDivider com.sloop.fz3d:actionBarDivider}</code></td><td> Custom divider drawable to use for elements in the action bar.</td></tr>\n           <tr><td><code>{@link #Theme_actionBarItemBackground com.sloop.fz3d:actionBarItemBackground}</code></td><td> Custom item state list drawable background for action bar items.</td></tr>\n           <tr><td><code>{@link #Theme_actionBarPopupTheme com.sloop.fz3d:actionBarPopupTheme}</code></td><td> Reference to a theme that should be used to inflate popups\n             shown by widgets in the action bar.</td></tr>\n           <tr><td><code>{@link #Theme_actionBarSize com.sloop.fz3d:actionBarSize}</code></td><td> Size of the Action Bar, including the contextual\n             bar used to present Action Modes.</td></tr>\n           <tr><td><code>{@link #Theme_actionBarSplitStyle com.sloop.fz3d:actionBarSplitStyle}</code></td><td> Reference to a style for the split Action Bar.</td></tr>\n           <tr><td><code>{@link #Theme_actionBarStyle com.sloop.fz3d:actionBarStyle}</code></td><td> Reference to a style for the Action Bar </td></tr>\n           <tr><td><code>{@link #Theme_actionBarTabBarStyle com.sloop.fz3d:actionBarTabBarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarTabStyle com.sloop.fz3d:actionBarTabStyle}</code></td><td> Default style for tabs within an action bar </td></tr>\n           <tr><td><code>{@link #Theme_actionBarTabTextStyle com.sloop.fz3d:actionBarTabTextStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarTheme com.sloop.fz3d:actionBarTheme}</code></td><td> Reference to a theme that should be used to inflate the\n             action bar.</td></tr>\n           <tr><td><code>{@link #Theme_actionBarWidgetTheme com.sloop.fz3d:actionBarWidgetTheme}</code></td><td> Reference to a theme that should be used to inflate widgets\n             and layouts destined for the action bar.</td></tr>\n           <tr><td><code>{@link #Theme_actionButtonStyle com.sloop.fz3d:actionButtonStyle}</code></td><td> Default action button style.</td></tr>\n           <tr><td><code>{@link #Theme_actionDropDownStyle com.sloop.fz3d:actionDropDownStyle}</code></td><td> Default ActionBar dropdown style.</td></tr>\n           <tr><td><code>{@link #Theme_actionMenuTextAppearance com.sloop.fz3d:actionMenuTextAppearance}</code></td><td> TextAppearance style that will be applied to text that\n             appears within action menu items.</td></tr>\n           <tr><td><code>{@link #Theme_actionMenuTextColor com.sloop.fz3d:actionMenuTextColor}</code></td><td> Color for text that appears within action menu items.</td></tr>\n           <tr><td><code>{@link #Theme_actionModeBackground com.sloop.fz3d:actionModeBackground}</code></td><td> Background drawable to use for action mode UI </td></tr>\n           <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.sloop.fz3d:actionModeCloseButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeCloseDrawable com.sloop.fz3d:actionModeCloseDrawable}</code></td><td> Drawable to use for the close action mode button </td></tr>\n           <tr><td><code>{@link #Theme_actionModeCopyDrawable com.sloop.fz3d:actionModeCopyDrawable}</code></td><td> Drawable to use for the Copy action button in Contextual Action Bar </td></tr>\n           <tr><td><code>{@link #Theme_actionModeCutDrawable com.sloop.fz3d:actionModeCutDrawable}</code></td><td> Drawable to use for the Cut action button in Contextual Action Bar </td></tr>\n           <tr><td><code>{@link #Theme_actionModeFindDrawable com.sloop.fz3d:actionModeFindDrawable}</code></td><td> Drawable to use for the Find action button in WebView selection action modes </td></tr>\n           <tr><td><code>{@link #Theme_actionModePasteDrawable com.sloop.fz3d:actionModePasteDrawable}</code></td><td> Drawable to use for the Paste action button in Contextual Action Bar </td></tr>\n           <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.sloop.fz3d:actionModePopupWindowStyle}</code></td><td> PopupWindow style to use for action modes when showing as a window overlay.</td></tr>\n           <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.sloop.fz3d:actionModeSelectAllDrawable}</code></td><td> Drawable to use for the Select all action button in Contextual Action Bar </td></tr>\n           <tr><td><code>{@link #Theme_actionModeShareDrawable com.sloop.fz3d:actionModeShareDrawable}</code></td><td> Drawable to use for the Share action button in WebView selection action modes </td></tr>\n           <tr><td><code>{@link #Theme_actionModeSplitBackground com.sloop.fz3d:actionModeSplitBackground}</code></td><td> Background drawable to use for action mode UI in the lower split bar </td></tr>\n           <tr><td><code>{@link #Theme_actionModeStyle com.sloop.fz3d:actionModeStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.sloop.fz3d:actionModeWebSearchDrawable}</code></td><td> Drawable to use for the Web Search action button in WebView selection action modes </td></tr>\n           <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.sloop.fz3d:actionOverflowButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.sloop.fz3d:actionOverflowMenuStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_activityChooserViewStyle com.sloop.fz3d:activityChooserViewStyle}</code></td><td> Default ActivityChooserView style.</td></tr>\n           <tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.sloop.fz3d:alertDialogButtonGroupStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogCenterButtons com.sloop.fz3d:alertDialogCenterButtons}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogStyle com.sloop.fz3d:alertDialogStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogTheme com.sloop.fz3d:alertDialogTheme}</code></td><td> Theme to use for alert dialogs spawned from this theme.</td></tr>\n           <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.sloop.fz3d:autoCompleteTextViewStyle}</code></td><td> Default AutoCompleteTextView style.</td></tr>\n           <tr><td><code>{@link #Theme_buttonBarButtonStyle com.sloop.fz3d:buttonBarButtonStyle}</code></td><td> Style for buttons within button bars </td></tr>\n           <tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.sloop.fz3d:buttonBarNegativeButtonStyle}</code></td><td> Style for the \"negative\" buttons within button bars </td></tr>\n           <tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.sloop.fz3d:buttonBarNeutralButtonStyle}</code></td><td> Style for the \"neutral\" buttons within button bars </td></tr>\n           <tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.sloop.fz3d:buttonBarPositiveButtonStyle}</code></td><td> Style for the \"positive\" buttons within button bars </td></tr>\n           <tr><td><code>{@link #Theme_buttonBarStyle com.sloop.fz3d:buttonBarStyle}</code></td><td> Style for button bars </td></tr>\n           <tr><td><code>{@link #Theme_buttonStyle com.sloop.fz3d:buttonStyle}</code></td><td> Normal Button style.</td></tr>\n           <tr><td><code>{@link #Theme_buttonStyleSmall com.sloop.fz3d:buttonStyleSmall}</code></td><td> Small Button style.</td></tr>\n           <tr><td><code>{@link #Theme_checkboxStyle com.sloop.fz3d:checkboxStyle}</code></td><td> Default Checkbox style.</td></tr>\n           <tr><td><code>{@link #Theme_checkedTextViewStyle com.sloop.fz3d:checkedTextViewStyle}</code></td><td> Default CheckedTextView style.</td></tr>\n           <tr><td><code>{@link #Theme_colorAccent com.sloop.fz3d:colorAccent}</code></td><td> Bright complement to the primary branding color.</td></tr>\n           <tr><td><code>{@link #Theme_colorButtonNormal com.sloop.fz3d:colorButtonNormal}</code></td><td> The color applied to framework buttons in their normal state.</td></tr>\n           <tr><td><code>{@link #Theme_colorControlActivated com.sloop.fz3d:colorControlActivated}</code></td><td> The color applied to framework controls in their activated (ex.</td></tr>\n           <tr><td><code>{@link #Theme_colorControlHighlight com.sloop.fz3d:colorControlHighlight}</code></td><td> The color applied to framework control highlights (ex.</td></tr>\n           <tr><td><code>{@link #Theme_colorControlNormal com.sloop.fz3d:colorControlNormal}</code></td><td> The color applied to framework controls in their normal state.</td></tr>\n           <tr><td><code>{@link #Theme_colorPrimary com.sloop.fz3d:colorPrimary}</code></td><td> The primary branding color for the app.</td></tr>\n           <tr><td><code>{@link #Theme_colorPrimaryDark com.sloop.fz3d:colorPrimaryDark}</code></td><td> Dark variant of the primary branding color.</td></tr>\n           <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.sloop.fz3d:colorSwitchThumbNormal}</code></td><td> The color applied to framework switch thumbs in their normal state.</td></tr>\n           <tr><td><code>{@link #Theme_dialogPreferredPadding com.sloop.fz3d:dialogPreferredPadding}</code></td><td> Preferred padding for dialog content.</td></tr>\n           <tr><td><code>{@link #Theme_dialogTheme com.sloop.fz3d:dialogTheme}</code></td><td> Theme to use for dialogs spawned from this theme.</td></tr>\n           <tr><td><code>{@link #Theme_dividerHorizontal com.sloop.fz3d:dividerHorizontal}</code></td><td> A drawable that may be used as a horizontal divider between visual elements.</td></tr>\n           <tr><td><code>{@link #Theme_dividerVertical com.sloop.fz3d:dividerVertical}</code></td><td> A drawable that may be used as a vertical divider between visual elements.</td></tr>\n           <tr><td><code>{@link #Theme_dropDownListViewStyle com.sloop.fz3d:dropDownListViewStyle}</code></td><td> ListPopupWindow compatibility </td></tr>\n           <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.sloop.fz3d:dropdownListPreferredItemHeight}</code></td><td> The preferred item height for dropdown lists.</td></tr>\n           <tr><td><code>{@link #Theme_editTextBackground com.sloop.fz3d:editTextBackground}</code></td><td> EditText background drawable.</td></tr>\n           <tr><td><code>{@link #Theme_editTextColor com.sloop.fz3d:editTextColor}</code></td><td> EditText text foreground color.</td></tr>\n           <tr><td><code>{@link #Theme_editTextStyle com.sloop.fz3d:editTextStyle}</code></td><td> Default EditText style.</td></tr>\n           <tr><td><code>{@link #Theme_homeAsUpIndicator com.sloop.fz3d:homeAsUpIndicator}</code></td><td> Specifies a drawable to use for the 'home as up' indicator.</td></tr>\n           <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.sloop.fz3d:listChoiceBackgroundIndicator}</code></td><td> Drawable used as a background for selected list items.</td></tr>\n           <tr><td><code>{@link #Theme_listDividerAlertDialog com.sloop.fz3d:listDividerAlertDialog}</code></td><td> The list divider used in alert dialogs.</td></tr>\n           <tr><td><code>{@link #Theme_listPopupWindowStyle com.sloop.fz3d:listPopupWindowStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemHeight com.sloop.fz3d:listPreferredItemHeight}</code></td><td> The preferred list item height.</td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.sloop.fz3d:listPreferredItemHeightLarge}</code></td><td> A larger, more robust list item height.</td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.sloop.fz3d:listPreferredItemHeightSmall}</code></td><td> A smaller, sleeker list item height.</td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.sloop.fz3d:listPreferredItemPaddingLeft}</code></td><td> The preferred padding along the left edge of list items.</td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.sloop.fz3d:listPreferredItemPaddingRight}</code></td><td> The preferred padding along the right edge of list items.</td></tr>\n           <tr><td><code>{@link #Theme_panelBackground com.sloop.fz3d:panelBackground}</code></td><td> The background of a panel when it is inset from the left and right edges of the screen.</td></tr>\n           <tr><td><code>{@link #Theme_panelMenuListTheme com.sloop.fz3d:panelMenuListTheme}</code></td><td> Default Panel Menu style.</td></tr>\n           <tr><td><code>{@link #Theme_panelMenuListWidth com.sloop.fz3d:panelMenuListWidth}</code></td><td> Default Panel Menu width.</td></tr>\n           <tr><td><code>{@link #Theme_popupMenuStyle com.sloop.fz3d:popupMenuStyle}</code></td><td> Default PopupMenu style.</td></tr>\n           <tr><td><code>{@link #Theme_popupWindowStyle com.sloop.fz3d:popupWindowStyle}</code></td><td> Default PopupWindow style.</td></tr>\n           <tr><td><code>{@link #Theme_radioButtonStyle com.sloop.fz3d:radioButtonStyle}</code></td><td> Default RadioButton style.</td></tr>\n           <tr><td><code>{@link #Theme_ratingBarStyle com.sloop.fz3d:ratingBarStyle}</code></td><td> Default RatingBar style.</td></tr>\n           <tr><td><code>{@link #Theme_searchViewStyle com.sloop.fz3d:searchViewStyle}</code></td><td> Style for the search query widget.</td></tr>\n           <tr><td><code>{@link #Theme_selectableItemBackground com.sloop.fz3d:selectableItemBackground}</code></td><td> A style that may be applied to buttons or other selectable items\n             that should react to pressed and focus states, but that do not\n             have a clear visual border along the edges.</td></tr>\n           <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.sloop.fz3d:selectableItemBackgroundBorderless}</code></td><td> Background drawable for borderless standalone items that need focus/pressed states.</td></tr>\n           <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.sloop.fz3d:spinnerDropDownItemStyle}</code></td><td> Default Spinner style.</td></tr>\n           <tr><td><code>{@link #Theme_spinnerStyle com.sloop.fz3d:spinnerStyle}</code></td><td> Default Spinner style.</td></tr>\n           <tr><td><code>{@link #Theme_switchStyle com.sloop.fz3d:switchStyle}</code></td><td> Default style for the Switch widget.</td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.sloop.fz3d:textAppearanceLargePopupMenu}</code></td><td> Text color, typeface, size, and style for the text inside of a popup menu.</td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceListItem com.sloop.fz3d:textAppearanceListItem}</code></td><td> The preferred TextAppearance for the primary text of list items.</td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.sloop.fz3d:textAppearanceListItemSmall}</code></td><td> The preferred TextAppearance for the primary text of small list items.</td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.sloop.fz3d:textAppearanceSearchResultSubtitle}</code></td><td> Text color, typeface, size, and style for system search result subtitle.</td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.sloop.fz3d:textAppearanceSearchResultTitle}</code></td><td> Text color, typeface, size, and style for system search result title.</td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.sloop.fz3d:textAppearanceSmallPopupMenu}</code></td><td> Text color, typeface, size, and style for small text inside of a popup menu.</td></tr>\n           <tr><td><code>{@link #Theme_textColorAlertDialogListItem com.sloop.fz3d:textColorAlertDialogListItem}</code></td><td> Color of list item text in alert dialogs.</td></tr>\n           <tr><td><code>{@link #Theme_textColorSearchUrl com.sloop.fz3d:textColorSearchUrl}</code></td><td> Text color for urls in search suggestions, used by things like global search </td></tr>\n           <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.sloop.fz3d:toolbarNavigationButtonStyle}</code></td><td> Default Toolar NavigationButtonStyle </td></tr>\n           <tr><td><code>{@link #Theme_toolbarStyle com.sloop.fz3d:toolbarStyle}</code></td><td> Default Toolbar style.</td></tr>\n           <tr><td><code>{@link #Theme_windowActionBar com.sloop.fz3d:windowActionBar}</code></td><td> Flag indicating whether this window should have an Action Bar\n             in place of the usual title bar.</td></tr>\n           <tr><td><code>{@link #Theme_windowActionBarOverlay com.sloop.fz3d:windowActionBarOverlay}</code></td><td> Flag indicating whether this window's Action Bar should overlay\n             application content.</td></tr>\n           <tr><td><code>{@link #Theme_windowActionModeOverlay com.sloop.fz3d:windowActionModeOverlay}</code></td><td> Flag indicating whether action modes should overlay window content\n             when there is not reserved space for their UI (such as an Action Bar).</td></tr>\n           <tr><td><code>{@link #Theme_windowFixedHeightMajor com.sloop.fz3d:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen,\n             that is, when in portrait.</td></tr>\n           <tr><td><code>{@link #Theme_windowFixedHeightMinor com.sloop.fz3d:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen,\n             that is, when in landscape.</td></tr>\n           <tr><td><code>{@link #Theme_windowFixedWidthMajor com.sloop.fz3d:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen,\n             that is, when in landscape.</td></tr>\n           <tr><td><code>{@link #Theme_windowFixedWidthMinor com.sloop.fz3d:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen,\n             that is, when in portrait.</td></tr>\n           <tr><td><code>{@link #Theme_windowMinWidthMajor com.sloop.fz3d:windowMinWidthMajor}</code></td><td> The minimum width the window is allowed to be, along the major\n             axis of the screen.</td></tr>\n           <tr><td><code>{@link #Theme_windowMinWidthMinor com.sloop.fz3d:windowMinWidthMinor}</code></td><td> The minimum width the window is allowed to be, along the minor\n             axis of the screen.</td></tr>\n           <tr><td><code>{@link #Theme_windowNoTitle com.sloop.fz3d:windowNoTitle}</code></td><td> Flag indicating whether there should be no title on this window.</td></tr>\n           </table>\n           @see #Theme_actionBarDivider\n           @see #Theme_actionBarItemBackground\n           @see #Theme_actionBarPopupTheme\n           @see #Theme_actionBarSize\n           @see #Theme_actionBarSplitStyle\n           @see #Theme_actionBarStyle\n           @see #Theme_actionBarTabBarStyle\n           @see #Theme_actionBarTabStyle\n           @see #Theme_actionBarTabTextStyle\n           @see #Theme_actionBarTheme\n           @see #Theme_actionBarWidgetTheme\n           @see #Theme_actionButtonStyle\n           @see #Theme_actionDropDownStyle\n           @see #Theme_actionMenuTextAppearance\n           @see #Theme_actionMenuTextColor\n           @see #Theme_actionModeBackground\n           @see #Theme_actionModeCloseButtonStyle\n           @see #Theme_actionModeCloseDrawable\n           @see #Theme_actionModeCopyDrawable\n           @see #Theme_actionModeCutDrawable\n           @see #Theme_actionModeFindDrawable\n           @see #Theme_actionModePasteDrawable\n           @see #Theme_actionModePopupWindowStyle\n           @see #Theme_actionModeSelectAllDrawable\n           @see #Theme_actionModeShareDrawable\n           @see #Theme_actionModeSplitBackground\n           @see #Theme_actionModeStyle\n           @see #Theme_actionModeWebSearchDrawable\n           @see #Theme_actionOverflowButtonStyle\n           @see #Theme_actionOverflowMenuStyle\n           @see #Theme_activityChooserViewStyle\n           @see #Theme_alertDialogButtonGroupStyle\n           @see #Theme_alertDialogCenterButtons\n           @see #Theme_alertDialogStyle\n           @see #Theme_alertDialogTheme\n           @see #Theme_android_windowAnimationStyle\n           @see #Theme_android_windowIsFloating\n           @see #Theme_autoCompleteTextViewStyle\n           @see #Theme_buttonBarButtonStyle\n           @see #Theme_buttonBarNegativeButtonStyle\n           @see #Theme_buttonBarNeutralButtonStyle\n           @see #Theme_buttonBarPositiveButtonStyle\n           @see #Theme_buttonBarStyle\n           @see #Theme_buttonStyle\n           @see #Theme_buttonStyleSmall\n           @see #Theme_checkboxStyle\n           @see #Theme_checkedTextViewStyle\n           @see #Theme_colorAccent\n           @see #Theme_colorButtonNormal\n           @see #Theme_colorControlActivated\n           @see #Theme_colorControlHighlight\n           @see #Theme_colorControlNormal\n           @see #Theme_colorPrimary\n           @see #Theme_colorPrimaryDark\n           @see #Theme_colorSwitchThumbNormal\n           @see #Theme_dialogPreferredPadding\n           @see #Theme_dialogTheme\n           @see #Theme_dividerHorizontal\n           @see #Theme_dividerVertical\n           @see #Theme_dropDownListViewStyle\n           @see #Theme_dropdownListPreferredItemHeight\n           @see #Theme_editTextBackground\n           @see #Theme_editTextColor\n           @see #Theme_editTextStyle\n           @see #Theme_homeAsUpIndicator\n           @see #Theme_listChoiceBackgroundIndicator\n           @see #Theme_listDividerAlertDialog\n           @see #Theme_listPopupWindowStyle\n           @see #Theme_listPreferredItemHeight\n           @see #Theme_listPreferredItemHeightLarge\n           @see #Theme_listPreferredItemHeightSmall\n           @see #Theme_listPreferredItemPaddingLeft\n           @see #Theme_listPreferredItemPaddingRight\n           @see #Theme_panelBackground\n           @see #Theme_panelMenuListTheme\n           @see #Theme_panelMenuListWidth\n           @see #Theme_popupMenuStyle\n           @see #Theme_popupWindowStyle\n           @see #Theme_radioButtonStyle\n           @see #Theme_ratingBarStyle\n           @see #Theme_searchViewStyle\n           @see #Theme_selectableItemBackground\n           @see #Theme_selectableItemBackgroundBorderless\n           @see #Theme_spinnerDropDownItemStyle\n           @see #Theme_spinnerStyle\n           @see #Theme_switchStyle\n           @see #Theme_textAppearanceLargePopupMenu\n           @see #Theme_textAppearanceListItem\n           @see #Theme_textAppearanceListItemSmall\n           @see #Theme_textAppearanceSearchResultSubtitle\n           @see #Theme_textAppearanceSearchResultTitle\n           @see #Theme_textAppearanceSmallPopupMenu\n           @see #Theme_textColorAlertDialogListItem\n           @see #Theme_textColorSearchUrl\n           @see #Theme_toolbarNavigationButtonStyle\n           @see #Theme_toolbarStyle\n           @see #Theme_windowActionBar\n           @see #Theme_windowActionBarOverlay\n           @see #Theme_windowActionModeOverlay\n           @see #Theme_windowFixedHeightMajor\n           @see #Theme_windowFixedHeightMinor\n           @see #Theme_windowFixedWidthMajor\n           @see #Theme_windowFixedWidthMinor\n           @see #Theme_windowMinWidthMajor\n           @see #Theme_windowMinWidthMinor\n           @see #Theme_windowNoTitle\n         */\n        public static final int[] Theme = {\n            0x01010057, 0x010100ae, 0x7f010003, 0x7f010004,\n            0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008,\n            0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c,\n            0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010,\n            0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014,\n            0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018,\n            0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,\n            0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,\n            0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024,\n            0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,\n            0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c,\n            0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,\n            0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034,\n            0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038,\n            0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c,\n            0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040,\n            0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044,\n            0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048,\n            0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c,\n            0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050,\n            0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054,\n            0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058,\n            0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c,\n            0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060,\n            0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064,\n            0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068,\n            0x7f010069, 0x7f01006a\n        };\n        /**\n          <p>\n          @attr description\n           Custom divider drawable to use for elements in the action bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarDivider\n        */\n        public static final int Theme_actionBarDivider = 23;\n        /**\n          <p>\n          @attr description\n           Custom item state list drawable background for action bar items. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarItemBackground\n        */\n        public static final int Theme_actionBarItemBackground = 24;\n        /**\n          <p>\n          @attr description\n           Reference to a theme that should be used to inflate popups\n             shown by widgets in the action bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarPopupTheme\n        */\n        public static final int Theme_actionBarPopupTheme = 17;\n        /**\n          <p>\n          @attr description\n           Size of the Action Bar, including the contextual\n             bar used to present Action Modes. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n<p>May be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarSize\n        */\n        public static final int Theme_actionBarSize = 22;\n        /**\n          <p>\n          @attr description\n           Reference to a style for the split Action Bar. This style\n             controls the split component that holds the menu/action\n             buttons. actionBarStyle is still used for the primary\n             bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarSplitStyle\n        */\n        public static final int Theme_actionBarSplitStyle = 19;\n        /**\n          <p>\n          @attr description\n           Reference to a style for the Action Bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarStyle\n        */\n        public static final int Theme_actionBarStyle = 18;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionBarTabBarStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:actionBarTabBarStyle\n        */\n        public static final int Theme_actionBarTabBarStyle = 13;\n        /**\n          <p>\n          @attr description\n           Default style for tabs within an action bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarTabStyle\n        */\n        public static final int Theme_actionBarTabStyle = 12;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionBarTabTextStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:actionBarTabTextStyle\n        */\n        public static final int Theme_actionBarTabTextStyle = 14;\n        /**\n          <p>\n          @attr description\n           Reference to a theme that should be used to inflate the\n             action bar. This will be inherited by any widget inflated\n             into the action bar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarTheme\n        */\n        public static final int Theme_actionBarTheme = 20;\n        /**\n          <p>\n          @attr description\n           Reference to a theme that should be used to inflate widgets\n             and layouts destined for the action bar. Most of the time\n             this will be a reference to the current theme, but when\n             the action bar has a significantly different contrast\n             profile than the rest of the activity the difference\n             can become important. If this is set to @null the current\n             theme will be used.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionBarWidgetTheme\n        */\n        public static final int Theme_actionBarWidgetTheme = 21;\n        /**\n          <p>\n          @attr description\n           Default action button style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionButtonStyle\n        */\n        public static final int Theme_actionButtonStyle = 49;\n        /**\n          <p>\n          @attr description\n           Default ActionBar dropdown style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionDropDownStyle\n        */\n        public static final int Theme_actionDropDownStyle = 45;\n        /**\n          <p>\n          @attr description\n           TextAppearance style that will be applied to text that\n             appears within action menu items. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionMenuTextAppearance\n        */\n        public static final int Theme_actionMenuTextAppearance = 25;\n        /**\n          <p>\n          @attr description\n           Color for text that appears within action menu items. \n Color for text that appears within action menu items. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionMenuTextColor\n        */\n        public static final int Theme_actionMenuTextColor = 26;\n        /**\n          <p>\n          @attr description\n           Background drawable to use for action mode UI \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeBackground\n        */\n        public static final int Theme_actionModeBackground = 29;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionModeCloseButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:actionModeCloseButtonStyle\n        */\n        public static final int Theme_actionModeCloseButtonStyle = 28;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the close action mode button \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeCloseDrawable\n        */\n        public static final int Theme_actionModeCloseDrawable = 31;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Copy action button in Contextual Action Bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeCopyDrawable\n        */\n        public static final int Theme_actionModeCopyDrawable = 33;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Cut action button in Contextual Action Bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeCutDrawable\n        */\n        public static final int Theme_actionModeCutDrawable = 32;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Find action button in WebView selection action modes \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeFindDrawable\n        */\n        public static final int Theme_actionModeFindDrawable = 37;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Paste action button in Contextual Action Bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModePasteDrawable\n        */\n        public static final int Theme_actionModePasteDrawable = 34;\n        /**\n          <p>\n          @attr description\n           PopupWindow style to use for action modes when showing as a window overlay. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModePopupWindowStyle\n        */\n        public static final int Theme_actionModePopupWindowStyle = 39;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Select all action button in Contextual Action Bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeSelectAllDrawable\n        */\n        public static final int Theme_actionModeSelectAllDrawable = 35;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Share action button in WebView selection action modes \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeShareDrawable\n        */\n        public static final int Theme_actionModeShareDrawable = 36;\n        /**\n          <p>\n          @attr description\n           Background drawable to use for action mode UI in the lower split bar \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeSplitBackground\n        */\n        public static final int Theme_actionModeSplitBackground = 30;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionModeStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:actionModeStyle\n        */\n        public static final int Theme_actionModeStyle = 27;\n        /**\n          <p>\n          @attr description\n           Drawable to use for the Web Search action button in WebView selection action modes \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:actionModeWebSearchDrawable\n        */\n        public static final int Theme_actionModeWebSearchDrawable = 38;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionOverflowButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:actionOverflowButtonStyle\n        */\n        public static final int Theme_actionOverflowButtonStyle = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionOverflowMenuStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:actionOverflowMenuStyle\n        */\n        public static final int Theme_actionOverflowMenuStyle = 16;\n        /**\n          <p>\n          @attr description\n           Default ActivityChooserView style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:activityChooserViewStyle\n        */\n        public static final int Theme_activityChooserViewStyle = 56;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#alertDialogButtonGroupStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:alertDialogButtonGroupStyle\n        */\n        public static final int Theme_alertDialogButtonGroupStyle = 89;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#alertDialogCenterButtons}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:alertDialogCenterButtons\n        */\n        public static final int Theme_alertDialogCenterButtons = 90;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#alertDialogStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:alertDialogStyle\n        */\n        public static final int Theme_alertDialogStyle = 88;\n        /**\n          <p>\n          @attr description\n           Theme to use for alert dialogs spawned from this theme. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:alertDialogTheme\n        */\n        public static final int Theme_alertDialogTheme = 91;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}\n          attribute's value can be found in the {@link #Theme} array.\n          @attr name android:windowAnimationStyle\n        */\n        public static final int Theme_android_windowAnimationStyle = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}\n          attribute's value can be found in the {@link #Theme} array.\n          @attr name android:windowIsFloating\n        */\n        public static final int Theme_android_windowIsFloating = 0;\n        /**\n          <p>\n          @attr description\n           Default AutoCompleteTextView style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:autoCompleteTextViewStyle\n        */\n        public static final int Theme_autoCompleteTextViewStyle = 96;\n        /**\n          <p>\n          @attr description\n           Style for buttons within button bars \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonBarButtonStyle\n        */\n        public static final int Theme_buttonBarButtonStyle = 51;\n        /**\n          <p>\n          @attr description\n           Style for the \"negative\" buttons within button bars \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonBarNegativeButtonStyle\n        */\n        public static final int Theme_buttonBarNegativeButtonStyle = 94;\n        /**\n          <p>\n          @attr description\n           Style for the \"neutral\" buttons within button bars \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonBarNeutralButtonStyle\n        */\n        public static final int Theme_buttonBarNeutralButtonStyle = 95;\n        /**\n          <p>\n          @attr description\n           Style for the \"positive\" buttons within button bars \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonBarPositiveButtonStyle\n        */\n        public static final int Theme_buttonBarPositiveButtonStyle = 93;\n        /**\n          <p>\n          @attr description\n           Style for button bars \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonBarStyle\n        */\n        public static final int Theme_buttonBarStyle = 50;\n        /**\n          <p>\n          @attr description\n           Normal Button style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonStyle\n        */\n        public static final int Theme_buttonStyle = 97;\n        /**\n          <p>\n          @attr description\n           Small Button style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:buttonStyleSmall\n        */\n        public static final int Theme_buttonStyleSmall = 98;\n        /**\n          <p>\n          @attr description\n           Default Checkbox style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:checkboxStyle\n        */\n        public static final int Theme_checkboxStyle = 99;\n        /**\n          <p>\n          @attr description\n           Default CheckedTextView style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:checkedTextViewStyle\n        */\n        public static final int Theme_checkedTextViewStyle = 100;\n        /**\n          <p>\n          @attr description\n           Bright complement to the primary branding color. By default, this is the color applied\n             to framework controls (via colorControlActivated). \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorAccent\n        */\n        public static final int Theme_colorAccent = 82;\n        /**\n          <p>\n          @attr description\n           The color applied to framework buttons in their normal state. \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorButtonNormal\n        */\n        public static final int Theme_colorButtonNormal = 86;\n        /**\n          <p>\n          @attr description\n           The color applied to framework controls in their activated (ex. checked) state. \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorControlActivated\n        */\n        public static final int Theme_colorControlActivated = 84;\n        /**\n          <p>\n          @attr description\n           The color applied to framework control highlights (ex. ripples, list selectors). \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorControlHighlight\n        */\n        public static final int Theme_colorControlHighlight = 85;\n        /**\n          <p>\n          @attr description\n           The color applied to framework controls in their normal state. \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorControlNormal\n        */\n        public static final int Theme_colorControlNormal = 83;\n        /**\n          <p>\n          @attr description\n           The primary branding color for the app. By default, this is the color applied to the\n             action bar background. \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorPrimary\n        */\n        public static final int Theme_colorPrimary = 80;\n        /**\n          <p>\n          @attr description\n           Dark variant of the primary branding color. By default, this is the color applied to\n             the status bar (via statusBarColor) and navigation bar (via navigationBarColor). \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorPrimaryDark\n        */\n        public static final int Theme_colorPrimaryDark = 81;\n        /**\n          <p>\n          @attr description\n           The color applied to framework switch thumbs in their normal state. \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:colorSwitchThumbNormal\n        */\n        public static final int Theme_colorSwitchThumbNormal = 87;\n        /**\n          <p>\n          @attr description\n           Preferred padding for dialog content. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dialogPreferredPadding\n        */\n        public static final int Theme_dialogPreferredPadding = 43;\n        /**\n          <p>\n          @attr description\n           Theme to use for dialogs spawned from this theme. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dialogTheme\n        */\n        public static final int Theme_dialogTheme = 42;\n        /**\n          <p>\n          @attr description\n           A drawable that may be used as a horizontal divider between visual elements. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dividerHorizontal\n        */\n        public static final int Theme_dividerHorizontal = 55;\n        /**\n          <p>\n          @attr description\n           A drawable that may be used as a vertical divider between visual elements. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dividerVertical\n        */\n        public static final int Theme_dividerVertical = 54;\n        /**\n          <p>\n          @attr description\n           ListPopupWindow compatibility \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dropDownListViewStyle\n        */\n        public static final int Theme_dropDownListViewStyle = 72;\n        /**\n          <p>\n          @attr description\n           The preferred item height for dropdown lists. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:dropdownListPreferredItemHeight\n        */\n        public static final int Theme_dropdownListPreferredItemHeight = 46;\n        /**\n          <p>\n          @attr description\n           EditText background drawable. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:editTextBackground\n        */\n        public static final int Theme_editTextBackground = 62;\n        /**\n          <p>\n          @attr description\n           EditText text foreground color. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:editTextColor\n        */\n        public static final int Theme_editTextColor = 61;\n        /**\n          <p>\n          @attr description\n           Default EditText style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:editTextStyle\n        */\n        public static final int Theme_editTextStyle = 101;\n        /**\n          <p>\n          @attr description\n           Specifies a drawable to use for the 'home as up' indicator. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:homeAsUpIndicator\n        */\n        public static final int Theme_homeAsUpIndicator = 48;\n        /**\n          <p>\n          @attr description\n           Drawable used as a background for selected list items. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listChoiceBackgroundIndicator\n        */\n        public static final int Theme_listChoiceBackgroundIndicator = 79;\n        /**\n          <p>\n          @attr description\n           The list divider used in alert dialogs. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listDividerAlertDialog\n        */\n        public static final int Theme_listDividerAlertDialog = 44;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#listPopupWindowStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:listPopupWindowStyle\n        */\n        public static final int Theme_listPopupWindowStyle = 73;\n        /**\n          <p>\n          @attr description\n           The preferred list item height. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listPreferredItemHeight\n        */\n        public static final int Theme_listPreferredItemHeight = 67;\n        /**\n          <p>\n          @attr description\n           A larger, more robust list item height. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listPreferredItemHeightLarge\n        */\n        public static final int Theme_listPreferredItemHeightLarge = 69;\n        /**\n          <p>\n          @attr description\n           A smaller, sleeker list item height. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listPreferredItemHeightSmall\n        */\n        public static final int Theme_listPreferredItemHeightSmall = 68;\n        /**\n          <p>\n          @attr description\n           The preferred padding along the left edge of list items. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listPreferredItemPaddingLeft\n        */\n        public static final int Theme_listPreferredItemPaddingLeft = 70;\n        /**\n          <p>\n          @attr description\n           The preferred padding along the right edge of list items. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:listPreferredItemPaddingRight\n        */\n        public static final int Theme_listPreferredItemPaddingRight = 71;\n        /**\n          <p>\n          @attr description\n           The background of a panel when it is inset from the left and right edges of the screen. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:panelBackground\n        */\n        public static final int Theme_panelBackground = 76;\n        /**\n          <p>\n          @attr description\n           Default Panel Menu style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:panelMenuListTheme\n        */\n        public static final int Theme_panelMenuListTheme = 78;\n        /**\n          <p>\n          @attr description\n           Default Panel Menu width. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:panelMenuListWidth\n        */\n        public static final int Theme_panelMenuListWidth = 77;\n        /**\n          <p>\n          @attr description\n           Default PopupMenu style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:popupMenuStyle\n        */\n        public static final int Theme_popupMenuStyle = 59;\n        /**\n          <p>\n          @attr description\n           Default PopupWindow style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:popupWindowStyle\n        */\n        public static final int Theme_popupWindowStyle = 60;\n        /**\n          <p>\n          @attr description\n           Default RadioButton style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:radioButtonStyle\n        */\n        public static final int Theme_radioButtonStyle = 102;\n        /**\n          <p>\n          @attr description\n           Default RatingBar style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:ratingBarStyle\n        */\n        public static final int Theme_ratingBarStyle = 103;\n        /**\n          <p>\n          @attr description\n           Style for the search query widget. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:searchViewStyle\n        */\n        public static final int Theme_searchViewStyle = 66;\n        /**\n          <p>\n          @attr description\n           A style that may be applied to buttons or other selectable items\n             that should react to pressed and focus states, but that do not\n             have a clear visual border along the edges. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:selectableItemBackground\n        */\n        public static final int Theme_selectableItemBackground = 52;\n        /**\n          <p>\n          @attr description\n           Background drawable for borderless standalone items that need focus/pressed states. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:selectableItemBackgroundBorderless\n        */\n        public static final int Theme_selectableItemBackgroundBorderless = 53;\n        /**\n          <p>\n          @attr description\n           Default Spinner style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:spinnerDropDownItemStyle\n        */\n        public static final int Theme_spinnerDropDownItemStyle = 47;\n        /**\n          <p>\n          @attr description\n           Default Spinner style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:spinnerStyle\n        */\n        public static final int Theme_spinnerStyle = 104;\n        /**\n          <p>\n          @attr description\n           Default style for the Switch widget. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:switchStyle\n        */\n        public static final int Theme_switchStyle = 105;\n        /**\n          <p>\n          @attr description\n           Text color, typeface, size, and style for the text inside of a popup menu. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAppearanceLargePopupMenu\n        */\n        public static final int Theme_textAppearanceLargePopupMenu = 40;\n        /**\n          <p>\n          @attr description\n           The preferred TextAppearance for the primary text of list items. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAppearanceListItem\n        */\n        public static final int Theme_textAppearanceListItem = 74;\n        /**\n          <p>\n          @attr description\n           The preferred TextAppearance for the primary text of small list items. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAppearanceListItemSmall\n        */\n        public static final int Theme_textAppearanceListItemSmall = 75;\n        /**\n          <p>\n          @attr description\n           Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAppearanceSearchResultSubtitle\n        */\n        public static final int Theme_textAppearanceSearchResultSubtitle = 64;\n        /**\n          <p>\n          @attr description\n           Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAppearanceSearchResultTitle\n        */\n        public static final int Theme_textAppearanceSearchResultTitle = 63;\n        /**\n          <p>\n          @attr description\n           Text color, typeface, size, and style for small text inside of a popup menu. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textAppearanceSmallPopupMenu\n        */\n        public static final int Theme_textAppearanceSmallPopupMenu = 41;\n        /**\n          <p>\n          @attr description\n           Color of list item text in alert dialogs. \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textColorAlertDialogListItem\n        */\n        public static final int Theme_textColorAlertDialogListItem = 92;\n        /**\n          <p>\n          @attr description\n           Text color for urls in search suggestions, used by things like global search \n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:textColorSearchUrl\n        */\n        public static final int Theme_textColorSearchUrl = 65;\n        /**\n          <p>\n          @attr description\n           Default Toolar NavigationButtonStyle \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:toolbarNavigationButtonStyle\n        */\n        public static final int Theme_toolbarNavigationButtonStyle = 58;\n        /**\n          <p>\n          @attr description\n           Default Toolbar style. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:toolbarStyle\n        */\n        public static final int Theme_toolbarStyle = 57;\n        /**\n          <p>\n          @attr description\n           Flag indicating whether this window should have an Action Bar\n             in place of the usual title bar. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowActionBar\n        */\n        public static final int Theme_windowActionBar = 2;\n        /**\n          <p>\n          @attr description\n           Flag indicating whether this window's Action Bar should overlay\n             application content. Does nothing if the window would not\n             have an Action Bar. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowActionBarOverlay\n        */\n        public static final int Theme_windowActionBarOverlay = 4;\n        /**\n          <p>\n          @attr description\n           Flag indicating whether action modes should overlay window content\n             when there is not reserved space for their UI (such as an Action Bar). \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowActionModeOverlay\n        */\n        public static final int Theme_windowActionModeOverlay = 5;\n        /**\n          <p>\n          @attr description\n           A fixed height for the window along the major axis of the screen,\n             that is, when in portrait. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowFixedHeightMajor\n        */\n        public static final int Theme_windowFixedHeightMajor = 9;\n        /**\n          <p>\n          @attr description\n           A fixed height for the window along the minor axis of the screen,\n             that is, when in landscape. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowFixedHeightMinor\n        */\n        public static final int Theme_windowFixedHeightMinor = 7;\n        /**\n          <p>\n          @attr description\n           A fixed width for the window along the major axis of the screen,\n             that is, when in landscape. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowFixedWidthMajor\n        */\n        public static final int Theme_windowFixedWidthMajor = 6;\n        /**\n          <p>\n          @attr description\n           A fixed width for the window along the minor axis of the screen,\n             that is, when in portrait. Can be either an absolute dimension\n             or a fraction of the screen size in that dimension. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowFixedWidthMinor\n        */\n        public static final int Theme_windowFixedWidthMinor = 8;\n        /**\n          <p>\n          @attr description\n           The minimum width the window is allowed to be, along the major\n             axis of the screen.  That is, when in landscape.  Can be either\n             an absolute dimension or a fraction of the screen size in that\n             dimension. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowMinWidthMajor\n        */\n        public static final int Theme_windowMinWidthMajor = 10;\n        /**\n          <p>\n          @attr description\n           The minimum width the window is allowed to be, along the minor\n             axis of the screen.  That is, when in portrait.  Can be either\n             an absolute dimension or a fraction of the screen size in that\n             dimension. \n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowMinWidthMinor\n        */\n        public static final int Theme_windowMinWidthMinor = 11;\n        /**\n          <p>\n          @attr description\n           Flag indicating whether there should be no title on this window. \n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:windowNoTitle\n        */\n        public static final int Theme_windowNoTitle = 3;\n        /** Attributes that can be used with a Toolbar.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td> Allows us to read in the minHeight attr pre-v16 </td></tr>\n           <tr><td><code>{@link #Toolbar_collapseContentDescription com.sloop.fz3d:collapseContentDescription}</code></td><td> Text to set as the content description for the collapse button.</td></tr>\n           <tr><td><code>{@link #Toolbar_collapseIcon com.sloop.fz3d:collapseIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetEnd com.sloop.fz3d:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetLeft com.sloop.fz3d:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetRight com.sloop.fz3d:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetStart com.sloop.fz3d:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr>\n           <tr><td><code>{@link #Toolbar_maxButtonHeight com.sloop.fz3d:maxButtonHeight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_navigationContentDescription com.sloop.fz3d:navigationContentDescription}</code></td><td> Text to set as the content description for the navigation button\n             located at the start of the toolbar.</td></tr>\n           <tr><td><code>{@link #Toolbar_navigationIcon com.sloop.fz3d:navigationIcon}</code></td><td> Icon drawable to use for the navigation button located at\n             the start of the toolbar.</td></tr>\n           <tr><td><code>{@link #Toolbar_popupTheme com.sloop.fz3d:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups\n             shown by widgets in the toolbar.</td></tr>\n           <tr><td><code>{@link #Toolbar_subtitle com.sloop.fz3d:subtitle}</code></td><td> Specifies subtitle text used for navigationMode=\"normal\" </td></tr>\n           <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.sloop.fz3d:subtitleTextAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_title com.sloop.fz3d:title}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginBottom com.sloop.fz3d:titleMarginBottom}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginEnd com.sloop.fz3d:titleMarginEnd}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginStart com.sloop.fz3d:titleMarginStart}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginTop com.sloop.fz3d:titleMarginTop}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMargins com.sloop.fz3d:titleMargins}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleTextAppearance com.sloop.fz3d:titleTextAppearance}</code></td><td></td></tr>\n           </table>\n           @see #Toolbar_android_gravity\n           @see #Toolbar_android_minHeight\n           @see #Toolbar_collapseContentDescription\n           @see #Toolbar_collapseIcon\n           @see #Toolbar_contentInsetEnd\n           @see #Toolbar_contentInsetLeft\n           @see #Toolbar_contentInsetRight\n           @see #Toolbar_contentInsetStart\n           @see #Toolbar_maxButtonHeight\n           @see #Toolbar_navigationContentDescription\n           @see #Toolbar_navigationIcon\n           @see #Toolbar_popupTheme\n           @see #Toolbar_subtitle\n           @see #Toolbar_subtitleTextAppearance\n           @see #Toolbar_title\n           @see #Toolbar_titleMarginBottom\n           @see #Toolbar_titleMarginEnd\n           @see #Toolbar_titleMarginStart\n           @see #Toolbar_titleMarginTop\n           @see #Toolbar_titleMargins\n           @see #Toolbar_titleTextAppearance\n         */\n        public static final int[] Toolbar = {\n            0x010100af, 0x01010140, 0x7f010000, 0x7f01006d,\n            0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080,\n            0x7f010082, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6,\n            0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa,\n            0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae,\n            0x7f0100af\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#gravity}\n          attribute's value can be found in the {@link #Toolbar} array.\n          @attr name android:gravity\n        */\n        public static final int Toolbar_android_gravity = 0;\n        /**\n          <p>\n          @attr description\n           Allows us to read in the minHeight attr pre-v16 \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#minHeight}.\n          @attr name android:minHeight\n        */\n        public static final int Toolbar_android_minHeight = 1;\n        /**\n          <p>\n          @attr description\n           Text to set as the content description for the collapse button. \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:collapseContentDescription\n        */\n        public static final int Toolbar_collapseContentDescription = 18;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#collapseIcon}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:collapseIcon\n        */\n        public static final int Toolbar_collapseIcon = 17;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetEnd\n        */\n        public static final int Toolbar_contentInsetEnd = 5;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetLeft\n        */\n        public static final int Toolbar_contentInsetLeft = 6;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetRight\n        */\n        public static final int Toolbar_contentInsetRight = 7;\n        /**\n          <p>\n          @attr description\n           Minimum inset for content views within a bar. Navigation buttons and\n             menu views are excepted. Only valid for some themes and configurations. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:contentInsetStart\n        */\n        public static final int Toolbar_contentInsetStart = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#maxButtonHeight}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:maxButtonHeight\n        */\n        public static final int Toolbar_maxButtonHeight = 16;\n        /**\n          <p>\n          @attr description\n           Text to set as the content description for the navigation button\n             located at the start of the toolbar. \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:navigationContentDescription\n        */\n        public static final int Toolbar_navigationContentDescription = 20;\n        /**\n          <p>\n          @attr description\n           Icon drawable to use for the navigation button located at\n             the start of the toolbar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:navigationIcon\n        */\n        public static final int Toolbar_navigationIcon = 19;\n        /**\n          <p>\n          @attr description\n           Reference to a theme that should be used to inflate popups\n             shown by widgets in the toolbar. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:popupTheme\n        */\n        public static final int Toolbar_popupTheme = 8;\n        /**\n          <p>\n          @attr description\n           Specifies subtitle text used for navigationMode=\"normal\" \n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:subtitle\n        */\n        public static final int Toolbar_subtitle = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#subtitleTextAppearance}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:subtitleTextAppearance\n        */\n        public static final int Toolbar_subtitleTextAppearance = 10;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#title}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:title\n        */\n        public static final int Toolbar_title = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginBottom}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:titleMarginBottom\n        */\n        public static final int Toolbar_titleMarginBottom = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginEnd}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:titleMarginEnd\n        */\n        public static final int Toolbar_titleMarginEnd = 13;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginStart}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:titleMarginStart\n        */\n        public static final int Toolbar_titleMarginStart = 12;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginTop}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:titleMarginTop\n        */\n        public static final int Toolbar_titleMarginTop = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMargins}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.sloop.fz3d:titleMargins\n        */\n        public static final int Toolbar_titleMargins = 11;\n        /**\n          <p>This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleTextAppearance}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.sloop.fz3d:titleTextAppearance\n        */\n        public static final int Toolbar_titleTextAppearance = 9;\n        /** Attributes that can be used with a View.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td> Boolean that controls whether a view can take focus.</td></tr>\n           <tr><td><code>{@link #View_android_theme android:theme}</code></td><td> Specifies a theme override for a view.</td></tr>\n           <tr><td><code>{@link #View_backgroundTint com.sloop.fz3d:backgroundTint}</code></td><td> Tint to apply to the background.</td></tr>\n           <tr><td><code>{@link #View_backgroundTintMode com.sloop.fz3d:backgroundTintMode}</code></td><td> Blending mode used to apply the background tint.</td></tr>\n           <tr><td><code>{@link #View_paddingEnd com.sloop.fz3d:paddingEnd}</code></td><td> Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr>\n           <tr><td><code>{@link #View_paddingStart com.sloop.fz3d:paddingStart}</code></td><td> Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr>\n           <tr><td><code>{@link #View_theme com.sloop.fz3d:theme}</code></td><td> Deprecated.</td></tr>\n           </table>\n           @see #View_android_focusable\n           @see #View_android_theme\n           @see #View_backgroundTint\n           @see #View_backgroundTintMode\n           @see #View_paddingEnd\n           @see #View_paddingStart\n           @see #View_theme\n         */\n        public static final int[] View = {\n            0x01010000, 0x010100da, 0x7f010084, 0x7f010085,\n            0x7f010086, 0x7f010087, 0x7f010088\n        };\n        /**\n          <p>\n          @attr description\n           Boolean that controls whether a view can take focus.  By default the user can not\n             move focus to a view; by setting this attribute to true the view is\n             allowed to take focus.  This value does not impact the behavior of\n             directly calling {@link android.view.View#requestFocus}, which will\n             always request focus regardless of this view.  It only impacts where\n             focus navigation will try to move focus. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#focusable}.\n          @attr name android:focusable\n        */\n        public static final int View_android_focusable = 1;\n        /**\n          <p>\n          @attr description\n           Specifies a theme override for a view. When a theme override is set, the\n             view will be inflated using a {@link android.content.Context} themed with\n             the specified resource. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#theme}.\n          @attr name android:theme\n        */\n        public static final int View_android_theme = 0;\n        /**\n          <p>\n          @attr description\n           Tint to apply to the background. \n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:backgroundTint\n        */\n        public static final int View_backgroundTint = 5;\n        /**\n          <p>\n          @attr description\n           Blending mode used to apply the background tint. \n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>src_over</code></td><td>3</td><td> The tint is drawn on top of the drawable.\n                 [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr>\n<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\n                 color channels are thrown out. [Sa * Da, Sc * Da] </td></tr>\n<tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha\n                 channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr>\n<tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of\n                 the tint. [Sa * Da, Sc * Dc] </td></tr>\n<tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr>\n</table>\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:backgroundTintMode\n        */\n        public static final int View_backgroundTintMode = 6;\n        /**\n          <p>\n          @attr description\n           Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:paddingEnd\n        */\n        public static final int View_paddingEnd = 3;\n        /**\n          <p>\n          @attr description\n           Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. \n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:paddingStart\n        */\n        public static final int View_paddingStart = 2;\n        /**\n          <p>\n          @attr description\n           Deprecated. \n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          <p>This is a private symbol.\n          @attr name com.sloop.fz3d:theme\n        */\n        public static final int View_theme = 4;\n        /** Attributes that can be used with a ViewStubCompat.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>\n           <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td> Overrides the id of the inflated View with this value.</td></tr>\n           <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td> Supply an identifier for the layout resource to inflate when the ViewStub\n             becomes visible or when forced to do so.</td></tr>\n           </table>\n           @see #ViewStubCompat_android_id\n           @see #ViewStubCompat_android_inflatedId\n           @see #ViewStubCompat_android_layout\n         */\n        public static final int[] ViewStubCompat = {\n            0x010100d0, 0x010100f2, 0x010100f3\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#id}\n          attribute's value can be found in the {@link #ViewStubCompat} array.\n          @attr name android:id\n        */\n        public static final int ViewStubCompat_android_id = 0;\n        /**\n          <p>\n          @attr description\n           Overrides the id of the inflated View with this value. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#inflatedId}.\n          @attr name android:inflatedId\n        */\n        public static final int ViewStubCompat_android_inflatedId = 2;\n        /**\n          <p>\n          @attr description\n           Supply an identifier for the layout resource to inflate when the ViewStub\n             becomes visible or when forced to do so. The layout resource must be a\n             valid reference to a layout. \n          <p>This corresponds to the global attribute\n          resource symbol {@link android.R.attr#layout}.\n          @attr name android:layout\n        */\n        public static final int ViewStubCompat_android_layout = 1;\n    };\n}\n"
  },
  {
    "path": "Sample/proguard-project.txt",
    "content": "# To enable ProGuard in your project, edit project.properties\n# to define the proguard.config property as described in that file.\n#\n# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in ${sdk.dir}/tools/proguard/proguard-android.txt\n# You can edit the include path and order by changing the ProGuard\n# include property in project.properties.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# Add any project specific keep options here:\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n"
  },
  {
    "path": "Sample/project.properties",
    "content": "# This file is automatically generated by Android Tools.\n# Do not modify this file -- YOUR CHANGES WILL BE ERASED!\n#\n# This file must be checked in Version Control Systems.\n#\n# To customize properties used by the Ant build system edit\n# \"ant.properties\", and override values to adapt the script to your\n# project structure.\n#\n# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):\n#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt\n\n# Project target.\ntarget=android-22\nandroid.library.reference.1=../appcompat_v7\n"
  },
  {
    "path": "Sample/res/layout/activity_main.xml",
    "content": "<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:background=\"#cfcfcf\" >\n\n    <ImageView\n        android:layout_marginTop=\"20dp\"\n        android:layout_centerInParent=\"true\"\n        android:id=\"@+id/iv_sloop\"\n        android:layout_width=\"300dp\"\n        android:layout_height=\"300dp\"\n        android:src=\"@drawable/sloop\" />\n\n</RelativeLayout>"
  },
  {
    "path": "Sample/res/menu/main.xml",
    "content": "<menu xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    tools:context=\"com.sloop.fz3d.MainActivity\" >\n\n    <item\n        android:id=\"@+id/action_settings\"\n        android:orderInCategory=\"100\"\n        android:title=\"@string/action_settings\"\n        app:showAsAction=\"never\"/>\n\n</menu>\n"
  },
  {
    "path": "Sample/res/values/dimens.xml",
    "content": "<resources>\n\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"activity_horizontal_margin\">16dp</dimen>\n    <dimen name=\"activity_vertical_margin\">16dp</dimen>\n\n</resources>\n"
  },
  {
    "path": "Sample/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">Sloop__3D翻转</string>\n    <string name=\"hello_world\">Hello world!</string>\n    <string name=\"action_settings\">Settings</string>\n\n</resources>\n"
  },
  {
    "path": "Sample/res/values/styles.xml",
    "content": "<resources>\n\n    <!--\n        Base application theme, dependent on API level. This theme is replaced\n        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.\n    -->\n    <style name=\"AppBaseTheme\" parent=\"Theme.AppCompat.Light\">\n        <!--\n            Theme customizations available in newer API levels can go in\n            res/values-vXX/styles.xml, while customizations related to\n            backward-compatibility can go here.\n        -->\n    </style>\n\n    <!-- Application theme. -->\n    <style name=\"AppTheme\" parent=\"AppBaseTheme\">\n        <!-- All customizations that are NOT specific to a particular API-level can go here. -->\n    </style>\n\n</resources>\n"
  },
  {
    "path": "Sample/res/values-v11/styles.xml",
    "content": "<resources>\n\n    <!--\n        Base application theme for API 11+. This theme completely replaces\n        AppBaseTheme from res/values/styles.xml on API 11+ devices.\n    -->\n    <style name=\"AppBaseTheme\" parent=\"Theme.AppCompat.Light\">\n        <!-- API 11 theme customizations can go here. -->\n    </style>\n\n</resources>\n"
  },
  {
    "path": "Sample/res/values-v14/styles.xml",
    "content": "<resources>\n\n    <!--\n        Base application theme for API 14+. This theme completely replaces\n        AppBaseTheme from BOTH res/values/styles.xml and\n        res/values-v11/styles.xml on API 14+ devices.\n    -->\n    <style name=\"AppBaseTheme\" parent=\"Theme.AppCompat.Light.DarkActionBar\">\n        <!-- API 14 theme customizations can go here. -->\n    </style>\n\n</resources>\n"
  },
  {
    "path": "Sample/res/values-w820dp/dimens.xml",
    "content": "<resources>\n\n    <!--\n         Example customization of dimensions originally defined in res/values/dimens.xml\n         (such as screen margins) for screens with more than 820dp of available width. This\n         would include 7\" and 10\" devices in landscape (~960dp and ~1280dp respectively).\n    -->\n    <dimen name=\"activity_horizontal_margin\">64dp</dimen>\n\n</resources>\n"
  },
  {
    "path": "Sample/src/com/sloop/animation/Rotate3dAnimation.java",
    "content": "/**\n * @Title: Rotate3dAnimation.java\n * @Package com.sloop.animation\n * Copyright: Copyright (c) 2015\n * \n * @author sloop\n * @date 2015年3月10日 上午11:20:10\n * @version V1.0\n */\n\npackage com.sloop.animation;\n\nimport android.graphics.Camera;\nimport android.graphics.Matrix;\nimport android.util.Log;\nimport android.view.ContextThemeWrapper;\nimport android.view.animation.Animation;\nimport android.view.animation.Transformation;\n\n/**\n * 3D翻转特效\n * @ClassName: Rotate3dAnimation\n * @author sloop\n * @date 2015年3月10日 上午11:20:10\n */\n\npublic class Rotate3dAnimation extends Animation {\n\n\t// 开始角度\n\tprivate final float mFromDegrees;\n\t// 结束角度\n\tprivate final float mToDegrees;\n\t// 中心点\n\tprivate final float mCenterX;\n\tprivate final float mCenterY;\n\tprivate final float mDepthZ;\t//深度\n\t// 是否需要扭曲\n\tprivate final boolean mReverse;\n\t// 摄像头\n\tprivate Camera mCamera;\n\tContextThemeWrapper context;\n\t//新增--像素比例（默认值为1）\n\tfloat scale = 1;\n\n\t/**\n\t * 创建一个新的实例 Rotate3dAnimation. \n\t * @param fromDegrees\t开始角度\n\t * @param toDegrees\t\t结束角度\n\t * @param centerX\t\t中心点x坐标\n\t * @param centerY\t\t中心点y坐标\n\t * @param depthZ\t\t深度\n\t * @param reverse\t\t是否扭曲\n\t */\n\tpublic Rotate3dAnimation(ContextThemeWrapper context, float fromDegrees, float toDegrees, float centerX, float centerY, float depthZ, boolean reverse) {\n\t\tthis.context = context;\n\t\tmFromDegrees = fromDegrees;\n\t\tmToDegrees = toDegrees;\n\t\tmCenterX = centerX;\n\t\tmCenterY = centerY;\n\t\tmDepthZ = depthZ;\n\t\tmReverse = reverse;\n\t\t//获取手机像素比 （即dp与px的比例）\n\t\tscale = context.getResources().getDisplayMetrics().density;\n\t\tLog.e(\"scale\",\"\"+scale);\n\t}\n\n\t@Override\n\tpublic void initialize(int width, int height, int parentWidth, int parentHeight) {\n\t\t\n\t\tsuper.initialize(width, height, parentWidth, parentHeight);\n\t\tmCamera = new Camera();\n\t}\n\n\t// 生成Transformation\n\t@Override\n\tprotected void applyTransformation(float interpolatedTime, Transformation t) {\n\t\tfinal float fromDegrees = mFromDegrees;\n\t\t// 生成中间角度\n\t\tfloat degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);\n\n\t\t\n\t\tfinal float centerX = mCenterX;\n\t\tfinal float centerY = mCenterY;\n\t\tfinal Camera camera = mCamera;\n\n\t\tfinal Matrix matrix = t.getMatrix();\n\n\t\tcamera.save();\n\t\tif (mReverse) {\n\t\t\tcamera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);\n\t\t} else {\n\t\t\tcamera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));\n\t\t}\n\t\tcamera.rotateY(degrees);\n\t\t// 取得变换后的矩阵\n\t\tcamera.getMatrix(matrix);\n\t\tcamera.restore();\n\n//----------------------------------------------------------------------------\n\t\t/** \n\t\t * 修复打脸问题\t\t(￣ε(#￣)☆╰╮(￣▽￣///)\n\t\t * 简要介绍：\n\t\t * 原来的3D翻转会由于屏幕像素密度问题而出现效果相差很大\n\t\t * 例如在屏幕像素比为1,5的手机上显示效果基本正常，\n\t\t * 而在像素比3,0的手机上面感觉翻转感觉要超出屏幕边缘，\n\t\t * 有种迎面打脸的感觉、\n\t\t * \n\t\t * 解决方案\n\t\t * 利用屏幕像素密度对变换矩阵进行校正，\n\t\t * 保证了在所有清晰度的手机上显示的效果基本相同。\n\t\t *  \n\t\t */\n\t\tfloat[] mValues = {0,0,0,0,0,0,0,0,0};\n\t\tmatrix.getValues(mValues);\t\t\t//获取数值\n\t\tmValues[6] = mValues[6]/scale;\t\t//数值修正\n\t\tmatrix.setValues(mValues);\t\t\t//重新赋值\n\t\t\n//\t\tLog.e(\"TAG\", \"mValues[\"+0+\"]=\"+mValues[0]+\"------------\\t\"+\"mValues[\"+6+\"]=\"+mValues[6]);\n//----------------------------------------------------------------------------\n\n\t\tmatrix.preTranslate(-centerX, -centerY);\n\t\tmatrix.postTranslate(centerX, centerY);\n\t}\n\t\n\n\n}\n"
  },
  {
    "path": "Sample/src/com/sloop/fz3d/MainActivity.java",
    "content": "package com.sloop.fz3d;\n\nimport android.app.Activity;\nimport android.os.Bundle;\nimport android.view.View;\nimport android.view.animation.AccelerateInterpolator;\nimport android.view.animation.Animation;\nimport android.view.animation.Animation.AnimationListener;\n\nimport com.sloop.animation.Rotate3dAnimation;\n\npublic class MainActivity extends Activity {\n\tprivate View view;\n\tboolean retuens;\n\n\t@Override\n\tprotected void onCreate(Bundle savedInstanceState) {\n\t\tsuper.onCreate(savedInstanceState);\n\t\tsetContentView(R.layout.activity_main);\n\t\tview = findViewById(R.id.iv_sloop);\n\n\t\tview.setOnClickListener(new View.OnClickListener() {\n\t\t\t@Override\n\t\t\tpublic void onClick(View v) {\n\t\t\t\tapplyRotation(0, 180);\n\t\t\t\tretuens = true;\n\t\t\t}\n\t\t});\n\n\t}\n\n\tprivate void applyRotation(float start, float end) {\n\t\t// 计算中心点\n\t\tfinal float centerX = view.getWidth() / 2.0f;\n\t\tfinal float centerY = view.getHeight() / 2.0f;\n\n\t\tfinal Rotate3dAnimation rotation = new Rotate3dAnimation(this, start, end, centerX, centerY, 1.0f, true);\n\t\trotation.setDuration(1500);\n\t\trotation.setFillAfter(true);\n\t\trotation.setInterpolator(new AccelerateInterpolator());\n\n\t\trotation.setAnimationListener(new AnimationListener() {\n\n\t\t\t@Override\n\t\t\tpublic void onAnimationStart(Animation animation) {\n\t\t\t}\n\n\t\t\t@Override\n\t\t\tpublic void onAnimationRepeat(Animation animation) {\n\t\t\t}\n\n\t\t\t@Override\n\t\t\tpublic void onAnimationEnd(Animation animation) {\n\t\t\t\tif (retuens) {\n\t\t\t\t\tretuens = false;\n\t\t\t\t\tapplyRotation(180, 0);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t\tview.startAnimation(rotation);\n\t}\n\n}\n"
  }
]