Repository: GcsSloop/Rotate3dAnimation
Branch: master
Commit: ec0b590cb1ee
Files: 24
Total size: 494.3 KB
Directory structure:
gitextract_5_p9d6rk/
├── .gitignore
├── APK/
│ └── 3D翻转.apk
├── Code/
│ └── com/
│ └── sloop/
│ └── animation/
│ └── Rotate3dAnimation.java
├── LICENSE
├── README.md
└── Sample/
├── .classpath
├── .project
├── .settings/
│ └── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── gen/
│ ├── android/
│ │ └── support/
│ │ └── v7/
│ │ └── appcompat/
│ │ └── R.java
│ └── com/
│ └── sloop/
│ └── fz3d/
│ ├── BuildConfig.java
│ └── R.java
├── proguard-project.txt
├── project.properties
├── res/
│ ├── layout/
│ │ └── activity_main.xml
│ ├── menu/
│ │ └── main.xml
│ ├── values/
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-v11/
│ │ └── styles.xml
│ ├── values-v14/
│ │ └── styles.xml
│ └── values-w820dp/
│ └── dimens.xml
└── src/
└── com/
└── sloop/
├── animation/
│ └── Rotate3dAnimation.java
└── fz3d/
└── MainActivity.java
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
*.class
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.ear
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
================================================
FILE: Code/com/sloop/animation/Rotate3dAnimation.java
================================================
/**
* @Title: Rotate3dAnimation.java
* @Package com.sloop.animation
* Copyright: Copyright (c) 2015
*
* @author sloop
* @date 2015年3月10日 上午11:20:10
* @version V1.0
*/
package com.sloop.animation;
import android.graphics.Camera;
import android.graphics.Matrix;
import android.util.Log;
import android.view.ContextThemeWrapper;
import android.view.animation.Animation;
import android.view.animation.Transformation;
/**
* 3D翻转特效
* @ClassName: Rotate3dAnimation
* @author sloop
* @date 2015年3月10日 上午11:20:10
*/
public class Rotate3dAnimation extends Animation {
// 开始角度
private final float mFromDegrees;
// 结束角度
private final float mToDegrees;
// 中心点
private final float mCenterX;
private final float mCenterY;
private final float mDepthZ; //深度
// 是否需要扭曲
private final boolean mReverse;
// 摄像头
private Camera mCamera;
ContextThemeWrapper context;
//新增--像素比例(默认值为1)
float scale = 1;
/**
* 创建一个新的实例 Rotate3dAnimation.
* @param fromDegrees 开始角度
* @param toDegrees 结束角度
* @param centerX 中心点x坐标
* @param centerY 中心点y坐标
* @param depthZ 深度
* @param reverse 是否扭曲
*/
public Rotate3dAnimation(ContextThemeWrapper context, float fromDegrees, float toDegrees, float centerX, float centerY, float depthZ, boolean reverse) {
this.context = context;
mFromDegrees = fromDegrees;
mToDegrees = toDegrees;
mCenterX = centerX;
mCenterY = centerY;
mDepthZ = depthZ;
mReverse = reverse;
//获取手机像素比 (即dp与px的比例)
scale = context.getResources().getDisplayMetrics().density;
Log.e("scale",""+scale);
}
@Override
public void initialize(int width, int height, int parentWidth, int parentHeight) {
super.initialize(width, height, parentWidth, parentHeight);
mCamera = new Camera();
}
// 生成Transformation
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
final float fromDegrees = mFromDegrees;
// 生成中间角度
float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);
final float centerX = mCenterX;
final float centerY = mCenterY;
final Camera camera = mCamera;
final Matrix matrix = t.getMatrix();
camera.save();
if (mReverse) {
camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);
} else {
camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));
}
camera.rotateY(degrees);
// 取得变换后的矩阵
camera.getMatrix(matrix);
camera.restore();
//----------------------------------------------------------------------------
/**
* 修复打脸问题 ( ̄ε(# ̄)☆╰╮( ̄▽ ̄///)
* 简要介绍:
* 原来的3D翻转会由于屏幕像素密度问题而出现效果相差很大
* 例如在屏幕像素比为1,5的手机上显示效果基本正常,
* 而在像素比3,0的手机上面感觉翻转感觉要超出屏幕边缘,
* 有种迎面打脸的感觉、
*
* 解决方案
* 利用屏幕像素密度对变换矩阵进行校正,
* 保证了在所有清晰度的手机上显示的效果基本相同。
*
*/
float[] mValues = {0,0,0,0,0,0,0,0,0};
matrix.getValues(mValues); //获取数值
mValues[6] = mValues[6]/scale; //数值修正
matrix.setValues(mValues); //重新赋值
// Log.e("TAG", "mValues["+0+"]="+mValues[0]+"------------\t"+"mValues["+6+"]="+mValues[6]);
//----------------------------------------------------------------------------
matrix.preTranslate(-centerX, -centerY);
matrix.postTranslate(centerX, centerY);
}
}
================================================
FILE: LICENSE
================================================
Eclipse Public License - v 1.0
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
1. DEFINITIONS
"Contribution" means:
a) in the case of the initial Contributor, the initial code and documentation
distributed under this Agreement, and
b) in the case of each subsequent Contributor:
i) changes to the Program, and
ii) additions to the Program;
where such changes and/or additions to the Program originate from and are
distributed by that particular Contributor. A Contribution 'originates'
from a Contributor if it was added to the Program by such Contributor
itself or anyone acting on such Contributor's behalf. Contributions do not
include additions to the Program which: (i) are separate modules of
software distributed in conjunction with the Program under their own
license agreement, and (ii) are not derivative works of the Program.
"Contributor" means any person or entity that distributes the Program.
"Licensed Patents" mean patent claims licensable by a Contributor which are
necessarily infringed by the use or sale of its Contribution alone or when
combined with the Program.
"Program" means the Contributions distributed in accordance with this
Agreement.
"Recipient" means anyone who receives the Program under this Agreement,
including all Contributors.
2. GRANT OF RIGHTS
a) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free copyright license to
reproduce, prepare derivative works of, publicly display, publicly
perform, distribute and sublicense the Contribution of such Contributor,
if any, and such derivative works, in source code and object code form.
b) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free patent license under
Licensed Patents to make, use, sell, offer to sell, import and otherwise
transfer the Contribution of such Contributor, if any, in source code and
object code form. This patent license shall apply to the combination of
the Contribution and the Program if, at the time the Contribution is
added by the Contributor, such addition of the Contribution causes such
combination to be covered by the Licensed Patents. The patent license
shall not apply to any other combinations which include the Contribution.
No hardware per se is licensed hereunder.
c) Recipient understands that although each Contributor grants the licenses
to its Contributions set forth herein, no assurances are provided by any
Contributor that the Program does not infringe the patent or other
intellectual property rights of any other entity. Each Contributor
disclaims any liability to Recipient for claims brought by any other
entity based on infringement of intellectual property rights or
otherwise. As a condition to exercising the rights and licenses granted
hereunder, each Recipient hereby assumes sole responsibility to secure
any other intellectual property rights needed, if any. For example, if a
third party patent license is required to allow Recipient to distribute
the Program, it is Recipient's responsibility to acquire that license
before distributing the Program.
d) Each Contributor represents that to its knowledge it has sufficient
copyright rights in its Contribution, if any, to grant the copyright
license set forth in this Agreement.
3. REQUIREMENTS
A Contributor may choose to distribute the Program in object code form under
its own license agreement, provided that:
a) it complies with the terms and conditions of this Agreement; and
b) its license agreement:
i) effectively disclaims on behalf of all Contributors all warranties
and conditions, express and implied, including warranties or
conditions of title and non-infringement, and implied warranties or
conditions of merchantability and fitness for a particular purpose;
ii) effectively excludes on behalf of all Contributors all liability for
damages, including direct, indirect, special, incidental and
consequential damages, such as lost profits;
iii) states that any provisions which differ from this Agreement are
offered by that Contributor alone and not by any other party; and
iv) states that source code for the Program is available from such
Contributor, and informs licensees how to obtain it in a reasonable
manner on or through a medium customarily used for software exchange.
When the Program is made available in source code form:
a) it must be made available under this Agreement; and
b) a copy of this Agreement must be included with each copy of the Program.
Contributors may not remove or alter any copyright notices contained
within the Program.
Each Contributor must identify itself as the originator of its Contribution,
if
any, in a manner that reasonably allows subsequent Recipients to identify the
originator of the Contribution.
4. COMMERCIAL DISTRIBUTION
Commercial distributors of software may accept certain responsibilities with
respect to end users, business partners and the like. While this license is
intended to facilitate the commercial use of the Program, the Contributor who
includes the Program in a commercial product offering should do so in a manner
which does not create potential liability for other Contributors. Therefore,
if a Contributor includes the Program in a commercial product offering, such
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
every other Contributor ("Indemnified Contributor") against any losses,
damages and costs (collectively "Losses") arising from claims, lawsuits and
other legal actions brought by a third party against the Indemnified
Contributor to the extent caused by the acts or omissions of such Commercial
Contributor in connection with its distribution of the Program in a commercial
product offering. The obligations in this section do not apply to any claims
or Losses relating to any actual or alleged intellectual property
infringement. In order to qualify, an Indemnified Contributor must:
a) promptly notify the Commercial Contributor in writing of such claim, and
b) allow the Commercial Contributor to control, and cooperate with the
Commercial Contributor in, the defense and any related settlement
negotiations. The Indemnified Contributor may participate in any such claim at
its own expense.
For example, a Contributor might include the Program in a commercial product
offering, Product X. That Contributor is then a Commercial Contributor. If
that Commercial Contributor then makes performance claims, or offers
warranties related to Product X, those performance claims and warranties are
such Commercial Contributor's responsibility alone. Under this section, the
Commercial Contributor would have to defend claims against the other
Contributors related to those performance claims and warranties, and if a
court requires any other Contributor to pay any damages as a result, the
Commercial Contributor must pay those damages.
5. NO WARRANTY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
Recipient is solely responsible for determining the appropriateness of using
and distributing the Program and assumes all risks associated with its
exercise of rights under this Agreement , including but not limited to the
risks and costs of program errors, compliance with applicable laws, damage to
or loss of data, programs or equipment, and unavailability or interruption of
operations.
6. DISCLAIMER OF LIABILITY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGES.
7. GENERAL
If any provision of this Agreement is invalid or unenforceable under
applicable law, it shall not affect the validity or enforceability of the
remainder of the terms of this Agreement, and without further action by the
parties hereto, such provision shall be reformed to the minimum extent
necessary to make such provision valid and enforceable.
If Recipient institutes patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Program itself
(excluding combinations of the Program with other software or hardware)
infringes such Recipient's patent(s), then such Recipient's rights granted
under Section 2(b) shall terminate as of the date such litigation is filed.
All Recipient's rights under this Agreement shall terminate if it fails to
comply with any of the material terms or conditions of this Agreement and does
not cure such failure in a reasonable period of time after becoming aware of
such noncompliance. If all Recipient's rights under this Agreement terminate,
Recipient agrees to cease use and distribution of the Program as soon as
reasonably practicable. However, Recipient's obligations under this Agreement
and any licenses granted by Recipient relating to the Program shall continue
and survive.
Everyone is permitted to copy and distribute copies of this Agreement, but in
order to avoid inconsistency the Agreement is copyrighted and may only be
modified in the following manner. The Agreement Steward reserves the right to
publish new versions (including revisions) of this Agreement from time to
time. No one other than the Agreement Steward has the right to modify this
Agreement. The Eclipse Foundation is the initial Agreement Steward. The
Eclipse Foundation may assign the responsibility to serve as the Agreement
Steward to a suitable separate entity. Each new version of the Agreement will
be given a distinguishing version number. The Program (including
Contributions) may always be distributed subject to the version of the
Agreement under which it was received. In addition, after a new version of the
Agreement is published, Contributor may elect to distribute the Program
(including its Contributions) under the new version. Except as expressly
stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
licenses to the intellectual property of any Contributor under this Agreement,
whether expressly, by implication, estoppel or otherwise. All rights in the
Program not expressly granted under this Agreement are reserved.
This Agreement is governed by the laws of the State of New York and the
intellectual property laws of the United States of America. No party to this
Agreement will bring a legal action under this Agreement more than one year
after the cause of action arose. Each party waives its rights to a jury trial in
any resulting litigation.
================================================
FILE: README.md
================================================
#
安卓3D翻转效果
## 作者微博: [@GcsSloop](http://weibo.com/GcsSloop)
### 基于谷歌官方提供的3D翻转示例进行修改,修复了在不同像素密度的设备上显示效果差异过大的问题。
## 修正前后对比
修正前 | 修正后
--- | ---
 | 
## 该文件已经包含在另一个仓库中,你可以[点击这里](https://github.com/GcsSloop/SUtil)查看。
# 调用示例:
``` java
// 计算中心点(这里是使用view的中心作为旋转的中心点)
final float centerX = view.getWidth() / 2.0f;
final float centerY = view.getHeight() / 2.0f;
//括号内参数分别为(上下文,开始角度,结束角度,x轴中心点,y轴中心点,深度,是否扭曲)
final Rotate3dAnimation rotation = new Rotate3dAnimation(this, start, end, centerX, centerY, 1.0f, true);
rotation.setDuration(1500); //设置动画时长
rotation.setFillAfter(true); //保持旋转后效果
rotation.setInterpolator(new AccelerateInterpolator()); //设置插值器
rotation.setAnimationListener(new AnimationListener() { //设置监听器
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationRepeat(Animation animation) {
}
@Override
public void onAnimationEnd(Animation animation) {
}
});
view.startAnimation(rotation); //开始动画
```
## About Me
================================================
FILE: Sample/.classpath
================================================
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarDivider=0x7f010018;
/** Custom item state list drawable background for action bar items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarItemBackground=0x7f010019;
/** Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarPopupTheme=0x7f010012;
/** Size of the Action Bar, including the contextual
bar used to present Action Modes.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
May be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
wrap_content | 0 |
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarSplitStyle=0x7f010014;
/** Reference to a style for the Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarStyle=0x7f010013;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTabBarStyle=0x7f01000e;
/** Default style for tabs within an action bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTabStyle=0x7f01000d;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTabTextStyle=0x7f01000f;
/** Reference to a theme that should be used to inflate the
action bar. This will be inherited by any widget inflated
into the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTheme=0x7f010015;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarWidgetTheme=0x7f010016;
/** Default action button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionButtonStyle=0x7f010032;
/** Default ActionBar dropdown style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionDropDownStyle=0x7f01002e;
/** An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionLayout=0x7f01008b;
/** TextAppearance style that will be applied to text that
appears within action menu items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionMenuTextAppearance=0x7f01001a;
/** Color for text that appears within action menu items.
Color for text that appears within action menu items.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int actionMenuTextColor=0x7f01001b;
/** Background drawable to use for action mode UI
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeBackground=0x7f01001e;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCloseButtonStyle=0x7f01001d;
/** Drawable to use for the close action mode button
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCloseDrawable=0x7f010020;
/** Drawable to use for the Copy action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCopyDrawable=0x7f010022;
/** Drawable to use for the Cut action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCutDrawable=0x7f010021;
/** Drawable to use for the Find action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeFindDrawable=0x7f010026;
/** Drawable to use for the Paste action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModePasteDrawable=0x7f010023;
/** PopupWindow style to use for action modes when showing as a window overlay.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModePopupWindowStyle=0x7f010028;
/** Drawable to use for the Select all action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeSelectAllDrawable=0x7f010024;
/** Drawable to use for the Share action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeShareDrawable=0x7f010025;
/** Background drawable to use for action mode UI in the lower split bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeSplitBackground=0x7f01001f;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeStyle=0x7f01001c;
/** Drawable to use for the Web Search action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeWebSearchDrawable=0x7f010027;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionOverflowButtonStyle=0x7f010010;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionOverflowMenuStyle=0x7f010011;
/** The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f01008d;
/** The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int actionViewClass=0x7f01008c;
/** Default ActivityChooserView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int activityChooserViewStyle=0x7f010039;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int alertDialogButtonGroupStyle=0x7f01005a;
/**
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f01005b;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int alertDialogStyle=0x7f010059;
/** Theme to use for alert dialogs spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int alertDialogTheme=0x7f01005c;
/** Default AutoCompleteTextView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int autoCompleteTextViewStyle=0x7f010061;
/** Specifies a background drawable for the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int background=0x7f010073;
/** Specifies a background drawable for the bottom component of a split action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int backgroundSplit=0x7f010075;
/** Specifies a background drawable for a second stacked row of the action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int backgroundStacked=0x7f010074;
/** Tint to apply to the background.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int backgroundTint=0x7f010087;
/** Blending mode used to apply the background tint.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
src_over | 3 | The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] |
src_in | 5 | The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] |
src_atop | 9 | The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] |
multiply | 14 | Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] |
screen | 15 | [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] |
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int barSize=0x7f0100b8;
/** Style for buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarButtonStyle=0x7f010034;
/** Style for the "negative" buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarNegativeButtonStyle=0x7f01005f;
/** Style for the "neutral" buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarNeutralButtonStyle=0x7f010060;
/** Style for the "positive" buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarPositiveButtonStyle=0x7f01005e;
/** Style for button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarStyle=0x7f010033;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonPanelSideLayout=0x7f0100c2;
/** Normal Button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonStyle=0x7f010062;
/** Small Button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonStyleSmall=0x7f010063;
/** Default Checkbox style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int checkboxStyle=0x7f010064;
/** Default CheckedTextView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int checkedTextViewStyle=0x7f010065;
/** Close button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int closeIcon=0x7f010095;
/** Specifies a layout to use for the "close" item at the starting edge.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int closeItemLayout=0x7f010083;
/** Text to set as the content description for the collapse button.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100ad;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int collapseIcon=0x7f0100ac;
/** The drawing color for the bars
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int color=0x7f0100b2;
/** Bright complement to the primary branding color. By default, this is the color applied
to framework controls (via colorControlActivated).
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorAccent=0x7f010053;
/** The color applied to framework buttons in their normal state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f010057;
/** The color applied to framework controls in their activated (ex. checked) state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f010055;
/** The color applied to framework control highlights (ex. ripples, list selectors).
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f010056;
/** The color applied to framework controls in their normal state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f010054;
/** The primary branding color for the app. By default, this is the color applied to the
action bar background.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorPrimary=0x7f010051;
/** Dark variant of the primary branding color. By default, this is the color applied to
the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f010052;
/** The color applied to framework switch thumbs in their normal state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f010058;
/** Commit icon shown in the query suggestion row
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int commitIcon=0x7f01009a;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f01007e;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f01007f;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010080;
/** Minimum inset for content views within a bar. Navigation buttons and
menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f01007d;
/** Specifies a layout for custom navigation. Overrides navigationMode.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int customNavigationLayout=0x7f010076;
/** Preferred padding for dialog content.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f01002c;
/** Theme to use for dialogs spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dialogTheme=0x7f01002b;
/** Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int disableChildrenWhenDisabled=0x7f010091;
/** Options affecting how the action bar is displayed.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
none | 0 | |
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int divider=0x7f010072;
/** A drawable that may be used as a horizontal divider between visual elements.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dividerHorizontal=0x7f010038;
/** Size of padding on either end of a divider.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100a3;
/** A drawable that may be used as a vertical divider between visual elements.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dividerVertical=0x7f010037;
/** The total size of the drawable
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100b4;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int drawerArrowStyle=0x7f0100ba;
/** ListPopupWindow compatibility
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dropDownListViewStyle=0x7f010049;
/** The preferred item height for dropdown lists.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f01002f;
/** EditText background drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int editTextBackground=0x7f01003f;
/** EditText text foreground color.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int editTextColor=0x7f01003e;
/** Default EditText style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int editTextStyle=0x7f010066;
/** Elevation for the action bar itself
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int elevation=0x7f010081;
/** The drawable to show in the button for expanding the activities overflow popup.
Note: Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f01009f;
/** The max gap between the bars when they are parallel to each other
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100b5;
/** Go button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int goIcon=0x7f010096;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int height=0x7f010001;
/** Set true to hide the action bar on a vertical nested scroll of content.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f01007c;
/** Specifies a drawable to use for the 'home as up' indicator.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int homeAsUpIndicator=0x7f010031;
/** Specifies a layout to use for the "home" section of the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int homeLayout=0x7f010077;
/** Specifies the drawable used for the application icon.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int icon=0x7f010070;
/** The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f010093;
/** Specifies a style resource to use for an indeterminate progress spinner.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int indeterminateProgressStyle=0x7f010079;
/** The maximal number of items initially shown in the activity list.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f01009e;
/** Specifies whether the theme is light, otherwise it is dark.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010002;
/** Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int itemPadding=0x7f01007b;
/** The layout to use for the search view.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int layout=0x7f010092;
/** Drawable used as a background for selected list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listChoiceBackgroundIndicator=0x7f010050;
/** The list divider used in alert dialogs.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listDividerAlertDialog=0x7f01002d;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listItemLayout=0x7f0100c6;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listLayout=0x7f0100c3;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listPopupWindowStyle=0x7f01004a;
/** The preferred list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f010044;
/** A larger, more robust list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010046;
/** A smaller, sleeker list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f010045;
/** The preferred padding along the left edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010047;
/** The preferred padding along the right edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010048;
/** Specifies the drawable used for the application logo.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int logo=0x7f010071;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100ab;
/** When set to true, all children with a weight will be considered having
the minimum size of the largest child. If false, all children are
measured normally.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100a1;
/** The size of the middle bar when top and bottom bars merge into middle bar to form an arrow
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int middleBarArrowSize=0x7f0100b7;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int multiChoiceItemLayout=0x7f0100c4;
/** Text to set as the content description for the navigation button
located at the start of the toolbar.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100af;
/** Icon drawable to use for the navigation button located at
the start of the toolbar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int navigationIcon=0x7f0100ae;
/** The type of navigation to use.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100b1;
/** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int paddingEnd=0x7f010085;
/** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int paddingStart=0x7f010084;
/** The background of a panel when it is inset from the left and right edges of the screen.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int panelBackground=0x7f01004d;
/** Default Panel Menu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int panelMenuListTheme=0x7f01004f;
/** Default Panel Menu width.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f01004e;
/** Default PopupMenu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int popupMenuStyle=0x7f01003c;
/** Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown". This layout must contain a TextView with the id
{@code @android:id/text1} to be populated with the prompt text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int popupPromptView=0x7f010090;
/** Reference to a theme that should be used to inflate popups
shown by widgets in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int popupTheme=0x7f010082;
/** Default PopupWindow style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int popupWindowStyle=0x7f01003d;
/** Whether space should be reserved in layout when an icon is missing.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f010089;
/** Specifies the horizontal padding on either end for an embedded progress bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f01007a;
/** Specifies a style resource to use for an embedded progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int progressBarStyle=0x7f010078;
/** The prompt to display when the spinner's dialog is shown.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int prompt=0x7f01008e;
/** Background for the section containing the search query
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int queryBackground=0x7f01009c;
/** An optional query hint string to be displayed in the empty query field.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int queryHint=0x7f010094;
/** Default RadioButton style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int radioButtonStyle=0x7f010067;
/** Default RatingBar style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int ratingBarStyle=0x7f010068;
/** Search icon displayed as a text field hint
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchHintIcon=0x7f010098;
/** Search icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchIcon=0x7f010097;
/** Style for the search query widget.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewStyle=0x7f010043;
/** A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int selectableItemBackground=0x7f010035;
/** Background drawable for borderless standalone items that need focus/pressed states.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int selectableItemBackgroundBorderless=0x7f010036;
/** How this item should display in the Action Bar, if present.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
never | 0 | Never show this item in an action bar, show it in the overflow menu instead. Mutually exclusive with "ifRoom" and "always". |
ifRoom | 1 | Show this item in an action bar if there is room for it as determined by the system. Favor this option over "always" where possible. Mutually exclusive with "never" and "always". |
always | 2 | Always show this item in an actionbar, even if it would override the system's limits of how much stuff to put there. This may make your action bar look bad on some screens. In most cases you should use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". |
withText | 4 | When this item is shown as an action in the action bar, show a text label with it even if it has an icon representation. |
collapseActionView | 8 | This item's action view collapses to a normal menu item. When expanded, the action view takes over a larger segment of its container. |
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int showText=0x7f0100c1;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int singleChoiceItemLayout=0x7f0100c5;
/** Whether bars should rotate or not during transition
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int spinBars=0x7f0100b3;
/** Default Spinner style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int spinnerDropDownItemStyle=0x7f010030;
/** Display mode for spinner options.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | Spinner options will be presented to the user as an inline dropdown anchored to the spinner widget itself. |
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int spinnerStyle=0x7f010069;
/** Whether to split the track and leave a gap for the thumb drawable.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int splitTrack=0x7f0100c0;
/** State identifier indicating the popup will be above the anchor.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100b0;
/** Background for the section containing the action (e.g. voice search)
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int submitBackground=0x7f01009d;
/** Specifies subtitle text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int subtitle=0x7f01006d;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int subtitleTextAppearance=0x7f0100a5;
/** Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int subtitleTextStyle=0x7f01006f;
/** Layout for query suggestion rows
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int suggestionRowLayout=0x7f01009b;
/** Minimum width for the switch component
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100be;
/** Minimum space between the switch and caption text
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100bf;
/** Default style for the Switch widget.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int switchStyle=0x7f01006a;
/** TextAppearance style for text displayed on the switch thumb.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int switchTextAppearance=0x7f0100bd;
/** Present the text in ALL CAPS. This may use a small-caps form when available.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a boolean value, either "true" or "false".
*/
public static final int textAllCaps=0x7f0100a0;
/** Text color, typeface, size, and style for the text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceLargePopupMenu=0x7f010029;
/** The preferred TextAppearance for the primary text of list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceListItem=0x7f01004b;
/** The preferred TextAppearance for the primary text of small list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceListItemSmall=0x7f01004c;
/** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f010041;
/** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceSearchResultTitle=0x7f010040;
/** Text color, typeface, size, and style for small text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceSmallPopupMenu=0x7f01002a;
/** Color of list item text in alert dialogs.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int textColorAlertDialogListItem=0x7f01005d;
/** Text color for urls in search suggestions, used by things like global search
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int textColorSearchUrl=0x7f010042;
/** Deprecated.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int theme=0x7f010086;
/** The thickness (stroke size) for the bar paint
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int thickness=0x7f0100b9;
/** Amount of padding on either side of text within the switch thumb.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100bc;
/**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int title=0x7f010000;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100aa;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100a8;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100a7;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100a9;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100a6;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int titleTextAppearance=0x7f0100a4;
/** Specifies a style to use for title text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int titleTextStyle=0x7f01006e;
/** Default Toolar NavigationButtonStyle
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int toolbarNavigationButtonStyle=0x7f01003b;
/** Default Toolbar style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int toolbarStyle=0x7f01003a;
/** The size of the top and bottom bars when they merge to the middle bar to form an arrow
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int topBottomBarArrowSize=0x7f0100b6;
/** Drawable to use as the "track" that the switch thumb slides within.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int track=0x7f0100bb;
/** Voice button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int voiceIcon=0x7f010099;
/** Flag indicating whether this window should have an Action Bar
in place of the usual title bar.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowActionBar=0x7f010003;
/** Flag indicating whether this window's Action Bar should overlay
application content. Does nothing if the window would not
have an Action Bar.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f010005;
/** Flag indicating whether action modes should overlay window content
when there is not reserved space for their UI (such as an Action Bar).
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010006;
/** A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f01000a;
/** A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f010008;
/** A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f010007;
/** A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010009;
/** The minimum width the window is allowed to be, along the major
axis of the screen. That is, when in landscape. Can be either
an absolute dimension or a fraction of the screen size in that
dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f01000b;
/** The minimum width the window is allowed to be, along the minor
axis of the screen. That is, when in portrait. Can be either
an absolute dimension or a fraction of the screen size in that
dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f01000c;
/** Flag indicating whether there should be no title on this window.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f010004;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f050000;
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050001;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050002;
/** Whether action menu items should be displayed in ALLCAPS or not.
Defaults to true. If this is not appropriate for specific locales
it should be disabled in that locale's resources.
*/
public static final int abc_config_actionMenuItemAllCaps=0x7f050005;
/** Whether action menu items should obey the "withText" showAsAction
flag. This may be set to false for situations where space is
extremely limited.
Whether action menu items should obey the "withText" showAsAction.
This may be set to false for situations where space is
extremely limited.
*/
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050004;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f050006;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f060033;
public static final int abc_background_cache_hint_selector_material_light=0x7f060034;
public static final int abc_input_method_navigation_guard=0x7f060003;
public static final int abc_primary_text_disable_only_material_dark=0x7f060035;
public static final int abc_primary_text_disable_only_material_light=0x7f060036;
public static final int abc_primary_text_material_dark=0x7f060037;
public static final int abc_primary_text_material_light=0x7f060038;
public static final int abc_search_url_text=0x7f060039;
public static final int abc_search_url_text_normal=0x7f060000;
public static final int abc_search_url_text_pressed=0x7f060002;
public static final int abc_search_url_text_selected=0x7f060001;
public static final int abc_secondary_text_material_dark=0x7f06003a;
public static final int abc_secondary_text_material_light=0x7f06003b;
public static final int accent_material_dark=0x7f06000f;
public static final int accent_material_light=0x7f06000e;
public static final int background_floating_material_dark=0x7f060006;
public static final int background_floating_material_light=0x7f060007;
public static final int background_material_dark=0x7f060004;
public static final int background_material_light=0x7f060005;
/** White 50%
*/
public static final int bright_foreground_disabled_material_dark=0x7f060018;
/** Black 50%
*/
public static final int bright_foreground_disabled_material_light=0x7f060019;
public static final int bright_foreground_inverse_material_dark=0x7f06001a;
public static final int bright_foreground_inverse_material_light=0x7f06001b;
public static final int bright_foreground_material_dark=0x7f060016;
public static final int bright_foreground_material_light=0x7f060017;
public static final int button_material_dark=0x7f060010;
public static final int button_material_light=0x7f060011;
public static final int dim_foreground_disabled_material_dark=0x7f06001e;
public static final int dim_foreground_disabled_material_light=0x7f06001f;
public static final int dim_foreground_material_dark=0x7f06001c;
public static final int dim_foreground_material_light=0x7f06001d;
/** TODO: This is 40% alpha on the default accent color.
*/
public static final int highlighted_text_material_dark=0x7f060022;
/** TODO: This is 40% alpha on the default accent color.
*/
public static final int highlighted_text_material_light=0x7f060023;
public static final int hint_foreground_material_dark=0x7f060020;
public static final int hint_foreground_material_light=0x7f060021;
public static final int link_text_material_dark=0x7f060024;
public static final int link_text_material_light=0x7f060025;
public static final int material_blue_grey_800=0x7f060030;
public static final int material_blue_grey_900=0x7f060031;
public static final int material_blue_grey_950=0x7f060032;
public static final int material_deep_teal_200=0x7f06002e;
public static final int material_deep_teal_500=0x7f06002f;
public static final int primary_dark_material_dark=0x7f06000a;
public static final int primary_dark_material_light=0x7f06000b;
public static final int primary_material_dark=0x7f060008;
public static final int primary_material_light=0x7f060009;
public static final int primary_text_default_material_dark=0x7f060028;
public static final int primary_text_default_material_light=0x7f060026;
/** 30% of default values
*/
public static final int primary_text_disabled_material_dark=0x7f06002c;
/** 26% of default values
*/
public static final int primary_text_disabled_material_light=0x7f06002a;
public static final int ripple_material_dark=0x7f06000c;
public static final int ripple_material_light=0x7f06000d;
public static final int secondary_text_default_material_dark=0x7f060029;
public static final int secondary_text_default_material_light=0x7f060027;
public static final int secondary_text_disabled_material_dark=0x7f06002d;
public static final int secondary_text_disabled_material_light=0x7f06002b;
public static final int switch_thumb_disabled_material_dark=0x7f060014;
public static final int switch_thumb_disabled_material_light=0x7f060015;
public static final int switch_thumb_material_dark=0x7f06003c;
public static final int switch_thumb_material_light=0x7f06003d;
public static final int switch_thumb_normal_material_dark=0x7f060012;
public static final int switch_thumb_normal_material_light=0x7f060013;
}
public static final class dimen {
/** Default content inset of an action bar.
Default content inset of an action bar.
*/
public static final int abc_action_bar_content_inset_material=0x7f070025;
/** Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
*/
public static final int abc_action_bar_default_height_material=0x7f070023;
/** Default padding of an action bar.
Default padding of an action bar.
Default padding of an action bar.
*/
public static final int abc_action_bar_default_padding_material=0x7f070024;
/** Vertical padding around action bar icons.
*/
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070028;
/** Padding to add to the start of the overflow action button.
Padding to add to the start of the overflow action button.
*/
public static final int abc_action_bar_navigation_padding_start_material=0x7f070026;
/** Padding to add to the end of the overflow action button.
Padding to add to the end of the overflow action button.
*/
public static final int abc_action_bar_overflow_padding_end_material=0x7f070027;
/** Padding to add to the start of the overflow action button.
*/
public static final int abc_action_bar_overflow_padding_start_material=0x7f07002c;
/** Size of the indeterminate Progress Bar
Size of the indeterminate Progress Bar
*/
public static final int abc_action_bar_progress_bar_size=0x7f070005;
/** Maximum height for a stacked tab bar as part of an action bar
*/
public static final int abc_action_bar_stacked_max_height=0x7f070004;
/** Maximum width for a stacked action bar tab. This prevents
action bar tabs from becoming too wide on a wide screen when only
a few are present.
*/
public static final int abc_action_bar_stacked_tab_max_width=0x7f070003;
/** Bottom margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07002a;
/** Top margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_top_margin_material=0x7f070029;
public static final int abc_action_button_min_height_material=0x7f07002f;
public static final int abc_action_button_min_width_material=0x7f07002e;
public static final int abc_action_button_min_width_overflow_material=0x7f07002d;
/** Dialog button bar height
Dialog button bar height
*/
public static final int abc_alert_dialog_button_bar_height=0x7f07001d;
public static final int abc_button_inset_horizontal_material=0x7f070011;
public static final int abc_button_inset_vertical_material=0x7f070010;
public static final int abc_button_padding_horizontal_material=0x7f070013;
/** Default inner padding within buttons
*/
public static final int abc_button_padding_vertical_material=0x7f070012;
/** The maximum width we would prefer dialogs to be. 0 if there is no
maximum (let them grow as large as the screen). Actual values are
specified for -large and -xlarge configurations.
see comment in values/config.xml
see comment in values/config.xml
*/
public static final int abc_config_prefDialogWidth=0x7f070002;
/** Default rounded corner for controls
*/
public static final int abc_control_corner_material=0x7f070016;
/** Default insets (outer padding) around controls
*/
public static final int abc_control_inset_material=0x7f070014;
/** Default inner padding within controls
*/
public static final int abc_control_padding_material=0x7f070015;
/** Padding above and below selection dialog lists.
*/
public static final int abc_dialog_list_padding_vertical_material=0x7f07001e;
/** The platform's desired minimum size for a dialog's width when it
is along the major axis (that is the screen is landscape). This may
be either a fraction or a dimension.
*/
public static final int abc_dialog_min_width_major=0x7f07001f;
/** The platform's desired minimum size for a dialog's width when it
is along the minor axis (that is the screen is portrait). This may
be either a fraction or a dimension.
*/
public static final int abc_dialog_min_width_minor=0x7f070020;
public static final int abc_dialog_padding_material=0x7f07001b;
public static final int abc_dialog_padding_top_material=0x7f07001c;
public static final int abc_disabled_alpha_material_dark=0x7f070041;
public static final int abc_disabled_alpha_material_light=0x7f070040;
/** Width of the icon in a dropdown list
*/
public static final int abc_dropdownitem_icon_width=0x7f07000b;
/** Text padding for dropdown items
*/
public static final int abc_dropdownitem_text_padding_left=0x7f070009;
public static final int abc_dropdownitem_text_padding_right=0x7f07000a;
public static final int abc_edit_text_inset_bottom_material=0x7f070019;
public static final int abc_edit_text_inset_horizontal_material=0x7f070017;
public static final int abc_edit_text_inset_top_material=0x7f070018;
public static final int abc_floating_window_z=0x7f07003f;
/** Default padding for list items. This should match the action bar
content inset so that ListActivity items line up correctly.
*/
public static final int abc_list_item_padding_horizontal_material=0x7f07002b;
public static final int abc_panel_menu_list_width=0x7f070006;
/** Preferred width of the search view.
*/
public static final int abc_search_view_preferred_width=0x7f070008;
/** Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
*/
public static final int abc_search_view_text_min_width=0x7f070007;
/** Since optical insets are not available pre-v18, we add a small amount of padding
Since SwitchCompat can use optical insets on v18+, reset the manual padding
*/
public static final int abc_switch_padding=0x7f07001a;
public static final int abc_text_size_body_1_material=0x7f070039;
public static final int abc_text_size_body_2_material=0x7f070038;
public static final int abc_text_size_button_material=0x7f07003b;
public static final int abc_text_size_caption_material=0x7f07003a;
public static final int abc_text_size_display_1_material=0x7f070033;
public static final int abc_text_size_display_2_material=0x7f070032;
public static final int abc_text_size_display_3_material=0x7f070031;
public static final int abc_text_size_display_4_material=0x7f070030;
public static final int abc_text_size_headline_material=0x7f070034;
public static final int abc_text_size_large_material=0x7f07003c;
public static final int abc_text_size_medium_material=0x7f07003d;
public static final int abc_text_size_menu_material=0x7f070037;
public static final int abc_text_size_small_material=0x7f07003e;
public static final int abc_text_size_subhead_material=0x7f070036;
/** Use the default subtitle sizes on tablets.
Default text size for action bar subtitle.
*/
public static final int abc_text_size_subtitle_material_toolbar=0x7f070022;
public static final int abc_text_size_title_material=0x7f070035;
/** Use the default title sizes on tablets.
Default text size for action bar title.
*/
public static final int abc_text_size_title_material_toolbar=0x7f070021;
/** Default screen margins, per the Android Design guidelines.
Example customization of dimensions originally defined in res/values/dimens.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
*/
public static final int activity_horizontal_margin=0x7f070042;
public static final int activity_vertical_margin=0x7f070043;
/** The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_major=0x7f07000e;
/** The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_minor=0x7f07000f;
/** The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_major=0x7f07000c;
/** The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_minor=0x7f07000d;
public static final int disabled_alpha_material_dark=0x7f070001;
public static final int disabled_alpha_material_light=0x7f070000;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_btn_borderless_material=0x7f020001;
public static final int abc_btn_check_material=0x7f020002;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020004;
public static final int abc_btn_default_mtrl_shape=0x7f020005;
public static final int abc_btn_radio_material=0x7f020006;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020007;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f020008;
public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f020009;
public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_dialog_material_background_dark=0x7f020010;
public static final int abc_dialog_material_background_light=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020013;
public static final int abc_ic_clear_mtrl_alpha=0x7f020014;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020015;
public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020017;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020018;
public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001a;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001b;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001c;
public static final int abc_ic_search_api_mtrl_alpha=0x7f02001d;
public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f02001e;
public static final int abc_item_background_holo_dark=0x7f02001f;
public static final int abc_item_background_holo_light=0x7f020020;
public static final int abc_list_divider_mtrl_alpha=0x7f020021;
public static final int abc_list_focused_holo=0x7f020022;
public static final int abc_list_longpressed_holo=0x7f020023;
public static final int abc_list_pressed_holo_dark=0x7f020024;
public static final int abc_list_pressed_holo_light=0x7f020025;
public static final int abc_list_selector_background_transition_holo_dark=0x7f020026;
public static final int abc_list_selector_background_transition_holo_light=0x7f020027;
public static final int abc_list_selector_disabled_holo_dark=0x7f020028;
public static final int abc_list_selector_disabled_holo_light=0x7f020029;
public static final int abc_list_selector_holo_dark=0x7f02002a;
public static final int abc_list_selector_holo_light=0x7f02002b;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002c;
public static final int abc_popup_background_mtrl_mult=0x7f02002d;
public static final int abc_ratingbar_full_material=0x7f02002e;
public static final int abc_spinner_mtrl_am_alpha=0x7f02002f;
public static final int abc_spinner_textfield_background_material=0x7f020030;
public static final int abc_switch_thumb_material=0x7f020031;
public static final int abc_switch_track_mtrl_alpha=0x7f020032;
public static final int abc_tab_indicator_material=0x7f020033;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020034;
public static final int abc_text_cursor_mtrl_alpha=0x7f020035;
public static final int abc_textfield_activated_mtrl_alpha=0x7f020036;
public static final int abc_textfield_default_mtrl_alpha=0x7f020037;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020038;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020039;
public static final int abc_textfield_search_material=0x7f02003a;
public static final int ic_launcher=0x7f02003b;
public static final int sloop=0x7f02003c;
}
public static final class id {
public static final int action_bar=0x7f090040;
public static final int action_bar_activity_content=0x7f090003;
public static final int action_bar_container=0x7f09003f;
public static final int action_bar_root=0x7f09003b;
public static final int action_bar_spinner=0x7f090002;
public static final int action_bar_subtitle=0x7f090024;
public static final int action_bar_title=0x7f090023;
public static final int action_context_bar=0x7f090041;
public static final int action_menu_divider=0x7f090005;
public static final int action_menu_presenter=0x7f090006;
public static final int action_mode_bar=0x7f09003d;
public static final int action_mode_bar_stub=0x7f09003c;
public static final int action_mode_close_button=0x7f090025;
public static final int action_settings=0x7f090050;
public static final int activity_chooser_view_content=0x7f090026;
public static final int alertTitle=0x7f090030;
public static final int always=0x7f090019;
public static final int beginning=0x7f090020;
public static final int buttonPanel=0x7f090036;
public static final int checkbox=0x7f090038;
public static final int collapseActionView=0x7f09001a;
public static final int contentPanel=0x7f090031;
public static final int custom=0x7f090035;
public static final int customPanel=0x7f090034;
public static final int decor_content_parent=0x7f09003e;
public static final int default_activity_button=0x7f090029;
public static final int dialog=0x7f09001e;
public static final int disableHome=0x7f09000d;
public static final int dropdown=0x7f09001f;
public static final int edit_query=0x7f090042;
public static final int end=0x7f090021;
public static final int expand_activities_button=0x7f090027;
public static final int expanded_menu=0x7f090037;
public static final int home=0x7f090000;
public static final int homeAsUp=0x7f09000e;
public static final int icon=0x7f09002b;
public static final int ifRoom=0x7f09001b;
public static final int image=0x7f090028;
public static final int iv_sloop=0x7f09004f;
public static final int listMode=0x7f09000a;
public static final int list_item=0x7f09002a;
public static final int middle=0x7f090022;
public static final int multiply=0x7f090014;
public static final int never=0x7f09001c;
public static final int none=0x7f09000f;
public static final int normal=0x7f09000b;
public static final int parentPanel=0x7f09002d;
public static final int progress_circular=0x7f090007;
public static final int progress_horizontal=0x7f090008;
public static final int radio=0x7f09003a;
public static final int screen=0x7f090015;
public static final int scrollView=0x7f090032;
public static final int search_badge=0x7f090044;
public static final int search_bar=0x7f090043;
public static final int search_button=0x7f090045;
public static final int search_close_btn=0x7f09004a;
public static final int search_edit_frame=0x7f090046;
public static final int search_go_btn=0x7f09004c;
public static final int search_mag_icon=0x7f090047;
public static final int search_plate=0x7f090048;
public static final int search_src_text=0x7f090049;
public static final int search_voice_btn=0x7f09004d;
public static final int select_dialog_listview=0x7f09004e;
public static final int shortcut=0x7f090039;
public static final int showCustom=0x7f090010;
public static final int showHome=0x7f090011;
public static final int showTitle=0x7f090012;
public static final int split_action_bar=0x7f090004;
public static final int src_atop=0x7f090016;
public static final int src_in=0x7f090017;
public static final int src_over=0x7f090018;
public static final int submit_area=0x7f09004b;
public static final int tabMode=0x7f09000c;
public static final int textSpacerNoButtons=0x7f090033;
public static final int title=0x7f09002c;
public static final int title_template=0x7f09002f;
public static final int topPanel=0x7f09002e;
public static final int up=0x7f090001;
public static final int useLogo=0x7f090013;
public static final int withText=0x7f09001d;
public static final int wrap_content=0x7f090009;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f080001;
/** The duration (in milliseconds) of the activity open/close and fragment open/close animations.
*/
public static final int abc_config_activityShortDur=0x7f080000;
/** The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
*/
public static final int abc_max_action_buttons=0x7f080002;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_material=0x7f030009;
public static final int abc_dialog_title_material=0x7f03000a;
public static final int abc_expanded_menu_layout=0x7f03000b;
public static final int abc_list_menu_item_checkbox=0x7f03000c;
public static final int abc_list_menu_item_icon=0x7f03000d;
public static final int abc_list_menu_item_layout=0x7f03000e;
public static final int abc_list_menu_item_radio=0x7f03000f;
public static final int abc_popup_menu_item_layout=0x7f030010;
public static final int abc_screen_content_include=0x7f030011;
public static final int abc_screen_simple=0x7f030012;
public static final int abc_screen_simple_overlay_action_mode=0x7f030013;
public static final int abc_screen_toolbar=0x7f030014;
public static final int abc_search_dropdown_item_icons_2line=0x7f030015;
public static final int abc_search_view=0x7f030016;
public static final int abc_select_dialog_material=0x7f030017;
public static final int abc_simple_dropdown_hint=0x7f030018;
public static final int activity_main=0x7f030019;
public static final int select_dialog_item_material=0x7f03001a;
public static final int select_dialog_multichoice_material=0x7f03001b;
public static final int select_dialog_singlechoice_material=0x7f03001c;
public static final int support_simple_spinner_dropdown_item=0x7f03001d;
}
public static final class menu {
public static final int main=0x7f0c0000;
}
public static final class string {
/** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_home_description=0x7f0a0001;
/** Formatting string for describing the action bar's title/home/up affordance.
This is a single tappable "button" that includes the app icon, the Up indicator
(usually a "<" chevron) and the window title text.
%1$s is the title. %2$s is the description of what tapping/clicking the whole
thing is going to do.
*/
public static final int abc_action_bar_home_description_format=0x7f0a0005;
/** Just like action_bar_home_description_format, but this one will be used
if the window is also providing subtitle text.
%1$s is the title. %2$s is the subtitle. %3$s is the description of what
tapping/clicking the whole thing is going to do.
*/
public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0006;
/** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_up_description=0x7f0a0002;
/** Content description for the action menu overflow button. [CHAR LIMIT=NONE]
*/
public static final int abc_action_menu_overflow_description=0x7f0a0003;
/** Label for the "Done" button on the far left of action mode toolbars.
*/
public static final int abc_action_mode_done=0x7f0a0000;
/** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25]
*/
public static final int abc_activity_chooser_view_see_all=0x7f0a000e;
/** ActivityChooserView - accessibility support
Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE]
*/
public static final int abc_activitychooserview_choose_application=0x7f0a000d;
/** Default hint text for the system-wide search UI's text field. [CHAR LIMIT=30]
*/
public static final int abc_search_hint=0x7f0a0008;
/** SearchView accessibility description for clear button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_clear=0x7f0a000a;
/** SearchView accessibility description for search text field [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_query=0x7f0a0009;
/** SearchView accessibility description for search button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_search=0x7f0a0007;
/** SearchView accessibility description for submit button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_submit=0x7f0a000b;
/** SearchView accessibility description for voice button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_voice=0x7f0a000c;
/** Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with=0x7f0a0010;
/** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with_application=0x7f0a000f;
/** Content description for the Toolbar icon used to collapse an expanded action mode. [CHAR LIMIT=NONE]
*/
public static final int abc_toolbar_collapse_description=0x7f0a0004;
public static final int action_settings=0x7f0a0013;
public static final int app_name=0x7f0a0011;
public static final int hello_world=0x7f0a0012;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0b0040;
public static final int AlertDialog_AppCompat_Light=0x7f0b0041;
public static final int Animation_AppCompat_Dialog=0x7f0b0046;
public static final int Animation_AppCompat_DropDownUp=0x7f0b0047;
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f0b011b;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f0b011c;
public static final int Base_AlertDialog_AppCompat=0x7f0b00bd;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00be;
public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b9;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00bc;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00b8;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00b7;
public static final int Base_TextAppearance_AppCompat=0x7f0b00bf;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b00ca;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b00c9;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0b00cd;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b00cb;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b00c3;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b00c2;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b00c1;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b00c0;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b00c4;
/** Deprecated text styles
Deprecated text styles
Now deprecated styles
*/
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b00ce;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0b00cf;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b00d0;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b009a;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b009b;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b00d1;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b00d2;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b00cc;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b009c;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b009e;
/** Search View result styles
*/
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b009d;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0b00d3;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b00d4;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b00c7;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00c8;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0b00c5;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b00c6;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0083;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0085;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0087;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0084;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0086;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0082;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0081;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0090;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0098;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0099;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b00ae;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00b6;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0091;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b00a5;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b00a4;
public static final int Base_Theme_AppCompat=0x7f0b00f8;
/** Menu/item attributes
*/
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00fb;
public static final int Base_Theme_AppCompat_Dialog=0x7f0b00fe;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0100;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b0104;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0102;
/** We're not large, so redirect to Theme.AppCompat
*/
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0106;
public static final int Base_Theme_AppCompat_Light=0x7f0b00f9;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00fa;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b00ff;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0101;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b0105;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0103;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0107;
/** Overlay themes
*/
public static final int Base_ThemeOverlay_AppCompat=0x7f0b0108;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b010d;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b010c;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b010e;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b010b;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0111;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0112;
public static final int Base_V21_Theme_AppCompat=0x7f0b0117;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0119;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0118;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b011a;
/** Base platform-dependent theme providing an action bar in a dark-themed activity.
*/
public static final int Base_V7_Theme_AppCompat=0x7f0b00f6;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00fc;
/** Base platform-dependent theme providing an action bar in a light-themed activity.
*/
public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00f7;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00fd;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0b0072;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b0074;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b0079;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b007d;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b007b;
/** Action Button Styles
*/
public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0076;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0077;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0078;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0b0080;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00a0;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b009f;
/** Bordered ink button
*/
public static final int Base_Widget_AppCompat_Button=0x7f0b00b0;
/** Borderless ink button
*/
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b00b2;
/** Colored borderless ink button
*/
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b00b3;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00b4;
/** Small bordered ink button
*/
public static final int Base_Widget_AppCompat_Button_Small=0x7f0b00b1;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b00ba;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00bb;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b00ab;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b00ac;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00ad;
/** contains values used in all dpis except hdpi and xxhdpi
*/
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b00aa;
/** contains values used in all dpis
*/
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00a9;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b008d;
public static final int Base_Widget_AppCompat_EditText=0x7f0b00a8;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b0073;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0075;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b007a;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b007e;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b007f;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b007c;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0097;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0095;
/** Popup Menu
*/
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0093;
public static final int Base_Widget_AppCompat_ListView=0x7f0b008e;
/** Spinner Widgets
*/
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b008f;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0092;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0096;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0094;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00a1;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b0089;
/** Progress Bar
Progress Bar
*/
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0088;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0b00af;
public static final int Base_Widget_AppCompat_SearchView=0x7f0b00a6;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00a7;
/** Spinner Widgets
*/
public static final int Base_Widget_AppCompat_Spinner=0x7f0b008a;
public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b008c;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b008b;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b00b5;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00a2;
/**
Widget.AppCompat.Toolbar style is purposely ommitted. This is because the support
Toolbar implementation is used on ALL platforms and relies on the unbundled attrs.
The supporting Toolbar styles below only use basic attrs so work fine.
*/
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00a3;
public static final int Platform_AppCompat=0x7f0b00f4;
public static final int Platform_AppCompat_Light=0x7f0b00f5;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0109;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b010a;
public static final int Platform_V11_AppCompat=0x7f0b010f;
public static final int Platform_V11_AppCompat_Light=0x7f0b0110;
public static final int Platform_V12_AppCompat=0x7f0b0113;
public static final int Platform_V12_AppCompat_Light=0x7f0b0114;
public static final int Platform_V14_AppCompat=0x7f0b0115;
public static final int Platform_V14_AppCompat_Light=0x7f0b0116;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b00db;
public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b00dc;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b00dd;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b00de;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b00df;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b00d6;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b00d8;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b00d9;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b00d7;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b00da;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b00d5;
public static final int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00e0;
public static final int TextAppearance_AppCompat=0x7f0b0048;
public static final int TextAppearance_AppCompat_Body1=0x7f0b0053;
public static final int TextAppearance_AppCompat_Body2=0x7f0b0052;
public static final int TextAppearance_AppCompat_Button=0x7f0b005d;
public static final int TextAppearance_AppCompat_Caption=0x7f0b0054;
public static final int TextAppearance_AppCompat_Display1=0x7f0b004c;
public static final int TextAppearance_AppCompat_Display2=0x7f0b004b;
public static final int TextAppearance_AppCompat_Display3=0x7f0b004a;
public static final int TextAppearance_AppCompat_Display4=0x7f0b0049;
public static final int TextAppearance_AppCompat_Headline=0x7f0b004d;
public static final int TextAppearance_AppCompat_Inverse=0x7f0b0056;
public static final int TextAppearance_AppCompat_Large=0x7f0b0057;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b0058;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0064;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0063;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b002b;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b002c;
public static final int TextAppearance_AppCompat_Medium=0x7f0b0059;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b005a;
public static final int TextAppearance_AppCompat_Menu=0x7f0b0055;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b002e;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b002d;
public static final int TextAppearance_AppCompat_Small=0x7f0b005b;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b005c;
public static final int TextAppearance_AppCompat_Subhead=0x7f0b0050;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b0051;
public static final int TextAppearance_AppCompat_Title=0x7f0b004e;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b004f;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0015;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0005;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0007;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0004;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0006;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0018;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0067;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0017;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0066;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0019;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0029;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b002a;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b005e;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b005f;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0021;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0045;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0044;
/** Themes in the "Theme.AppCompat" family will contain an action bar by default.
If Holo themes are available on the current platform version they will be used.
A limited Holo-styled action bar will be provided on platform versions older
than 3.0. (API 11)
These theme declarations contain any version-independent specification. Items
that need to vary based on platform version should be defined in the corresponding
"Theme.Base" theme.
Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat=0x7f0b00e1;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_CompactMenu=0x7f0b00ee;
public static final int Theme_AppCompat_Dialog=0x7f0b00e8;
/** Material theme for alert dialog windows, which is used by the AlertDialog class.
This is basically a dialog but sets the background to empty so it can do
two-tone backgrounds. For applications targeting Honeycomb or newer, this is the default
AlertDialog theme.
*/
public static final int Theme_AppCompat_Dialog_Alert=0x7f0b00ea;
/** Variant of Theme.AppCompat.Dialog that has a nice minimum width for
a regular dialog.
*/
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b00ec;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b00e6;
/** Platform-independent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_AppCompat_Light=0x7f0b00e2;
/** Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b00e3;
public static final int Theme_AppCompat_Light_Dialog=0x7f0b00e9;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b00eb;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b00ed;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b00e7;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b00e5;
public static final int Theme_AppCompat_NoActionBar=0x7f0b00e4;
public static final int ThemeOverlay_AppCompat=0x7f0b00ef;
/** Theme overlay that replaces the normal control color, which by default is the same as the
secondary text color, with the primary text color.
*/
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b00f2;
/** Theme overlay that replaces colors with their dark versions but preserves
the value of colorAccent, colorPrimary and its variants.
*/
public static final int ThemeOverlay_AppCompat_Dark=0x7f0b00f1;
/** Theme overlay that replaces colors with their dark versions and replaces the normal
control color, which by default is the same as the secondary text color, with the primary
text color.
*/
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00f3;
/** Theme overlay that replaces colors with their light versions but preserves
the value of colorAccent, colorPrimary and its variants.
*/
public static final int ThemeOverlay_AppCompat_Light=0x7f0b00f0;
/** Styles in here can be extended for customisation in your application. Each utilises
one of the.styles. If Holo themes are available on the current platform version
they will be used instead of the compat styles.
*/
public static final int Widget_AppCompat_ActionBar=0x7f0b0000;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0002;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b000d;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0011;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b000f;
public static final int Widget_AppCompat_ActionButton=0x7f0b000a;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b000b;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b000c;
public static final int Widget_AppCompat_ActionMode=0x7f0b0016;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0030;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b002f;
public static final int Widget_AppCompat_Button=0x7f0b0038;
public static final int Widget_AppCompat_Button_Borderless=0x7f0b003a;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b003b;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b003c;
public static final int Widget_AppCompat_Button_Small=0x7f0b0039;
public static final int Widget_AppCompat_ButtonBar=0x7f0b003d;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b003e;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0035;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0036;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0034;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0012;
/** This style has an extra indirection to properly set RTL attributes. See styles_rtl.xml
*/
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b001e;
public static final int Widget_AppCompat_EditText=0x7f0b0033;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0001;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0003;
/**
The following themes are deprecated.
*/
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0060;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b000e;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0061;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0013;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0014;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0010;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0062;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b006a;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b006c;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b006b;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0065;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0071;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0070;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0068;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b006f;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b006e;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0026;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0024;
public static final int Widget_AppCompat_Light_SearchView=0x7f0b0069;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b006d;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0022;
public static final int Widget_AppCompat_ListView=0x7f0b001f;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0020;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b0027;
public static final int Widget_AppCompat_PopupMenu=0x7f0b0025;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0023;
public static final int Widget_AppCompat_PopupWindow=0x7f0b0028;
public static final int Widget_AppCompat_ProgressBar=0x7f0b0009;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0008;
public static final int Widget_AppCompat_RatingBar=0x7f0b0037;
public static final int Widget_AppCompat_SearchView=0x7f0b0031;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0032;
public static final int Widget_AppCompat_Spinner=0x7f0b001a;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b001c;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b001d;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b001b;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b003f;
/** Toolbar
*/
public static final int Widget_AppCompat_Toolbar=0x7f0b0042;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0043;
}
public static final class styleable {
/** ============================================
Attributes used to style the Action Bar.
These should be set on your theme; the default actionBarStyle will
propagate them to the correct elements as needed.
Please Note: when overriding attributes for an ActionBar style
you must specify each attribute twice: once with the "android:"
namespace prefix and once without.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionBar_background com.sloop.fz3d:background} | Specifies a background drawable for the action bar. |
{@link #ActionBar_backgroundSplit com.sloop.fz3d:backgroundSplit} | Specifies a background drawable for the bottom component of a split action bar. |
{@link #ActionBar_backgroundStacked com.sloop.fz3d:backgroundStacked} | Specifies a background drawable for a second stacked row of the action bar. |
{@link #ActionBar_contentInsetEnd com.sloop.fz3d:contentInsetEnd} | Minimum inset for content views within a bar. |
{@link #ActionBar_contentInsetLeft com.sloop.fz3d:contentInsetLeft} | Minimum inset for content views within a bar. |
{@link #ActionBar_contentInsetRight com.sloop.fz3d:contentInsetRight} | Minimum inset for content views within a bar. |
{@link #ActionBar_contentInsetStart com.sloop.fz3d:contentInsetStart} | Minimum inset for content views within a bar. |
{@link #ActionBar_customNavigationLayout com.sloop.fz3d:customNavigationLayout} | Specifies a layout for custom navigation. |
{@link #ActionBar_displayOptions com.sloop.fz3d:displayOptions} | Options affecting how the action bar is displayed. |
{@link #ActionBar_divider com.sloop.fz3d:divider} | Specifies the drawable used for item dividers. |
{@link #ActionBar_elevation com.sloop.fz3d:elevation} | Elevation for the action bar itself |
{@link #ActionBar_height com.sloop.fz3d:height} | Specifies a fixed height. |
{@link #ActionBar_hideOnContentScroll com.sloop.fz3d:hideOnContentScroll} | Set true to hide the action bar on a vertical nested scroll of content. |
{@link #ActionBar_homeAsUpIndicator com.sloop.fz3d:homeAsUpIndicator} | Up navigation glyph |
{@link #ActionBar_homeLayout com.sloop.fz3d:homeLayout} | Specifies a layout to use for the "home" section of the action bar. |
{@link #ActionBar_icon com.sloop.fz3d:icon} | Specifies the drawable used for the application icon. |
{@link #ActionBar_indeterminateProgressStyle com.sloop.fz3d:indeterminateProgressStyle} | Specifies a style resource to use for an indeterminate progress spinner. |
{@link #ActionBar_itemPadding com.sloop.fz3d:itemPadding} | Specifies padding that should be applied to the left and right sides of system-provided items in the bar. |
{@link #ActionBar_logo com.sloop.fz3d:logo} | Specifies the drawable used for the application logo. |
{@link #ActionBar_navigationMode com.sloop.fz3d:navigationMode} | The type of navigation to use. |
{@link #ActionBar_popupTheme com.sloop.fz3d:popupTheme} | Reference to a theme that should be used to inflate popups shown by widgets in the action bar. |
{@link #ActionBar_progressBarPadding com.sloop.fz3d:progressBarPadding} | Specifies the horizontal padding on either end for an embedded progress bar. |
{@link #ActionBar_progressBarStyle com.sloop.fz3d:progressBarStyle} | Specifies a style resource to use for an embedded progress bar. |
{@link #ActionBar_subtitle com.sloop.fz3d:subtitle} | Specifies subtitle text used for navigationMode="normal" |
{@link #ActionBar_subtitleTextStyle com.sloop.fz3d:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionBar_title com.sloop.fz3d:title} | Specifies title text used for navigationMode="normal" |
{@link #ActionBar_titleTextStyle com.sloop.fz3d:titleTextStyle} | Specifies a style to use for title text. |
@attr description Specifies a background drawable for the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:background */ public static final int ActionBar_background = 11; /**
@attr description Specifies a background drawable for the bottom component of a split action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:backgroundSplit */ public static final int ActionBar_backgroundSplit = 13; /**
@attr description Specifies a background drawable for a second stacked row of the action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:backgroundStacked */ public static final int ActionBar_backgroundStacked = 12; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 22; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 23; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetRight */ public static final int ActionBar_contentInsetRight = 24; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetStart */ public static final int ActionBar_contentInsetStart = 21; /**
@attr description Specifies a layout for custom navigation. Overrides navigationMode.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 14; /**
@attr description Options affecting how the action bar is displayed.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
none | 0 | |
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
This is a private symbol. @attr name com.sloop.fz3d:displayOptions */ public static final int ActionBar_displayOptions = 4; /**
@attr description Specifies the drawable used for item dividers.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:divider */ public static final int ActionBar_divider = 10; /**
@attr description Elevation for the action bar itself
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:elevation */ public static final int ActionBar_elevation = 25; /**
@attr description Specifies a fixed height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:height */ public static final int ActionBar_height = 1; /**
@attr description Set true to hide the action bar on a vertical nested scroll of content.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 20; /**
@attr description Up navigation glyph
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 2; /**
@attr description Specifies a layout to use for the "home" section of the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:homeLayout */ public static final int ActionBar_homeLayout = 15; /**
@attr description Specifies the drawable used for the application icon.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:icon */ public static final int ActionBar_icon = 8; /**
@attr description Specifies a style resource to use for an indeterminate progress spinner.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 17; /**
@attr description Specifies padding that should be applied to the left and right sides of system-provided items in the bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:itemPadding */ public static final int ActionBar_itemPadding = 19; /**
@attr description Specifies the drawable used for the application logo.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:logo */ public static final int ActionBar_logo = 9; /**
@attr description The type of navigation to use.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
This is a private symbol. @attr name com.sloop.fz3d:navigationMode */ public static final int ActionBar_navigationMode = 3; /**
@attr description Reference to a theme that should be used to inflate popups shown by widgets in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:popupTheme */ public static final int ActionBar_popupTheme = 26; /**
@attr description Specifies the horizontal padding on either end for an embedded progress bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:progressBarPadding */ public static final int ActionBar_progressBarPadding = 18; /**
@attr description Specifies a style resource to use for an embedded progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:progressBarStyle */ public static final int ActionBar_progressBarStyle = 16; /**
@attr description Specifies subtitle text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:subtitle */ public static final int ActionBar_subtitle = 5; /**
@attr description Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 7; /**
@attr description Specifies title text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:title */ public static final int ActionBar_title = 0; /**
@attr description Specifies a style to use for title text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:titleTextStyle */ public static final int ActionBar_titleTextStyle = 6; /** Valid LayoutParams for views placed in the action bar as custom views.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity} |
This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionMenuItemView_android_minWidth android:minWidth} |
This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Size of padding on either end of a divider. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionMode_background com.sloop.fz3d:background} | Specifies a background for the action mode bar. |
{@link #ActionMode_backgroundSplit com.sloop.fz3d:backgroundSplit} | Specifies a background for the split action mode bar. |
{@link #ActionMode_closeItemLayout com.sloop.fz3d:closeItemLayout} | Specifies a layout to use for the "close" item at the starting edge. |
{@link #ActionMode_height com.sloop.fz3d:height} | Specifies a fixed height for the action mode bar. |
{@link #ActionMode_subtitleTextStyle com.sloop.fz3d:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionMode_titleTextStyle com.sloop.fz3d:titleTextStyle} | Specifies a style to use for title text. |
@attr description Specifies a background for the action mode bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:background */ public static final int ActionMode_background = 3; /**
@attr description Specifies a background for the split action mode bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /**
@attr description Specifies a layout to use for the "close" item at the starting edge.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /**
@attr description Specifies a fixed height for the action mode bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:height */ public static final int ActionMode_height = 0; /**
@attr description Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /**
@attr description Specifies a style to use for title text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attrbitutes for a ActivityChooserView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.sloop.fz3d:expandActivityOverflowButtonDrawable} | The drawable to show in the button for expanding the activities overflow popup. |
{@link #ActivityChooserView_initialActivityCount com.sloop.fz3d:initialActivityCount} | The maximal number of items initially shown in the activity list. |
@attr description The drawable to show in the button for expanding the activities overflow popup. Note: Clients would like to set this drawable as a clue about the action the chosen activity will perform. For example, if share activity is to be chosen the drawable should give a clue that sharing is to be performed.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /**
@attr description The maximal number of items initially shown in the activity list.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** The set of attributes that describe a AlertDialog's theme.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #AlertDialog_android_layout android:layout} | |
{@link #AlertDialog_buttonPanelSideLayout com.sloop.fz3d:buttonPanelSideLayout} | |
{@link #AlertDialog_listItemLayout com.sloop.fz3d:listItemLayout} | |
{@link #AlertDialog_listLayout com.sloop.fz3d:listLayout} | |
{@link #AlertDialog_multiChoiceItemLayout com.sloop.fz3d:multiChoiceItemLayout} | |
{@link #AlertDialog_singleChoiceItemLayout com.sloop.fz3d:singleChoiceItemLayout} |
This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppCompatTextView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #AppCompatTextView_android_textAppearance android:textAppearance} | |
{@link #AppCompatTextView_textAllCaps com.sloop.fz3d:textAllCaps} | Present the text in ALL CAPS. |
This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /**
@attr description Present the text in ALL CAPS. This may use a small-caps form when available.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a boolean value, either "true" or "false".
This is a private symbol. @attr name com.sloop.fz3d:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a DrawerArrowToggle.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #DrawerArrowToggle_barSize com.sloop.fz3d:barSize} | The size of the bars when they are parallel to each other |
{@link #DrawerArrowToggle_color com.sloop.fz3d:color} | The drawing color for the bars |
{@link #DrawerArrowToggle_drawableSize com.sloop.fz3d:drawableSize} | The total size of the drawable |
{@link #DrawerArrowToggle_gapBetweenBars com.sloop.fz3d:gapBetweenBars} | The max gap between the bars when they are parallel to each other |
{@link #DrawerArrowToggle_middleBarArrowSize com.sloop.fz3d:middleBarArrowSize} | The size of the middle bar when top and bottom bars merge into middle bar to form an arrow |
{@link #DrawerArrowToggle_spinBars com.sloop.fz3d:spinBars} | Whether bars should rotate or not during transition |
{@link #DrawerArrowToggle_thickness com.sloop.fz3d:thickness} | The thickness (stroke size) for the bar paint |
{@link #DrawerArrowToggle_topBottomBarArrowSize com.sloop.fz3d:topBottomBarArrowSize} | The size of the top and bottom bars when they merge to the middle bar to form an arrow |
@attr description The size of the bars when they are parallel to each other
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:barSize */ public static final int DrawerArrowToggle_barSize = 6; /**
@attr description The drawing color for the bars
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:color */ public static final int DrawerArrowToggle_color = 0; /**
@attr description The total size of the drawable
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /**
@attr description The max gap between the bars when they are parallel to each other
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /**
@attr description The size of the middle bar when top and bottom bars merge into middle bar to form an arrow
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:middleBarArrowSize */ public static final int DrawerArrowToggle_middleBarArrowSize = 5; /**
@attr description Whether bars should rotate or not during transition
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /**
@attr description The thickness (stroke size) for the bar paint
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:thickness */ public static final int DrawerArrowToggle_thickness = 7; /**
@attr description The size of the top and bottom bars when they merge to the middle bar to form an arrow
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:topBottomBarArrowSize */ public static final int DrawerArrowToggle_topBottomBarArrowSize = 4; /** Attributes that can be used with a LinearLayoutCompat.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned} | When set to false, prevents the layout from aligning its children's baselines. |
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex} | When a linear layout is part of another layout that is baseline aligned, it can specify which of its children to baseline align to (that is, which child TextView). |
{@link #LinearLayoutCompat_android_gravity android:gravity} | |
{@link #LinearLayoutCompat_android_orientation android:orientation} | Should the layout be a column or a row? Use "horizontal" for a row, "vertical" for a column. |
{@link #LinearLayoutCompat_android_weightSum android:weightSum} | Defines the maximum weight sum. |
{@link #LinearLayoutCompat_divider com.sloop.fz3d:divider} | Drawable to use as a vertical divider between buttons. |
{@link #LinearLayoutCompat_dividerPadding com.sloop.fz3d:dividerPadding} | Size of padding on either end of a divider. |
{@link #LinearLayoutCompat_measureWithLargestChild com.sloop.fz3d:measureWithLargestChild} | When set to true, all children with a weight will be considered having the minimum size of the largest child. |
{@link #LinearLayoutCompat_showDividers com.sloop.fz3d:showDividers} | Setting for which dividers to show. |
@attr description When set to false, prevents the layout from aligning its children's baselines. This attribute is particularly useful when the children use different values for gravity. The default value is true.
This corresponds to the global attribute resource symbol {@link android.R.attr#baselineAligned}. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /**
@attr description When a linear layout is part of another layout that is baseline aligned, it can specify which of its children to baseline align to (that is, which child TextView).
This corresponds to the global attribute resource symbol {@link android.R.attr#baselineAlignedChildIndex}. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /**
This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /**
@attr description Should the layout be a column or a row? Use "horizontal" for a row, "vertical" for a column. The default is horizontal.
This corresponds to the global attribute resource symbol {@link android.R.attr#orientation}. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /**
@attr description Defines the maximum weight sum. If unspecified, the sum is computed by adding the layout_weight of all of the children. This can be used for instance to give a single child 50% of the total available space by giving it a layout_weight of 0.5 and setting the weightSum to 1.0.
This corresponds to the global attribute resource symbol {@link android.R.attr#weightSum}. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /**
@attr description Drawable to use as a vertical divider between buttons.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:divider */ public static final int LinearLayoutCompat_divider = 5; /**
@attr description Size of padding on either end of a divider.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /**
@attr description When set to true, all children with a weight will be considered having the minimum size of the largest child. If false, all children are measured normally.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /**
@attr description Setting for which dividers to show.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
This is a private symbol. @attr name com.sloop.fz3d:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity} | |
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height} | |
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight} | |
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width} |
This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /**
This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /**
This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /**
This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset} | Amount of pixels by which the drop down should be offset horizontally. |
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset} | Amount of pixels by which the drop down should be offset vertically. |
@attr description Amount of pixels by which the drop down should be offset horizontally.
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownHorizontalOffset}. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /**
@attr description Amount of pixels by which the drop down should be offset vertically.
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownVerticalOffset}. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Base attributes that are available to all groups.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior} | Whether the items are capable of displaying a check mark. |
{@link #MenuGroup_android_enabled android:enabled} | Whether the items are enabled. |
{@link #MenuGroup_android_id android:id} | The ID of the group. |
{@link #MenuGroup_android_menuCategory android:menuCategory} | The category applied to all items within this group. |
{@link #MenuGroup_android_orderInCategory android:orderInCategory} | The order within the category applied to all items within this group. |
{@link #MenuGroup_android_visible android:visible} | Whether the items are shown/visible. |
@attr description Whether the items are capable of displaying a check mark.
This corresponds to the global attribute resource symbol {@link android.R.attr#checkableBehavior}. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /**
@attr description Whether the items are enabled.
This corresponds to the global attribute resource symbol {@link android.R.attr#enabled}. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /**
@attr description The ID of the group.
This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int MenuGroup_android_id = 1; /**
@attr description The category applied to all items within this group. (This will be or'ed with the orderInCategory attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#menuCategory}. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /**
@attr description The order within the category applied to all items within this group. (This will be or'ed with the category attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#orderInCategory}. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /**
@attr description Whether the items are shown/visible.
This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Base attributes that are available to all Item objects.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #MenuItem_actionLayout com.sloop.fz3d:actionLayout} | An optional layout to be used as an action view. |
{@link #MenuItem_actionProviderClass com.sloop.fz3d:actionProviderClass} | The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item. |
{@link #MenuItem_actionViewClass com.sloop.fz3d:actionViewClass} | The name of an optional View class to instantiate and use as an action view. |
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut} | The alphabetic shortcut key. |
{@link #MenuItem_android_checkable android:checkable} | Whether the item is capable of displaying a check mark. |
{@link #MenuItem_android_checked android:checked} | Whether the item is checked. |
{@link #MenuItem_android_enabled android:enabled} | Whether the item is enabled. |
{@link #MenuItem_android_icon android:icon} | The icon associated with this item. |
{@link #MenuItem_android_id android:id} | The ID of the item. |
{@link #MenuItem_android_menuCategory android:menuCategory} | The category applied to the item. |
{@link #MenuItem_android_numericShortcut android:numericShortcut} | The numeric shortcut key. |
{@link #MenuItem_android_onClick android:onClick} | Name of a method on the Context used to inflate the menu that will be called when the item is clicked. |
{@link #MenuItem_android_orderInCategory android:orderInCategory} | The order within the category applied to the item. |
{@link #MenuItem_android_title android:title} | The title associated with the item. |
{@link #MenuItem_android_titleCondensed android:titleCondensed} | The condensed title associated with the item. |
{@link #MenuItem_android_visible android:visible} | Whether the item is shown/visible. |
{@link #MenuItem_showAsAction com.sloop.fz3d:showAsAction} | How this item should display in the Action Bar, if present. |
@attr description An optional layout to be used as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionLayout */ public static final int MenuItem_actionLayout = 14; /**
@attr description The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /**
@attr description The name of an optional View class to instantiate and use as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /**
@attr description The alphabetic shortcut key. This is the shortcut when using a keyboard with alphabetic keys.
This corresponds to the global attribute resource symbol {@link android.R.attr#alphabeticShortcut}. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /**
@attr description Whether the item is capable of displaying a check mark.
This corresponds to the global attribute resource symbol {@link android.R.attr#checkable}. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /**
@attr description Whether the item is checked. Note that you must first have enabled checking with the checkable attribute or else the check mark will not appear.
This corresponds to the global attribute resource symbol {@link android.R.attr#checked}. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /**
@attr description Whether the item is enabled.
This corresponds to the global attribute resource symbol {@link android.R.attr#enabled}. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /**
@attr description The icon associated with this item. This icon will not always be shown, so the title should be sufficient in describing this item.
This corresponds to the global attribute resource symbol {@link android.R.attr#icon}. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /**
@attr description The ID of the item.
This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int MenuItem_android_id = 2; /**
@attr description The category applied to the item. (This will be or'ed with the orderInCategory attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#menuCategory}. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /**
@attr description The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) keyboard.
This corresponds to the global attribute resource symbol {@link android.R.attr#numericShortcut}. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /**
@attr description Name of a method on the Context used to inflate the menu that will be called when the item is clicked.
This corresponds to the global attribute resource symbol {@link android.R.attr#onClick}. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /**
@attr description The order within the category applied to the item. (This will be or'ed with the category attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#orderInCategory}. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /**
@attr description The title associated with the item.
This corresponds to the global attribute resource symbol {@link android.R.attr#title}. @attr name android:title */ public static final int MenuItem_android_title = 7; /**
@attr description The condensed title associated with the item. This is used in situations where the normal title may be too long to be displayed.
This corresponds to the global attribute resource symbol {@link android.R.attr#titleCondensed}. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /**
@attr description Whether the item is shown/visible.
This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /**
@attr description How this item should display in the Action Bar, if present.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
never | 0 | Never show this item in an action bar, show it in the overflow menu instead. Mutually exclusive with "ifRoom" and "always". |
ifRoom | 1 | Show this item in an action bar if there is room for it as determined by the system. Favor this option over "always" where possible. Mutually exclusive with "never" and "always". |
always | 2 | Always show this item in an actionbar, even if it would override the system's limits of how much stuff to put there. This may make your action bar look bad on some screens. In most cases you should use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". |
withText | 4 | When this item is shown as an action in the action bar, show a text label with it even if it has an icon representation. |
collapseActionView | 8 | This item's action view collapses to a normal menu item. When expanded, the action view takes over a larger segment of its container. |
This is a private symbol. @attr name com.sloop.fz3d:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #MenuView_android_headerBackground android:headerBackground} | Default background for the menu header. |
{@link #MenuView_android_horizontalDivider android:horizontalDivider} | Default horizontal divider between rows of menu items. |
{@link #MenuView_android_itemBackground android:itemBackground} | Default background for each menu item. |
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha} | Default disabled icon alpha for each menu item that shows an icon. |
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance} | Default appearance of menu item text. |
{@link #MenuView_android_verticalDivider android:verticalDivider} | Default vertical divider between menu items. |
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle} | Default animations for the menu. |
{@link #MenuView_preserveIconSpacing com.sloop.fz3d:preserveIconSpacing} | Whether space should be reserved in layout when an icon is missing. |
@attr description Default background for the menu header.
This corresponds to the global attribute resource symbol {@link android.R.attr#headerBackground}. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /**
@attr description Default horizontal divider between rows of menu items.
This corresponds to the global attribute resource symbol {@link android.R.attr#horizontalDivider}. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /**
@attr description Default background for each menu item.
This corresponds to the global attribute resource symbol {@link android.R.attr#itemBackground}. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /**
@attr description Default disabled icon alpha for each menu item that shows an icon.
This corresponds to the global attribute resource symbol {@link android.R.attr#itemIconDisabledAlpha}. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /**
@attr description Default appearance of menu item text.
This corresponds to the global attribute resource symbol {@link android.R.attr#itemTextAppearance}. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /**
@attr description Default vertical divider between menu items.
This corresponds to the global attribute resource symbol {@link android.R.attr#verticalDivider}. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /**
@attr description Default animations for the menu.
This corresponds to the global attribute resource symbol {@link android.R.attr#windowAnimationStyle}. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /**
@attr description Whether space should be reserved in layout when an icon is missing.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** Attributes that can be used with a PopupWindow.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #PopupWindow_android_popupBackground android:popupBackground} | |
{@link #PopupWindow_overlapAnchor com.sloop.fz3d:overlapAnchor} | Whether the popup window should overlap its anchor view. |
This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /**
@attr description Whether the popup window should overlap its anchor view.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 1; /** Attributes that can be used with a PopupWindowBackgroundState.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #PopupWindowBackgroundState_state_above_anchor com.sloop.fz3d:state_above_anchor} | State identifier indicating the popup will be above the anchor. |
@attr description State identifier indicating the popup will be above the anchor.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a SearchView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #SearchView_android_focusable android:focusable} | |
{@link #SearchView_android_imeOptions android:imeOptions} | The IME options to set on the query text field. |
{@link #SearchView_android_inputType android:inputType} | The input type to set on the query text field. |
{@link #SearchView_android_maxWidth android:maxWidth} | An optional maximum width of the SearchView. |
{@link #SearchView_closeIcon com.sloop.fz3d:closeIcon} | Close button icon |
{@link #SearchView_commitIcon com.sloop.fz3d:commitIcon} | Commit icon shown in the query suggestion row |
{@link #SearchView_goIcon com.sloop.fz3d:goIcon} | Go button icon |
{@link #SearchView_iconifiedByDefault com.sloop.fz3d:iconifiedByDefault} | The default state of the SearchView. |
{@link #SearchView_layout com.sloop.fz3d:layout} | The layout to use for the search view. |
{@link #SearchView_queryBackground com.sloop.fz3d:queryBackground} | Background for the section containing the search query |
{@link #SearchView_queryHint com.sloop.fz3d:queryHint} | An optional query hint string to be displayed in the empty query field. |
{@link #SearchView_searchHintIcon com.sloop.fz3d:searchHintIcon} | Search icon displayed as a text field hint |
{@link #SearchView_searchIcon com.sloop.fz3d:searchIcon} | Search icon |
{@link #SearchView_submitBackground com.sloop.fz3d:submitBackground} | Background for the section containing the action (e. |
{@link #SearchView_suggestionRowLayout com.sloop.fz3d:suggestionRowLayout} | Layout for query suggestion rows |
{@link #SearchView_voiceIcon com.sloop.fz3d:voiceIcon} | Voice button icon |
This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /**
@attr description The IME options to set on the query text field.
This corresponds to the global attribute resource symbol {@link android.R.attr#imeOptions}. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /**
@attr description The input type to set on the query text field.
This corresponds to the global attribute resource symbol {@link android.R.attr#inputType}. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /**
@attr description An optional maximum width of the SearchView.
This corresponds to the global attribute resource symbol {@link android.R.attr#maxWidth}. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /**
@attr description Close button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:closeIcon */ public static final int SearchView_closeIcon = 7; /**
@attr description Commit icon shown in the query suggestion row
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:commitIcon */ public static final int SearchView_commitIcon = 12; /**
@attr description Go button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:goIcon */ public static final int SearchView_goIcon = 8; /**
@attr description The default state of the SearchView. If true, it will be iconified when not in use and expanded when clicked.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /**
@attr description The layout to use for the search view.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:layout */ public static final int SearchView_layout = 4; /**
@attr description Background for the section containing the search query
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:queryBackground */ public static final int SearchView_queryBackground = 14; /**
@attr description An optional query hint string to be displayed in the empty query field.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:queryHint */ public static final int SearchView_queryHint = 6; /**
@attr description Search icon displayed as a text field hint
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:searchHintIcon */ public static final int SearchView_searchHintIcon = 10; /**
@attr description Search icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:searchIcon */ public static final int SearchView_searchIcon = 9; /**
@attr description Background for the section containing the action (e.g. voice search)
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:submitBackground */ public static final int SearchView_submitBackground = 15; /**
@attr description Layout for query suggestion rows
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 13; /**
@attr description Voice button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:voiceIcon */ public static final int SearchView_voiceIcon = 11; /** Attributes that can be used with a Spinner.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #Spinner_android_background android:background} | |
{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset} | Horizontal offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_dropDownSelector android:dropDownSelector} | List selector to use for spinnerMode="dropdown" display. |
{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset} | Vertical offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_dropDownWidth android:dropDownWidth} | Width of the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_gravity android:gravity} | Gravity setting for positioning the currently selected item. |
{@link #Spinner_android_popupBackground android:popupBackground} | Background drawable to use for the dropdown in spinnerMode="dropdown". |
{@link #Spinner_disableChildrenWhenDisabled com.sloop.fz3d:disableChildrenWhenDisabled} | Whether this spinner should mark child views as enabled/disabled when the spinner itself is enabled/disabled. |
{@link #Spinner_popupPromptView com.sloop.fz3d:popupPromptView} | Reference to a layout to use for displaying a prompt in the dropdown for spinnerMode="dropdown". |
{@link #Spinner_prompt com.sloop.fz3d:prompt} | The prompt to display when the spinner's dialog is shown. |
{@link #Spinner_spinnerMode com.sloop.fz3d:spinnerMode} | Display mode for spinner options. |
This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #Spinner} array. @attr name android:background */ public static final int Spinner_android_background = 1; /**
@attr description Horizontal offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownHorizontalOffset}. @attr name android:dropDownHorizontalOffset */ public static final int Spinner_android_dropDownHorizontalOffset = 5; /**
@attr description List selector to use for spinnerMode="dropdown" display.
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownSelector}. @attr name android:dropDownSelector */ public static final int Spinner_android_dropDownSelector = 2; /**
@attr description Vertical offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownVerticalOffset}. @attr name android:dropDownVerticalOffset */ public static final int Spinner_android_dropDownVerticalOffset = 6; /**
@attr description Width of the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownWidth}. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 4; /**
@attr description Gravity setting for positioning the currently selected item.
This corresponds to the global attribute resource symbol {@link android.R.attr#gravity}. @attr name android:gravity */ public static final int Spinner_android_gravity = 0; /**
@attr description Background drawable to use for the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#popupBackground}. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 3; /**
@attr description Whether this spinner should mark child views as enabled/disabled when the spinner itself is enabled/disabled.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:disableChildrenWhenDisabled */ public static final int Spinner_disableChildrenWhenDisabled = 10; /**
@attr description Reference to a layout to use for displaying a prompt in the dropdown for spinnerMode="dropdown". This layout must contain a TextView with the id {@code @android:id/text1} to be populated with the prompt text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:popupPromptView */ public static final int Spinner_popupPromptView = 9; /**
@attr description The prompt to display when the spinner's dialog is shown.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:prompt */ public static final int Spinner_prompt = 7; /**
@attr description Display mode for spinner options.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | Spinner options will be presented to the user as an inline dropdown anchored to the spinner widget itself. |
This is a private symbol. @attr name com.sloop.fz3d:spinnerMode */ public static final int Spinner_spinnerMode = 8; /** Attributes that can be used with a SwitchCompat.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #SwitchCompat_android_textOff android:textOff} | Text to use when the switch is in the unchecked/"off" state. |
{@link #SwitchCompat_android_textOn android:textOn} | Text to use when the switch is in the checked/"on" state. |
{@link #SwitchCompat_android_thumb android:thumb} | Drawable to use as the "thumb" that switches back and forth. |
{@link #SwitchCompat_showText com.sloop.fz3d:showText} | Whether to draw on/off text. |
{@link #SwitchCompat_splitTrack com.sloop.fz3d:splitTrack} | Whether to split the track and leave a gap for the thumb drawable. |
{@link #SwitchCompat_switchMinWidth com.sloop.fz3d:switchMinWidth} | Minimum width for the switch component |
{@link #SwitchCompat_switchPadding com.sloop.fz3d:switchPadding} | Minimum space between the switch and caption text |
{@link #SwitchCompat_switchTextAppearance com.sloop.fz3d:switchTextAppearance} | TextAppearance style for text displayed on the switch thumb. |
{@link #SwitchCompat_thumbTextPadding com.sloop.fz3d:thumbTextPadding} | Amount of padding on either side of text within the switch thumb. |
{@link #SwitchCompat_track com.sloop.fz3d:track} | Drawable to use as the "track" that the switch thumb slides within. |
@attr description Text to use when the switch is in the unchecked/"off" state.
This corresponds to the global attribute resource symbol {@link android.R.attr#textOff}. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /**
@attr description Text to use when the switch is in the checked/"on" state.
This corresponds to the global attribute resource symbol {@link android.R.attr#textOn}. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /**
@attr description Drawable to use as the "thumb" that switches back and forth.
This corresponds to the global attribute resource symbol {@link android.R.attr#thumb}. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /**
@attr description Whether to draw on/off text.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:showText */ public static final int SwitchCompat_showText = 9; /**
@attr description Whether to split the track and leave a gap for the thumb drawable.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /**
@attr description Minimum width for the switch component
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /**
@attr description Minimum space between the switch and caption text
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /**
@attr description TextAppearance style for text displayed on the switch thumb.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /**
@attr description Amount of padding on either side of text within the switch thumb.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /**
@attr description Drawable to use as the "track" that the switch thumb slides within.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:track */ public static final int SwitchCompat_track = 3; /** Attributes that can be used with a TextAppearance.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #TextAppearance_android_textColor android:textColor} | |
{@link #TextAppearance_android_textSize android:textSize} | |
{@link #TextAppearance_android_textStyle android:textStyle} | |
{@link #TextAppearance_android_typeface android:typeface} | |
{@link #TextAppearance_textAllCaps com.sloop.fz3d:textAllCaps} | Present the text in ALL CAPS. |
This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /**
This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /**
This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /**
This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /**
@attr description Present the text in ALL CAPS. This may use a small-caps form when available.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a boolean value, either "true" or "false".
This is a private symbol. @attr name com.sloop.fz3d:textAllCaps */ public static final int TextAppearance_textAllCaps = 4; /** These are the standard attributes that make up a complete theme.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #Theme_actionBarDivider com.sloop.fz3d:actionBarDivider} | Custom divider drawable to use for elements in the action bar. |
{@link #Theme_actionBarItemBackground com.sloop.fz3d:actionBarItemBackground} | Custom item state list drawable background for action bar items. |
{@link #Theme_actionBarPopupTheme com.sloop.fz3d:actionBarPopupTheme} | Reference to a theme that should be used to inflate popups shown by widgets in the action bar. |
{@link #Theme_actionBarSize com.sloop.fz3d:actionBarSize} | Size of the Action Bar, including the contextual bar used to present Action Modes. |
{@link #Theme_actionBarSplitStyle com.sloop.fz3d:actionBarSplitStyle} | Reference to a style for the split Action Bar. |
{@link #Theme_actionBarStyle com.sloop.fz3d:actionBarStyle} | Reference to a style for the Action Bar |
{@link #Theme_actionBarTabBarStyle com.sloop.fz3d:actionBarTabBarStyle} | |
{@link #Theme_actionBarTabStyle com.sloop.fz3d:actionBarTabStyle} | Default style for tabs within an action bar |
{@link #Theme_actionBarTabTextStyle com.sloop.fz3d:actionBarTabTextStyle} | |
{@link #Theme_actionBarTheme com.sloop.fz3d:actionBarTheme} | Reference to a theme that should be used to inflate the action bar. |
{@link #Theme_actionBarWidgetTheme com.sloop.fz3d:actionBarWidgetTheme} | Reference to a theme that should be used to inflate widgets and layouts destined for the action bar. |
{@link #Theme_actionButtonStyle com.sloop.fz3d:actionButtonStyle} | Default action button style. |
{@link #Theme_actionDropDownStyle com.sloop.fz3d:actionDropDownStyle} | Default ActionBar dropdown style. |
{@link #Theme_actionMenuTextAppearance com.sloop.fz3d:actionMenuTextAppearance} | TextAppearance style that will be applied to text that appears within action menu items. |
{@link #Theme_actionMenuTextColor com.sloop.fz3d:actionMenuTextColor} | Color for text that appears within action menu items. |
{@link #Theme_actionModeBackground com.sloop.fz3d:actionModeBackground} | Background drawable to use for action mode UI |
{@link #Theme_actionModeCloseButtonStyle com.sloop.fz3d:actionModeCloseButtonStyle} | |
{@link #Theme_actionModeCloseDrawable com.sloop.fz3d:actionModeCloseDrawable} | Drawable to use for the close action mode button |
{@link #Theme_actionModeCopyDrawable com.sloop.fz3d:actionModeCopyDrawable} | Drawable to use for the Copy action button in Contextual Action Bar |
{@link #Theme_actionModeCutDrawable com.sloop.fz3d:actionModeCutDrawable} | Drawable to use for the Cut action button in Contextual Action Bar |
{@link #Theme_actionModeFindDrawable com.sloop.fz3d:actionModeFindDrawable} | Drawable to use for the Find action button in WebView selection action modes |
{@link #Theme_actionModePasteDrawable com.sloop.fz3d:actionModePasteDrawable} | Drawable to use for the Paste action button in Contextual Action Bar |
{@link #Theme_actionModePopupWindowStyle com.sloop.fz3d:actionModePopupWindowStyle} | PopupWindow style to use for action modes when showing as a window overlay. |
{@link #Theme_actionModeSelectAllDrawable com.sloop.fz3d:actionModeSelectAllDrawable} | Drawable to use for the Select all action button in Contextual Action Bar |
{@link #Theme_actionModeShareDrawable com.sloop.fz3d:actionModeShareDrawable} | Drawable to use for the Share action button in WebView selection action modes |
{@link #Theme_actionModeSplitBackground com.sloop.fz3d:actionModeSplitBackground} | Background drawable to use for action mode UI in the lower split bar |
{@link #Theme_actionModeStyle com.sloop.fz3d:actionModeStyle} | |
{@link #Theme_actionModeWebSearchDrawable com.sloop.fz3d:actionModeWebSearchDrawable} | Drawable to use for the Web Search action button in WebView selection action modes |
{@link #Theme_actionOverflowButtonStyle com.sloop.fz3d:actionOverflowButtonStyle} | |
{@link #Theme_actionOverflowMenuStyle com.sloop.fz3d:actionOverflowMenuStyle} | |
{@link #Theme_activityChooserViewStyle com.sloop.fz3d:activityChooserViewStyle} | Default ActivityChooserView style. |
{@link #Theme_alertDialogButtonGroupStyle com.sloop.fz3d:alertDialogButtonGroupStyle} | |
{@link #Theme_alertDialogCenterButtons com.sloop.fz3d:alertDialogCenterButtons} | |
{@link #Theme_alertDialogStyle com.sloop.fz3d:alertDialogStyle} | |
{@link #Theme_alertDialogTheme com.sloop.fz3d:alertDialogTheme} | Theme to use for alert dialogs spawned from this theme. |
{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle} | |
{@link #Theme_android_windowIsFloating android:windowIsFloating} | |
{@link #Theme_autoCompleteTextViewStyle com.sloop.fz3d:autoCompleteTextViewStyle} | Default AutoCompleteTextView style. |
{@link #Theme_buttonBarButtonStyle com.sloop.fz3d:buttonBarButtonStyle} | Style for buttons within button bars |
{@link #Theme_buttonBarNegativeButtonStyle com.sloop.fz3d:buttonBarNegativeButtonStyle} | Style for the "negative" buttons within button bars |
{@link #Theme_buttonBarNeutralButtonStyle com.sloop.fz3d:buttonBarNeutralButtonStyle} | Style for the "neutral" buttons within button bars |
{@link #Theme_buttonBarPositiveButtonStyle com.sloop.fz3d:buttonBarPositiveButtonStyle} | Style for the "positive" buttons within button bars |
{@link #Theme_buttonBarStyle com.sloop.fz3d:buttonBarStyle} | Style for button bars |
{@link #Theme_buttonStyle com.sloop.fz3d:buttonStyle} | Normal Button style. |
{@link #Theme_buttonStyleSmall com.sloop.fz3d:buttonStyleSmall} | Small Button style. |
{@link #Theme_checkboxStyle com.sloop.fz3d:checkboxStyle} | Default Checkbox style. |
{@link #Theme_checkedTextViewStyle com.sloop.fz3d:checkedTextViewStyle} | Default CheckedTextView style. |
{@link #Theme_colorAccent com.sloop.fz3d:colorAccent} | Bright complement to the primary branding color. |
{@link #Theme_colorButtonNormal com.sloop.fz3d:colorButtonNormal} | The color applied to framework buttons in their normal state. |
{@link #Theme_colorControlActivated com.sloop.fz3d:colorControlActivated} | The color applied to framework controls in their activated (ex. |
{@link #Theme_colorControlHighlight com.sloop.fz3d:colorControlHighlight} | The color applied to framework control highlights (ex. |
{@link #Theme_colorControlNormal com.sloop.fz3d:colorControlNormal} | The color applied to framework controls in their normal state. |
{@link #Theme_colorPrimary com.sloop.fz3d:colorPrimary} | The primary branding color for the app. |
{@link #Theme_colorPrimaryDark com.sloop.fz3d:colorPrimaryDark} | Dark variant of the primary branding color. |
{@link #Theme_colorSwitchThumbNormal com.sloop.fz3d:colorSwitchThumbNormal} | The color applied to framework switch thumbs in their normal state. |
{@link #Theme_dialogPreferredPadding com.sloop.fz3d:dialogPreferredPadding} | Preferred padding for dialog content. |
{@link #Theme_dialogTheme com.sloop.fz3d:dialogTheme} | Theme to use for dialogs spawned from this theme. |
{@link #Theme_dividerHorizontal com.sloop.fz3d:dividerHorizontal} | A drawable that may be used as a horizontal divider between visual elements. |
{@link #Theme_dividerVertical com.sloop.fz3d:dividerVertical} | A drawable that may be used as a vertical divider between visual elements. |
{@link #Theme_dropDownListViewStyle com.sloop.fz3d:dropDownListViewStyle} | ListPopupWindow compatibility |
{@link #Theme_dropdownListPreferredItemHeight com.sloop.fz3d:dropdownListPreferredItemHeight} | The preferred item height for dropdown lists. |
{@link #Theme_editTextBackground com.sloop.fz3d:editTextBackground} | EditText background drawable. |
{@link #Theme_editTextColor com.sloop.fz3d:editTextColor} | EditText text foreground color. |
{@link #Theme_editTextStyle com.sloop.fz3d:editTextStyle} | Default EditText style. |
{@link #Theme_homeAsUpIndicator com.sloop.fz3d:homeAsUpIndicator} | Specifies a drawable to use for the 'home as up' indicator. |
{@link #Theme_listChoiceBackgroundIndicator com.sloop.fz3d:listChoiceBackgroundIndicator} | Drawable used as a background for selected list items. |
{@link #Theme_listDividerAlertDialog com.sloop.fz3d:listDividerAlertDialog} | The list divider used in alert dialogs. |
{@link #Theme_listPopupWindowStyle com.sloop.fz3d:listPopupWindowStyle} | |
{@link #Theme_listPreferredItemHeight com.sloop.fz3d:listPreferredItemHeight} | The preferred list item height. |
{@link #Theme_listPreferredItemHeightLarge com.sloop.fz3d:listPreferredItemHeightLarge} | A larger, more robust list item height. |
{@link #Theme_listPreferredItemHeightSmall com.sloop.fz3d:listPreferredItemHeightSmall} | A smaller, sleeker list item height. |
{@link #Theme_listPreferredItemPaddingLeft com.sloop.fz3d:listPreferredItemPaddingLeft} | The preferred padding along the left edge of list items. |
{@link #Theme_listPreferredItemPaddingRight com.sloop.fz3d:listPreferredItemPaddingRight} | The preferred padding along the right edge of list items. |
{@link #Theme_panelBackground com.sloop.fz3d:panelBackground} | The background of a panel when it is inset from the left and right edges of the screen. |
{@link #Theme_panelMenuListTheme com.sloop.fz3d:panelMenuListTheme} | Default Panel Menu style. |
{@link #Theme_panelMenuListWidth com.sloop.fz3d:panelMenuListWidth} | Default Panel Menu width. |
{@link #Theme_popupMenuStyle com.sloop.fz3d:popupMenuStyle} | Default PopupMenu style. |
{@link #Theme_popupWindowStyle com.sloop.fz3d:popupWindowStyle} | Default PopupWindow style. |
{@link #Theme_radioButtonStyle com.sloop.fz3d:radioButtonStyle} | Default RadioButton style. |
{@link #Theme_ratingBarStyle com.sloop.fz3d:ratingBarStyle} | Default RatingBar style. |
{@link #Theme_searchViewStyle com.sloop.fz3d:searchViewStyle} | Style for the search query widget. |
{@link #Theme_selectableItemBackground com.sloop.fz3d:selectableItemBackground} | A style that may be applied to buttons or other selectable items that should react to pressed and focus states, but that do not have a clear visual border along the edges. |
{@link #Theme_selectableItemBackgroundBorderless com.sloop.fz3d:selectableItemBackgroundBorderless} | Background drawable for borderless standalone items that need focus/pressed states. |
{@link #Theme_spinnerDropDownItemStyle com.sloop.fz3d:spinnerDropDownItemStyle} | Default Spinner style. |
{@link #Theme_spinnerStyle com.sloop.fz3d:spinnerStyle} | Default Spinner style. |
{@link #Theme_switchStyle com.sloop.fz3d:switchStyle} | Default style for the Switch widget. |
{@link #Theme_textAppearanceLargePopupMenu com.sloop.fz3d:textAppearanceLargePopupMenu} | Text color, typeface, size, and style for the text inside of a popup menu. |
{@link #Theme_textAppearanceListItem com.sloop.fz3d:textAppearanceListItem} | The preferred TextAppearance for the primary text of list items. |
{@link #Theme_textAppearanceListItemSmall com.sloop.fz3d:textAppearanceListItemSmall} | The preferred TextAppearance for the primary text of small list items. |
{@link #Theme_textAppearanceSearchResultSubtitle com.sloop.fz3d:textAppearanceSearchResultSubtitle} | Text color, typeface, size, and style for system search result subtitle. |
{@link #Theme_textAppearanceSearchResultTitle com.sloop.fz3d:textAppearanceSearchResultTitle} | Text color, typeface, size, and style for system search result title. |
{@link #Theme_textAppearanceSmallPopupMenu com.sloop.fz3d:textAppearanceSmallPopupMenu} | Text color, typeface, size, and style for small text inside of a popup menu. |
{@link #Theme_textColorAlertDialogListItem com.sloop.fz3d:textColorAlertDialogListItem} | Color of list item text in alert dialogs. |
{@link #Theme_textColorSearchUrl com.sloop.fz3d:textColorSearchUrl} | Text color for urls in search suggestions, used by things like global search |
{@link #Theme_toolbarNavigationButtonStyle com.sloop.fz3d:toolbarNavigationButtonStyle} | Default Toolar NavigationButtonStyle |
{@link #Theme_toolbarStyle com.sloop.fz3d:toolbarStyle} | Default Toolbar style. |
{@link #Theme_windowActionBar com.sloop.fz3d:windowActionBar} | Flag indicating whether this window should have an Action Bar in place of the usual title bar. |
{@link #Theme_windowActionBarOverlay com.sloop.fz3d:windowActionBarOverlay} | Flag indicating whether this window's Action Bar should overlay application content. |
{@link #Theme_windowActionModeOverlay com.sloop.fz3d:windowActionModeOverlay} | Flag indicating whether action modes should overlay window content when there is not reserved space for their UI (such as an Action Bar). |
{@link #Theme_windowFixedHeightMajor com.sloop.fz3d:windowFixedHeightMajor} | A fixed height for the window along the major axis of the screen, that is, when in portrait. |
{@link #Theme_windowFixedHeightMinor com.sloop.fz3d:windowFixedHeightMinor} | A fixed height for the window along the minor axis of the screen, that is, when in landscape. |
{@link #Theme_windowFixedWidthMajor com.sloop.fz3d:windowFixedWidthMajor} | A fixed width for the window along the major axis of the screen, that is, when in landscape. |
{@link #Theme_windowFixedWidthMinor com.sloop.fz3d:windowFixedWidthMinor} | A fixed width for the window along the minor axis of the screen, that is, when in portrait. |
{@link #Theme_windowMinWidthMajor com.sloop.fz3d:windowMinWidthMajor} | The minimum width the window is allowed to be, along the major axis of the screen. |
{@link #Theme_windowMinWidthMinor com.sloop.fz3d:windowMinWidthMinor} | The minimum width the window is allowed to be, along the minor axis of the screen. |
{@link #Theme_windowNoTitle com.sloop.fz3d:windowNoTitle} | Flag indicating whether there should be no title on this window. |
@attr description Custom divider drawable to use for elements in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarDivider */ public static final int Theme_actionBarDivider = 23; /**
@attr description Custom item state list drawable background for action bar items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarItemBackground */ public static final int Theme_actionBarItemBackground = 24; /**
@attr description Reference to a theme that should be used to inflate popups shown by widgets in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarPopupTheme */ public static final int Theme_actionBarPopupTheme = 17; /**
@attr description Size of the Action Bar, including the contextual bar used to present Action Modes.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
May be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
wrap_content | 0 |
This is a private symbol. @attr name com.sloop.fz3d:actionBarSize */ public static final int Theme_actionBarSize = 22; /**
@attr description Reference to a style for the split Action Bar. This style controls the split component that holds the menu/action buttons. actionBarStyle is still used for the primary bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarSplitStyle */ public static final int Theme_actionBarSplitStyle = 19; /**
@attr description Reference to a style for the Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarStyle */ public static final int Theme_actionBarStyle = 18; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:actionBarTabBarStyle
*/
public static final int Theme_actionBarTabBarStyle = 13;
/**
@attr description Default style for tabs within an action bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarTabStyle */ public static final int Theme_actionBarTabStyle = 12; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:actionBarTabTextStyle
*/
public static final int Theme_actionBarTabTextStyle = 14;
/**
@attr description Reference to a theme that should be used to inflate the action bar. This will be inherited by any widget inflated into the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarTheme */ public static final int Theme_actionBarTheme = 20; /**
@attr description Reference to a theme that should be used to inflate widgets and layouts destined for the action bar. Most of the time this will be a reference to the current theme, but when the action bar has a significantly different contrast profile than the rest of the activity the difference can become important. If this is set to @null the current theme will be used.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionBarWidgetTheme */ public static final int Theme_actionBarWidgetTheme = 21; /**
@attr description Default action button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionButtonStyle */ public static final int Theme_actionButtonStyle = 49; /**
@attr description Default ActionBar dropdown style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 45; /**
@attr description TextAppearance style that will be applied to text that appears within action menu items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionMenuTextAppearance */ public static final int Theme_actionMenuTextAppearance = 25; /**
@attr description Color for text that appears within action menu items. Color for text that appears within action menu items.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:actionMenuTextColor */ public static final int Theme_actionMenuTextColor = 26; /**
@attr description Background drawable to use for action mode UI
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeBackground */ public static final int Theme_actionModeBackground = 29; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:actionModeCloseButtonStyle
*/
public static final int Theme_actionModeCloseButtonStyle = 28;
/**
@attr description Drawable to use for the close action mode button
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeCloseDrawable */ public static final int Theme_actionModeCloseDrawable = 31; /**
@attr description Drawable to use for the Copy action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeCopyDrawable */ public static final int Theme_actionModeCopyDrawable = 33; /**
@attr description Drawable to use for the Cut action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeCutDrawable */ public static final int Theme_actionModeCutDrawable = 32; /**
@attr description Drawable to use for the Find action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeFindDrawable */ public static final int Theme_actionModeFindDrawable = 37; /**
@attr description Drawable to use for the Paste action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModePasteDrawable */ public static final int Theme_actionModePasteDrawable = 34; /**
@attr description PopupWindow style to use for action modes when showing as a window overlay.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModePopupWindowStyle */ public static final int Theme_actionModePopupWindowStyle = 39; /**
@attr description Drawable to use for the Select all action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeSelectAllDrawable */ public static final int Theme_actionModeSelectAllDrawable = 35; /**
@attr description Drawable to use for the Share action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeShareDrawable */ public static final int Theme_actionModeShareDrawable = 36; /**
@attr description Background drawable to use for action mode UI in the lower split bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeSplitBackground */ public static final int Theme_actionModeSplitBackground = 30; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionModeStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:actionModeStyle
*/
public static final int Theme_actionModeStyle = 27;
/**
@attr description Drawable to use for the Web Search action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:actionModeWebSearchDrawable */ public static final int Theme_actionModeWebSearchDrawable = 38; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:actionOverflowButtonStyle
*/
public static final int Theme_actionOverflowButtonStyle = 15;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:actionOverflowMenuStyle
*/
public static final int Theme_actionOverflowMenuStyle = 16;
/**
@attr description Default ActivityChooserView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:activityChooserViewStyle */ public static final int Theme_activityChooserViewStyle = 56; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:alertDialogButtonGroupStyle
*/
public static final int Theme_alertDialogButtonGroupStyle = 89;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #Theme} array.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:alertDialogCenterButtons
*/
public static final int Theme_alertDialogCenterButtons = 90;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#alertDialogStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:alertDialogStyle
*/
public static final int Theme_alertDialogStyle = 88;
/**
@attr description Theme to use for alert dialogs spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:alertDialogTheme */ public static final int Theme_alertDialogTheme = 91; /**
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #Theme} array. @attr name android:windowAnimationStyle */ public static final int Theme_android_windowAnimationStyle = 1; /**
This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #Theme} array. @attr name android:windowIsFloating */ public static final int Theme_android_windowIsFloating = 0; /**
@attr description Default AutoCompleteTextView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:autoCompleteTextViewStyle */ public static final int Theme_autoCompleteTextViewStyle = 96; /**
@attr description Style for buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonBarButtonStyle */ public static final int Theme_buttonBarButtonStyle = 51; /**
@attr description Style for the "negative" buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonBarNegativeButtonStyle */ public static final int Theme_buttonBarNegativeButtonStyle = 94; /**
@attr description Style for the "neutral" buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonBarNeutralButtonStyle */ public static final int Theme_buttonBarNeutralButtonStyle = 95; /**
@attr description Style for the "positive" buttons within button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonBarPositiveButtonStyle */ public static final int Theme_buttonBarPositiveButtonStyle = 93; /**
@attr description Style for button bars
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonBarStyle */ public static final int Theme_buttonBarStyle = 50; /**
@attr description Normal Button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonStyle */ public static final int Theme_buttonStyle = 97; /**
@attr description Small Button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:buttonStyleSmall */ public static final int Theme_buttonStyleSmall = 98; /**
@attr description Default Checkbox style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:checkboxStyle */ public static final int Theme_checkboxStyle = 99; /**
@attr description Default CheckedTextView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:checkedTextViewStyle */ public static final int Theme_checkedTextViewStyle = 100; /**
@attr description Bright complement to the primary branding color. By default, this is the color applied to framework controls (via colorControlActivated).
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorAccent */ public static final int Theme_colorAccent = 82; /**
@attr description The color applied to framework buttons in their normal state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorButtonNormal */ public static final int Theme_colorButtonNormal = 86; /**
@attr description The color applied to framework controls in their activated (ex. checked) state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorControlActivated */ public static final int Theme_colorControlActivated = 84; /**
@attr description The color applied to framework control highlights (ex. ripples, list selectors).
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorControlHighlight */ public static final int Theme_colorControlHighlight = 85; /**
@attr description The color applied to framework controls in their normal state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorControlNormal */ public static final int Theme_colorControlNormal = 83; /**
@attr description The primary branding color for the app. By default, this is the color applied to the action bar background.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorPrimary */ public static final int Theme_colorPrimary = 80; /**
@attr description Dark variant of the primary branding color. By default, this is the color applied to the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorPrimaryDark */ public static final int Theme_colorPrimaryDark = 81; /**
@attr description The color applied to framework switch thumbs in their normal state.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:colorSwitchThumbNormal */ public static final int Theme_colorSwitchThumbNormal = 87; /**
@attr description Preferred padding for dialog content.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:dialogPreferredPadding */ public static final int Theme_dialogPreferredPadding = 43; /**
@attr description Theme to use for dialogs spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:dialogTheme */ public static final int Theme_dialogTheme = 42; /**
@attr description A drawable that may be used as a horizontal divider between visual elements.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:dividerHorizontal */ public static final int Theme_dividerHorizontal = 55; /**
@attr description A drawable that may be used as a vertical divider between visual elements.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:dividerVertical */ public static final int Theme_dividerVertical = 54; /**
@attr description ListPopupWindow compatibility
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:dropDownListViewStyle */ public static final int Theme_dropDownListViewStyle = 72; /**
@attr description The preferred item height for dropdown lists.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 46; /**
@attr description EditText background drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:editTextBackground */ public static final int Theme_editTextBackground = 62; /**
@attr description EditText text foreground color.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:editTextColor */ public static final int Theme_editTextColor = 61; /**
@attr description Default EditText style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:editTextStyle */ public static final int Theme_editTextStyle = 101; /**
@attr description Specifies a drawable to use for the 'home as up' indicator.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:homeAsUpIndicator */ public static final int Theme_homeAsUpIndicator = 48; /**
@attr description Drawable used as a background for selected list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 79; /**
@attr description The list divider used in alert dialogs.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:listDividerAlertDialog */ public static final int Theme_listDividerAlertDialog = 44; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #Theme} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:listPopupWindowStyle
*/
public static final int Theme_listPopupWindowStyle = 73;
/**
@attr description The preferred list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:listPreferredItemHeight */ public static final int Theme_listPreferredItemHeight = 67; /**
@attr description A larger, more robust list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:listPreferredItemHeightLarge */ public static final int Theme_listPreferredItemHeightLarge = 69; /**
@attr description A smaller, sleeker list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:listPreferredItemHeightSmall */ public static final int Theme_listPreferredItemHeightSmall = 68; /**
@attr description The preferred padding along the left edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:listPreferredItemPaddingLeft */ public static final int Theme_listPreferredItemPaddingLeft = 70; /**
@attr description The preferred padding along the right edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:listPreferredItemPaddingRight */ public static final int Theme_listPreferredItemPaddingRight = 71; /**
@attr description The background of a panel when it is inset from the left and right edges of the screen.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:panelBackground */ public static final int Theme_panelBackground = 76; /**
@attr description Default Panel Menu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 78; /**
@attr description Default Panel Menu width.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 77; /**
@attr description Default PopupMenu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:popupMenuStyle */ public static final int Theme_popupMenuStyle = 59; /**
@attr description Default PopupWindow style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:popupWindowStyle */ public static final int Theme_popupWindowStyle = 60; /**
@attr description Default RadioButton style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:radioButtonStyle */ public static final int Theme_radioButtonStyle = 102; /**
@attr description Default RatingBar style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:ratingBarStyle */ public static final int Theme_ratingBarStyle = 103; /**
@attr description Style for the search query widget.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:searchViewStyle */ public static final int Theme_searchViewStyle = 66; /**
@attr description A style that may be applied to buttons or other selectable items that should react to pressed and focus states, but that do not have a clear visual border along the edges.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:selectableItemBackground */ public static final int Theme_selectableItemBackground = 52; /**
@attr description Background drawable for borderless standalone items that need focus/pressed states.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:selectableItemBackgroundBorderless */ public static final int Theme_selectableItemBackgroundBorderless = 53; /**
@attr description Default Spinner style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:spinnerDropDownItemStyle */ public static final int Theme_spinnerDropDownItemStyle = 47; /**
@attr description Default Spinner style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:spinnerStyle */ public static final int Theme_spinnerStyle = 104; /**
@attr description Default style for the Switch widget.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:switchStyle */ public static final int Theme_switchStyle = 105; /**
@attr description Text color, typeface, size, and style for the text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:textAppearanceLargePopupMenu */ public static final int Theme_textAppearanceLargePopupMenu = 40; /**
@attr description The preferred TextAppearance for the primary text of list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:textAppearanceListItem */ public static final int Theme_textAppearanceListItem = 74; /**
@attr description The preferred TextAppearance for the primary text of small list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:textAppearanceListItemSmall */ public static final int Theme_textAppearanceListItemSmall = 75; /**
@attr description Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:textAppearanceSearchResultSubtitle */ public static final int Theme_textAppearanceSearchResultSubtitle = 64; /**
@attr description Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:textAppearanceSearchResultTitle */ public static final int Theme_textAppearanceSearchResultTitle = 63; /**
@attr description Text color, typeface, size, and style for small text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:textAppearanceSmallPopupMenu */ public static final int Theme_textAppearanceSmallPopupMenu = 41; /**
@attr description Color of list item text in alert dialogs.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:textColorAlertDialogListItem */ public static final int Theme_textColorAlertDialogListItem = 92; /**
@attr description Text color for urls in search suggestions, used by things like global search
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name com.sloop.fz3d:textColorSearchUrl */ public static final int Theme_textColorSearchUrl = 65; /**
@attr description Default Toolar NavigationButtonStyle
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:toolbarNavigationButtonStyle */ public static final int Theme_toolbarNavigationButtonStyle = 58; /**
@attr description Default Toolbar style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:toolbarStyle */ public static final int Theme_toolbarStyle = 57; /**
@attr description Flag indicating whether this window should have an Action Bar in place of the usual title bar.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowActionBar */ public static final int Theme_windowActionBar = 2; /**
@attr description Flag indicating whether this window's Action Bar should overlay application content. Does nothing if the window would not have an Action Bar.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowActionBarOverlay */ public static final int Theme_windowActionBarOverlay = 4; /**
@attr description Flag indicating whether action modes should overlay window content when there is not reserved space for their UI (such as an Action Bar).
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowActionModeOverlay */ public static final int Theme_windowActionModeOverlay = 5; /**
@attr description A fixed height for the window along the major axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowFixedHeightMajor */ public static final int Theme_windowFixedHeightMajor = 9; /**
@attr description A fixed height for the window along the minor axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowFixedHeightMinor */ public static final int Theme_windowFixedHeightMinor = 7; /**
@attr description A fixed width for the window along the major axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowFixedWidthMajor */ public static final int Theme_windowFixedWidthMajor = 6; /**
@attr description A fixed width for the window along the minor axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowFixedWidthMinor */ public static final int Theme_windowFixedWidthMinor = 8; /**
@attr description The minimum width the window is allowed to be, along the major axis of the screen. That is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowMinWidthMajor */ public static final int Theme_windowMinWidthMajor = 10; /**
@attr description The minimum width the window is allowed to be, along the minor axis of the screen. That is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowMinWidthMinor */ public static final int Theme_windowMinWidthMinor = 11; /**
@attr description Flag indicating whether there should be no title on this window.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:windowNoTitle */ public static final int Theme_windowNoTitle = 3; /** Attributes that can be used with a Toolbar.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #Toolbar_android_gravity android:gravity} | |
{@link #Toolbar_android_minHeight android:minHeight} | Allows us to read in the minHeight attr pre-v16 |
{@link #Toolbar_collapseContentDescription com.sloop.fz3d:collapseContentDescription} | Text to set as the content description for the collapse button. |
{@link #Toolbar_collapseIcon com.sloop.fz3d:collapseIcon} | |
{@link #Toolbar_contentInsetEnd com.sloop.fz3d:contentInsetEnd} | Minimum inset for content views within a bar. |
{@link #Toolbar_contentInsetLeft com.sloop.fz3d:contentInsetLeft} | Minimum inset for content views within a bar. |
{@link #Toolbar_contentInsetRight com.sloop.fz3d:contentInsetRight} | Minimum inset for content views within a bar. |
{@link #Toolbar_contentInsetStart com.sloop.fz3d:contentInsetStart} | Minimum inset for content views within a bar. |
{@link #Toolbar_maxButtonHeight com.sloop.fz3d:maxButtonHeight} | |
{@link #Toolbar_navigationContentDescription com.sloop.fz3d:navigationContentDescription} | Text to set as the content description for the navigation button located at the start of the toolbar. |
{@link #Toolbar_navigationIcon com.sloop.fz3d:navigationIcon} | Icon drawable to use for the navigation button located at the start of the toolbar. |
{@link #Toolbar_popupTheme com.sloop.fz3d:popupTheme} | Reference to a theme that should be used to inflate popups shown by widgets in the toolbar. |
{@link #Toolbar_subtitle com.sloop.fz3d:subtitle} | Specifies subtitle text used for navigationMode="normal" |
{@link #Toolbar_subtitleTextAppearance com.sloop.fz3d:subtitleTextAppearance} | |
{@link #Toolbar_title com.sloop.fz3d:title} | |
{@link #Toolbar_titleMarginBottom com.sloop.fz3d:titleMarginBottom} | |
{@link #Toolbar_titleMarginEnd com.sloop.fz3d:titleMarginEnd} | |
{@link #Toolbar_titleMarginStart com.sloop.fz3d:titleMarginStart} | |
{@link #Toolbar_titleMarginTop com.sloop.fz3d:titleMarginTop} | |
{@link #Toolbar_titleMargins com.sloop.fz3d:titleMargins} | |
{@link #Toolbar_titleTextAppearance com.sloop.fz3d:titleTextAppearance} |
This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /**
@attr description Allows us to read in the minHeight attr pre-v16
This corresponds to the global attribute resource symbol {@link android.R.attr#minHeight}. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /**
@attr description Text to set as the content description for the collapse button.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 18; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:collapseIcon
*/
public static final int Toolbar_collapseIcon = 17;
/**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 5; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 6; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetRight */ public static final int Toolbar_contentInsetRight = 7; /**
@attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:contentInsetStart */ public static final int Toolbar_contentInsetStart = 4; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 16;
/**
@attr description Text to set as the content description for the navigation button located at the start of the toolbar.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 20; /**
@attr description Icon drawable to use for the navigation button located at the start of the toolbar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:navigationIcon */ public static final int Toolbar_navigationIcon = 19; /**
@attr description Reference to a theme that should be used to inflate popups shown by widgets in the toolbar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:popupTheme */ public static final int Toolbar_popupTheme = 8; /**
@attr description Specifies subtitle text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:subtitle */ public static final int Toolbar_subtitle = 3; /**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 10;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#title} attribute's value can be found in the {@link #Toolbar} array.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:title
*/
public static final int Toolbar_title = 2;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 15;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 13;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 12;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 14;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name com.sloop.fz3d:titleMargins
*/
public static final int Toolbar_titleMargins = 11;
/**
This symbol is the offset where the {@link com.sloop.fz3d.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
@attr name com.sloop.fz3d:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 9;
/** Attributes that can be used with a View.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #View_android_focusable android:focusable} | Boolean that controls whether a view can take focus. |
{@link #View_android_theme android:theme} | Specifies a theme override for a view. |
{@link #View_backgroundTint com.sloop.fz3d:backgroundTint} | Tint to apply to the background. |
{@link #View_backgroundTintMode com.sloop.fz3d:backgroundTintMode} | Blending mode used to apply the background tint. |
{@link #View_paddingEnd com.sloop.fz3d:paddingEnd} | Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. |
{@link #View_paddingStart com.sloop.fz3d:paddingStart} | Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. |
{@link #View_theme com.sloop.fz3d:theme} | Deprecated. |
@attr description Boolean that controls whether a view can take focus. By default the user can not move focus to a view; by setting this attribute to true the view is allowed to take focus. This value does not impact the behavior of directly calling {@link android.view.View#requestFocus}, which will always request focus regardless of this view. It only impacts where focus navigation will try to move focus.
This corresponds to the global attribute resource symbol {@link android.R.attr#focusable}. @attr name android:focusable */ public static final int View_android_focusable = 1; /**
@attr description Specifies a theme override for a view. When a theme override is set, the view will be inflated using a {@link android.content.Context} themed with the specified resource.
This corresponds to the global attribute resource symbol {@link android.R.attr#theme}. @attr name android:theme */ public static final int View_android_theme = 0; /**
@attr description Tint to apply to the background.
Must be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:backgroundTint */ public static final int View_backgroundTint = 5; /**
@attr description Blending mode used to apply the background tint.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
src_over | 3 | The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] |
src_in | 5 | The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] |
src_atop | 9 | The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] |
multiply | 14 | Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] |
screen | 15 | [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] |
This is a private symbol. @attr name com.sloop.fz3d:backgroundTintMode */ public static final int View_backgroundTintMode = 6; /**
@attr description Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:paddingEnd */ public static final int View_paddingEnd = 3; /**
@attr description Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name com.sloop.fz3d:paddingStart */ public static final int View_paddingStart = 2; /**
@attr description Deprecated.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name com.sloop.fz3d:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewStubCompat.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ViewStubCompat_android_id android:id} | |
{@link #ViewStubCompat_android_inflatedId android:inflatedId} | Overrides the id of the inflated View with this value. |
{@link #ViewStubCompat_android_layout android:layout} | Supply an identifier for the layout resource to inflate when the ViewStub becomes visible or when forced to do so. |
This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /**
@attr description Overrides the id of the inflated View with this value.
This corresponds to the global attribute resource symbol {@link android.R.attr#inflatedId}. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /**
@attr description Supply an identifier for the layout resource to inflate when the ViewStub becomes visible or when forced to do so. The layout resource must be a valid reference to a layout.
This corresponds to the global attribute
resource symbol {@link android.R.attr#layout}.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
================================================
FILE: Sample/proguard-project.txt
================================================
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
================================================
FILE: Sample/project.properties
================================================
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-22
android.library.reference.1=../appcompat_v7
================================================
FILE: Sample/res/layout/activity_main.xml
================================================