blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 7
332
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
50
| license_type
stringclasses 2
values | repo_name
stringlengths 7
115
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 557
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
684M
⌀ | star_events_count
int64 0
77.7k
| fork_events_count
int64 0
48k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 82
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
5.41M
| extension
stringclasses 11
values | content
stringlengths 7
5.41M
| authors
listlengths 1
1
| author
stringlengths 0
161
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ee09f539f54e415cbcccdac1cb702f062c008dcb | 14b8a1ab312e2f529535c5887b0e02a77dd12ee5 | /src/main/java/com/ph4/s1/store/pay/OrderListDTO.java | 6c0b188b1b63e37ad0f97f4385424b79f467f34f | [] | no_license | hunputer/webPawinhand_copysite | 144ad256489d84151eb5742d84f7ed831cfaf121 | f8611e754944f45c7916edd1cf21b9be11a539bb | refs/heads/main | 2023-03-22T12:04:49.340415 | 2023-03-19T14:06:25 | 2023-03-19T14:06:25 | 315,251,536 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,636 | java | package com.ph4.s1.store.pay;
import java.sql.Date;
import org.springframework.stereotype.Component;
@Component
public class OrderListDTO {
private long order_num;
private String orderId;
private String toName;
private String toAddress;
private long toZipcode;
private String toPhone;
private String toTel;
private Date regDate;
private long total;
private String addComment;
public long getOrder_num() {
return order_num;
}
public void setOrder_num(long order_num) {
this.order_num = order_num;
}
public String getOrderId() {
return orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getToName() {
return toName;
}
public void setToName(String toName) {
this.toName = toName;
}
public String getToAddress() {
return toAddress;
}
public void setToAddress(String toAddress) {
this.toAddress = toAddress;
}
public long getToZipcode() {
return toZipcode;
}
public void setToZipcode(long toZipcode) {
this.toZipcode = toZipcode;
}
public String getToPhone() {
return toPhone;
}
public void setToPhone(String toPhone) {
this.toPhone = toPhone;
}
public String getToTel() {
return toTel;
}
public void setToTel(String toTel) {
this.toTel = toTel;
}
public Date getRegDate() {
return regDate;
}
public void setRegDate(Date regDate) {
this.regDate = regDate;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
public String getAddComment() {
return addComment;
}
public void setAddComment(String addComment) {
this.addComment = addComment;
}
}
| [
"[email protected]"
] | |
52abc5efb9eb2ce833531b19590c8d7fd090bc52 | 8dbd7f175b4b6804919b15264d9bcca31a1202c3 | /src/main/java/com/vonallin/lib/jumper/exception/FragmentCreateException.java | 38aaddf7c9272da6726a0da67db3db706517caf6 | [
"MIT"
] | permissive | Allin127/android-lib-jumper | 913612f8519752aed040eaf678e662b1ea90b313 | 620d7c7d2ab20ef6ce3dd25d936b284abe073ce1 | refs/heads/master | 2020-05-06T15:17:13.328804 | 2019-05-30T15:31:04 | 2019-05-30T15:31:04 | 180,181,828 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 237 | java | package com.vonallin.lib.jumper.exception;
public class FragmentCreateException extends RuntimeException {
public FragmentCreateException(){
}
public FragmentCreateException(String Message){
super(Message);
}
}
| [
"[email protected]"
] | |
c6e6711856c74b7e60dd6c1db6f87388c0b447f5 | 037b7bee6c8220bfe94ca3e7e19e7d7233531dd0 | /src/main/java/com/michiget/todaygye/model/SelectDao.java | de7bddf854abad458ab18ba9ab0debe69466010a | [] | no_license | devarchi33/TodayGye | fd2e343ba0f7b4a04c134b8a42e9348bb7eb4de7 | 615767428f33aa9b94f597461a935141a5b7c5f1 | refs/heads/master | 2020-12-26T11:15:57.701908 | 2014-10-16T11:18:41 | 2014-10-16T11:18:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 764 | java | package com.michiget.todaygye.model;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.annotation.Resource;
import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;
import org.springframework.stereotype.Repository;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.michiget.todaygye.beans.UserInfo;
@Repository
public class SelectDao extends SqlMapClientDaoSupport {
@Resource(name = "sqlMapClient")
public void setSuperSqlMapClient(SqlMapClient sqlMapClient) {
super.setSqlMapClient(sqlMapClient);
}
@SuppressWarnings("unchecked")
public ArrayList<UserInfo> getMemberList(int page) throws SQLException {
return (ArrayList<UserInfo>) getSqlMapClient().queryForList(
"getMemberList", null, page, 8);
}
}
| [
"[email protected]"
] | |
2e97a24b21d8d781980ae9931ef36f543f5d18bd | e108d65747c07078ae7be6dcd6369ac359d098d7 | /android/support/design/widget/FloatingActionButton.java | 61b08ab176af8f1194659df12742dafcc290f250 | [
"MIT"
] | permissive | kelu124/pyS3 | 50f30b51483bf8f9581427d2a424e239cfce5604 | 86eb139d971921418d6a62af79f2868f9c7704d5 | refs/heads/master | 2020-03-13T01:51:42.054846 | 2018-04-24T21:03:03 | 2018-04-24T21:03:03 | 130,913,008 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,856 | java | package android.support.design.widget;
import android.annotation.TargetApi;
import android.content.Context;
import android.content.res.ColorStateList;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.PorterDuff.Mode;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.os.Build.VERSION;
import android.support.annotation.ColorInt;
import android.support.annotation.DrawableRes;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.RestrictTo;
import android.support.annotation.RestrictTo.Scope;
import android.support.annotation.VisibleForTesting;
import android.support.design.C0010R;
import android.support.design.widget.CoordinatorLayout.DefaultBehavior;
import android.support.design.widget.CoordinatorLayout.LayoutParams;
import android.support.v4.content.res.ConfigurationHelper;
import android.support.v4.view.ViewCompat;
import android.support.v7.widget.AppCompatImageHelper;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.MeasureSpec;
import android.view.ViewGroup;
import com.itextpdf.text.pdf.BaseField;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.List;
@DefaultBehavior(Behavior.class)
public class FloatingActionButton extends VisibilityAwareImageButton {
private static final int AUTO_MINI_LARGEST_SCREEN_WIDTH = 470;
private static final String LOG_TAG = "FloatingActionButton";
public static final int SIZE_AUTO = -1;
public static final int SIZE_MINI = 1;
public static final int SIZE_NORMAL = 0;
private ColorStateList mBackgroundTint;
private Mode mBackgroundTintMode;
private int mBorderWidth;
boolean mCompatPadding;
private AppCompatImageHelper mImageHelper;
int mImagePadding;
private FloatingActionButtonImpl mImpl;
private int mMaxImageSize;
private int mRippleColor;
final Rect mShadowPadding;
private int mSize;
private final Rect mTouchArea;
public static class Behavior extends android.support.design.widget.CoordinatorLayout.Behavior<FloatingActionButton> {
private static final boolean AUTO_HIDE_DEFAULT = true;
private boolean mAutoHideEnabled;
private OnVisibilityChangedListener mInternalAutoHideListener;
private Rect mTmpRect;
public Behavior() {
this.mAutoHideEnabled = true;
}
public Behavior(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs, C0010R.styleable.FloatingActionButton_Behavior_Layout);
this.mAutoHideEnabled = a.getBoolean(C0010R.styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide, true);
a.recycle();
}
public void setAutoHideEnabled(boolean autoHide) {
this.mAutoHideEnabled = autoHide;
}
public boolean isAutoHideEnabled() {
return this.mAutoHideEnabled;
}
public void onAttachedToLayoutParams(@NonNull LayoutParams lp) {
if (lp.dodgeInsetEdges == 0) {
lp.dodgeInsetEdges = 80;
}
}
public boolean onDependentViewChanged(CoordinatorLayout parent, FloatingActionButton child, View dependency) {
if (dependency instanceof AppBarLayout) {
updateFabVisibilityForAppBarLayout(parent, (AppBarLayout) dependency, child);
} else if (isBottomSheet(dependency)) {
updateFabVisibilityForBottomSheet(dependency, child);
}
return false;
}
private static boolean isBottomSheet(@NonNull View view) {
ViewGroup.LayoutParams lp = view.getLayoutParams();
if (lp instanceof LayoutParams) {
return ((LayoutParams) lp).getBehavior() instanceof BottomSheetBehavior;
}
return false;
}
@VisibleForTesting
void setInternalAutoHideListener(OnVisibilityChangedListener listener) {
this.mInternalAutoHideListener = listener;
}
private boolean shouldUpdateVisibility(View dependency, FloatingActionButton child) {
LayoutParams lp = (LayoutParams) child.getLayoutParams();
if (this.mAutoHideEnabled && lp.getAnchorId() == dependency.getId() && child.getUserSetVisibility() == 0) {
return true;
}
return false;
}
private boolean updateFabVisibilityForAppBarLayout(CoordinatorLayout parent, AppBarLayout appBarLayout, FloatingActionButton child) {
if (!shouldUpdateVisibility(appBarLayout, child)) {
return false;
}
if (this.mTmpRect == null) {
this.mTmpRect = new Rect();
}
Rect rect = this.mTmpRect;
ViewGroupUtils.getDescendantRect(parent, appBarLayout, rect);
if (rect.bottom <= appBarLayout.getMinimumHeightForVisibleOverlappingContent()) {
child.hide(this.mInternalAutoHideListener, false);
} else {
child.show(this.mInternalAutoHideListener, false);
}
return true;
}
private boolean updateFabVisibilityForBottomSheet(View bottomSheet, FloatingActionButton child) {
if (!shouldUpdateVisibility(bottomSheet, child)) {
return false;
}
if (bottomSheet.getTop() < (child.getHeight() / 2) + ((LayoutParams) child.getLayoutParams()).topMargin) {
child.hide(this.mInternalAutoHideListener, false);
} else {
child.show(this.mInternalAutoHideListener, false);
}
return true;
}
public boolean onLayoutChild(CoordinatorLayout parent, FloatingActionButton child, int layoutDirection) {
List<View> dependencies = parent.getDependencies(child);
int count = dependencies.size();
for (int i = 0; i < count; i++) {
View dependency = (View) dependencies.get(i);
if (!(dependency instanceof AppBarLayout)) {
if (isBottomSheet(dependency) && updateFabVisibilityForBottomSheet(dependency, child)) {
break;
}
} else if (updateFabVisibilityForAppBarLayout(parent, (AppBarLayout) dependency, child)) {
break;
}
}
parent.onLayoutChild(child, layoutDirection);
offsetIfNeeded(parent, child);
return true;
}
public boolean getInsetDodgeRect(@NonNull CoordinatorLayout parent, @NonNull FloatingActionButton child, @NonNull Rect rect) {
Rect shadowPadding = child.mShadowPadding;
rect.set(child.getLeft() + shadowPadding.left, child.getTop() + shadowPadding.top, child.getRight() - shadowPadding.right, child.getBottom() - shadowPadding.bottom);
return true;
}
private void offsetIfNeeded(CoordinatorLayout parent, FloatingActionButton fab) {
Rect padding = fab.mShadowPadding;
if (padding != null && padding.centerX() > 0 && padding.centerY() > 0) {
LayoutParams lp = (LayoutParams) fab.getLayoutParams();
int offsetTB = 0;
int offsetLR = 0;
if (fab.getRight() >= parent.getWidth() - lp.rightMargin) {
offsetLR = padding.right;
} else if (fab.getLeft() <= lp.leftMargin) {
offsetLR = -padding.left;
}
if (fab.getBottom() >= parent.getHeight() - lp.bottomMargin) {
offsetTB = padding.bottom;
} else if (fab.getTop() <= lp.topMargin) {
offsetTB = -padding.top;
}
if (offsetTB != 0) {
ViewCompat.offsetTopAndBottom(fab, offsetTB);
}
if (offsetLR != 0) {
ViewCompat.offsetLeftAndRight(fab, offsetLR);
}
}
}
}
public static abstract class OnVisibilityChangedListener {
public void onShown(FloatingActionButton fab) {
}
public void onHidden(FloatingActionButton fab) {
}
}
private class ShadowDelegateImpl implements ShadowViewDelegate {
ShadowDelegateImpl() {
}
public float getRadius() {
return ((float) FloatingActionButton.this.getSizeDimension()) / BaseField.BORDER_WIDTH_MEDIUM;
}
public void setShadowPadding(int left, int top, int right, int bottom) {
FloatingActionButton.this.mShadowPadding.set(left, top, right, bottom);
FloatingActionButton.this.setPadding(FloatingActionButton.this.mImagePadding + left, FloatingActionButton.this.mImagePadding + top, FloatingActionButton.this.mImagePadding + right, FloatingActionButton.this.mImagePadding + bottom);
}
public void setBackgroundDrawable(Drawable background) {
super.setBackgroundDrawable(background);
}
public boolean isCompatPaddingEnabled() {
return FloatingActionButton.this.mCompatPadding;
}
}
@RestrictTo({Scope.LIBRARY_GROUP})
@Retention(RetentionPolicy.SOURCE)
public @interface Size {
}
public /* bridge */ /* synthetic */ void setVisibility(int i) {
super.setVisibility(i);
}
public FloatingActionButton(Context context) {
this(context, null);
}
public FloatingActionButton(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public FloatingActionButton(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
this.mShadowPadding = new Rect();
this.mTouchArea = new Rect();
ThemeUtils.checkAppCompatTheme(context);
TypedArray a = context.obtainStyledAttributes(attrs, C0010R.styleable.FloatingActionButton, defStyleAttr, C0010R.style.Widget_Design_FloatingActionButton);
this.mBackgroundTint = a.getColorStateList(C0010R.styleable.FloatingActionButton_backgroundTint);
this.mBackgroundTintMode = ViewUtils.parseTintMode(a.getInt(C0010R.styleable.FloatingActionButton_backgroundTintMode, -1), null);
this.mRippleColor = a.getColor(C0010R.styleable.FloatingActionButton_rippleColor, 0);
this.mSize = a.getInt(C0010R.styleable.FloatingActionButton_fabSize, -1);
this.mBorderWidth = a.getDimensionPixelSize(C0010R.styleable.FloatingActionButton_borderWidth, 0);
float elevation = a.getDimension(C0010R.styleable.FloatingActionButton_elevation, 0.0f);
float pressedTranslationZ = a.getDimension(C0010R.styleable.FloatingActionButton_pressedTranslationZ, 0.0f);
this.mCompatPadding = a.getBoolean(C0010R.styleable.FloatingActionButton_useCompatPadding, false);
a.recycle();
this.mImageHelper = new AppCompatImageHelper(this);
this.mImageHelper.loadFromAttributes(attrs, defStyleAttr);
this.mMaxImageSize = (int) getResources().getDimension(C0010R.dimen.design_fab_image_size);
getImpl().setBackgroundDrawable(this.mBackgroundTint, this.mBackgroundTintMode, this.mRippleColor, this.mBorderWidth);
getImpl().setElevation(elevation);
getImpl().setPressedTranslationZ(pressedTranslationZ);
}
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int preferredSize = getSizeDimension();
this.mImagePadding = (preferredSize - this.mMaxImageSize) / 2;
getImpl().updatePadding();
int d = Math.min(resolveAdjustedSize(preferredSize, widthMeasureSpec), resolveAdjustedSize(preferredSize, heightMeasureSpec));
setMeasuredDimension((this.mShadowPadding.left + d) + this.mShadowPadding.right, (this.mShadowPadding.top + d) + this.mShadowPadding.bottom);
}
@ColorInt
public int getRippleColor() {
return this.mRippleColor;
}
public void setRippleColor(@ColorInt int color) {
if (this.mRippleColor != color) {
this.mRippleColor = color;
getImpl().setRippleColor(color);
}
}
@Nullable
public ColorStateList getBackgroundTintList() {
return this.mBackgroundTint;
}
public void setBackgroundTintList(@Nullable ColorStateList tint) {
if (this.mBackgroundTint != tint) {
this.mBackgroundTint = tint;
getImpl().setBackgroundTintList(tint);
}
}
@Nullable
public Mode getBackgroundTintMode() {
return this.mBackgroundTintMode;
}
public void setBackgroundTintMode(@Nullable Mode tintMode) {
if (this.mBackgroundTintMode != tintMode) {
this.mBackgroundTintMode = tintMode;
getImpl().setBackgroundTintMode(tintMode);
}
}
public void setBackgroundDrawable(Drawable background) {
Log.i(LOG_TAG, "Setting a custom background is not supported.");
}
public void setBackgroundResource(int resid) {
Log.i(LOG_TAG, "Setting a custom background is not supported.");
}
public void setBackgroundColor(int color) {
Log.i(LOG_TAG, "Setting a custom background is not supported.");
}
public void setImageResource(@DrawableRes int resId) {
this.mImageHelper.setImageResource(resId);
}
public void show() {
show(null);
}
public void show(@Nullable OnVisibilityChangedListener listener) {
show(listener, true);
}
void show(OnVisibilityChangedListener listener, boolean fromUser) {
getImpl().show(wrapOnVisibilityChangedListener(listener), fromUser);
}
public void hide() {
hide(null);
}
public void hide(@Nullable OnVisibilityChangedListener listener) {
hide(listener, true);
}
void hide(@Nullable OnVisibilityChangedListener listener, boolean fromUser) {
getImpl().hide(wrapOnVisibilityChangedListener(listener), fromUser);
}
public void setUseCompatPadding(boolean useCompatPadding) {
if (this.mCompatPadding != useCompatPadding) {
this.mCompatPadding = useCompatPadding;
getImpl().onCompatShadowChanged();
}
}
public boolean getUseCompatPadding() {
return this.mCompatPadding;
}
public void setSize(int size) {
if (size != this.mSize) {
this.mSize = size;
requestLayout();
}
}
public int getSize() {
return this.mSize;
}
@Nullable
private InternalVisibilityChangedListener wrapOnVisibilityChangedListener(@Nullable final OnVisibilityChangedListener listener) {
if (listener == null) {
return null;
}
return new InternalVisibilityChangedListener() {
public void onShown() {
listener.onShown(FloatingActionButton.this);
}
public void onHidden() {
listener.onHidden(FloatingActionButton.this);
}
};
}
int getSizeDimension() {
return getSizeDimension(this.mSize);
}
private int getSizeDimension(int size) {
Resources res = getResources();
switch (size) {
case -1:
if (Math.max(ConfigurationHelper.getScreenWidthDp(res), ConfigurationHelper.getScreenHeightDp(res)) < 470) {
return getSizeDimension(1);
}
return getSizeDimension(0);
case 1:
return res.getDimensionPixelSize(C0010R.dimen.design_fab_size_mini);
default:
return res.getDimensionPixelSize(C0010R.dimen.design_fab_size_normal);
}
}
protected void onAttachedToWindow() {
super.onAttachedToWindow();
getImpl().onAttachedToWindow();
}
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
getImpl().onDetachedFromWindow();
}
protected void drawableStateChanged() {
super.drawableStateChanged();
getImpl().onDrawableStateChanged(getDrawableState());
}
@TargetApi(11)
public void jumpDrawablesToCurrentState() {
super.jumpDrawablesToCurrentState();
getImpl().jumpDrawableToCurrentState();
}
public boolean getContentRect(@NonNull Rect rect) {
if (!ViewCompat.isLaidOut(this)) {
return false;
}
rect.set(0, 0, getWidth(), getHeight());
rect.left += this.mShadowPadding.left;
rect.top += this.mShadowPadding.top;
rect.right -= this.mShadowPadding.right;
rect.bottom -= this.mShadowPadding.bottom;
return true;
}
@NonNull
public Drawable getContentBackground() {
return getImpl().getContentBackground();
}
private static int resolveAdjustedSize(int desiredSize, int measureSpec) {
int result = desiredSize;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
switch (specMode) {
case Integer.MIN_VALUE:
return Math.min(desiredSize, specSize);
case 0:
return desiredSize;
case 1073741824:
return specSize;
default:
return result;
}
}
public boolean onTouchEvent(MotionEvent ev) {
switch (ev.getAction()) {
case 0:
if (getContentRect(this.mTouchArea) && !this.mTouchArea.contains((int) ev.getX(), (int) ev.getY())) {
return false;
}
}
return super.onTouchEvent(ev);
}
public float getCompatElevation() {
return getImpl().getElevation();
}
public void setCompatElevation(float elevation) {
getImpl().setElevation(elevation);
}
private FloatingActionButtonImpl getImpl() {
if (this.mImpl == null) {
this.mImpl = createImpl();
}
return this.mImpl;
}
private FloatingActionButtonImpl createImpl() {
int sdk = VERSION.SDK_INT;
if (sdk >= 21) {
return new FloatingActionButtonLollipop(this, new ShadowDelegateImpl(), ViewUtils.DEFAULT_ANIMATOR_CREATOR);
}
if (sdk >= 14) {
return new FloatingActionButtonIcs(this, new ShadowDelegateImpl(), ViewUtils.DEFAULT_ANIMATOR_CREATOR);
}
return new FloatingActionButtonGingerbread(this, new ShadowDelegateImpl(), ViewUtils.DEFAULT_ANIMATOR_CREATOR);
}
}
| [
"[email protected]"
] | |
0b8723a302c84f6bbec9f593fbf0799a38bfb86a | 1234ac62cb84f1ab4fb78caca432991ee66d7fc9 | /pddemo/src/main/java/proxy/jdkversion/ITworkProxy.java | c07daa30617e3a46b6a2799d81b1a937173f49f3 | [] | no_license | niushengqiang/DesignPatternDemoes | 2841a8068223425b578562f8ff44c370df706bcd | 94fd807994cc0a01a51db6dc67bbefc17462ee42 | refs/heads/master | 2020-04-07T13:11:20.623213 | 2019-05-10T15:36:55 | 2019-05-10T15:36:55 | 158,396,245 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,029 | java | package proxy.jdkversion;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* @author yurang
* it工作的代理类
* jdk中的动态代理是由 InvocationHandler接口和Proxy类来配合使用的
*
*/
public class ITworkProxy implements InvocationHandler{
private ITWorker workTarget;
public ITworkProxy(ITWorker workTarget) {
this.workTarget = workTarget;
}
public ITworkProxy() {}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
System.out.println("干活之前墨迹5分钟");
Object invoke = method.invoke(workTarget, args);
System.out.println("干活之后得以一会");
return invoke;
}
//获取代理对象
public ITWorker getInstance(){
ITWorker o=(ITWorker) Proxy.newProxyInstance(workTarget.getClass().getClassLoader(),
workTarget.getClass().getInterfaces(),this);
return o;
}
}
| [
"[email protected]"
] | |
2fde9d957c511146b1f489828fe4faa359c127a2 | 772d2341adde81e766206d3a2b362eedee541aa9 | /backend/isspol/isspol-persistence/isspol-persistence-model/src/main/java/ec/org/isspol/persistence/entities/security/EstadoUsuario.java | cbfe90d07a656de566295a356c49eee2d53049d2 | [] | no_license | carlosgitub/pruIsspol | 66299f10c75297f4d107fa2b8612ca0480ca3fc2 | 7b0fca529b6968527c1c69f8d0b18956183d6a56 | refs/heads/master | 2021-01-20T12:52:05.188471 | 2018-10-18T22:12:13 | 2018-10-18T22:12:13 | 90,421,927 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,273 | java | package ec.org.isspol.persistence.entities.security;
// Generated 21-abr-2017 12:20:59 by Hibernate Tools 4.0.1.Final
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
/**
* EstadoUsuario generated by hbm2java
*/
@Entity
@Table(name = "estado_usuario", schema = "seguridad", catalog = "siisspolweb")
public class EstadoUsuario implements java.io.Serializable {
private Integer idEstadoUsuario;
private String descripcion;
private String creacionUsuario;
private Date creacionFecha;
private String creacionEquipo;
private String modificaUsuario;
private Date modificaFecha;
private String modificaEquipo;
private Set<Usuario> usuarios = new HashSet<Usuario>(0);
public EstadoUsuario() {
}
public EstadoUsuario(Integer idEstadoUsuario, String descripcion, String creacionUsuario, Date creacionFecha,
String creacionEquipo, String modificaUsuario, Date modificaFecha, String modificaEquipo) {
this.idEstadoUsuario = idEstadoUsuario;
this.descripcion = descripcion;
this.creacionUsuario = creacionUsuario;
this.creacionFecha = creacionFecha;
this.creacionEquipo = creacionEquipo;
this.modificaUsuario = modificaUsuario;
this.modificaFecha = modificaFecha;
this.modificaEquipo = modificaEquipo;
}
public EstadoUsuario(Integer idEstadoUsuario, String descripcion, String creacionUsuario, Date creacionFecha,
String creacionEquipo, String modificaUsuario, Date modificaFecha, String modificaEquipo,
Set<Usuario> usuarios) {
this.idEstadoUsuario = idEstadoUsuario;
this.descripcion = descripcion;
this.creacionUsuario = creacionUsuario;
this.creacionFecha = creacionFecha;
this.creacionEquipo = creacionEquipo;
this.modificaUsuario = modificaUsuario;
this.modificaFecha = modificaFecha;
this.modificaEquipo = modificaEquipo;
this.usuarios = usuarios;
}
@Id
@Column(name = "id_estado_usuario", unique = true, nullable = false)
public Integer getIdEstadoUsuario() {
return this.idEstadoUsuario;
}
public void setIdEstadoUsuario(Integer idEstadoUsuario) {
this.idEstadoUsuario = idEstadoUsuario;
}
@Column(name = "descripcion", nullable = false, length = 50)
public String getDescripcion() {
return this.descripcion;
}
public void setDescripcion(String descripcion) {
this.descripcion = descripcion;
}
@Column(name = "creacion_usuario", nullable = false, length = 20)
public String getCreacionUsuario() {
return this.creacionUsuario;
}
public void setCreacionUsuario(String creacionUsuario) {
this.creacionUsuario = creacionUsuario;
}
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "creacion_fecha", nullable = false, length = 23)
public Date getCreacionFecha() {
return this.creacionFecha;
}
public void setCreacionFecha(Date creacionFecha) {
this.creacionFecha = creacionFecha;
}
@Column(name = "creacion_equipo", nullable = false, length = 20)
public String getCreacionEquipo() {
return this.creacionEquipo;
}
public void setCreacionEquipo(String creacionEquipo) {
this.creacionEquipo = creacionEquipo;
}
@Column(name = "modifica_usuario", nullable = false, length = 20)
public String getModificaUsuario() {
return this.modificaUsuario;
}
public void setModificaUsuario(String modificaUsuario) {
this.modificaUsuario = modificaUsuario;
}
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "modifica_fecha", nullable = false, length = 23)
public Date getModificaFecha() {
return this.modificaFecha;
}
public void setModificaFecha(Date modificaFecha) {
this.modificaFecha = modificaFecha;
}
@Column(name = "modifica_equipo", nullable = false, length = 20)
public String getModificaEquipo() {
return this.modificaEquipo;
}
public void setModificaEquipo(String modificaEquipo) {
this.modificaEquipo = modificaEquipo;
}
@OneToMany(fetch = FetchType.LAZY, mappedBy = "estadoUsuario")
public Set<Usuario> getUsuarios() {
return this.usuarios;
}
public void setUsuarios(Set<Usuario> usuarios) {
this.usuarios = usuarios;
}
}
| [
"[email protected]"
] | |
67f44e7ed7301c9789df239d3d8a888918406e91 | ebb582d9f9ca0fc7a63466966f370bd729ee949f | /src/main/java/ua/sustavov/payment/validators/MaxLengthValidator.java | 8b841f33b447b3e8ae75244970086791fab4a53e | [] | no_license | sustav86/salegateway | d7a75903045260a648313f3e4cd5627879a978ea | 250a79b461159b2b2355ad5cd77309f19249ac36 | refs/heads/master | 2021-05-01T19:23:42.315225 | 2018-02-11T18:14:41 | 2018-02-11T18:14:41 | 121,020,533 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 999 | java | package ua.sustavov.payment.validators;
import org.springframework.stereotype.Component;
import org.zkoss.bind.ValidationContext;
import org.zkoss.bind.Validator;
import org.zkoss.bind.validator.AbstractValidator;
/**
* Created by SUSTAVOV on 10.02.2018.
*/
@Component("maxLengthValidator")
public class MaxLengthValidator extends AbstractValidator implements Validator {
@Override
public void validate(ValidationContext validationContext) {
Number maxLength = (Number)validationContext.getBindContext().getValidatorArg("length");
if (validationContext.getProperty().getValue() instanceof String){
String value = (String)validationContext.getProperty().getValue();
if (value.length() > maxLength.longValue()){
validationContext.setInvalid();
addInvalidMessage(validationContext, "Field should be less than " + maxLength);
}
}else{
validationContext.setInvalid();
}
}
}
| [
"[email protected]"
] | |
ecca483ccb7486ec19d211685d2e37eae578b2df | f01a2673359945cad2db0fb40161d14e5a4d4b0d | /DBProject/src/main/java/controllers/user/UserLoginController.java | 3cfc94b9408926c47e488166d537f1dcdfe0fa4d | [] | no_license | quanganhquanganh/Community-Centre-Management-System | 271fd8d331714679243e1c52053f5cca04abdc7d | 57beb26d0b1680a02569db27d2ebd30022afda77 | refs/heads/main | 2023-05-27T12:41:22.906247 | 2021-06-10T07:18:41 | 2021-06-10T07:18:41 | 363,807,811 | 1 | 2 | null | 2021-06-04T12:36:53 | 2021-05-03T03:37:04 | Java | UTF-8 | Java | false | false | 5,123 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package controllers.user;
import services.MysqlConnection;
import java.sql.*;
import java.util.Date;
/*
* Điều khiển đăng nhập
*/
public class UserLoginController {
public boolean login(String userUsername, String userPassword) throws SQLException, ClassNotFoundException {
Connection connection = MysqlConnection.getMysqlConnection();
Statement stm = connection.createStatement();
String query = "SELECT USERUSERNAME, USERPASSWORD FROM USERTAB WHERE USERUSERNAME = '" + userUsername + "'";
ResultSet rs = stm.executeQuery(query);
while (rs.next()) {
if (userPassword.equals(rs.getString("USERPASSWORD"))){
new CurrentUserUsername().setCurrentUserUsrename(userUsername);
connection.close();
return true;
};
}
connection.close();
return false;
}
public boolean checker(String userUsername, String userPassword) throws SQLException, ClassNotFoundException {
Connection connection = MysqlConnection.getMysqlConnection();
Statement stm = connection.createStatement();
String query = "SELECT USERUSERNAME,USERPASSWORD from USERTAB";
ResultSet rs = stm.executeQuery(query);
while(rs.next())
{
if(userUsername.equals(rs.getString("USERUSERNAME"))){
connection.close();
return false;
};
}
connection.close();
return true;
}
public void save_(String userUsername, String userPassword) throws SQLException, ClassNotFoundException {
try {
Connection connection1 = MysqlConnection.getMysqlConnection();
Statement stm1 = connection1.createStatement();
String query1 = "INSERT INTO USERTAB(soCMT, USERUSERNAME, USERPASSWORD, FULLNAME, ADDRESS, SIGNUPDATE, JOB, BIRTHDAY, PHONENUMBER) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)";
//System.out.println(query1);
PreparedStatement rs1 = connection1.prepareStatement(query1);
rs1.setString(1, "NULL");
rs1.setString(2, userUsername);
rs1.setString(3, userPassword);
rs1.setString(4, "NULL");
rs1.setString(5, "NULL");
rs1.setString(6, "2021-05-23 00:00:00");
rs1.setString(7, "NULL");
rs1.setString(8, "2021-05-23");
rs1.setString(9, "00000000");
//System.out.println(rs1);
rs1.executeUpdate();
rs1.close();
connection1.close();
} catch (Exception e) {System.out.println(e);}
}
public void save_(String userUsername, String userPassword,String cmt,String name,String diaChi,String sigUp,String nghe,String ngaySinh, String phone) throws SQLException, ClassNotFoundException {
try {
Connection connection1 = MysqlConnection.getMysqlConnection();
Statement stm1 = connection1.createStatement();
String query1 = "INSERT INTO USERTAB(soCMT, USERUSERNAME, USERPASSWORD, FULLNAME, ADDRESS, SIGNUPDATE, JOB, BIRTHDAY, PHONENUMBER) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)";
//System.out.println(query1);
PreparedStatement rs1 = connection1.prepareStatement(query1);
rs1.setString(1, cmt);
rs1.setString(2, userUsername);
rs1.setString(3, userPassword);
rs1.setString(4, name);
rs1.setString(5, diaChi);
rs1.setString(6, "2021-06-10");
rs1.setString(7, nghe);
rs1.setString(8, "2001-07-26");
rs1.setString(9, phone);
//System.out.println(rs1);
rs1.executeUpdate();
rs1.close();
connection1.close();
} catch (Exception e) {System.out.println(e);}
}
public void reset_pass(String userUsername, String userPassword) throws SQLException, ClassNotFoundException{
try{Connection connection = MysqlConnection.getMysqlConnection();
Statement stm = connection.createStatement();
String query = "UPDATE USERTAB set USERPASSWORD ='"+ userPassword +"' WHERE USERUSERNAME = '" + userUsername + "'";
PreparedStatement rs = connection.prepareStatement(query);
rs.executeUpdate();
rs.close();
connection.close();}catch (Exception e) {System.out.println(e);}
}
public static void main(String args[]){
try {
Connection connection = MysqlConnection.getMysqlConnection();
UserLoginController user = new UserLoginController();
if (user.login("nguyenvana", "root")) {
System.out.println("Login succeed!");
} else {
System.out.println("Failed!");
};
} catch (Exception e) {System.out.println(e);}
}
}
| [
"ThinkPad@DESKTOP-A1FM1F7"
] | ThinkPad@DESKTOP-A1FM1F7 |
56a351a8ebe11ed5cc1685d23b2ae5c35b4a27b6 | d415e1954537b573825d2ac51cfdf8f34deddd8c | /MCAP LOGISTIC REGRESSION WITH L2 REGULARIZATION/L2R_L2_SvrFunction.java | d169be5c99a3eba1e75deb930994a542a7600ba6 | [] | no_license | farheenshaik/ML | 35d16fb130058ad8db6f154c5e5ce00841955fcb | 92f1cfe3dabfb7878df7448b4c58cd49ce90dcb5 | refs/heads/master | 2021-07-03T21:10:25.981792 | 2020-08-24T12:54:23 | 2020-08-24T12:54:23 | 157,461,576 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,490 | java | package mcap;
public class L2R_L2_SvrFunction extends L2R_L2_SvcFunction {
private double p;
public L2R_L2_SvrFunction( Problem prob, double[] C, double p ) {
super(prob, C);
this.p = p;
}
@Override
public double fun(double[] w) {
double f = 0;
double[] y = prob.y;
int l = prob.l;
int w_size = get_nr_variable();
double d;
Xv(w, z);
for (int i = 0; i < w_size; i++)
f += w[i] * w[i];
f /= 2;
for (int i = 0; i < l; i++) {
d = z[i] - y[i];
if (d < -p)
f += C[i] * (d + p) * (d + p);
else if (d > p) f += C[i] * (d - p) * (d - p);
}
return f;
}
@Override
public void grad(double[] w, double[] g) {
double[] y = prob.y;
int l = prob.l;
int w_size = get_nr_variable();
sizeI = 0;
for (int i = 0; i < l; i++) {
double d = z[i] - y[i];
// generate index set I
if (d < -p) {
z[sizeI] = C[i] * (d + p);
I[sizeI] = i;
sizeI++;
} else if (d > p) {
z[sizeI] = C[i] * (d - p);
I[sizeI] = i;
sizeI++;
}
}
subXTv(z, g);
for (int i = 0; i < w_size; i++)
g[i] = w[i] + 2 * g[i];
}
}
| [
"[email protected]"
] | |
7e365845cdf8a8fa112db71f34699008c011fba3 | c3cd6193ad774ca4766967514de6e72f7c0edef5 | /team4/src/main/java/swdo/syj/yayoung/dao/LoginMapper.java | 93da7ccb090d3b497cfc5ed943b0238ac6518ae1 | [] | no_license | sayojeong/team4 | a1d4041d645c089803d319cde2ccdbecd5df9bd3 | 4b1f51635c195cdb04725b9ef668c5cb34229b62 | refs/heads/master | 2022-12-23T04:44:40.588721 | 2019-09-24T09:47:27 | 2019-09-24T09:47:27 | 209,437,533 | 0 | 0 | null | 2022-12-16T11:07:58 | 2019-09-19T01:39:58 | JavaScript | UTF-8 | Java | false | false | 539 | java | package swdo.syj.yayoung.dao;
import swdo.syj.yayoung.vo.StudentVO;
import swdo.syj.yayoung.vo.TeacherVO;
public interface LoginMapper {
public TeacherVO idcheck_tc(String tc_id);
public TeacherVO findId_tc(TeacherVO vo);
public String findPw_tc(TeacherVO vo);
public int UpdatePw_tc(String tc_pw, String tc_id);
public StudentVO idcheck_st(String st_id);
public StudentVO findId_st(StudentVO vo);
public String findPw_st(StudentVO vo);
public int UpdatePw_st(String st_pw, String st_id);
}
| [
"user@DESKTOP-01ND8VV"
] | user@DESKTOP-01ND8VV |
567692a3430867cfe1c73ab592783d8fa4f0803c | 47ef792bccca7ed503425fabd68742f74972741c | /Secao07/App02_Xamarin/App02_Xamarin/App02_Xamarin.Android/obj/Release/81/android/src/android/support/mediacompat/R.java | 3856f8d5e73a205b1d5b8bcab5372ecc74926ea8 | [] | no_license | saxiro/cursoxamarin | 45e83ae9c82c88a248a748dd398f3f973a1276da | fb4ae147f79757b5e37d2f8cbf85de36d50c7dac | refs/heads/master | 2020-04-06T13:04:17.407409 | 2019-02-23T02:20:49 | 2019-02-23T02:20:49 | 157,482,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 676,224 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.mediacompat;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f050000;
public static int abc_fade_out=0x7f050001;
public static int abc_grow_fade_in_from_bottom=0x7f050002;
public static int abc_popup_enter=0x7f050003;
public static int abc_popup_exit=0x7f050004;
public static int abc_shrink_fade_out_from_bottom=0x7f050005;
public static int abc_slide_in_bottom=0x7f050006;
public static int abc_slide_in_top=0x7f050007;
public static int abc_slide_out_bottom=0x7f050008;
public static int abc_slide_out_top=0x7f050009;
public static int design_bottom_sheet_slide_in=0x7f05000a;
public static int design_bottom_sheet_slide_out=0x7f05000b;
public static int design_snackbar_in=0x7f05000c;
public static int design_snackbar_out=0x7f05000d;
public static int tooltip_enter=0x7f05000e;
public static int tooltip_exit=0x7f05000f;
}
public static final class animator {
public static int design_appbar_state_list_animator=0x7f060000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarDivider=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarItemBackground=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarPopupTheme=0x7f010065;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static int actionBarSize=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarSplitStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabBarStyle=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabTextStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTheme=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarWidgetTheme=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionButtonStyle=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionDropDownStyle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionLayout=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionMenuTextAppearance=0x7f01006d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int actionMenuTextColor=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeBackground=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseButtonStyle=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseDrawable=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCopyDrawable=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCutDrawable=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeFindDrawable=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePasteDrawable=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePopupWindowStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSelectAllDrawable=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeShareDrawable=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSplitBackground=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeWebSearchDrawable=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowButtonStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowMenuStyle=0x7f010064;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionProviderClass=0x7f0100df;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionViewClass=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int activityChooserViewStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogButtonGroupStyle=0x7f0100b3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alertDialogCenterButtons=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogTheme=0x7f0100b5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int allowStacking=0x7f0100cb;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alpha=0x7f0100cc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int alphabeticModifiers=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowHeadLength=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowShaftLength=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoCompleteTextViewStyle=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMaxTextSize=0x7f010054;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMinTextSize=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoSizePresetSizes=0x7f010052;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeStepGranularity=0x7f010051;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static int autoSizeTextType=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int background=0x7f01002e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundSplit=0x7f010030;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundStacked=0x7f01002f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int backgroundTint=0x7f010116;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int backgroundTintMode=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int barLength=0x7f0100d5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_autoHide=0x7f010141;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_hideable=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_overlapTop=0x7f01014a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int behavior_peekHeight=0x7f01011d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_skipCollapsed=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int borderWidth=0x7f01013f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int borderlessButtonStyle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetDialogTheme=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetStyle=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarButtonStyle=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNegativeButtonStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNeutralButtonStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarPositiveButtonStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarStyle=0x7f010087;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static int buttonGravity=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonPanelSideLayout=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyleSmall=0x7f0100bc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonTint=0x7f0100cd;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int buttonTintMode=0x7f0100ce;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardBackgroundColor=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardCornerRadius=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardElevation=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardMaxElevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardPreventCornerOverlap=0x7f01001c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardUseCompatPadding=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkboxStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkedTextViewStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeIcon=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeItemLayout=0x7f010040;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int collapseContentDescription=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapseIcon=0x7f01010c;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int collapsedTitleGravity=0x7f01012c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapsedTitleTextAppearance=0x7f010126;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int color=0x7f0100cf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorAccent=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorBackgroundFloating=0x7f0100b1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorButtonNormal=0x7f0100ae;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlActivated=0x7f0100ac;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlHighlight=0x7f0100ad;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlNormal=0x7f0100ab;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int colorError=0x7f0100ca;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimary=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimaryDark=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorSwitchThumbNormal=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int commitIcon=0x7f0100f3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentDescription=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEnd=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEndWithActions=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetLeft=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetRight=0x7f01003b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStart=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStartWithNavigation=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPadding=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingBottom=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingLeft=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingRight=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingTop=0x7f010020;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentScrim=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int controlBackground=0x7f0100b0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterEnabled=0x7f010160;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterMaxLength=0x7f010161;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterOverflowTextAppearance=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterTextAppearance=0x7f010162;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int customNavigationLayout=0x7f010031;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int defaultQueryHint=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dialogPreferredPadding=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dialogTheme=0x7f01007f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static int displayOptions=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int divider=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerHorizontal=0x7f01008d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dividerPadding=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerVertical=0x7f01008c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int drawableSize=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int drawerArrowStyle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dropDownListViewStyle=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dropdownListPreferredItemHeight=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextBackground=0x7f010094;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int editTextColor=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextStyle=0x7f0100bf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int elevation=0x7f01003e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int errorEnabled=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int errorTextAppearance=0x7f01015f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandActivityOverflowButtonDrawable=0x7f010042;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expanded=0x7f010118;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int expandedTitleGravity=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMargin=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginBottom=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginEnd=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginStart=0x7f010121;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginTop=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandedTitleTextAppearance=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int externalRouteEnabledDrawable=0x7f010015;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fabSize=0x7f01013d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int font=0x7f010171;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontFamily=0x7f010055;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderAuthority=0x7f01016a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fontProviderCerts=0x7f01016d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchStrategy=0x7f01016e;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchTimeout=0x7f01016f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderPackage=0x7f01016b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderQuery=0x7f01016c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontStyle=0x7f010170;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontWeight=0x7f010172;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int foregroundInsidePadding=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int gapBetweenBars=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int goIcon=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int headerLayout=0x7f010148;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int height=0x7f010023;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hideOnContentScroll=0x7f010037;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintAnimationEnabled=0x7f010164;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintEnabled=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int hintTextAppearance=0x7f01015c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeAsUpIndicator=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeLayout=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int icon=0x7f01002b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int iconTintMode=0x7f0100e3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconifiedByDefault=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int imageButtonStyle=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int indeterminateProgressStyle=0x7f010034;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int initialActivityCount=0x7f010041;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int insetForeground=0x7f010149;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int isLightTheme=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemBackground=0x7f010146;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemIconTint=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemPadding=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemTextAppearance=0x7f010147;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemTextColor=0x7f010145;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int keylines=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout=0x7f0100ea;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_anchor=0x7f010134;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_anchorGravity=0x7f010136;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_behavior=0x7f010133;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static int layout_collapseMode=0x7f01012f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_collapseParallaxMultiplier=0x7f010130;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static int layout_dodgeInsetEdges=0x7f010138;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_insetEdge=0x7f010137;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_keyline=0x7f010135;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static int layout_scrollFlags=0x7f01011b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_scrollInterpolator=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listChoiceBackgroundIndicator=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listDividerAlertDialog=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listItemLayout=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listLayout=0x7f010044;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listMenuViewStyle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listPopupWindowStyle=0x7f0100a0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeight=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightLarge=0x7f01009c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightSmall=0x7f01009b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingLeft=0x7f01009d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingRight=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int logo=0x7f01002c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int logoDescription=0x7f010110;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxActionInlineWidth=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxButtonHeight=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int measureWithLargestChild=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteAudioTrackDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteButtonStyle=0x7f01000a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int mediaRouteButtonTint=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCloseDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControlPanelThemeOverlay=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteDefaultIconDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePauseDrawable=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePlayDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerGroupIconDrawable=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerIconDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteStopDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTheme=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTvIconDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int menu=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int multiChoiceItemLayout=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int navigationContentDescription=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int navigationIcon=0x7f01010e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static int navigationMode=0x7f010026;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int numericModifiers=0x7f0100db;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int overlapAnchor=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingBottomNoButtons=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingEnd=0x7f010114;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingStart=0x7f010113;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingTopNoTitle=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelBackground=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelMenuListTheme=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int panelMenuListWidth=0x7f0100a5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleContentDescription=0x7f010167;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int passwordToggleDrawable=0x7f010166;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleEnabled=0x7f010165;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleTint=0x7f010168;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static int passwordToggleTintMode=0x7f010169;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupMenuStyle=0x7f010091;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupTheme=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupWindowStyle=0x7f010092;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int preserveIconSpacing=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int pressedTranslationZ=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int progressBarPadding=0x7f010035;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int progressBarStyle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int queryBackground=0x7f0100f5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int queryHint=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int radioButtonStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleIndicator=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleSmall=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int rippleColor=0x7f01013c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimAnimationDuration=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimVisibleHeightTrigger=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchHintIcon=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchIcon=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchViewStyle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int seekBarStyle=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackground=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackgroundBorderless=0x7f01008a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static int showAsAction=0x7f0100dc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static int showDividers=0x7f0100d8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showText=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showTitle=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int singleChoiceItemLayout=0x7f010046;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spinBars=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerDropDownItemStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerStyle=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int splitTrack=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int srcCompat=0x7f010049;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_above_anchor=0x7f0100e7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsed=0x7f010119;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsible=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int statusBarBackground=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int statusBarScrim=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subMenuArrow=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int submitBackground=0x7f0100f6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitle=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextAppearance=0x7f010103;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitleTextColor=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextStyle=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int suggestionRowLayout=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchMinWidth=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchPadding=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchStyle=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchTextAppearance=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabBackground=0x7f01014f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabContentStart=0x7f01014e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabGravity=0x7f010151;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorColor=0x7f01014c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorHeight=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMaxWidth=0x7f010153;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMinWidth=0x7f010152;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabMode=0x7f010150;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPadding=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingBottom=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingEnd=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingStart=0x7f010157;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingTop=0x7f010158;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabSelectedTextColor=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabTextAppearance=0x7f010154;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabTextColor=0x7f010155;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static int textAllCaps=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceLargePopupMenu=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItem=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSecondary=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSmall=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearancePopupMenuHeader=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultSubtitle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultTitle=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSmallPopupMenu=0x7f01007d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorAlertDialogListItem=0x7f0100b6;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorError=0x7f01013b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorSearchUrl=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int theme=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thickness=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTextPadding=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTint=0x7f0100f7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int thumbTintMode=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tickMark=0x7f01004c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tickMarkTint=0x7f01004d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tickMarkTintMode=0x7f01004e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tint=0x7f01004a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tintMode=0x7f01004b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int title=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleEnabled=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargin=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginBottom=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginEnd=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginStart=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginTop=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargins=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextAppearance=0x7f010102;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleTextColor=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextStyle=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarId=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarNavigationButtonStyle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarStyle=0x7f01008f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int tooltipForegroundColor=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tooltipFrameBackground=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tooltipText=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int track=0x7f0100f9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int trackTint=0x7f0100fa;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int trackTintMode=0x7f0100fb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int useCompatPadding=0x7f010140;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int voiceIcon=0x7f0100f2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBar=0x7f010056;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBarOverlay=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionModeOverlay=0x7f010059;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMajor=0x7f01005d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMinor=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMajor=0x7f01005a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMinor=0x7f01005c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMajor=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMinor=0x7f01005f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowNoTitle=0x7f010057;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f0e0000;
public static int abc_allow_stacked_button_bar=0x7f0e0001;
public static int abc_config_actionMenuItemAllCaps=0x7f0e0002;
public static int abc_config_closeDialogWhenTouchOutside=0x7f0e0003;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0e0004;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0d004f;
public static int abc_background_cache_hint_selector_material_light=0x7f0d0050;
public static int abc_btn_colored_borderless_text_material=0x7f0d0051;
public static int abc_btn_colored_text_material=0x7f0d0052;
public static int abc_color_highlight_material=0x7f0d0053;
public static int abc_hint_foreground_material_dark=0x7f0d0054;
public static int abc_hint_foreground_material_light=0x7f0d0055;
public static int abc_input_method_navigation_guard=0x7f0d0004;
public static int abc_primary_text_disable_only_material_dark=0x7f0d0056;
public static int abc_primary_text_disable_only_material_light=0x7f0d0057;
public static int abc_primary_text_material_dark=0x7f0d0058;
public static int abc_primary_text_material_light=0x7f0d0059;
public static int abc_search_url_text=0x7f0d005a;
public static int abc_search_url_text_normal=0x7f0d0005;
public static int abc_search_url_text_pressed=0x7f0d0006;
public static int abc_search_url_text_selected=0x7f0d0007;
public static int abc_secondary_text_material_dark=0x7f0d005b;
public static int abc_secondary_text_material_light=0x7f0d005c;
public static int abc_tint_btn_checkable=0x7f0d005d;
public static int abc_tint_default=0x7f0d005e;
public static int abc_tint_edittext=0x7f0d005f;
public static int abc_tint_seek_thumb=0x7f0d0060;
public static int abc_tint_spinner=0x7f0d0061;
public static int abc_tint_switch_track=0x7f0d0062;
public static int accent_material_dark=0x7f0d0008;
public static int accent_material_light=0x7f0d0009;
public static int background_floating_material_dark=0x7f0d000a;
public static int background_floating_material_light=0x7f0d000b;
public static int background_material_dark=0x7f0d000c;
public static int background_material_light=0x7f0d000d;
public static int bright_foreground_disabled_material_dark=0x7f0d000e;
public static int bright_foreground_disabled_material_light=0x7f0d000f;
public static int bright_foreground_inverse_material_dark=0x7f0d0010;
public static int bright_foreground_inverse_material_light=0x7f0d0011;
public static int bright_foreground_material_dark=0x7f0d0012;
public static int bright_foreground_material_light=0x7f0d0013;
public static int button_material_dark=0x7f0d0014;
public static int button_material_light=0x7f0d0015;
public static int cardview_dark_background=0x7f0d0000;
public static int cardview_light_background=0x7f0d0001;
public static int cardview_shadow_end_color=0x7f0d0002;
public static int cardview_shadow_start_color=0x7f0d0003;
public static int colorAccent=0x7f0d004e;
public static int colorPrimary=0x7f0d004c;
public static int colorPrimaryDark=0x7f0d004d;
public static int design_bottom_navigation_shadow_color=0x7f0d0040;
public static int design_error=0x7f0d0063;
public static int design_fab_shadow_end_color=0x7f0d0041;
public static int design_fab_shadow_mid_color=0x7f0d0042;
public static int design_fab_shadow_start_color=0x7f0d0043;
public static int design_fab_stroke_end_inner_color=0x7f0d0044;
public static int design_fab_stroke_end_outer_color=0x7f0d0045;
public static int design_fab_stroke_top_inner_color=0x7f0d0046;
public static int design_fab_stroke_top_outer_color=0x7f0d0047;
public static int design_snackbar_background_color=0x7f0d0048;
public static int design_tint_password_toggle=0x7f0d0064;
public static int dim_foreground_disabled_material_dark=0x7f0d0016;
public static int dim_foreground_disabled_material_light=0x7f0d0017;
public static int dim_foreground_material_dark=0x7f0d0018;
public static int dim_foreground_material_light=0x7f0d0019;
public static int error_color_material=0x7f0d001a;
public static int foreground_material_dark=0x7f0d001b;
public static int foreground_material_light=0x7f0d001c;
public static int highlighted_text_material_dark=0x7f0d001d;
public static int highlighted_text_material_light=0x7f0d001e;
public static int launcher_background=0x7f0d004b;
public static int material_blue_grey_800=0x7f0d001f;
public static int material_blue_grey_900=0x7f0d0020;
public static int material_blue_grey_950=0x7f0d0021;
public static int material_deep_teal_200=0x7f0d0022;
public static int material_deep_teal_500=0x7f0d0023;
public static int material_grey_100=0x7f0d0024;
public static int material_grey_300=0x7f0d0025;
public static int material_grey_50=0x7f0d0026;
public static int material_grey_600=0x7f0d0027;
public static int material_grey_800=0x7f0d0028;
public static int material_grey_850=0x7f0d0029;
public static int material_grey_900=0x7f0d002a;
public static int notification_action_color_filter=0x7f0d0049;
public static int notification_icon_bg_color=0x7f0d004a;
public static int notification_material_background_media_default_color=0x7f0d003f;
public static int primary_dark_material_dark=0x7f0d002b;
public static int primary_dark_material_light=0x7f0d002c;
public static int primary_material_dark=0x7f0d002d;
public static int primary_material_light=0x7f0d002e;
public static int primary_text_default_material_dark=0x7f0d002f;
public static int primary_text_default_material_light=0x7f0d0030;
public static int primary_text_disabled_material_dark=0x7f0d0031;
public static int primary_text_disabled_material_light=0x7f0d0032;
public static int ripple_material_dark=0x7f0d0033;
public static int ripple_material_light=0x7f0d0034;
public static int secondary_text_default_material_dark=0x7f0d0035;
public static int secondary_text_default_material_light=0x7f0d0036;
public static int secondary_text_disabled_material_dark=0x7f0d0037;
public static int secondary_text_disabled_material_light=0x7f0d0038;
public static int switch_thumb_disabled_material_dark=0x7f0d0039;
public static int switch_thumb_disabled_material_light=0x7f0d003a;
public static int switch_thumb_material_dark=0x7f0d0065;
public static int switch_thumb_material_light=0x7f0d0066;
public static int switch_thumb_normal_material_dark=0x7f0d003b;
public static int switch_thumb_normal_material_light=0x7f0d003c;
public static int tooltip_background_dark=0x7f0d003d;
public static int tooltip_background_light=0x7f0d003e;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f08001b;
public static int abc_action_bar_content_inset_with_nav=0x7f08001c;
public static int abc_action_bar_default_height_material=0x7f080010;
public static int abc_action_bar_default_padding_end_material=0x7f08001d;
public static int abc_action_bar_default_padding_start_material=0x7f08001e;
public static int abc_action_bar_elevation_material=0x7f080020;
public static int abc_action_bar_icon_vertical_padding_material=0x7f080021;
public static int abc_action_bar_overflow_padding_end_material=0x7f080022;
public static int abc_action_bar_overflow_padding_start_material=0x7f080023;
public static int abc_action_bar_progress_bar_size=0x7f080011;
public static int abc_action_bar_stacked_max_height=0x7f080024;
public static int abc_action_bar_stacked_tab_max_width=0x7f080025;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f080026;
public static int abc_action_bar_subtitle_top_margin_material=0x7f080027;
public static int abc_action_button_min_height_material=0x7f080028;
public static int abc_action_button_min_width_material=0x7f080029;
public static int abc_action_button_min_width_overflow_material=0x7f08002a;
public static int abc_alert_dialog_button_bar_height=0x7f08000f;
public static int abc_button_inset_horizontal_material=0x7f08002b;
public static int abc_button_inset_vertical_material=0x7f08002c;
public static int abc_button_padding_horizontal_material=0x7f08002d;
public static int abc_button_padding_vertical_material=0x7f08002e;
public static int abc_cascading_menus_min_smallest_width=0x7f08002f;
public static int abc_config_prefDialogWidth=0x7f080014;
public static int abc_control_corner_material=0x7f080030;
public static int abc_control_inset_material=0x7f080031;
public static int abc_control_padding_material=0x7f080032;
public static int abc_dialog_fixed_height_major=0x7f080015;
public static int abc_dialog_fixed_height_minor=0x7f080016;
public static int abc_dialog_fixed_width_major=0x7f080017;
public static int abc_dialog_fixed_width_minor=0x7f080018;
public static int abc_dialog_list_padding_bottom_no_buttons=0x7f080033;
public static int abc_dialog_list_padding_top_no_title=0x7f080034;
public static int abc_dialog_min_width_major=0x7f080019;
public static int abc_dialog_min_width_minor=0x7f08001a;
public static int abc_dialog_padding_material=0x7f080035;
public static int abc_dialog_padding_top_material=0x7f080036;
public static int abc_dialog_title_divider_material=0x7f080037;
public static int abc_disabled_alpha_material_dark=0x7f080038;
public static int abc_disabled_alpha_material_light=0x7f080039;
public static int abc_dropdownitem_icon_width=0x7f08003a;
public static int abc_dropdownitem_text_padding_left=0x7f08003b;
public static int abc_dropdownitem_text_padding_right=0x7f08003c;
public static int abc_edit_text_inset_bottom_material=0x7f08003d;
public static int abc_edit_text_inset_horizontal_material=0x7f08003e;
public static int abc_edit_text_inset_top_material=0x7f08003f;
public static int abc_floating_window_z=0x7f080040;
public static int abc_list_item_padding_horizontal_material=0x7f080041;
public static int abc_panel_menu_list_width=0x7f080042;
public static int abc_progress_bar_height_material=0x7f080043;
public static int abc_search_view_preferred_height=0x7f080044;
public static int abc_search_view_preferred_width=0x7f080045;
public static int abc_seekbar_track_background_height_material=0x7f080046;
public static int abc_seekbar_track_progress_height_material=0x7f080047;
public static int abc_select_dialog_padding_start_material=0x7f080048;
public static int abc_switch_padding=0x7f08001f;
public static int abc_text_size_body_1_material=0x7f080049;
public static int abc_text_size_body_2_material=0x7f08004a;
public static int abc_text_size_button_material=0x7f08004b;
public static int abc_text_size_caption_material=0x7f08004c;
public static int abc_text_size_display_1_material=0x7f08004d;
public static int abc_text_size_display_2_material=0x7f08004e;
public static int abc_text_size_display_3_material=0x7f08004f;
public static int abc_text_size_display_4_material=0x7f080050;
public static int abc_text_size_headline_material=0x7f080051;
public static int abc_text_size_large_material=0x7f080052;
public static int abc_text_size_medium_material=0x7f080053;
public static int abc_text_size_menu_header_material=0x7f080054;
public static int abc_text_size_menu_material=0x7f080055;
public static int abc_text_size_small_material=0x7f080056;
public static int abc_text_size_subhead_material=0x7f080057;
public static int abc_text_size_subtitle_material_toolbar=0x7f080012;
public static int abc_text_size_title_material=0x7f080058;
public static int abc_text_size_title_material_toolbar=0x7f080013;
public static int cardview_compat_inset_shadow=0x7f08000c;
public static int cardview_default_elevation=0x7f08000d;
public static int cardview_default_radius=0x7f08000e;
public static int compat_button_inset_horizontal_material=0x7f080094;
public static int compat_button_inset_vertical_material=0x7f080095;
public static int compat_button_padding_horizontal_material=0x7f080096;
public static int compat_button_padding_vertical_material=0x7f080097;
public static int compat_control_corner_material=0x7f080098;
public static int design_appbar_elevation=0x7f080072;
public static int design_bottom_navigation_active_item_max_width=0x7f080073;
public static int design_bottom_navigation_active_text_size=0x7f080074;
public static int design_bottom_navigation_elevation=0x7f080075;
public static int design_bottom_navigation_height=0x7f080076;
public static int design_bottom_navigation_item_max_width=0x7f080077;
public static int design_bottom_navigation_item_min_width=0x7f080078;
public static int design_bottom_navigation_margin=0x7f080079;
public static int design_bottom_navigation_shadow_height=0x7f08007a;
public static int design_bottom_navigation_text_size=0x7f08007b;
public static int design_bottom_sheet_modal_elevation=0x7f08007c;
public static int design_bottom_sheet_peek_height_min=0x7f08007d;
public static int design_fab_border_width=0x7f08007e;
public static int design_fab_elevation=0x7f08007f;
public static int design_fab_image_size=0x7f080080;
public static int design_fab_size_mini=0x7f080081;
public static int design_fab_size_normal=0x7f080082;
public static int design_fab_translation_z_pressed=0x7f080083;
public static int design_navigation_elevation=0x7f080084;
public static int design_navigation_icon_padding=0x7f080085;
public static int design_navigation_icon_size=0x7f080086;
public static int design_navigation_max_width=0x7f08006a;
public static int design_navigation_padding_bottom=0x7f080087;
public static int design_navigation_separator_vertical_padding=0x7f080088;
public static int design_snackbar_action_inline_max_width=0x7f08006b;
public static int design_snackbar_background_corner_radius=0x7f08006c;
public static int design_snackbar_elevation=0x7f080089;
public static int design_snackbar_extra_spacing_horizontal=0x7f08006d;
public static int design_snackbar_max_width=0x7f08006e;
public static int design_snackbar_min_width=0x7f08006f;
public static int design_snackbar_padding_horizontal=0x7f08008a;
public static int design_snackbar_padding_vertical=0x7f08008b;
public static int design_snackbar_padding_vertical_2lines=0x7f080070;
public static int design_snackbar_text_size=0x7f08008c;
public static int design_tab_max_width=0x7f08008d;
public static int design_tab_scrollable_min_width=0x7f080071;
public static int design_tab_text_size=0x7f08008e;
public static int design_tab_text_size_2line=0x7f08008f;
public static int disabled_alpha_material_dark=0x7f080059;
public static int disabled_alpha_material_light=0x7f08005a;
public static int fastscroll_default_thickness=0x7f080000;
public static int fastscroll_margin=0x7f080001;
public static int fastscroll_minimum_range=0x7f080002;
public static int highlight_alpha_material_colored=0x7f08005b;
public static int highlight_alpha_material_dark=0x7f08005c;
public static int highlight_alpha_material_light=0x7f08005d;
public static int hint_alpha_material_dark=0x7f08005e;
public static int hint_alpha_material_light=0x7f08005f;
public static int hint_pressed_alpha_material_dark=0x7f080060;
public static int hint_pressed_alpha_material_light=0x7f080061;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f080003;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f080004;
public static int item_touch_helper_swipe_escape_velocity=0x7f080005;
public static int mr_controller_volume_group_list_item_height=0x7f080006;
public static int mr_controller_volume_group_list_item_icon_size=0x7f080007;
public static int mr_controller_volume_group_list_max_height=0x7f080008;
public static int mr_controller_volume_group_list_padding_top=0x7f08000b;
public static int mr_dialog_fixed_width_major=0x7f080009;
public static int mr_dialog_fixed_width_minor=0x7f08000a;
public static int notification_action_icon_size=0x7f080099;
public static int notification_action_text_size=0x7f08009a;
public static int notification_big_circle_margin=0x7f08009b;
public static int notification_content_margin_start=0x7f080091;
public static int notification_large_icon_height=0x7f08009c;
public static int notification_large_icon_width=0x7f08009d;
public static int notification_main_column_padding_top=0x7f080092;
public static int notification_media_narrow_margin=0x7f080093;
public static int notification_right_icon_size=0x7f08009e;
public static int notification_right_side_padding_top=0x7f080090;
public static int notification_small_icon_background_padding=0x7f08009f;
public static int notification_small_icon_size_as_large=0x7f0800a0;
public static int notification_subtext_size=0x7f0800a1;
public static int notification_top_pad=0x7f0800a2;
public static int notification_top_pad_large_text=0x7f0800a3;
public static int tooltip_corner_radius=0x7f080062;
public static int tooltip_horizontal_padding=0x7f080063;
public static int tooltip_margin=0x7f080064;
public static int tooltip_precise_anchor_extra_offset=0x7f080065;
public static int tooltip_precise_anchor_threshold=0x7f080066;
public static int tooltip_vertical_padding=0x7f080067;
public static int tooltip_y_offset_non_touch=0x7f080068;
public static int tooltip_y_offset_touch=0x7f080069;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static int abc_action_bar_item_background_material=0x7f020001;
public static int abc_btn_borderless_material=0x7f020002;
public static int abc_btn_check_material=0x7f020003;
public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static int abc_btn_colored_material=0x7f020006;
public static int abc_btn_default_mtrl_shape=0x7f020007;
public static int abc_btn_radio_material=0x7f020008;
public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static int abc_cab_background_internal_bg=0x7f02000d;
public static int abc_cab_background_top_material=0x7f02000e;
public static int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static int abc_control_background_material=0x7f020010;
public static int abc_dialog_material_background=0x7f020011;
public static int abc_edit_text_material=0x7f020012;
public static int abc_ic_ab_back_material=0x7f020013;
public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static int abc_ic_clear_material=0x7f020015;
public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static int abc_ic_go_search_api_material=0x7f020017;
public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static int abc_ic_menu_overflow_material=0x7f02001a;
public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static int abc_ic_search_api_material=0x7f02001e;
public static int abc_ic_star_black_16dp=0x7f02001f;
public static int abc_ic_star_black_36dp=0x7f020020;
public static int abc_ic_star_black_48dp=0x7f020021;
public static int abc_ic_star_half_black_16dp=0x7f020022;
public static int abc_ic_star_half_black_36dp=0x7f020023;
public static int abc_ic_star_half_black_48dp=0x7f020024;
public static int abc_ic_voice_search_api_material=0x7f020025;
public static int abc_item_background_holo_dark=0x7f020026;
public static int abc_item_background_holo_light=0x7f020027;
public static int abc_list_divider_mtrl_alpha=0x7f020028;
public static int abc_list_focused_holo=0x7f020029;
public static int abc_list_longpressed_holo=0x7f02002a;
public static int abc_list_pressed_holo_dark=0x7f02002b;
public static int abc_list_pressed_holo_light=0x7f02002c;
public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static int abc_list_selector_disabled_holo_light=0x7f020030;
public static int abc_list_selector_holo_dark=0x7f020031;
public static int abc_list_selector_holo_light=0x7f020032;
public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static int abc_popup_background_mtrl_mult=0x7f020034;
public static int abc_ratingbar_indicator_material=0x7f020035;
public static int abc_ratingbar_material=0x7f020036;
public static int abc_ratingbar_small_material=0x7f020037;
public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static int abc_seekbar_thumb_material=0x7f02003d;
public static int abc_seekbar_tick_mark_material=0x7f02003e;
public static int abc_seekbar_track_material=0x7f02003f;
public static int abc_spinner_mtrl_am_alpha=0x7f020040;
public static int abc_spinner_textfield_background_material=0x7f020041;
public static int abc_switch_thumb_material=0x7f020042;
public static int abc_switch_track_mtrl_alpha=0x7f020043;
public static int abc_tab_indicator_material=0x7f020044;
public static int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static int abc_text_cursor_material=0x7f020046;
public static int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static int abc_textfield_search_material=0x7f020051;
public static int abc_vector_test=0x7f020052;
public static int avd_hide_password=0x7f020053;
public static int avd_hide_password_1=0x7f020132;
public static int avd_hide_password_2=0x7f020133;
public static int avd_hide_password_3=0x7f020134;
public static int avd_show_password=0x7f020054;
public static int avd_show_password_1=0x7f020135;
public static int avd_show_password_2=0x7f020136;
public static int avd_show_password_3=0x7f020137;
public static int design_bottom_navigation_item_background=0x7f020055;
public static int design_fab_background=0x7f020056;
public static int design_ic_visibility=0x7f020057;
public static int design_ic_visibility_off=0x7f020058;
public static int design_password_eye=0x7f020059;
public static int design_snackbar_background=0x7f02005a;
public static int fundo=0x7f02005b;
public static int ic_audiotrack_dark=0x7f02005c;
public static int ic_audiotrack_light=0x7f02005d;
public static int ic_dialog_close_dark=0x7f02005e;
public static int ic_dialog_close_light=0x7f02005f;
public static int ic_group_collapse_00=0x7f020060;
public static int ic_group_collapse_01=0x7f020061;
public static int ic_group_collapse_02=0x7f020062;
public static int ic_group_collapse_03=0x7f020063;
public static int ic_group_collapse_04=0x7f020064;
public static int ic_group_collapse_05=0x7f020065;
public static int ic_group_collapse_06=0x7f020066;
public static int ic_group_collapse_07=0x7f020067;
public static int ic_group_collapse_08=0x7f020068;
public static int ic_group_collapse_09=0x7f020069;
public static int ic_group_collapse_10=0x7f02006a;
public static int ic_group_collapse_11=0x7f02006b;
public static int ic_group_collapse_12=0x7f02006c;
public static int ic_group_collapse_13=0x7f02006d;
public static int ic_group_collapse_14=0x7f02006e;
public static int ic_group_collapse_15=0x7f02006f;
public static int ic_group_expand_00=0x7f020070;
public static int ic_group_expand_01=0x7f020071;
public static int ic_group_expand_02=0x7f020072;
public static int ic_group_expand_03=0x7f020073;
public static int ic_group_expand_04=0x7f020074;
public static int ic_group_expand_05=0x7f020075;
public static int ic_group_expand_06=0x7f020076;
public static int ic_group_expand_07=0x7f020077;
public static int ic_group_expand_08=0x7f020078;
public static int ic_group_expand_09=0x7f020079;
public static int ic_group_expand_10=0x7f02007a;
public static int ic_group_expand_11=0x7f02007b;
public static int ic_group_expand_12=0x7f02007c;
public static int ic_group_expand_13=0x7f02007d;
public static int ic_group_expand_14=0x7f02007e;
public static int ic_group_expand_15=0x7f02007f;
public static int ic_media_pause_dark=0x7f020080;
public static int ic_media_pause_light=0x7f020081;
public static int ic_media_play_dark=0x7f020082;
public static int ic_media_play_light=0x7f020083;
public static int ic_media_stop_dark=0x7f020084;
public static int ic_media_stop_light=0x7f020085;
public static int ic_mr_button_connected_00_dark=0x7f020086;
public static int ic_mr_button_connected_00_light=0x7f020087;
public static int ic_mr_button_connected_01_dark=0x7f020088;
public static int ic_mr_button_connected_01_light=0x7f020089;
public static int ic_mr_button_connected_02_dark=0x7f02008a;
public static int ic_mr_button_connected_02_light=0x7f02008b;
public static int ic_mr_button_connected_03_dark=0x7f02008c;
public static int ic_mr_button_connected_03_light=0x7f02008d;
public static int ic_mr_button_connected_04_dark=0x7f02008e;
public static int ic_mr_button_connected_04_light=0x7f02008f;
public static int ic_mr_button_connected_05_dark=0x7f020090;
public static int ic_mr_button_connected_05_light=0x7f020091;
public static int ic_mr_button_connected_06_dark=0x7f020092;
public static int ic_mr_button_connected_06_light=0x7f020093;
public static int ic_mr_button_connected_07_dark=0x7f020094;
public static int ic_mr_button_connected_07_light=0x7f020095;
public static int ic_mr_button_connected_08_dark=0x7f020096;
public static int ic_mr_button_connected_08_light=0x7f020097;
public static int ic_mr_button_connected_09_dark=0x7f020098;
public static int ic_mr_button_connected_09_light=0x7f020099;
public static int ic_mr_button_connected_10_dark=0x7f02009a;
public static int ic_mr_button_connected_10_light=0x7f02009b;
public static int ic_mr_button_connected_11_dark=0x7f02009c;
public static int ic_mr_button_connected_11_light=0x7f02009d;
public static int ic_mr_button_connected_12_dark=0x7f02009e;
public static int ic_mr_button_connected_12_light=0x7f02009f;
public static int ic_mr_button_connected_13_dark=0x7f0200a0;
public static int ic_mr_button_connected_13_light=0x7f0200a1;
public static int ic_mr_button_connected_14_dark=0x7f0200a2;
public static int ic_mr_button_connected_14_light=0x7f0200a3;
public static int ic_mr_button_connected_15_dark=0x7f0200a4;
public static int ic_mr_button_connected_15_light=0x7f0200a5;
public static int ic_mr_button_connected_16_dark=0x7f0200a6;
public static int ic_mr_button_connected_16_light=0x7f0200a7;
public static int ic_mr_button_connected_17_dark=0x7f0200a8;
public static int ic_mr_button_connected_17_light=0x7f0200a9;
public static int ic_mr_button_connected_18_dark=0x7f0200aa;
public static int ic_mr_button_connected_18_light=0x7f0200ab;
public static int ic_mr_button_connected_19_dark=0x7f0200ac;
public static int ic_mr_button_connected_19_light=0x7f0200ad;
public static int ic_mr_button_connected_20_dark=0x7f0200ae;
public static int ic_mr_button_connected_20_light=0x7f0200af;
public static int ic_mr_button_connected_21_dark=0x7f0200b0;
public static int ic_mr_button_connected_21_light=0x7f0200b1;
public static int ic_mr_button_connected_22_dark=0x7f0200b2;
public static int ic_mr_button_connected_22_light=0x7f0200b3;
public static int ic_mr_button_connected_23_dark=0x7f0200b4;
public static int ic_mr_button_connected_23_light=0x7f0200b5;
public static int ic_mr_button_connected_24_dark=0x7f0200b6;
public static int ic_mr_button_connected_24_light=0x7f0200b7;
public static int ic_mr_button_connected_25_dark=0x7f0200b8;
public static int ic_mr_button_connected_25_light=0x7f0200b9;
public static int ic_mr_button_connected_26_dark=0x7f0200ba;
public static int ic_mr_button_connected_26_light=0x7f0200bb;
public static int ic_mr_button_connected_27_dark=0x7f0200bc;
public static int ic_mr_button_connected_27_light=0x7f0200bd;
public static int ic_mr_button_connected_28_dark=0x7f0200be;
public static int ic_mr_button_connected_28_light=0x7f0200bf;
public static int ic_mr_button_connected_29_dark=0x7f0200c0;
public static int ic_mr_button_connected_29_light=0x7f0200c1;
public static int ic_mr_button_connected_30_dark=0x7f0200c2;
public static int ic_mr_button_connected_30_light=0x7f0200c3;
public static int ic_mr_button_connecting_00_dark=0x7f0200c4;
public static int ic_mr_button_connecting_00_light=0x7f0200c5;
public static int ic_mr_button_connecting_01_dark=0x7f0200c6;
public static int ic_mr_button_connecting_01_light=0x7f0200c7;
public static int ic_mr_button_connecting_02_dark=0x7f0200c8;
public static int ic_mr_button_connecting_02_light=0x7f0200c9;
public static int ic_mr_button_connecting_03_dark=0x7f0200ca;
public static int ic_mr_button_connecting_03_light=0x7f0200cb;
public static int ic_mr_button_connecting_04_dark=0x7f0200cc;
public static int ic_mr_button_connecting_04_light=0x7f0200cd;
public static int ic_mr_button_connecting_05_dark=0x7f0200ce;
public static int ic_mr_button_connecting_05_light=0x7f0200cf;
public static int ic_mr_button_connecting_06_dark=0x7f0200d0;
public static int ic_mr_button_connecting_06_light=0x7f0200d1;
public static int ic_mr_button_connecting_07_dark=0x7f0200d2;
public static int ic_mr_button_connecting_07_light=0x7f0200d3;
public static int ic_mr_button_connecting_08_dark=0x7f0200d4;
public static int ic_mr_button_connecting_08_light=0x7f0200d5;
public static int ic_mr_button_connecting_09_dark=0x7f0200d6;
public static int ic_mr_button_connecting_09_light=0x7f0200d7;
public static int ic_mr_button_connecting_10_dark=0x7f0200d8;
public static int ic_mr_button_connecting_10_light=0x7f0200d9;
public static int ic_mr_button_connecting_11_dark=0x7f0200da;
public static int ic_mr_button_connecting_11_light=0x7f0200db;
public static int ic_mr_button_connecting_12_dark=0x7f0200dc;
public static int ic_mr_button_connecting_12_light=0x7f0200dd;
public static int ic_mr_button_connecting_13_dark=0x7f0200de;
public static int ic_mr_button_connecting_13_light=0x7f0200df;
public static int ic_mr_button_connecting_14_dark=0x7f0200e0;
public static int ic_mr_button_connecting_14_light=0x7f0200e1;
public static int ic_mr_button_connecting_15_dark=0x7f0200e2;
public static int ic_mr_button_connecting_15_light=0x7f0200e3;
public static int ic_mr_button_connecting_16_dark=0x7f0200e4;
public static int ic_mr_button_connecting_16_light=0x7f0200e5;
public static int ic_mr_button_connecting_17_dark=0x7f0200e6;
public static int ic_mr_button_connecting_17_light=0x7f0200e7;
public static int ic_mr_button_connecting_18_dark=0x7f0200e8;
public static int ic_mr_button_connecting_18_light=0x7f0200e9;
public static int ic_mr_button_connecting_19_dark=0x7f0200ea;
public static int ic_mr_button_connecting_19_light=0x7f0200eb;
public static int ic_mr_button_connecting_20_dark=0x7f0200ec;
public static int ic_mr_button_connecting_20_light=0x7f0200ed;
public static int ic_mr_button_connecting_21_dark=0x7f0200ee;
public static int ic_mr_button_connecting_21_light=0x7f0200ef;
public static int ic_mr_button_connecting_22_dark=0x7f0200f0;
public static int ic_mr_button_connecting_22_light=0x7f0200f1;
public static int ic_mr_button_connecting_23_dark=0x7f0200f2;
public static int ic_mr_button_connecting_23_light=0x7f0200f3;
public static int ic_mr_button_connecting_24_dark=0x7f0200f4;
public static int ic_mr_button_connecting_24_light=0x7f0200f5;
public static int ic_mr_button_connecting_25_dark=0x7f0200f6;
public static int ic_mr_button_connecting_25_light=0x7f0200f7;
public static int ic_mr_button_connecting_26_dark=0x7f0200f8;
public static int ic_mr_button_connecting_26_light=0x7f0200f9;
public static int ic_mr_button_connecting_27_dark=0x7f0200fa;
public static int ic_mr_button_connecting_27_light=0x7f0200fb;
public static int ic_mr_button_connecting_28_dark=0x7f0200fc;
public static int ic_mr_button_connecting_28_light=0x7f0200fd;
public static int ic_mr_button_connecting_29_dark=0x7f0200fe;
public static int ic_mr_button_connecting_29_light=0x7f0200ff;
public static int ic_mr_button_connecting_30_dark=0x7f020100;
public static int ic_mr_button_connecting_30_light=0x7f020101;
public static int ic_mr_button_disabled_dark=0x7f020102;
public static int ic_mr_button_disabled_light=0x7f020103;
public static int ic_mr_button_disconnected_dark=0x7f020104;
public static int ic_mr_button_disconnected_light=0x7f020105;
public static int ic_mr_button_grey=0x7f020106;
public static int ic_vol_type_speaker_dark=0x7f020107;
public static int ic_vol_type_speaker_group_dark=0x7f020108;
public static int ic_vol_type_speaker_group_light=0x7f020109;
public static int ic_vol_type_speaker_light=0x7f02010a;
public static int ic_vol_type_tv_dark=0x7f02010b;
public static int ic_vol_type_tv_light=0x7f02010c;
public static int logo=0x7f02010d;
public static int mr_button_connected_dark=0x7f02010e;
public static int mr_button_connected_light=0x7f02010f;
public static int mr_button_connecting_dark=0x7f020110;
public static int mr_button_connecting_light=0x7f020111;
public static int mr_button_dark=0x7f020112;
public static int mr_button_light=0x7f020113;
public static int mr_dialog_close_dark=0x7f020114;
public static int mr_dialog_close_light=0x7f020115;
public static int mr_dialog_material_background_dark=0x7f020116;
public static int mr_dialog_material_background_light=0x7f020117;
public static int mr_group_collapse=0x7f020118;
public static int mr_group_expand=0x7f020119;
public static int mr_media_pause_dark=0x7f02011a;
public static int mr_media_pause_light=0x7f02011b;
public static int mr_media_play_dark=0x7f02011c;
public static int mr_media_play_light=0x7f02011d;
public static int mr_media_stop_dark=0x7f02011e;
public static int mr_media_stop_light=0x7f02011f;
public static int mr_vol_type_audiotrack_dark=0x7f020120;
public static int mr_vol_type_audiotrack_light=0x7f020121;
public static int navigation_empty_icon=0x7f020122;
public static int notification_action_background=0x7f020123;
public static int notification_bg=0x7f020124;
public static int notification_bg_low=0x7f020125;
public static int notification_bg_low_normal=0x7f020126;
public static int notification_bg_low_pressed=0x7f020127;
public static int notification_bg_normal=0x7f020128;
public static int notification_bg_normal_pressed=0x7f020129;
public static int notification_icon_background=0x7f02012a;
public static int notification_template_icon_bg=0x7f020130;
public static int notification_template_icon_low_bg=0x7f020131;
public static int notification_tile_bg=0x7f02012b;
public static int notify_panel_notification_icon_bg=0x7f02012c;
public static int perfil=0x7f02012d;
public static int tooltip_frame_dark=0x7f02012e;
public static int tooltip_frame_light=0x7f02012f;
}
public static final class id {
public static int ALT=0x7f090032;
public static int CTRL=0x7f090033;
public static int FUNCTION=0x7f090034;
public static int META=0x7f090035;
public static int SHIFT=0x7f090036;
public static int SYM=0x7f090037;
public static int action0=0x7f0900b6;
public static int action_bar=0x7f09007c;
public static int action_bar_activity_content=0x7f090001;
public static int action_bar_container=0x7f09007b;
public static int action_bar_root=0x7f090077;
public static int action_bar_spinner=0x7f090002;
public static int action_bar_subtitle=0x7f09005b;
public static int action_bar_title=0x7f09005a;
public static int action_container=0x7f0900b3;
public static int action_context_bar=0x7f09007d;
public static int action_divider=0x7f0900ba;
public static int action_image=0x7f0900b4;
public static int action_menu_divider=0x7f090003;
public static int action_menu_presenter=0x7f090004;
public static int action_mode_bar=0x7f090079;
public static int action_mode_bar_stub=0x7f090078;
public static int action_mode_close_button=0x7f09005c;
public static int action_text=0x7f0900b5;
public static int actions=0x7f0900c3;
public static int activity_chooser_view_content=0x7f09005d;
public static int add=0x7f090027;
public static int alertTitle=0x7f090070;
public static int all=0x7f090052;
public static int always=0x7f090038;
public static int async=0x7f090056;
public static int auto=0x7f090044;
public static int beginning=0x7f09002f;
public static int blocking=0x7f090057;
public static int bottom=0x7f09003d;
public static int buttonPanel=0x7f090063;
public static int cancel_action=0x7f0900b7;
public static int center=0x7f090045;
public static int center_horizontal=0x7f090046;
public static int center_vertical=0x7f090047;
public static int checkbox=0x7f090073;
public static int chronometer=0x7f0900bf;
public static int clip_horizontal=0x7f09004e;
public static int clip_vertical=0x7f09004f;
public static int collapseActionView=0x7f090039;
public static int container=0x7f09008d;
public static int contentPanel=0x7f090066;
public static int coordinator=0x7f09008e;
public static int custom=0x7f09006d;
public static int customPanel=0x7f09006c;
public static int decor_content_parent=0x7f09007a;
public static int default_activity_button=0x7f090060;
public static int design_bottom_sheet=0x7f090090;
public static int design_menu_item_action_area=0x7f090097;
public static int design_menu_item_action_area_stub=0x7f090096;
public static int design_menu_item_text=0x7f090095;
public static int design_navigation_view=0x7f090094;
public static int disableHome=0x7f090020;
public static int edit_query=0x7f09007e;
public static int end=0x7f090030;
public static int end_padder=0x7f0900c5;
public static int enterAlways=0x7f09003f;
public static int enterAlwaysCollapsed=0x7f090040;
public static int exitUntilCollapsed=0x7f090041;
public static int expand_activities_button=0x7f09005e;
public static int expanded_menu=0x7f090072;
public static int fill=0x7f090050;
public static int fill_horizontal=0x7f090051;
public static int fill_vertical=0x7f090048;
public static int fixed=0x7f090054;
public static int forever=0x7f090058;
public static int ghost_view=0x7f09000a;
public static int home=0x7f090005;
public static int homeAsUp=0x7f090021;
public static int icon=0x7f090062;
public static int icon_group=0x7f0900c4;
public static int ifRoom=0x7f09003a;
public static int image=0x7f09005f;
public static int info=0x7f0900c0;
public static int italic=0x7f090059;
public static int item_touch_helper_previous_elevation=0x7f090000;
public static int largeLabel=0x7f09008c;
public static int left=0x7f090049;
public static int line1=0x7f090017;
public static int line3=0x7f090018;
public static int listMode=0x7f09001d;
public static int list_item=0x7f090061;
public static int masked=0x7f0900ca;
public static int media_actions=0x7f0900b9;
public static int message=0x7f0900c8;
public static int middle=0x7f090031;
public static int mini=0x7f090053;
public static int mr_art=0x7f0900a5;
public static int mr_chooser_list=0x7f09009a;
public static int mr_chooser_route_desc=0x7f09009d;
public static int mr_chooser_route_icon=0x7f09009b;
public static int mr_chooser_route_name=0x7f09009c;
public static int mr_chooser_title=0x7f090099;
public static int mr_close=0x7f0900a2;
public static int mr_control_divider=0x7f0900a8;
public static int mr_control_playback_ctrl=0x7f0900ae;
public static int mr_control_subtitle=0x7f0900b1;
public static int mr_control_title=0x7f0900b0;
public static int mr_control_title_container=0x7f0900af;
public static int mr_custom_control=0x7f0900a3;
public static int mr_default_control=0x7f0900a4;
public static int mr_dialog_area=0x7f09009f;
public static int mr_expandable_area=0x7f09009e;
public static int mr_group_expand_collapse=0x7f0900b2;
public static int mr_media_main_control=0x7f0900a6;
public static int mr_name=0x7f0900a1;
public static int mr_playback_control=0x7f0900a7;
public static int mr_title_bar=0x7f0900a0;
public static int mr_volume_control=0x7f0900a9;
public static int mr_volume_group_list=0x7f0900aa;
public static int mr_volume_item_icon=0x7f0900ac;
public static int mr_volume_slider=0x7f0900ad;
public static int multiply=0x7f090028;
public static int navigation_header_container=0x7f090093;
public static int never=0x7f09003b;
public static int none=0x7f090022;
public static int normal=0x7f09001e;
public static int notification_background=0x7f0900c2;
public static int notification_main_column=0x7f0900bc;
public static int notification_main_column_container=0x7f0900bb;
public static int parallax=0x7f09004c;
public static int parentPanel=0x7f090065;
public static int parent_matrix=0x7f09000b;
public static int pin=0x7f09004d;
public static int progress_circular=0x7f090006;
public static int progress_horizontal=0x7f090007;
public static int radio=0x7f090075;
public static int right=0x7f09004a;
public static int right_icon=0x7f0900c1;
public static int right_side=0x7f0900bd;
public static int save_image_matrix=0x7f09000c;
public static int save_non_transition_alpha=0x7f09000d;
public static int save_scale_type=0x7f09000e;
public static int screen=0x7f090029;
public static int scroll=0x7f090042;
public static int scrollIndicatorDown=0x7f09006b;
public static int scrollIndicatorUp=0x7f090067;
public static int scrollView=0x7f090068;
public static int scrollable=0x7f090055;
public static int search_badge=0x7f090080;
public static int search_bar=0x7f09007f;
public static int search_button=0x7f090081;
public static int search_close_btn=0x7f090086;
public static int search_edit_frame=0x7f090082;
public static int search_go_btn=0x7f090088;
public static int search_mag_icon=0x7f090083;
public static int search_plate=0x7f090084;
public static int search_src_text=0x7f090085;
public static int search_voice_btn=0x7f090089;
public static int select_dialog_listview=0x7f09008a;
public static int shortcut=0x7f090074;
public static int showCustom=0x7f090023;
public static int showHome=0x7f090024;
public static int showTitle=0x7f090025;
public static int sliding_tabs=0x7f0900c6;
public static int smallLabel=0x7f09008b;
public static int snackbar_action=0x7f090092;
public static int snackbar_text=0x7f090091;
public static int snap=0x7f090043;
public static int spacer=0x7f090064;
public static int split_action_bar=0x7f090008;
public static int src_atop=0x7f09002a;
public static int src_in=0x7f09002b;
public static int src_over=0x7f09002c;
public static int start=0x7f09004b;
public static int status_bar_latest_event_content=0x7f0900b8;
public static int submenuarrow=0x7f090076;
public static int submit_area=0x7f090087;
public static int tabMode=0x7f09001f;
public static int tag_transition_group=0x7f090019;
public static int text=0x7f09001a;
public static int text2=0x7f09001b;
public static int textSpacerNoButtons=0x7f09006a;
public static int textSpacerNoTitle=0x7f090069;
public static int text_input_password_toggle=0x7f090098;
public static int textinput_counter=0x7f090014;
public static int textinput_error=0x7f090015;
public static int time=0x7f0900be;
public static int title=0x7f09001c;
public static int titleDividerNoCustom=0x7f090071;
public static int title_template=0x7f09006f;
public static int toolbar=0x7f0900c7;
public static int top=0x7f09003e;
public static int topPanel=0x7f09006e;
public static int touch_outside=0x7f09008f;
public static int transition_current_scene=0x7f09000f;
public static int transition_layout_save=0x7f090010;
public static int transition_position=0x7f090011;
public static int transition_scene_layoutid_cache=0x7f090012;
public static int transition_transform=0x7f090013;
public static int uniform=0x7f09002d;
public static int up=0x7f090009;
public static int useLogo=0x7f090026;
public static int view_offset_helper=0x7f090016;
public static int visible=0x7f0900c9;
public static int volume_item_container=0x7f0900ab;
public static int withText=0x7f09003c;
public static int wrap_content=0x7f09002e;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f0b0003;
public static int abc_config_activityShortDur=0x7f0b0004;
public static int app_bar_elevation_anim_duration=0x7f0b0008;
public static int bottom_sheet_slide_duration=0x7f0b0009;
public static int cancel_button_image_alpha=0x7f0b0005;
public static int config_tooltipAnimTime=0x7f0b0006;
public static int design_snackbar_text_max_lines=0x7f0b0007;
public static int hide_password_duration=0x7f0b000a;
public static int mr_controller_volume_group_list_animation_duration_ms=0x7f0b0000;
public static int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0b0001;
public static int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0b0002;
public static int show_password_duration=0x7f0b000b;
public static int status_bar_notification_info_maxnum=0x7f0b000c;
}
public static final class interpolator {
public static int mr_fast_out_slow_in=0x7f070000;
public static int mr_linear_out_slow_in=0x7f070001;
}
public static final class layout {
public static int abc_action_bar_title_item=0x7f040000;
public static int abc_action_bar_up_container=0x7f040001;
public static int abc_action_menu_item_layout=0x7f040002;
public static int abc_action_menu_layout=0x7f040003;
public static int abc_action_mode_bar=0x7f040004;
public static int abc_action_mode_close_item_material=0x7f040005;
public static int abc_activity_chooser_view=0x7f040006;
public static int abc_activity_chooser_view_list_item=0x7f040007;
public static int abc_alert_dialog_button_bar_material=0x7f040008;
public static int abc_alert_dialog_material=0x7f040009;
public static int abc_alert_dialog_title_material=0x7f04000a;
public static int abc_dialog_title_material=0x7f04000b;
public static int abc_expanded_menu_layout=0x7f04000c;
public static int abc_list_menu_item_checkbox=0x7f04000d;
public static int abc_list_menu_item_icon=0x7f04000e;
public static int abc_list_menu_item_layout=0x7f04000f;
public static int abc_list_menu_item_radio=0x7f040010;
public static int abc_popup_menu_header_item_layout=0x7f040011;
public static int abc_popup_menu_item_layout=0x7f040012;
public static int abc_screen_content_include=0x7f040013;
public static int abc_screen_simple=0x7f040014;
public static int abc_screen_simple_overlay_action_mode=0x7f040015;
public static int abc_screen_toolbar=0x7f040016;
public static int abc_search_dropdown_item_icons_2line=0x7f040017;
public static int abc_search_view=0x7f040018;
public static int abc_select_dialog_material=0x7f040019;
public static int design_bottom_navigation_item=0x7f04001a;
public static int design_bottom_sheet_dialog=0x7f04001b;
public static int design_layout_snackbar=0x7f04001c;
public static int design_layout_snackbar_include=0x7f04001d;
public static int design_layout_tab_icon=0x7f04001e;
public static int design_layout_tab_text=0x7f04001f;
public static int design_menu_item_action_area=0x7f040020;
public static int design_navigation_item=0x7f040021;
public static int design_navigation_item_header=0x7f040022;
public static int design_navigation_item_separator=0x7f040023;
public static int design_navigation_item_subheader=0x7f040024;
public static int design_navigation_menu=0x7f040025;
public static int design_navigation_menu_item=0x7f040026;
public static int design_text_input_password_icon=0x7f040027;
public static int mr_chooser_dialog=0x7f040028;
public static int mr_chooser_list_item=0x7f040029;
public static int mr_controller_material_dialog_b=0x7f04002a;
public static int mr_controller_volume_item=0x7f04002b;
public static int mr_playback_control=0x7f04002c;
public static int mr_volume_control=0x7f04002d;
public static int notification_action=0x7f04002e;
public static int notification_action_tombstone=0x7f04002f;
public static int notification_media_action=0x7f040030;
public static int notification_media_cancel_action=0x7f040031;
public static int notification_template_big_media=0x7f040032;
public static int notification_template_big_media_custom=0x7f040033;
public static int notification_template_big_media_narrow=0x7f040034;
public static int notification_template_big_media_narrow_custom=0x7f040035;
public static int notification_template_custom_big=0x7f040036;
public static int notification_template_icon_group=0x7f040037;
public static int notification_template_lines_media=0x7f040038;
public static int notification_template_media=0x7f040039;
public static int notification_template_media_custom=0x7f04003a;
public static int notification_template_part_chronometer=0x7f04003b;
public static int notification_template_part_time=0x7f04003c;
public static int select_dialog_item_material=0x7f04003d;
public static int select_dialog_multichoice_material=0x7f04003e;
public static int select_dialog_singlechoice_material=0x7f04003f;
public static int support_simple_spinner_dropdown_item=0x7f040040;
public static int tabbar=0x7f040041;
public static int toolbar=0x7f040042;
public static int tooltip=0x7f040043;
}
public static final class mipmap {
public static int icon=0x7f030000;
public static int icon_round=0x7f030001;
public static int launcher_foreground=0x7f030002;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f0a0015;
public static int abc_action_bar_up_description=0x7f0a0016;
public static int abc_action_menu_overflow_description=0x7f0a0017;
public static int abc_action_mode_done=0x7f0a0018;
public static int abc_activity_chooser_view_see_all=0x7f0a0019;
public static int abc_activitychooserview_choose_application=0x7f0a001a;
public static int abc_capital_off=0x7f0a001b;
public static int abc_capital_on=0x7f0a001c;
public static int abc_font_family_body_1_material=0x7f0a0027;
public static int abc_font_family_body_2_material=0x7f0a0028;
public static int abc_font_family_button_material=0x7f0a0029;
public static int abc_font_family_caption_material=0x7f0a002a;
public static int abc_font_family_display_1_material=0x7f0a002b;
public static int abc_font_family_display_2_material=0x7f0a002c;
public static int abc_font_family_display_3_material=0x7f0a002d;
public static int abc_font_family_display_4_material=0x7f0a002e;
public static int abc_font_family_headline_material=0x7f0a002f;
public static int abc_font_family_menu_material=0x7f0a0030;
public static int abc_font_family_subhead_material=0x7f0a0031;
public static int abc_font_family_title_material=0x7f0a0032;
public static int abc_search_hint=0x7f0a001d;
public static int abc_searchview_description_clear=0x7f0a001e;
public static int abc_searchview_description_query=0x7f0a001f;
public static int abc_searchview_description_search=0x7f0a0020;
public static int abc_searchview_description_submit=0x7f0a0021;
public static int abc_searchview_description_voice=0x7f0a0022;
public static int abc_shareactionprovider_share_with=0x7f0a0023;
public static int abc_shareactionprovider_share_with_application=0x7f0a0024;
public static int abc_toolbar_collapse_description=0x7f0a0025;
public static int appbar_scrolling_view_behavior=0x7f0a0033;
public static int bottom_sheet_behavior=0x7f0a0034;
public static int character_counter_pattern=0x7f0a0035;
public static int mr_button_content_description=0x7f0a0000;
public static int mr_cast_button_connected=0x7f0a0001;
public static int mr_cast_button_connecting=0x7f0a0002;
public static int mr_cast_button_disconnected=0x7f0a0003;
public static int mr_chooser_searching=0x7f0a0004;
public static int mr_chooser_title=0x7f0a0005;
public static int mr_controller_album_art=0x7f0a0006;
public static int mr_controller_casting_screen=0x7f0a0007;
public static int mr_controller_close_description=0x7f0a0008;
public static int mr_controller_collapse_group=0x7f0a0009;
public static int mr_controller_disconnect=0x7f0a000a;
public static int mr_controller_expand_group=0x7f0a000b;
public static int mr_controller_no_info_available=0x7f0a000c;
public static int mr_controller_no_media_selected=0x7f0a000d;
public static int mr_controller_pause=0x7f0a000e;
public static int mr_controller_play=0x7f0a000f;
public static int mr_controller_stop=0x7f0a0010;
public static int mr_controller_stop_casting=0x7f0a0011;
public static int mr_controller_volume_slider=0x7f0a0012;
public static int mr_system_route_name=0x7f0a0013;
public static int mr_user_route_category_name=0x7f0a0014;
public static int password_toggle_content_description=0x7f0a0036;
public static int path_password_eye=0x7f0a0037;
public static int path_password_eye_mask_strike_through=0x7f0a0038;
public static int path_password_eye_mask_visible=0x7f0a0039;
public static int path_password_strike_through=0x7f0a003a;
public static int search_menu_title=0x7f0a0026;
public static int status_bar_notification_info_overflow=0x7f0a003b;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f0c00a4;
public static int AlertDialog_AppCompat_Light=0x7f0c00a5;
public static int Animation_AppCompat_Dialog=0x7f0c00a6;
public static int Animation_AppCompat_DropDownUp=0x7f0c00a7;
public static int Animation_AppCompat_Tooltip=0x7f0c00a8;
public static int Animation_Design_BottomSheetDialog=0x7f0c016e;
public static int AppCompatDialogStyle=0x7f0c0191;
public static int Base_AlertDialog_AppCompat=0x7f0c00a9;
public static int Base_AlertDialog_AppCompat_Light=0x7f0c00aa;
public static int Base_Animation_AppCompat_Dialog=0x7f0c00ab;
public static int Base_Animation_AppCompat_DropDownUp=0x7f0c00ac;
public static int Base_Animation_AppCompat_Tooltip=0x7f0c00ad;
public static int Base_CardView=0x7f0c000c;
public static int Base_DialogWindowTitle_AppCompat=0x7f0c00ae;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0c00af;
public static int Base_TextAppearance_AppCompat=0x7f0c0048;
public static int Base_TextAppearance_AppCompat_Body1=0x7f0c0049;
public static int Base_TextAppearance_AppCompat_Body2=0x7f0c004a;
public static int Base_TextAppearance_AppCompat_Button=0x7f0c0036;
public static int Base_TextAppearance_AppCompat_Caption=0x7f0c004b;
public static int Base_TextAppearance_AppCompat_Display1=0x7f0c004c;
public static int Base_TextAppearance_AppCompat_Display2=0x7f0c004d;
public static int Base_TextAppearance_AppCompat_Display3=0x7f0c004e;
public static int Base_TextAppearance_AppCompat_Display4=0x7f0c004f;
public static int Base_TextAppearance_AppCompat_Headline=0x7f0c0050;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f0c001a;
public static int Base_TextAppearance_AppCompat_Large=0x7f0c0051;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001b;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c0052;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c0053;
public static int Base_TextAppearance_AppCompat_Medium=0x7f0c0054;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001c;
public static int Base_TextAppearance_AppCompat_Menu=0x7f0c0055;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0c00b0;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0056;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0057;
public static int Base_TextAppearance_AppCompat_Small=0x7f0c0058;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c001d;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f0c0059;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c001e;
public static int Base_TextAppearance_AppCompat_Title=0x7f0c005a;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c001f;
public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0c00b1;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0095;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c005b;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c005c;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c005d;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c005e;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c005f;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0060;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0061;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c009c;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c009d;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0096;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00b2;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0062;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0063;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0064;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0065;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0066;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00b3;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0067;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0068;
public static int Base_Theme_AppCompat=0x7f0c0069;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0c00b4;
public static int Base_Theme_AppCompat_Dialog=0x7f0c0020;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0021;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c00b5;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0022;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0010;
public static int Base_Theme_AppCompat_Light=0x7f0c006a;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c00b6;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f0c0023;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0024;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c00b7;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0025;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0011;
public static int Base_ThemeOverlay_AppCompat=0x7f0c00b8;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c00b9;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0c00ba;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00bb;
public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0026;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0027;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0c00bc;
public static int Base_V11_Theme_AppCompat_Dialog=0x7f0c0028;
public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c0029;
public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0c002a;
public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0c0032;
public static int Base_V12_Widget_AppCompat_EditText=0x7f0c0033;
public static int Base_V14_Widget_Design_AppBarLayout=0x7f0c016f;
public static int Base_V21_Theme_AppCompat=0x7f0c006b;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f0c006c;
public static int Base_V21_Theme_AppCompat_Light=0x7f0c006d;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c006e;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c006f;
public static int Base_V21_Widget_Design_AppBarLayout=0x7f0c016b;
public static int Base_V22_Theme_AppCompat=0x7f0c0093;
public static int Base_V22_Theme_AppCompat_Light=0x7f0c0094;
public static int Base_V23_Theme_AppCompat=0x7f0c0097;
public static int Base_V23_Theme_AppCompat_Light=0x7f0c0098;
public static int Base_V26_Theme_AppCompat=0x7f0c00a0;
public static int Base_V26_Theme_AppCompat_Light=0x7f0c00a1;
public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0c00a2;
public static int Base_V26_Widget_Design_AppBarLayout=0x7f0c016d;
public static int Base_V7_Theme_AppCompat=0x7f0c00bd;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0c00be;
public static int Base_V7_Theme_AppCompat_Light=0x7f0c00bf;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c00c0;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c00c1;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c00c2;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0c00c3;
public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0c00c4;
public static int Base_Widget_AppCompat_ActionBar=0x7f0c00c5;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c00c6;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c00c7;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c0070;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c0071;
public static int Base_Widget_AppCompat_ActionButton=0x7f0c0072;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c0073;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0074;
public static int Base_Widget_AppCompat_ActionMode=0x7f0c00c8;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0c00c9;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0034;
public static int Base_Widget_AppCompat_Button=0x7f0c0075;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f0c0076;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0077;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c00ca;
public static int Base_Widget_AppCompat_Button_Colored=0x7f0c0099;
public static int Base_Widget_AppCompat_Button_Small=0x7f0c0078;
public static int Base_Widget_AppCompat_ButtonBar=0x7f0c0079;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c00cb;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007a;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007b;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c00cc;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c000f;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c00cd;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c007c;
public static int Base_Widget_AppCompat_EditText=0x7f0c0035;
public static int Base_Widget_AppCompat_ImageButton=0x7f0c007d;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0c00ce;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c00cf;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c00d0;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c007e;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c007f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0080;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0081;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0082;
public static int Base_Widget_AppCompat_ListMenuView=0x7f0c00d1;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0c0083;
public static int Base_Widget_AppCompat_ListView=0x7f0c0084;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0085;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f0c0086;
public static int Base_Widget_AppCompat_PopupMenu=0x7f0c0087;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0088;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0c00d2;
public static int Base_Widget_AppCompat_ProgressBar=0x7f0c002b;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c002c;
public static int Base_Widget_AppCompat_RatingBar=0x7f0c0089;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c009a;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0c009b;
public static int Base_Widget_AppCompat_SearchView=0x7f0c00d3;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c00d4;
public static int Base_Widget_AppCompat_SeekBar=0x7f0c008a;
public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c00d5;
public static int Base_Widget_AppCompat_Spinner=0x7f0c008b;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c0012;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c008c;
public static int Base_Widget_AppCompat_Toolbar=0x7f0c00a3;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c008d;
public static int Base_Widget_Design_AppBarLayout=0x7f0c016c;
public static int Base_Widget_Design_TabLayout=0x7f0c0170;
public static int CardView=0x7f0c000b;
public static int CardView_Dark=0x7f0c000d;
public static int CardView_Light=0x7f0c000e;
public static int MainTheme=0x7f0c018f;
/** Base theme applied no matter what API
*/
public static int MainTheme_Base=0x7f0c0190;
public static int Platform_AppCompat=0x7f0c002d;
public static int Platform_AppCompat_Light=0x7f0c002e;
public static int Platform_ThemeOverlay_AppCompat=0x7f0c008e;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c008f;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0c0090;
public static int Platform_V11_AppCompat=0x7f0c002f;
public static int Platform_V11_AppCompat_Light=0x7f0c0030;
public static int Platform_V14_AppCompat=0x7f0c0037;
public static int Platform_V14_AppCompat_Light=0x7f0c0038;
public static int Platform_V21_AppCompat=0x7f0c0091;
public static int Platform_V21_AppCompat_Light=0x7f0c0092;
public static int Platform_V25_AppCompat=0x7f0c009e;
public static int Platform_V25_AppCompat_Light=0x7f0c009f;
public static int Platform_Widget_AppCompat_Spinner=0x7f0c0031;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c003a;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c003b;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c003c;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c003d;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c003e;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c003f;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c0040;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c0041;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c0042;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c0043;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c0044;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c0045;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c0046;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c0047;
public static int TextAppearance_AppCompat=0x7f0c00d6;
public static int TextAppearance_AppCompat_Body1=0x7f0c00d7;
public static int TextAppearance_AppCompat_Body2=0x7f0c00d8;
public static int TextAppearance_AppCompat_Button=0x7f0c00d9;
public static int TextAppearance_AppCompat_Caption=0x7f0c00da;
public static int TextAppearance_AppCompat_Display1=0x7f0c00db;
public static int TextAppearance_AppCompat_Display2=0x7f0c00dc;
public static int TextAppearance_AppCompat_Display3=0x7f0c00dd;
public static int TextAppearance_AppCompat_Display4=0x7f0c00de;
public static int TextAppearance_AppCompat_Headline=0x7f0c00df;
public static int TextAppearance_AppCompat_Inverse=0x7f0c00e0;
public static int TextAppearance_AppCompat_Large=0x7f0c00e1;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0c00e2;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00e3;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00e4;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00e5;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00e6;
public static int TextAppearance_AppCompat_Medium=0x7f0c00e7;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00e8;
public static int TextAppearance_AppCompat_Menu=0x7f0c00e9;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00ea;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00eb;
public static int TextAppearance_AppCompat_Small=0x7f0c00ec;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f0c00ed;
public static int TextAppearance_AppCompat_Subhead=0x7f0c00ee;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00ef;
public static int TextAppearance_AppCompat_Title=0x7f0c00f0;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f0c00f1;
public static int TextAppearance_AppCompat_Tooltip=0x7f0c0039;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00f2;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00f3;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00f4;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00f5;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00f6;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00f7;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00f8;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00f9;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00fa;
public static int TextAppearance_AppCompat_Widget_Button=0x7f0c00fb;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00fc;
public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00fd;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00fe;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00ff;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0100;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0101;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0102;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f0c0103;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0104;
public static int TextAppearance_Compat_Notification=0x7f0c0188;
public static int TextAppearance_Compat_Notification_Info=0x7f0c0189;
public static int TextAppearance_Compat_Notification_Info_Media=0x7f0c0165;
public static int TextAppearance_Compat_Notification_Line2=0x7f0c018e;
public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0c0169;
public static int TextAppearance_Compat_Notification_Media=0x7f0c0166;
public static int TextAppearance_Compat_Notification_Time=0x7f0c018a;
public static int TextAppearance_Compat_Notification_Time_Media=0x7f0c0167;
public static int TextAppearance_Compat_Notification_Title=0x7f0c018b;
public static int TextAppearance_Compat_Notification_Title_Media=0x7f0c0168;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0c0171;
public static int TextAppearance_Design_Counter=0x7f0c0172;
public static int TextAppearance_Design_Counter_Overflow=0x7f0c0173;
public static int TextAppearance_Design_Error=0x7f0c0174;
public static int TextAppearance_Design_Hint=0x7f0c0175;
public static int TextAppearance_Design_Snackbar_Message=0x7f0c0176;
public static int TextAppearance_Design_Tab=0x7f0c0177;
public static int TextAppearance_MediaRouter_PrimaryText=0x7f0c0000;
public static int TextAppearance_MediaRouter_SecondaryText=0x7f0c0001;
public static int TextAppearance_MediaRouter_Title=0x7f0c0002;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0105;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0106;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0107;
public static int Theme_AppCompat=0x7f0c0108;
public static int Theme_AppCompat_CompactMenu=0x7f0c0109;
public static int Theme_AppCompat_DayNight=0x7f0c0013;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c0014;
public static int Theme_AppCompat_DayNight_Dialog=0x7f0c0015;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c0016;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0017;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0018;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0019;
public static int Theme_AppCompat_Dialog=0x7f0c010a;
public static int Theme_AppCompat_Dialog_Alert=0x7f0c010b;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f0c010c;
public static int Theme_AppCompat_DialogWhenLarge=0x7f0c010d;
public static int Theme_AppCompat_Light=0x7f0c010e;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f0c010f;
public static int Theme_AppCompat_Light_Dialog=0x7f0c0110;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0111;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0112;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0113;
public static int Theme_AppCompat_Light_NoActionBar=0x7f0c0114;
public static int Theme_AppCompat_NoActionBar=0x7f0c0115;
public static int Theme_Design=0x7f0c0178;
public static int Theme_Design_BottomSheetDialog=0x7f0c0179;
public static int Theme_Design_Light=0x7f0c017a;
public static int Theme_Design_Light_BottomSheetDialog=0x7f0c017b;
public static int Theme_Design_Light_NoActionBar=0x7f0c017c;
public static int Theme_Design_NoActionBar=0x7f0c017d;
public static int Theme_MediaRouter=0x7f0c0003;
public static int Theme_MediaRouter_Light=0x7f0c0004;
public static int Theme_MediaRouter_Light_DarkControlPanel=0x7f0c0005;
public static int Theme_MediaRouter_LightControlPanel=0x7f0c0006;
public static int ThemeOverlay_AppCompat=0x7f0c0116;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f0c0117;
public static int ThemeOverlay_AppCompat_Dark=0x7f0c0118;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c0119;
public static int ThemeOverlay_AppCompat_Dialog=0x7f0c011a;
public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c011b;
public static int ThemeOverlay_AppCompat_Light=0x7f0c011c;
public static int ThemeOverlay_MediaRouter_Dark=0x7f0c0007;
public static int ThemeOverlay_MediaRouter_Light=0x7f0c0008;
public static int Widget_AppCompat_ActionBar=0x7f0c011d;
public static int Widget_AppCompat_ActionBar_Solid=0x7f0c011e;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f0c011f;
public static int Widget_AppCompat_ActionBar_TabText=0x7f0c0120;
public static int Widget_AppCompat_ActionBar_TabView=0x7f0c0121;
public static int Widget_AppCompat_ActionButton=0x7f0c0122;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0123;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f0c0124;
public static int Widget_AppCompat_ActionMode=0x7f0c0125;
public static int Widget_AppCompat_ActivityChooserView=0x7f0c0126;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f0c0127;
public static int Widget_AppCompat_Button=0x7f0c0128;
public static int Widget_AppCompat_Button_Borderless=0x7f0c0129;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0c012a;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c012b;
public static int Widget_AppCompat_Button_Colored=0x7f0c012c;
public static int Widget_AppCompat_Button_Small=0x7f0c012d;
public static int Widget_AppCompat_ButtonBar=0x7f0c012e;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c012f;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0130;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0131;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f0c0132;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f0c0133;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0134;
public static int Widget_AppCompat_EditText=0x7f0c0135;
public static int Widget_AppCompat_ImageButton=0x7f0c0136;
public static int Widget_AppCompat_Light_ActionBar=0x7f0c0137;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0138;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0139;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c013a;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c013b;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c013c;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c013d;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c013e;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c013f;
public static int Widget_AppCompat_Light_ActionButton=0x7f0c0140;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0141;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0142;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0143;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0144;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0145;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c0146;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0147;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0148;
public static int Widget_AppCompat_Light_PopupMenu=0x7f0c0149;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c014a;
public static int Widget_AppCompat_Light_SearchView=0x7f0c014b;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c014c;
public static int Widget_AppCompat_ListMenuView=0x7f0c014d;
public static int Widget_AppCompat_ListPopupWindow=0x7f0c014e;
public static int Widget_AppCompat_ListView=0x7f0c014f;
public static int Widget_AppCompat_ListView_DropDown=0x7f0c0150;
public static int Widget_AppCompat_ListView_Menu=0x7f0c0151;
public static int Widget_AppCompat_PopupMenu=0x7f0c0152;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0153;
public static int Widget_AppCompat_PopupWindow=0x7f0c0154;
public static int Widget_AppCompat_ProgressBar=0x7f0c0155;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0156;
public static int Widget_AppCompat_RatingBar=0x7f0c0157;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f0c0158;
public static int Widget_AppCompat_RatingBar_Small=0x7f0c0159;
public static int Widget_AppCompat_SearchView=0x7f0c015a;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f0c015b;
public static int Widget_AppCompat_SeekBar=0x7f0c015c;
public static int Widget_AppCompat_SeekBar_Discrete=0x7f0c015d;
public static int Widget_AppCompat_Spinner=0x7f0c015e;
public static int Widget_AppCompat_Spinner_DropDown=0x7f0c015f;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0160;
public static int Widget_AppCompat_Spinner_Underlined=0x7f0c0161;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0162;
public static int Widget_AppCompat_Toolbar=0x7f0c0163;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0164;
public static int Widget_Compat_NotificationActionContainer=0x7f0c018c;
public static int Widget_Compat_NotificationActionText=0x7f0c018d;
public static int Widget_Design_AppBarLayout=0x7f0c017e;
public static int Widget_Design_BottomNavigationView=0x7f0c017f;
public static int Widget_Design_BottomSheet_Modal=0x7f0c0180;
public static int Widget_Design_CollapsingToolbar=0x7f0c0181;
public static int Widget_Design_CoordinatorLayout=0x7f0c0182;
public static int Widget_Design_FloatingActionButton=0x7f0c0183;
public static int Widget_Design_NavigationView=0x7f0c0184;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0c0185;
public static int Widget_Design_Snackbar=0x7f0c0186;
public static int Widget_Design_TabLayout=0x7f0c016a;
public static int Widget_Design_TextInputLayout=0x7f0c0187;
public static int Widget_MediaRouter_Light_MediaRouteButton=0x7f0c0009;
public static int Widget_MediaRouter_MediaRouteButton=0x7f0c000a;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background android.support.mediacompat:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit android.support.mediacompat:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked android.support.mediacompat:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd android.support.mediacompat:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.mediacompat:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft android.support.mediacompat:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight android.support.mediacompat:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart android.support.mediacompat:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.mediacompat:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout android.support.mediacompat:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions android.support.mediacompat:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider android.support.mediacompat:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height android.support.mediacompat:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.mediacompat:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.mediacompat:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout android.support.mediacompat:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon android.support.mediacompat:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.mediacompat:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding android.support.mediacompat:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo android.support.mediacompat:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode android.support.mediacompat:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme android.support.mediacompat:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding android.support.mediacompat:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle android.support.mediacompat:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle android.support.mediacompat:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.mediacompat:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title android.support.mediacompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle android.support.mediacompat:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027,
0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:background
*/
public static int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetEndWithActions
*/
public static int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetStartWithNavigation
*/
public static int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name android.support.mediacompat:displayOptions
*/
public static int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:divider
*/
public static int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:elevation
*/
public static int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:height
*/
public static int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:homeLayout
*/
public static int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:icon
*/
public static int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:itemPadding
*/
public static int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:logo
*/
public static int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name android.support.mediacompat:navigationMode
*/
public static int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:popupTheme
*/
public static int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:subtitle
*/
public static int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:title
*/
public static int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:titleTextStyle
*/
public static int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background android.support.mediacompat:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit android.support.mediacompat:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout android.support.mediacompat:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height android.support.mediacompat:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.mediacompat:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle android.support.mediacompat:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e,
0x7f010030, 0x7f010040
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:background
*/
public static int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:height
*/
public static int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:titleTextStyle
*/
public static int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.mediacompat:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.mediacompat:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:initialActivityCount
*/
public static int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout android.support.mediacompat:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout android.support.mediacompat:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout android.support.mediacompat:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.mediacompat:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle android.support.mediacompat:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.mediacompat:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010043, 0x7f010044, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:showTitle
*/
public static int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:singleChoiceItemLayout
*/
public static int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded android.support.mediacompat:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e,
0x7f010118
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:elevation
*/
public static int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:expanded
*/
public static int AppBarLayout_expanded = 4;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed android.support.mediacompat:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.mediacompat:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010119, 0x7f01011a
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:state_collapsed
*/
public static int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:state_collapsible
*/
public static int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags android.support.mediacompat:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.mediacompat:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01011b, 0x7f01011c
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name android.support.mediacompat:layout_scrollFlags
*/
public static int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:layout_scrollInterpolator
*/
public static int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat android.support.mediacompat:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint android.support.mediacompat:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode android.support.mediacompat:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010049, 0x7f01004a, 0x7f01004b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tint
*/
public static int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:tintMode
*/
public static int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark android.support.mediacompat:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.mediacompat:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.mediacompat:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f01004c, 0x7f01004d, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:tickMark
*/
public static int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tickMarkTint
*/
public static int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:tickMarkTintMode
*/
public static int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize android.support.mediacompat:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.mediacompat:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.mediacompat:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.mediacompat:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.mediacompat:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily android.support.mediacompat:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.mediacompat:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:autoSizeMaxTextSize
*/
public static int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:autoSizeMinTextSize
*/
public static int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:autoSizePresetSizes
*/
public static int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:autoSizeStepGranularity
*/
public static int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#autoSizeTextType}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:autoSizeTextType
*/
public static int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fontFamily
*/
public static int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name android.support.mediacompat:textAllCaps
*/
public static int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider android.support.mediacompat:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.mediacompat:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.mediacompat:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.mediacompat:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.mediacompat:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.mediacompat:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.mediacompat:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.mediacompat:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.mediacompat:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.mediacompat:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.mediacompat:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.mediacompat:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.mediacompat:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.mediacompat:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.mediacompat:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.mediacompat:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.mediacompat:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.mediacompat:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.mediacompat:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.mediacompat:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.mediacompat:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.mediacompat:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.mediacompat:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.mediacompat:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.mediacompat:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.mediacompat:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.mediacompat:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.mediacompat:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.mediacompat:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.mediacompat:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.mediacompat:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.mediacompat:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.mediacompat:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.mediacompat:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.mediacompat:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.mediacompat:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.mediacompat:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.mediacompat:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.mediacompat:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.mediacompat:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.mediacompat:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.mediacompat:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.mediacompat:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.mediacompat:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.mediacompat:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.mediacompat:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent android.support.mediacompat:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.mediacompat:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.mediacompat:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.mediacompat:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.mediacompat:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.mediacompat:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError android.support.mediacompat:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.mediacompat:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.mediacompat:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.mediacompat:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground android.support.mediacompat:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.mediacompat:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.mediacompat:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.mediacompat:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.mediacompat:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.mediacompat:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.mediacompat:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.mediacompat:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor android.support.mediacompat:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.mediacompat:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.mediacompat:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.mediacompat:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.mediacompat:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.mediacompat:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.mediacompat:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.mediacompat:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.mediacompat:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.mediacompat:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.mediacompat:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.mediacompat:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.mediacompat:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground android.support.mediacompat:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.mediacompat:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.mediacompat:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.mediacompat:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.mediacompat:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.mediacompat:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.mediacompat:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.mediacompat:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.mediacompat:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.mediacompat:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.mediacompat:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.mediacompat:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.mediacompat:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.mediacompat:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.mediacompat:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle android.support.mediacompat:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.mediacompat:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.mediacompat:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.mediacompat:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.mediacompat:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.mediacompat:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.mediacompat:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.mediacompat:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.mediacompat:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.mediacompat:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.mediacompat:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.mediacompat:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.mediacompat:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.mediacompat:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.mediacompat:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.mediacompat:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.mediacompat:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.mediacompat:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.mediacompat:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.mediacompat:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.mediacompat:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.mediacompat:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.mediacompat:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.mediacompat:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.mediacompat:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb,
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name android.support.mediacompat:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:alertDialogTheme
*/
public static int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorAccent
*/
public static int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorBackgroundFloating
*/
public static int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorError}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:colorError
*/
public static int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:controlBackground
*/
public static int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:editTextColor
*/
public static int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:listMenuViewStyle
*/
public static int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:panelBackground
*/
public static int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:switchStyle
*/
public static int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceListItemSecondary
*/
public static int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearancePopupMenuHeader
*/
public static int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tooltipForegroundColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:tooltipForegroundColor
*/
public static int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:tooltipFrameBackground
*/
public static int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:windowNoTitle
*/
public static int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground android.support.mediacompat:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.mediacompat:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.mediacompat:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu android.support.mediacompat:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145,
0x7f010146
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:elevation
*/
public static int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:itemBackground
*/
public static int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:itemIconTint
*/
public static int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:itemTextColor
*/
public static int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:menu
*/
public static int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable android.support.mediacompat:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.mediacompat:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.mediacompat:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f01011d, 0x7f01011e, 0x7f01011f
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:behavior_hideable
*/
public static int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:behavior_peekHeight
*/
public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:behavior_skipCollapsed
*/
public static int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking android.support.mediacompat:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100cb
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:allowStacking
*/
public static int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor android.support.mediacompat:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius android.support.mediacompat:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation android.support.mediacompat:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation android.support.mediacompat:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap android.support.mediacompat:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding android.support.mediacompat:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding android.support.mediacompat:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom android.support.mediacompat:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft android.support.mediacompat:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight android.support.mediacompat:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop android.support.mediacompat:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardBackgroundColor
*/
public static int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardCornerRadius
*/
public static int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardElevation
*/
public static int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardMaxElevation
*/
public static int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardPreventCornerOverlap
*/
public static int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardUseCompatPadding
*/
public static int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPadding
*/
public static int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingBottom
*/
public static int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingLeft
*/
public static int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingRight
*/
public static int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingTop
*/
public static int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.mediacompat:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.mediacompat:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.mediacompat:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.mediacompat:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.mediacompat:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.mediacompat:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.mediacompat:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.mediacompat:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.mediacompat:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.mediacompat:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.mediacompat:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.mediacompat:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.mediacompat:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title android.support.mediacompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.mediacompat:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.mediacompat:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.mediacompat:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.mediacompat:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:scrimAnimationDuration
*/
public static int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:scrimVisibleHeightTrigger
*/
public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:title
*/
public static int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:toolbarId
*/
public static int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode android.support.mediacompat:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.mediacompat:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01012f, 0x7f010130
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name android.support.mediacompat:layout_collapseMode
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:layout_collapseParallaxMultiplier
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha android.support.mediacompat:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:alpha
*/
public static int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint android.support.mediacompat:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode android.support.mediacompat:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100cd, 0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:buttonTintMode
*/
public static int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines android.support.mediacompat:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.mediacompat:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010131, 0x7f010132
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:statusBarBackground
*/
public static int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor android.support.mediacompat:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.mediacompat:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.mediacompat:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.mediacompat:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.mediacompat:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.mediacompat:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135,
0x7f010136, 0x7f010137, 0x7f010138
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:layout_anchor
*/
public static int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.mediacompat:layout_anchorGravity
*/
public static int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:layout_behavior
*/
public static int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name android.support.mediacompat:layout_dodgeInsetEdges
*/
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.mediacompat:layout_insetEdge
*/
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:layout_keyline
*/
public static int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme android.support.mediacompat:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.mediacompat:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError android.support.mediacompat:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010139, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:textColorError
*/
public static int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength android.support.mediacompat:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.mediacompat:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength android.support.mediacompat:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color android.support.mediacompat:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.mediacompat:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.mediacompat:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.mediacompat:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness android.support.mediacompat:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:thickness
*/
public static int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint android.support.mediacompat:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.mediacompat:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth android.support.mediacompat:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize android.support.mediacompat:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.mediacompat:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor android.support.mediacompat:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.mediacompat:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:borderWidth
*/
public static int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:elevation
*/
public static int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:fabSize
*/
public static int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:rippleColor
*/
public static int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:useCompatPadding
*/
public static int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide android.support.mediacompat:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010141
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:behavior_autoHide
*/
public static int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a FontFamily.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamily_fontProviderAuthority android.support.mediacompat:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts android.support.mediacompat:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.mediacompat:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.mediacompat:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage android.support.mediacompat:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery android.support.mediacompat:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d,
0x7f01016e, 0x7f01016f
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fontProviderAuthority
*/
public static int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:fontProviderCerts
*/
public static int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontProviderFetchStrategy}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:fontProviderFetchStrategy
*/
public static int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontProviderFetchTimeout}
attribute's value can be found in the {@link #FontFamily} array.
<p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:fontProviderFetchTimeout
*/
public static int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fontProviderPackage
*/
public static int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fontProviderQuery
*/
public static int FontFamily_fontProviderQuery = 2;
/** Attributes that can be used with a FontFamilyFont.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_font android.support.mediacompat:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle android.support.mediacompat:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight android.support.mediacompat:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010170,
0x7f010171, 0x7f010172
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static int FontFamilyFont_android_font = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontStyle
*/
public static int FontFamilyFont_android_fontStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontWeight
*/
public static int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:font
*/
public static int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:fontStyle
*/
public static int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fontWeight
*/
public static int FontFamilyFont_fontWeight = 5;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.mediacompat:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f010142
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:foregroundInsidePadding
*/
public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider android.support.mediacompat:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.mediacompat:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.mediacompat:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.mediacompat:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name android.support.mediacompat:showDividers
*/
public static int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable android.support.mediacompat:externalRouteEnabledDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint android.support.mediacompat:mediaRouteButtonTint}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
@see #MediaRouteButton_mediaRouteButtonTint
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010015, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:externalRouteEnabledDrawable
*/
public static int MediaRouteButton_externalRouteEnabledDrawable = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#mediaRouteButtonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:mediaRouteButtonTint
*/
public static int MediaRouteButton_mediaRouteButtonTint = 3;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout android.support.mediacompat:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass android.support.mediacompat:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass android.support.mediacompat:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.mediacompat:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription android.support.mediacompat:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint android.support.mediacompat:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode android.support.mediacompat:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers android.support.mediacompat:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction android.support.mediacompat:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText android.support.mediacompat:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_contentDescription
@see #MenuItem_iconTint
@see #MenuItem_iconTintMode
@see #MenuItem_numericModifiers
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:actionLayout
*/
public static int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:actionViewClass
*/
public static int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#alphabeticModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name android.support.mediacompat:alphabeticModifiers
*/
public static int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentDescription
*/
public static int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:iconTint
*/
public static int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#iconTintMode}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:iconTintMode
*/
public static int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#numericModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name android.support.mediacompat:numericModifiers
*/
public static int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name android.support.mediacompat:showAsAction
*/
public static int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tooltipText
*/
public static int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing android.support.mediacompat:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow android.support.mediacompat:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4,
0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:subMenuArrow
*/
public static int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout android.support.mediacompat:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground android.support.mediacompat:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint android.support.mediacompat:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance android.support.mediacompat:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor android.support.mediacompat:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu android.support.mediacompat:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146,
0x7f010147, 0x7f010148
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:elevation
*/
public static int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:headerLayout
*/
public static int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:itemBackground
*/
public static int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:itemIconTint
*/
public static int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:itemTextColor
*/
public static int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:menu
*/
public static int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor android.support.mediacompat:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100e6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:overlapAnchor
*/
public static int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor android.support.mediacompat:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100e7
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:state_above_anchor
*/
public static int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons android.support.mediacompat:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.mediacompat:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100e8, 0x7f0100e9
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:paddingBottomNoButtons
*/
public static int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:paddingTopNoTitle
*/
public static int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled android.support.mediacompat:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.mediacompat:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.mediacompat:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.mediacompat:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.mediacompat:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager android.support.mediacompat:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout android.support.mediacompat:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount android.support.mediacompat:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd android.support.mediacompat:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fastScrollEnabled
*/
public static int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:fastScrollHorizontalThumbDrawable
*/
public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:fastScrollHorizontalTrackDrawable
*/
public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:fastScrollVerticalThumbDrawable
*/
public static int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:fastScrollVerticalTrackDrawable
*/
public static int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:layoutManager
*/
public static int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:reverseLayout
*/
public static int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:spanCount
*/
public static int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:stackFromEnd
*/
public static int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground android.support.mediacompat:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010149
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.mediacompat:insetForeground
*/
public static int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop android.support.mediacompat:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01014a
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:behavior_overlapTop
*/
public static int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon android.support.mediacompat:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon android.support.mediacompat:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint android.support.mediacompat:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon android.support.mediacompat:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault android.support.mediacompat:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout android.support.mediacompat:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground android.support.mediacompat:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint android.support.mediacompat:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon android.support.mediacompat:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon android.support.mediacompat:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground android.support.mediacompat:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout android.support.mediacompat:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon android.support.mediacompat:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed,
0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1,
0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:voiceIcon
*/
public static int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.mediacompat:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01003e, 0x7f01014b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:elevation
*/
public static int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:maxActionInlineWidth
*/
public static int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme android.support.mediacompat:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f01003f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:popupTheme
*/
public static int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText android.support.mediacompat:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack android.support.mediacompat:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.mediacompat:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding android.support.mediacompat:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.mediacompat:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.mediacompat:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint android.support.mediacompat:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.mediacompat:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track android.support.mediacompat:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint android.support.mediacompat:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode android.support.mediacompat:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:showText
*/
public static int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:splitTrack
*/
public static int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:switchPadding
*/
public static int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:thumbTint
*/
public static int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:thumbTintMode
*/
public static int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:track
*/
public static int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:trackTint
*/
public static int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:trackTintMode
*/
public static int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground android.support.mediacompat:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart android.support.mediacompat:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity android.support.mediacompat:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.mediacompat:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.mediacompat:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth android.support.mediacompat:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth android.support.mediacompat:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode android.support.mediacompat:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding android.support.mediacompat:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.mediacompat:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.mediacompat:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart android.support.mediacompat:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop android.support.mediacompat:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.mediacompat:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance android.support.mediacompat:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor android.support.mediacompat:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f,
0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153,
0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157,
0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.mediacompat:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:tabTextColor
*/
public static int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily android.support.mediacompat:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps android.support.mediacompat:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f01004f,
0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static int TextAppearance_android_fontFamily = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static int TextAppearance_android_shadowColor = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static int TextAppearance_android_shadowDx = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static int TextAppearance_android_shadowDy = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static int TextAppearance_android_shadowRadius = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorLink}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorLink
*/
public static int TextAppearance_android_textColorLink = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:fontFamily
*/
public static int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name android.support.mediacompat:textAllCaps
*/
public static int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled android.support.mediacompat:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.mediacompat:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.mediacompat:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.mediacompat:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled android.support.mediacompat:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.mediacompat:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.mediacompat:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled android.support.mediacompat:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.mediacompat:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.mediacompat:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.mediacompat:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.mediacompat:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.mediacompat:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.mediacompat:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d,
0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161,
0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165,
0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:passwordToggleContentDescription
*/
public static int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:passwordToggleDrawable
*/
public static int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:passwordToggleEnabled
*/
public static int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:passwordToggleTint
*/
public static int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name android.support.mediacompat:passwordToggleTintMode
*/
public static int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity android.support.mediacompat:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription android.support.mediacompat:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon android.support.mediacompat:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd android.support.mediacompat:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.mediacompat:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft android.support.mediacompat:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight android.support.mediacompat:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart android.support.mediacompat:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.mediacompat:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo android.support.mediacompat:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription android.support.mediacompat:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight android.support.mediacompat:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription android.support.mediacompat:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon android.support.mediacompat:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme android.support.mediacompat:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle android.support.mediacompat:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.mediacompat:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor android.support.mediacompat:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title android.support.mediacompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin android.support.mediacompat:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom android.support.mediacompat:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd android.support.mediacompat:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart android.support.mediacompat:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop android.support.mediacompat:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins android.support.mediacompat:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance android.support.mediacompat:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor android.support.mediacompat:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010025, 0x7f010028,
0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name android.support.mediacompat:buttonGravity
*/
public static int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:collapseIcon
*/
public static int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetEndWithActions
*/
public static int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentInsetStartWithNavigation
*/
public static int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:logo
*/
public static int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:logoDescription
*/
public static int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:navigationIcon
*/
public static int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:popupTheme
*/
public static int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:subtitle
*/
public static int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:title
*/
public static int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleMargin
*/
public static int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleMargins
*/
public static int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:titleTextColor
*/
public static int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd android.support.mediacompat:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart android.support.mediacompat:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme android.support.mediacompat:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010113, 0x7f010114,
0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:theme
*/
public static int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint android.support.mediacompat:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.mediacompat:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.mediacompat:backgroundTintMode
*/
public static int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
] | |
ff8e9a3c14a6214343149ee817a84da354d83560 | 7599b00500f3602ef75829c3a6a98b9fa2b82b02 | /Prog3/src/Clase/cap06/pr0506resuelta/AccesoAPersonasHS.java | aa447d362b713d9888dbe1ff9f69316aa3e754c2 | [] | no_license | Jondiii/Programacion3 | 24769ee0595391c1f85e114ffd030ee89e6cebbe | 9b049b5a2acf84a66c41376ebef9d16a5b46d99e | refs/heads/master | 2020-07-29T07:47:24.934933 | 2020-01-19T12:45:05 | 2020-01-19T12:45:05 | 209,720,226 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,135 | java | package Clase.cap06.pr0506resuelta;
import java.util.HashSet;
public class AccesoAPersonasHS implements ProcesoProbable {
private HashSet<Persona> l;
@Override
public void init(int tamanyoTest) {
l = new HashSet<>();
for (int i=0; i<tamanyoTest; i++) {
l.add( new Persona( i*2+1, "Nombre " + i, "Apellido " + i ));
}
}
public int cont; // Se hace el contador atributo para que la actualización del contador del test no pueda ser optimizada (y eliminada) por el compilador
@Override
public Object test() {
cont = 0;
for (int i=0; i<l.size(); i++) {
if (l.contains( new Persona(i,"","") )) cont++;
}
// System.out.println( "Número personas encontradas: " + cont );
return l;
}
/** Método de prueba de la clase
* @param args
*/
public static void main(String[] args) {
AccesoAPersonasHS proc = new AccesoAPersonasHS();
long tiempo = BancoDePruebas.realizaTest( proc, 500000 );
int espacio = BancoDePruebas.getTamanyoTest();
System.out.println( "Prueba HashSet de 50000 -- tiempo: " + tiempo + " msgs. / espacio = " + espacio + " bytes.");
}
}
| [
"[email protected]"
] | |
844dd53b26d6c0b8ce78048924d4630255d4711a | 75b4e3a620854edfafe942813bb4bb2252302ba0 | /mvproutelibrary/src/main/java/com/location/mvp/mvproutelibrary/error/IResponseErrorMsg.java | 47de6763b8378b0d70a9dcde82bb98002c1b0148 | [
"Apache-2.0"
] | permissive | 33944284/MvpRoute | 205af0cb5a190e0f778c31e0b208cf688cb482f4 | a299fbb8514e1f3a3c4cfce21680990407566096 | refs/heads/master | 2020-04-05T21:26:40.224555 | 2018-11-12T09:53:29 | 2018-11-12T09:53:29 | 157,220,694 | 1 | 0 | null | 2018-11-12T13:50:23 | 2018-11-12T13:50:23 | null | UTF-8 | Java | false | false | 773 | java | /*
* Copyright 2018 location
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.location.mvp.mvproutelibrary.error;
/**
* 如果自定义的异常类 实现此接口
*/
public interface IResponseErrorMsg {
String getErrorMsg(int errcode);
}
| [
"[email protected]"
] | |
71668bb914cc804f2b2dd9297313ebf8e6cccd5e | 1b41dec1cd6b3d130ffad1f1e54202957548b81f | /mybatis-plus-wrap-cascade/src/main/java/mybatis/plus/wrap/CascadeOption.java | 42bc59faaa99075c435f98bf7f0b4aa6edf466ad | [] | no_license | wangjun860919/mybatis-plus-wrap | cafff8202b686da7a25af808bee6028e13b26d8e | 51cb8f16314d653635fa4624353a42c7ec3948e6 | refs/heads/master | 2023-02-22T20:13:32.858224 | 2021-01-24T02:30:18 | 2021-01-24T02:30:18 | 332,350,858 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,029 | java | package mybatis.plus.wrap;
import com.baomidou.mybatisplus.core.metadata.TableFieldInfo;
import com.baomidou.mybatisplus.core.metadata.TableInfo;
import com.baomidou.mybatisplus.core.metadata.TableInfoHelper;
import lombok.Getter;
import mybatis.plus.wrap.reflect.ReflectUtils;
import org.apache.ibatis.reflection.MetaObject;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.function.BiFunction;
import java.util.stream.Collectors;
@Getter
public class CascadeOption{
//处理模式
private CascadeType cascadeType=CascadeType.CLEAR_EXISTS_BEFORE_SAVE;
private String cascadeExpression; //建立关联关系的参数,需要同子类查找的。值为 childProperty1=parentProperty1
private Class<?> childType; //无须初始化
BiFunction<?,?,Boolean> comparator;
private Map<String, TableFieldInfo> tableFieldInfoMap;
private String updateActionMethod;
private String saveActionMethod;
private String deleteActionMethod;
private String propertyName;
private static ThreadLocal<Map<String,CascadeOption>> cascadeOptionMapLocal=new ThreadLocal<Map<String,CascadeOption>>(){
@Override
protected Map<String, CascadeOption> initialValue() {
return null;
}
};
private CascadeOption(String propertyName){
this.propertyName=propertyName;
}
public static CascadeOption buildNew(String propertyName){
CascadeOption cascadeOption=new CascadeOption(propertyName);
Map<String,CascadeOption> map=new HashMap<>();
map.put(propertyName,cascadeOption);
cascadeOptionMapLocal.set(map);
return cascadeOption;
}
public CascadeOption build(String propertyName){
Map<String,CascadeOption> map=cascadeOptionMapLocal.get();
if(map.containsKey(propertyName)){
return map.get(propertyName);
}else{
CascadeOption cascadeOption=new CascadeOption(propertyName);
cascadeOptionMapLocal.get().put(propertyName,cascadeOption);
return cascadeOption;
}
}
public static Map<String,CascadeOption> getMap(){
return cascadeOptionMapLocal.get();
}
public CascadeOption updateAction(String updateActionMethod){
this.updateActionMethod=updateActionMethod;
return this;
}
public CascadeOption saveAction(String saveActionMethod){
this.saveActionMethod=saveActionMethod;
return this;
}
public CascadeOption deleteAction(String deleteActionMethod){
this.deleteActionMethod=deleteActionMethod;
return this;
}
public <K> CascadeOption comparator(BiFunction<K,K,Boolean> comparator){
this.comparator=comparator;
return this;
}
public <K> BiFunction<K, K, Boolean> getComparator() {
return (BiFunction<K, K, Boolean>)comparator;
}
public CascadeOption cascadeExpression(String cascadeExpression){
this.cascadeExpression=cascadeExpression;
return this;
}
public CascadeOption cascadeType(CascadeType cascadeType){
this.cascadeType=cascadeType;
return this;
}
public CascadeOption childType(Class<?> childType){
this.childType=childType;
TableInfo ssTableInfo = TableInfoHelper.getTableInfo(childType);
Objects.requireNonNull(ssTableInfo,"can not get ssTableInfo by class:"+childType.getName());
tableFieldInfoMap=ssTableInfo.getFieldList().stream().collect(Collectors.toMap(f->f.getProperty(), f->f));
return this;
}
public static Map<String,Object> getJoinFindMap(MetaObject ometa,CascadeOption cascadeOption){
String[] es=cascadeOption.getCascadeExpression().split(",");
Map<String,Object> findMap=new HashMap<>();
Objects.requireNonNull(cascadeOption.getTableFieldInfoMap(),"can not get TableFieldInfo by className:"+cascadeOption.getChildType().getName());
for(String e:es){
String propertyName=e.split("=",2)[0];
TableInfo ssTableInfo = TableInfoHelper.getTableInfo(cascadeOption.getChildType());
if(ssTableInfo.getKeyProperty()!=null && ssTableInfo.getKeyProperty().equalsIgnoreCase(propertyName)){
findMap.put(ssTableInfo.getKeyProperty(),ometa.getValue(ssTableInfo.getKeyProperty()));//id 在ssTableInfo.getFieldList()获取不到主键信息
}else{
Objects.requireNonNull(cascadeOption.getTableFieldInfoMap().get(e.split("=",2)[0]),"can not get the propertyName:"+e.split("=",2)[0]+",className is "+cascadeOption.getChildType().getName());
String key=cascadeOption.getTableFieldInfoMap().get(e.split("=",2)[0]).getColumn();
Object value=ometa.getValue(e.split("=",2)[1]);
findMap.put(key,value);
}
}
return findMap;
}
public static void setJoinNull(Object obj,CascadeOption cascadeOption){
String[] es=cascadeOption.getCascadeExpression().split(",");
Map<String,Object> findMap=new HashMap<>();
for(String e:es){
String key=e.split("=",2)[0];
ReflectUtils.setFieldValue(obj,key,null);
}
}
public static void setJoin(Object mainObj,Object obj,CascadeOption cascadeOption){
String[] es=cascadeOption.getCascadeExpression().split(",");
for(String e:es){
String keys[]=e.split("=",2);
Object mainValue=ReflectUtils.getFieldValue(mainObj,keys[1]);
ReflectUtils.setFieldValue(obj,keys[0],mainValue);
}
}
public static Object setPrefix(final String prefix,final Object obj){
if(Objects.isNull(prefix) || prefix.trim().length()==0){
return obj;
}else{
return new HashMap<String,Object>(){
{
this.put(prefix,obj);
}
};
}
}
}
| [
"[email protected]"
] | |
1b3264e69ac9b2bf73d81870c5574ea011b3a5fe | 7c15b01edba62f956570b4b90b774895b7335a34 | /app/src/main/java/com/senga/john/sengajohnlab5/activity_2.java | 06af305e8f1349cf87ef15c570fc58873535fdf6 | [] | no_license | John-Senga/SengaJohnLab5 | be21f4099128cf0dbcbbc0335a18636cac897a90 | 83c81b1f203c80a3518f480d1d55578e6b4ea066 | refs/heads/master | 2020-03-31T05:24:03.008919 | 2018-10-07T13:36:28 | 2018-10-07T13:36:28 | 151,944,669 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,014 | java | package com.senga.john.sengajohnlab5;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class activity_2 extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_2);
Intent i = new Intent(this, backgroundService.class);
startService(i);
}
public void changeActivity(View v){
Intent i = null, chooser = null;
if(v.getId() == R.id.btnAcvtivityMain){
i = new Intent(this, MainActivity.class);
startActivity(i);
}
else if(v.getId() == R.id.btnMap){
i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse("geo:14.615221, 120.988762"));
chooser = Intent.createChooser(i, "Please select an application");
startActivity(chooser);
}
}
}
| [
"[email protected]"
] | |
dfc42320de9391d2390a2580a6c06c872ac6576b | 315887c5c980669b44f5993f3a34b2233cbf90fe | /barcode-reader/app/build/generated/source/r/debug/com/google/android/gms/appinvite/R.java | b1705e6ca06efc00d3e06cd4f8e975b16c094d6d | [] | no_license | thegenuinegourav/Parkzap-Assignment--Barcode-Reader | 3f12cc5c0b40de8c1c49857b5918fc91b1144ec8 | e90641dcf042a99e69cd51812e7583435320b75d | refs/heads/master | 2021-01-22T08:06:22.444605 | 2016-08-09T18:26:03 | 2016-08-09T18:26:03 | 56,944,988 | 13 | 0 | null | null | null | null | UTF-8 | Java | false | false | 16,443 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.google.android.gms.appinvite;
public final class R {
public static final class attr {
public static final int adSize = 0x7f010026;
public static final int adSizes = 0x7f010027;
public static final int adUnitId = 0x7f010028;
public static final int ambientEnabled = 0x7f01006c;
public static final int appTheme = 0x7f010124;
public static final int buyButtonAppearance = 0x7f01012b;
public static final int buyButtonHeight = 0x7f010128;
public static final int buyButtonText = 0x7f01012a;
public static final int buyButtonWidth = 0x7f010129;
public static final int cameraBearing = 0x7f01005d;
public static final int cameraTargetLat = 0x7f01005e;
public static final int cameraTargetLng = 0x7f01005f;
public static final int cameraTilt = 0x7f010060;
public static final int cameraZoom = 0x7f010061;
public static final int circleCrop = 0x7f01005b;
public static final int environment = 0x7f010125;
public static final int fragmentMode = 0x7f010127;
public static final int fragmentStyle = 0x7f010126;
public static final int imageAspectRatio = 0x7f01005a;
public static final int imageAspectRatioAdjust = 0x7f010059;
public static final int liteMode = 0x7f010062;
public static final int mapType = 0x7f01005c;
public static final int maskedWalletDetailsBackground = 0x7f01012e;
public static final int maskedWalletDetailsButtonBackground = 0x7f010130;
public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01012f;
public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01012d;
public static final int maskedWalletDetailsLogoImageType = 0x7f010132;
public static final int maskedWalletDetailsLogoTextColor = 0x7f010131;
public static final int maskedWalletDetailsTextAppearance = 0x7f01012c;
public static final int uiCompass = 0x7f010063;
public static final int uiMapToolbar = 0x7f01006b;
public static final int uiRotateGestures = 0x7f010064;
public static final int uiScrollGestures = 0x7f010065;
public static final int uiTiltGestures = 0x7f010066;
public static final int uiZoomControls = 0x7f010067;
public static final int uiZoomGestures = 0x7f010068;
public static final int useViewLifecycle = 0x7f010069;
public static final int windowTransitionStyle = 0x7f010049;
public static final int zOrderOnTop = 0x7f01006a;
}
public static final class color {
public static final int common_action_bar_splitter = 0x7f0b0012;
public static final int common_signin_btn_dark_text_default = 0x7f0b0013;
public static final int common_signin_btn_dark_text_disabled = 0x7f0b0014;
public static final int common_signin_btn_dark_text_focused = 0x7f0b0015;
public static final int common_signin_btn_dark_text_pressed = 0x7f0b0016;
public static final int common_signin_btn_default_background = 0x7f0b0017;
public static final int common_signin_btn_light_text_default = 0x7f0b0018;
public static final int common_signin_btn_light_text_disabled = 0x7f0b0019;
public static final int common_signin_btn_light_text_focused = 0x7f0b001a;
public static final int common_signin_btn_light_text_pressed = 0x7f0b001b;
public static final int common_signin_btn_text_dark = 0x7f0b0064;
public static final int common_signin_btn_text_light = 0x7f0b0065;
public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0b004d;
public static final int wallet_bright_foreground_holo_dark = 0x7f0b004e;
public static final int wallet_bright_foreground_holo_light = 0x7f0b004f;
public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0b0050;
public static final int wallet_dim_foreground_holo_dark = 0x7f0b0051;
public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0b0052;
public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0b0053;
public static final int wallet_highlighted_text_holo_dark = 0x7f0b0054;
public static final int wallet_highlighted_text_holo_light = 0x7f0b0055;
public static final int wallet_hint_foreground_holo_dark = 0x7f0b0056;
public static final int wallet_hint_foreground_holo_light = 0x7f0b0057;
public static final int wallet_holo_blue_light = 0x7f0b0058;
public static final int wallet_link_text_light = 0x7f0b0059;
public static final int wallet_primary_text_holo_light = 0x7f0b0068;
public static final int wallet_secondary_text_holo_dark = 0x7f0b0069;
}
public static final class drawable {
public static final int cast_ic_notification_0 = 0x7f02003e;
public static final int cast_ic_notification_1 = 0x7f02003f;
public static final int cast_ic_notification_2 = 0x7f020040;
public static final int cast_ic_notification_connecting = 0x7f020041;
public static final int cast_ic_notification_on = 0x7f020042;
public static final int common_full_open_on_phone = 0x7f020043;
public static final int common_ic_googleplayservices = 0x7f020044;
public static final int common_signin_btn_icon_dark = 0x7f020045;
public static final int common_signin_btn_icon_disabled_dark = 0x7f020046;
public static final int common_signin_btn_icon_disabled_focus_dark = 0x7f020047;
public static final int common_signin_btn_icon_disabled_focus_light = 0x7f020048;
public static final int common_signin_btn_icon_disabled_light = 0x7f020049;
public static final int common_signin_btn_icon_focus_dark = 0x7f02004a;
public static final int common_signin_btn_icon_focus_light = 0x7f02004b;
public static final int common_signin_btn_icon_light = 0x7f02004c;
public static final int common_signin_btn_icon_normal_dark = 0x7f02004d;
public static final int common_signin_btn_icon_normal_light = 0x7f02004e;
public static final int common_signin_btn_icon_pressed_dark = 0x7f02004f;
public static final int common_signin_btn_icon_pressed_light = 0x7f020050;
public static final int common_signin_btn_text_dark = 0x7f020051;
public static final int common_signin_btn_text_disabled_dark = 0x7f020052;
public static final int common_signin_btn_text_disabled_focus_dark = 0x7f020053;
public static final int common_signin_btn_text_disabled_focus_light = 0x7f020054;
public static final int common_signin_btn_text_disabled_light = 0x7f020055;
public static final int common_signin_btn_text_focus_dark = 0x7f020056;
public static final int common_signin_btn_text_focus_light = 0x7f020057;
public static final int common_signin_btn_text_light = 0x7f020058;
public static final int common_signin_btn_text_normal_dark = 0x7f020059;
public static final int common_signin_btn_text_normal_light = 0x7f02005a;
public static final int common_signin_btn_text_pressed_dark = 0x7f02005b;
public static final int common_signin_btn_text_pressed_light = 0x7f02005c;
public static final int ic_plusone_medium_off_client = 0x7f020074;
public static final int ic_plusone_small_off_client = 0x7f020075;
public static final int ic_plusone_standard_off_client = 0x7f020076;
public static final int ic_plusone_tall_off_client = 0x7f020077;
public static final int powered_by_google_dark = 0x7f020087;
public static final int powered_by_google_light = 0x7f020088;
}
public static final class id {
public static final int adjust_height = 0x7f0c0032;
public static final int adjust_width = 0x7f0c0033;
public static final int book_now = 0x7f0c0048;
public static final int buyButton = 0x7f0c0045;
public static final int buy_now = 0x7f0c0049;
public static final int buy_with = 0x7f0c004a;
public static final int buy_with_google = 0x7f0c004b;
public static final int cast_notification_id = 0x7f0c0004;
public static final int classic = 0x7f0c004f;
public static final int donate_with = 0x7f0c004c;
public static final int donate_with_google = 0x7f0c004d;
public static final int google_wallet_classic = 0x7f0c0050;
public static final int google_wallet_grayscale = 0x7f0c0051;
public static final int google_wallet_monochrome = 0x7f0c0052;
public static final int grayscale = 0x7f0c0053;
public static final int holo_dark = 0x7f0c003f;
public static final int holo_light = 0x7f0c0040;
public static final int hybrid = 0x7f0c0034;
public static final int logo_only = 0x7f0c004e;
public static final int match_parent = 0x7f0c0047;
public static final int monochrome = 0x7f0c0054;
public static final int none = 0x7f0c0010;
public static final int normal = 0x7f0c000c;
public static final int production = 0x7f0c0041;
public static final int sandbox = 0x7f0c0042;
public static final int satellite = 0x7f0c0035;
public static final int selectionDetails = 0x7f0c0046;
public static final int slide = 0x7f0c002e;
public static final int strict_sandbox = 0x7f0c0043;
public static final int terrain = 0x7f0c0036;
public static final int test = 0x7f0c0044;
public static final int wrap_content = 0x7f0c003e;
}
public static final class integer {
public static final int google_play_services_version = 0x7f0a0005;
}
public static final class raw {
public static final int gtm_analytics = 0x7f050000;
}
public static final class string {
public static final int accept = 0x7f060037;
public static final int auth_google_play_services_client_facebook_display_name = 0x7f06003a;
public static final int auth_google_play_services_client_google_display_name = 0x7f06003b;
public static final int cast_notification_connected_message = 0x7f060041;
public static final int cast_notification_connecting_message = 0x7f060042;
public static final int cast_notification_disconnect = 0x7f060043;
public static final int common_android_wear_notification_needs_update_text = 0x7f060011;
public static final int common_android_wear_update_text = 0x7f060012;
public static final int common_android_wear_update_title = 0x7f060013;
public static final int common_google_play_services_api_unavailable_text = 0x7f060014;
public static final int common_google_play_services_enable_button = 0x7f060015;
public static final int common_google_play_services_enable_text = 0x7f060016;
public static final int common_google_play_services_enable_title = 0x7f060017;
public static final int common_google_play_services_error_notification_requested_by_msg = 0x7f060018;
public static final int common_google_play_services_install_button = 0x7f060019;
public static final int common_google_play_services_install_text_phone = 0x7f06001a;
public static final int common_google_play_services_install_text_tablet = 0x7f06001b;
public static final int common_google_play_services_install_title = 0x7f06001c;
public static final int common_google_play_services_invalid_account_text = 0x7f06001d;
public static final int common_google_play_services_invalid_account_title = 0x7f06001e;
public static final int common_google_play_services_needs_enabling_title = 0x7f06001f;
public static final int common_google_play_services_network_error_text = 0x7f060020;
public static final int common_google_play_services_network_error_title = 0x7f060021;
public static final int common_google_play_services_notification_needs_update_title = 0x7f060022;
public static final int common_google_play_services_notification_ticker = 0x7f060023;
public static final int common_google_play_services_sign_in_failed_text = 0x7f060024;
public static final int common_google_play_services_sign_in_failed_title = 0x7f060025;
public static final int common_google_play_services_unknown_issue = 0x7f060026;
public static final int common_google_play_services_unsupported_text = 0x7f060027;
public static final int common_google_play_services_unsupported_title = 0x7f060028;
public static final int common_google_play_services_update_button = 0x7f060029;
public static final int common_google_play_services_update_text = 0x7f06002a;
public static final int common_google_play_services_update_title = 0x7f06002b;
public static final int common_google_play_services_updating_text = 0x7f06002c;
public static final int common_google_play_services_updating_title = 0x7f06002d;
public static final int common_open_on_phone = 0x7f06002e;
public static final int common_signin_button_text = 0x7f060044;
public static final int common_signin_button_text_long = 0x7f060045;
public static final int create_calendar_message = 0x7f060046;
public static final int create_calendar_title = 0x7f060047;
public static final int decline = 0x7f060048;
public static final int store_picture_message = 0x7f060052;
public static final int store_picture_title = 0x7f060053;
public static final int wallet_buy_button_place_holder = 0x7f060036;
}
public static final class style {
public static final int Theme_IAPTheme = 0x7f0800ee;
public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0800f6;
public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0800f7;
public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0800f8;
public static final int WalletFragmentDefaultStyle = 0x7f0800f9;
}
public static final class styleable {
public static final int[] AdsAttrs = { 0x7f010026, 0x7f010027, 0x7f010028 };
public static final int AdsAttrs_adSize = 0;
public static final int AdsAttrs_adSizes = 1;
public static final int AdsAttrs_adUnitId = 2;
public static final int[] CustomWalletTheme = { 0x7f010049 };
public static final int CustomWalletTheme_windowTransitionStyle = 0;
public static final int[] LoadingImageView = { 0x7f010059, 0x7f01005a, 0x7f01005b };
public static final int LoadingImageView_circleCrop = 2;
public static final int LoadingImageView_imageAspectRatio = 1;
public static final int LoadingImageView_imageAspectRatioAdjust = 0;
public static final int[] MapAttrs = { 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c };
public static final int MapAttrs_ambientEnabled = 16;
public static final int MapAttrs_cameraBearing = 1;
public static final int MapAttrs_cameraTargetLat = 2;
public static final int MapAttrs_cameraTargetLng = 3;
public static final int MapAttrs_cameraTilt = 4;
public static final int MapAttrs_cameraZoom = 5;
public static final int MapAttrs_liteMode = 6;
public static final int MapAttrs_mapType = 0;
public static final int MapAttrs_uiCompass = 7;
public static final int MapAttrs_uiMapToolbar = 15;
public static final int MapAttrs_uiRotateGestures = 8;
public static final int MapAttrs_uiScrollGestures = 9;
public static final int MapAttrs_uiTiltGestures = 10;
public static final int MapAttrs_uiZoomControls = 11;
public static final int MapAttrs_uiZoomGestures = 12;
public static final int MapAttrs_useViewLifecycle = 13;
public static final int MapAttrs_zOrderOnTop = 14;
public static final int[] WalletFragmentOptions = { 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127 };
public static final int WalletFragmentOptions_appTheme = 0;
public static final int WalletFragmentOptions_environment = 1;
public static final int WalletFragmentOptions_fragmentMode = 3;
public static final int WalletFragmentOptions_fragmentStyle = 2;
public static final int[] WalletFragmentStyle = { 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010131, 0x7f010132 };
public static final int WalletFragmentStyle_buyButtonAppearance = 3;
public static final int WalletFragmentStyle_buyButtonHeight = 0;
public static final int WalletFragmentStyle_buyButtonText = 2;
public static final int WalletFragmentStyle_buyButtonWidth = 1;
public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6;
public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8;
public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7;
public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5;
public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10;
public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9;
public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4;
}
}
| [
"[email protected]"
] | |
6db516b8be02f27356c032f9a542f859d020fcff | b9f641fbf06c91df975c00fdb81909d07bb0e7d0 | /src/Library/Resources.java | 4d98ab404c8f5f811c7d8836c9fd0ad71fb1f294 | [] | no_license | SDET93/Summer2020_B20 | 5ff291917050d2f64dd142a62852bbf8da18dc84 | ddc64db0e21aa687bc569637932fc50bd2317c9b | refs/heads/master | 2023-01-24T22:11:31.896760 | 2020-12-01T22:01:10 | 2020-12-01T22:01:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 266 | java | package Library;
public class Resources {
public static int a = 200;
int b = 300;
public static void method1 (){
System.out.println("Static method");
}
public void method2 (){
System.out.println("Instance method");
}
}
| [
"[email protected]"
] | |
053364869871b7f30fadda3a569a28722d838d57 | 4299d8b772d2c28b8d32c5b824ec92261179a8c8 | /MeuPrimeiroApp/app/src/main/java/com/studio/meuprimeiroapp/meuprimeiroapp/MainActivity.java | 363f68db961d476ab79a1355feec8f5aea09b62e | [] | no_license | MattheusB/Learning-Android | 8a43955fa80028462398ea0d9f8c41a41091f139 | 6042d6567751ac3d6ff065037a83b3a2e47630a5 | refs/heads/master | 2020-03-06T20:48:30.983293 | 2018-04-05T00:00:29 | 2018-04-05T00:00:29 | 127,063,094 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 356 | java | package com.studio.meuprimeiroapp.meuprimeiroapp;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_details);
}
}
| [
"[email protected]"
] | |
31c230918752c68da3a7801b8f0c1c555e3ed6e3 | 56d55cd702cc627a698c12d3a39fefa51a90aef6 | /src/main/java/com/ming/huamq/web/rest/vm/LoginVM.java | 64161e9925a6ba571dc50df7835bff2748bc7052 | [] | no_license | Southeasthua/zzh-backup | c9fac7f13655c70f69982f5db8d0f2c88cc4ed5a | b17c0df7efe8ce7f524c3c4e9e8bf3c7a0db085c | refs/heads/main | 2023-02-12T08:31:15.744095 | 2021-01-07T02:53:20 | 2021-01-07T02:53:20 | 327,486,307 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,073 | java | package com.ming.huamq.web.rest.vm;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
/**
* View Model object for storing a user's credentials.
*/
public class LoginVM {
@NotNull
@Size(min = 1, max = 50)
private String username;
@NotNull
@Size(min = 4, max = 100)
private String password;
private Boolean rememberMe;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Boolean isRememberMe() {
return rememberMe;
}
public void setRememberMe(Boolean rememberMe) {
this.rememberMe = rememberMe;
}
// prettier-ignore
@Override
public String toString() {
return "LoginVM{" +
"username='" + username + '\'' +
", rememberMe=" + rememberMe +
'}';
}
}
| [
"[email protected]"
] | |
aaef45f5c2662ca666c961332563d9c47c82a3d4 | 4874d8dd06a208ccd8351319b7cb8fe9b4905dd3 | /HackerRank/src/codeintvw/MergeSort.java | a9150e8f82282093a9b642eb8460d44fa566b5ed | [] | no_license | prasadvp/HackerRank | 60501d0d161e27f36da23c04355e39602a7b6d22 | b3a4f7d8f2389239cae29fdb9f10f31fba30bdef | refs/heads/master | 2021-05-10T10:24:27.097329 | 2020-01-05T15:01:23 | 2020-01-05T15:01:23 | 118,383,147 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,282 | java | package codeintvw;
import java.util.Scanner;
public class MergeSort {
static long countInversions(int[] arr) {
long numberOfInversions = 0;
// Complete this function
int[] temp = new int[arr.length];
numberOfInversions = mergeSort(arr, temp, 0, arr.length-1);
return numberOfInversions;
}
private static long mergeSort(int[] arr, int[] temp, int leftStart, int rightEnd ) {
long inversionCnt = 0;
if(leftStart < rightEnd ) {
int middleIndex = (leftStart+rightEnd)/2;
inversionCnt = inversionCnt + mergeSort(arr,temp,leftStart,middleIndex);
inversionCnt = inversionCnt + mergeSort(arr,temp,middleIndex+1,rightEnd);
inversionCnt = inversionCnt+ mergeHalves(arr,temp,leftStart,rightEnd);
}
return inversionCnt;
}
private static long mergeHalves(int[] arr, int[] temp, int leftStart, int rightEnd) {
// TODO Auto-generated method stub
long inversionCnt = 0;
int leftEnd = (rightEnd + leftStart)/2;
int rightStart = leftEnd +1;
int leftIndex = leftStart;
int startIndex = leftStart;
int rightIndex = rightStart;
int size = rightEnd-leftStart + 1;
while(leftIndex <=leftEnd && rightIndex <= rightEnd) {
if(arr[leftIndex] <= arr[rightIndex]) {
temp[startIndex] = arr[leftIndex];
leftIndex++;
}else {
temp[startIndex] = arr[rightIndex];
//inversionCnt++;
inversionCnt += leftEnd -leftIndex + 1;
rightIndex++;
}
startIndex++;
}
// Leftover elements here.
while(leftIndex <=leftEnd) {
temp[startIndex++] = arr[leftIndex++];
}
while(rightIndex <= rightEnd) {
temp[startIndex++] = arr[rightIndex++];
}
System.arraycopy(temp, leftStart, arr, leftStart, size);
return inversionCnt;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int t = in.nextInt();
for(int a0 = 0; a0 < t; a0++){
int n = in.nextInt();
int[] arr = new int[n];
for(int arr_i = 0; arr_i < n; arr_i++){
arr[arr_i] = in.nextInt();
}
long result = countInversions(arr);
System.out.println(result);
}
in.close();
}
}
| [
"[email protected]"
] | |
f13fe5e3284b51d6e2f58371dddfaac2bd8e0e2f | bc24725a5babf5447e3fdddeee7f1abb5aa62325 | /iti-sysmgr/backend/src/main/java/com/crab/cors/CORSConfiguration.java | b168649a47c7c39f9218469661018d17db95cca0 | [] | no_license | yunxiaoxie/ORMapping | 4d3d7d69e361d7e2911ea060760f6aac214d1e70 | 488a2d34174b8cb2466033646f3a10bc3243d912 | refs/heads/master | 2022-11-05T02:21:19.542876 | 2019-05-24T09:43:20 | 2019-05-24T09:43:20 | 69,338,682 | 1 | 1 | null | 2022-10-12T20:22:05 | 2016-09-27T09:05:01 | JavaScript | UTF-8 | Java | false | false | 1,021 | java | package com.crab.cors;
import org.springframework.context.annotation.Bean;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
* 解决跨域问题springboot所需配置
*/
//@Configuration
public class CORSConfiguration {
@Bean
public WebMvcConfigurer CORSConfigurer() {
return new WebMvcConfigurerAdapter() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedMethods("*")
.allowedHeaders("*")
//设置是否允许跨域传cookie
.allowCredentials(true)
//设置缓存时间,减少重复响应
.maxAge(3600);
}
};
}
} | [
"[email protected]"
] | |
8de7110275394f891d266a8a7dd9c9dd97c93788 | e6c26aa5767de7a4e2d6757d302a8d19c69fdd6f | /app/src/main/java/midsummer/com/testgoether/Wallet.java | a2e50a0fb202971aa55cb56e8dd52e854b873059 | [] | no_license | vtproduction/TestGoEther | 78a7b54d260eec6f415b1c7c98fb08ebf1194fa0 | 92be0ab59dadef4da750f09f9ba22475a0e5b669 | refs/heads/master | 2020-03-25T23:25:39.115135 | 2018-08-10T10:44:22 | 2018-08-10T10:44:22 | 144,274,151 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,065 | java | package midsummer.com.testgoether;
import android.os.Parcel;
import android.os.Parcelable;
public class Wallet implements Parcelable {
public final String address;
public Wallet(String address) {
this.address = address;
}
private Wallet(Parcel in) {
address = in.readString();
}
public static final Creator<Wallet> CREATOR = new Creator<Wallet>() {
@Override
public Wallet createFromParcel(Parcel in) {
return new Wallet(in);
}
@Override
public Wallet[] newArray(int size) {
return new Wallet[size];
}
};
public boolean sameAddress(String address) {
return this.address.equals(address);
}
@Override
public String toString() {
return "Wallet{" +
"address='" + address + '\'' +
'}';
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(address);
}
}
| [
"[email protected]"
] | |
dda55a20b86edfe2a58a540d1108b8ace8a66715 | 9f05da481f23da7120cc173c8fe850b27aeeb430 | /src/main/java/com/diegomunhoz/controlepedidosdm/domain/enums/EstadoPagamento.java | 5d7493732d8413b5335c4b3ce5c571b302d664f6 | [] | no_license | diegomunhoz/controle-pedidos-dm-backend | e445e8dad3b8a2dccc48b88908ae9a09420cce30 | e13002148cd244a1ac36d1246a5946264cb8ac36 | refs/heads/master | 2021-06-24T10:38:46.930046 | 2019-11-20T15:39:38 | 2019-11-20T15:39:38 | 222,743,240 | 1 | 0 | null | 2021-04-26T19:42:45 | 2019-11-19T16:43:39 | Java | UTF-8 | Java | false | false | 704 | java | package com.diegomunhoz.controlepedidosdm.domain.enums;
public enum EstadoPagamento {
PENDENTE(1, "Pendente"),
QUITADO(2, "Quitado"),
CANCELADO(3, "Cancelado");
private int cod;
private String descricao;
private EstadoPagamento(int cod, String descricao) {
this.cod = cod;
this.descricao = descricao;
}
public int getCod() {
return cod;
}
public String getDescricao() {
return descricao;
}
public static EstadoPagamento toEnum(Integer cod) {
if (cod == null) {
return null;
}
for (EstadoPagamento x : EstadoPagamento.values()) {
if (cod.equals(x.getCod())) {
return x;
}
}
throw new IllegalArgumentException("Id inválido: " + cod);
}
}
| [
"[email protected]"
] | |
b1752aa4d9218618ccdd37f10e840b8f805566f0 | 3ab4f115fb18f1928b35a991ffb44b3f233b955a | /inference-engine/src/test/java/com/github/thorbenlindhauer/inference/SumProductLoopyBeliefPropagationInferencerTest.java | e16532cbbd5fb572a629541ed8d4d150fdfc8369 | [
"Apache-2.0"
] | permissive | eektguj/graphical-models | 497077d220320936448492d85a915f61a6bdba34 | f0dc76b2ad0678b52ae9a088f54eb5e0e78f6714 | refs/heads/master | 2021-06-04T16:14:04.063800 | 2016-09-26T16:01:57 | 2016-09-26T16:01:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,568 | java | /* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.thorbenlindhauer.inference;
import com.github.thorbenlindhauer.cluster.messagepassing.MessagePassingContextFactory;
import com.github.thorbenlindhauer.cluster.messagepassing.SumProductContextFactory;
import com.github.thorbenlindhauer.factor.DiscreteFactor;
import com.github.thorbenlindhauer.inference.loopy.ClusterGraphCalibrationContextFactory;
import com.github.thorbenlindhauer.inference.loopy.DiscreteFactorEvaluator;
import com.github.thorbenlindhauer.inference.loopy.RoundRobinCalibrationContext.RoundRobinCalibrationContextFactory;
public class SumProductLoopyBeliefPropagationInferencerTest extends LoopyBeliefPropagationInferencerTest {
@Override
protected MessagePassingContextFactory getMessagePassingContextFactory() {
return new SumProductContextFactory();
}
@Override
protected ClusterGraphCalibrationContextFactory<DiscreteFactor> getCalibrationContextFactory() {
return new RoundRobinCalibrationContextFactory<DiscreteFactor>(new DiscreteFactorEvaluator());
}
}
| [
"[email protected]"
] | |
4306b727093a0f673a4facab419f91f74185b135 | 862ba2640b60d7a71aedfb334672409d074dfce8 | /Library_web/src/mvc/action/msg/SentDeleteAction.java | e8445c88bc58db704bdf10038b60668335282a2c | [] | no_license | ccc4/Tjoeun_Project_3_Library_web | fc5d8fcfb568f5cfc4fb028da1c97507b49acc2e | 7d9c9919891c7a008054b0a15369e7ebe89c284c | refs/heads/master | 2020-04-02T08:53:01.051982 | 2018-11-02T16:31:00 | 2018-11-02T16:31:00 | 154,265,675 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,230 | java | package mvc.action.msg;
import java.io.IOException;
import java.sql.Connection;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import mvc.action.Action;
import mvc.dao.MsgDAO;
import mvc.util.JdbcCloser;
import mvc.util.JdbcConnection;
public class SentDeleteAction implements Action {
private static final String viewPath = "/msg/write.jsp";
private static final String checkPath = "/WEB-INF/check/checkMsgResult.jsp";
@Override
public void execute(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
if(request.getMethod().equals("GET")) {
int idx = Integer.parseInt(request.getParameter("idx"));
Connection conn = JdbcConnection.getConnection();
MsgDAO dao = MsgDAO.getInstance();
int result = dao.sentDelete(conn, idx);
request.setAttribute("sDeleteMsg", result);
JdbcCloser.close(conn);
request.getRequestDispatcher(checkPath).forward(request, response);
} else if(request.getMethod().equals("POST")) {
request.getRequestDispatcher(checkPath).forward(request, response);
}
}
}
| [
"402-27@DESKTOP-OH0SO1D"
] | 402-27@DESKTOP-OH0SO1D |
d41976e261702d62a3583709a2d9bff13daa82ae | 8349a62704cfd6a0759d05e2497eff01abe6b705 | /src/main/java/ru/bmstu/rk9/agents/cognitive/hard/HardSyntaxAnalyzer.java | 56a43332dc9de16faf20322479221891eb851e1c | [] | no_license | vic-volk/cognitive-agent | c7a6cbed5cbbf9c4be8603e2f87208e262db2315 | d6f696cda533c8ad165c724c67879e51da334691 | refs/heads/master | 2020-12-21T10:12:19.626762 | 2016-08-08T07:15:39 | 2016-08-08T07:15:39 | 58,410,359 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,842 | java | package ru.bmstu.rk9.agents.cognitive.hard;
import ru.bmstu.rk9.agents.cognitive.SyntaxAnalyzer;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
//TODO: replace with ontology analyzer
public class HardSyntaxAnalyzer implements SyntaxAnalyzer {
private final String QUESTION = "question";
private final String NARRATIVE = "narrative";
private final String EXCLAMATION = "exclamation";
/**
* Ищет вопросительные конструкции в предложении
* есть ли ..., а у... есть
* Вопросительные местоимения
* где, когда,
* вопросительные частицы
* ли
* вопросительный знак
* ?
*
* @param sentences - предложения
* @return соответствие
*/
public Map<String, String> analyzeTypes(List<String> sentences) {
return sentences.stream()
.collect(Collectors.toMap(s -> s, this::determineType));
}
/**
* types - question, narrative, exclamation
* @param sentence - предложение
* @return - тип предложения
*/
private String determineType(String sentence) {
if (sentence.contains("?")) {
return QUESTION;
}
if (sentence.matches(".*есть.*ли.*")) {
return QUESTION;
}
if (sentence.matches(".*где.*")) {
return QUESTION;
}
if (sentence.matches(".*а.*у.*есть.*")) {
return QUESTION;
}
if (sentence.matches(".*когда.*")) {
return QUESTION;
}
if (sentence.contains(" ли ")) {
return QUESTION;
}
return NARRATIVE;
}
}
| [
"[email protected]"
] | |
50d524b6c67880ca3e24a99f8e5ee2191f76ff86 | 359fee048b582c980fa3ea0dccebdc710c9d969a | /app/src/main/java/com/myplayschool/HomePage.java | fbcbe4edc411924ad545c9e496961edb8c18bbee | [] | no_license | sukhjit310192/MyPlaySchool | 25139a8121cdcec5b52019b83eb83b5d0dda945b | 53396b1287fb501d2b2b41ebaf5351857156483e | refs/heads/master | 2020-03-09T14:20:28.095088 | 2018-04-09T20:50:51 | 2018-04-09T20:50:51 | 128,666,448 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,207 | java | package com.myplayschool;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class HomePage extends Activity implements OnClickListener{
Button learnbtn,quizbtn,quitbtn;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.home_page);
learnbtn=(Button) findViewById(R.id.startlearnbtn);
quizbtn=(Button)findViewById(R.id.startquizbtn);
quitbtn=(Button)findViewById(R.id.quitbtn);
learnbtn.setOnClickListener(this);
quizbtn.setOnClickListener(this);
quitbtn.setOnClickListener(this);
}
public void onClick(View arg0) {
// TODO Auto-generated method stub
switch (arg0.getId()) {
case R.id.startlearnbtn:
Intent inplay=new Intent(getApplicationContext(),IndexList.class);
startActivity(inplay);
break;
case R.id.startquizbtn:
Intent inquiz=new Intent(getApplicationContext(),QuizPage.class);
startActivity(inquiz);
break;
case R.id.quitbtn:
finish();
break;
default:
break;
}
}
}
| [
"[email protected]"
] | |
026ff7363b4265257e2a874ed9d6531f8d61f8bf | 551f8c961f46da1f87b963e44f2974f0f9097afc | /src/main/java/com/nexos/storagesystem/model/User.java | 1f2fb553a2cdd16fdfb272a324b4aef731667b18 | [] | no_license | luis572/commodity-app-backend | aad0ad790885809ca7be177a19d17b228a82b76e | a52f3a4e69e5a26734594e376f63f2103365b3c7 | refs/heads/main | 2023-04-29T03:44:32.817314 | 2021-05-13T17:13:09 | 2021-05-13T17:13:09 | 367,120,454 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,539 | java | package com.nexos.storagesystem.model;
import org.hibernate.annotations.DynamicUpdate;
import org.hibernate.envers.Audited;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.annotation.LastModifiedDate;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
import javax.persistence.*;
import javax.validation.constraints.Min;
import java.util.Date;
import java.util.UUID;
@Entity
@Audited
@DynamicUpdate
@Table(name = "users")
@EntityListeners(
value = {
AuditingEntityListener.class
}
)
public class User {
@Id
public UUID uuid = UUID.randomUUID();
@Column(unique = true)
public String name;
@Column
@Min(0)
public int age;
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "position_uuid")
public Position position;
@Column(name = "last_name",unique = true)
public String lastName;
@Column(name = "created_at", updatable = false)
@CreatedDate
public Date createdAt;
@Column(name = "last_modified_at", updatable = false)
@LastModifiedDate
public Date lastModifiedAt;
public User() {}
public User(UUID uuid, String name, @Min(0) int age, Position position, String lastName, Date createdAt, Date lastModifiedAt) {
this.uuid = uuid;
this.name = name;
this.age = age;
this.position = position;
this.lastName = lastName;
this.createdAt = createdAt;
this.lastModifiedAt = lastModifiedAt;
}
public int getAge() { return age; }
public void setAge(int age) { this.age = age; }
public UUID getUuid() {
return uuid;
}
public void setUuid(UUID uuid) {
this.uuid = uuid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getLastModifiedAt() {
return lastModifiedAt;
}
public void setLastModifiedAt(Date lastModifiedAt) {
this.lastModifiedAt = lastModifiedAt;
}
}
| [
"[email protected]"
] | |
205e2863b6c32eb5d0ca24f7fe00c4e9b8a13637 | d86ba63d6fad172f03dd4080b2c7660a8dedf9f9 | /src/main/java/com/example/demo/repository/RegistroDiarioRepository.java | 649260b5b07a89dde5aceb51465544baa8c81e22 | [] | no_license | rudanlucena/ru-back | 3dc4343442bb39d34f585bd0188b2e4d7c6d9b1d | 7236eb49aab14d126ca460666011aa3d2245a311 | refs/heads/master | 2023-03-15T17:15:57.748659 | 2021-03-03T15:01:50 | 2021-03-03T15:01:50 | 226,114,750 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 340 | java | package com.example.demo.repository;
import com.example.demo.domain.Periodo;
import com.example.demo.domain.RegistroDiario;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface RegistroDiarioRepository extends JpaRepository<RegistroDiario, Long> {
}
| [
"[email protected]"
] | |
0a2165f783a129ba4423c3305c6efa2ce5bc8483 | f971f93ee16a53d800a6ea564e2fd96ac30194c5 | /app/src/main/java/com/mit/persona/ListViewCustomAdapter.java | ddfeec58dd7513a2652c8596bf9d78392c0ecd77 | [] | no_license | teknaS47/Persona | 0f920b4ddaa0b9699ce9b486896acfec4ab05b19 | a8a0f2c0a44c35a1b39725b951a3ba334b992511 | refs/heads/master | 2022-05-02T11:35:52.870802 | 2019-02-17T12:59:58 | 2019-02-17T12:59:58 | 162,450,640 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,109 | java | package com.mit.persona;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.List;
public class ListViewCustomAdapter extends BaseAdapter {
List<Table_Messages> messagesList;
public Activity context;
public LayoutInflater inflater;
public ListViewCustomAdapter(Activity context, List<Table_Messages> messagesList) {
super();
this.context = context;
this.messagesList = messagesList;
this.inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return messagesList.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return messagesList.get(position);
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
public static class ViewHolder
{
TextView txtViewTitle;
TextView txtViewBody;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generatitemsed method stub
ViewHolder holder;
if(convertView==null)
{
holder = new ViewHolder();
convertView = inflater.inflate(R.layout.message_card, null);
holder.txtViewTitle = (TextView) convertView.findViewById(R.id.message_title);
holder.txtViewBody = (TextView) convertView.findViewById(R.id.message_body);
convertView.setTag(holder);
}
else
holder=(ViewHolder)convertView.getTag();
Table_Messages message = (Table_Messages) messagesList.get(position);
holder.txtViewTitle.setText(message.getTitle());
holder.txtViewBody.setText(message.getMessage());
return convertView;
}
} | [
"[email protected]"
] | |
8038e7032ee959c3228f5033867eb0cab820506a | b0df52346d6b778d0e22472d0b02507bd958539f | /exampleclients/flatspace/as_straight_code/flatspace/src/com/troutmoon/games/flatspace/narrative/StoryEventListener.java | 2de8a1cce9273dc63835a45019e2b014c6112fd7 | [] | no_license | Aempyre/mframe | d3433f153a2f5fc1f7cbf6d3f97413a403a03421 | ee7a12a57061be8f03b1780432f1095245ae7f2d | refs/heads/master | 2020-04-06T16:42:03.132175 | 2018-11-21T00:02:36 | 2018-11-21T00:02:36 | 157,630,537 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 139 | java | package com.troutmoon.games.flatspace.narrative;
public interface StoryEventListener {
public void recieveEvent(StoryEvent event);
}
| [
"[email protected]"
] | |
acee76c50103cd5af098272c16a5aca2e3a817ec | fded5ea462603306b141eecd904b252bdebdeb48 | /src/main/java/io/github/dloiacono/jhipster/sample/config/WebConfigurer.java | 41080107caafbd2e0c1829be8992548c8d569cce | [] | no_license | dloiacono/jhipsterSampleApplication | 7675b1fd7356d7754d41a6e9b8211b0f45eaa85e | be98595a8f7613f9e2e1d647e236e82da1f4346e | refs/heads/master | 2021-05-10T17:09:40.253803 | 2018-01-23T11:30:57 | 2018-01-23T11:30:57 | 118,601,345 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,926 | java | package io.github.dloiacono.jhipster.sample.config;
import io.github.jhipster.config.JHipsterConstants;
import io.github.jhipster.config.JHipsterProperties;
import com.codahale.metrics.MetricRegistry;
import com.codahale.metrics.servlet.InstrumentedFilter;
import com.codahale.metrics.servlets.MetricsServlet;
import com.hazelcast.core.HazelcastInstance;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.embedded.*;
import org.springframework.boot.context.embedded.undertow.UndertowEmbeddedServletContainerFactory;
import io.undertow.UndertowOptions;
import org.springframework.boot.web.servlet.ServletContextInitializer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;
import org.springframework.http.MediaType;
import java.util.*;
import javax.servlet.*;
/**
* Configuration of web application with Servlet 3.0 APIs.
*/
@Configuration
public class WebConfigurer implements ServletContextInitializer, EmbeddedServletContainerCustomizer {
private final Logger log = LoggerFactory.getLogger(WebConfigurer.class);
private final Environment env;
private final JHipsterProperties jHipsterProperties;
private final HazelcastInstance hazelcastInstance;
private MetricRegistry metricRegistry;
public WebConfigurer(Environment env, JHipsterProperties jHipsterProperties, HazelcastInstance hazelcastInstance) {
this.env = env;
this.jHipsterProperties = jHipsterProperties;
this.hazelcastInstance = hazelcastInstance;
}
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
if (env.getActiveProfiles().length != 0) {
log.info("Web application configuration, using profiles: {}", (Object[]) env.getActiveProfiles());
}
EnumSet<DispatcherType> disps = EnumSet.of(DispatcherType.REQUEST, DispatcherType.FORWARD, DispatcherType.ASYNC);
initMetrics(servletContext, disps);
if (env.acceptsProfiles(JHipsterConstants.SPRING_PROFILE_DEVELOPMENT)) {
initH2Console(servletContext);
}
log.info("Web application fully configured");
}
/**
* Customize the Servlet engine: Mime types, the document root, the cache.
*/
@Override
public void customize(ConfigurableEmbeddedServletContainer container) {
MimeMappings mappings = new MimeMappings(MimeMappings.DEFAULT);
// IE issue, see https://github.com/jhipster/generator-jhipster/pull/711
mappings.add("html", MediaType.TEXT_HTML_VALUE + ";charset=utf-8");
// CloudFoundry issue, see https://github.com/cloudfoundry/gorouter/issues/64
mappings.add("json", MediaType.TEXT_HTML_VALUE + ";charset=utf-8");
container.setMimeMappings(mappings);
/*
* Enable HTTP/2 for Undertow - https://twitter.com/ankinson/status/829256167700492288
* HTTP/2 requires HTTPS, so HTTP requests will fallback to HTTP/1.1.
* See the JHipsterProperties class and your application-*.yml configuration files
* for more information.
*/
if (jHipsterProperties.getHttp().getVersion().equals(JHipsterProperties.Http.Version.V_2_0) &&
container instanceof UndertowEmbeddedServletContainerFactory) {
((UndertowEmbeddedServletContainerFactory) container)
.addBuilderCustomizers(builder ->
builder.setServerOption(UndertowOptions.ENABLE_HTTP2, true));
}
}
/**
* Initializes Metrics.
*/
private void initMetrics(ServletContext servletContext, EnumSet<DispatcherType> disps) {
log.debug("Initializing Metrics registries");
servletContext.setAttribute(InstrumentedFilter.REGISTRY_ATTRIBUTE,
metricRegistry);
servletContext.setAttribute(MetricsServlet.METRICS_REGISTRY,
metricRegistry);
log.debug("Registering Metrics Filter");
FilterRegistration.Dynamic metricsFilter = servletContext.addFilter("webappMetricsFilter",
new InstrumentedFilter());
metricsFilter.addMappingForUrlPatterns(disps, true, "/*");
metricsFilter.setAsyncSupported(true);
log.debug("Registering Metrics Servlet");
ServletRegistration.Dynamic metricsAdminServlet =
servletContext.addServlet("metricsServlet", new MetricsServlet());
metricsAdminServlet.addMapping("/management/metrics/*");
metricsAdminServlet.setAsyncSupported(true);
metricsAdminServlet.setLoadOnStartup(2);
}
@Bean
public CorsFilter corsFilter() {
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
CorsConfiguration config = jHipsterProperties.getCors();
if (config.getAllowedOrigins() != null && !config.getAllowedOrigins().isEmpty()) {
log.debug("Registering CORS filter");
source.registerCorsConfiguration("/api/**", config);
source.registerCorsConfiguration("/management/**", config);
source.registerCorsConfiguration("/v2/api-docs", config);
}
return new CorsFilter(source);
}
/**
* Initializes H2 console.
*/
private void initH2Console(ServletContext servletContext) {
log.debug("Initialize H2 console");
try {
// We don't want to include H2 when we are packaging for the "prod" profile and won't
// actually need it, so we have to load / invoke things at runtime through reflection.
ClassLoader loader = Thread.currentThread().getContextClassLoader();
Class<?> servletClass = Class.forName("org.h2.server.web.WebServlet", true, loader);
Servlet servlet = (Servlet) servletClass.newInstance();
ServletRegistration.Dynamic h2ConsoleServlet = servletContext.addServlet("H2Console", servlet);
h2ConsoleServlet.addMapping("/h2-console/*");
h2ConsoleServlet.setInitParameter("-properties", "src/main/resources/");
h2ConsoleServlet.setLoadOnStartup(1);
} catch (ClassNotFoundException | LinkageError e) {
throw new RuntimeException("Failed to load and initialize org.h2.server.web.WebServlet", e);
} catch (IllegalAccessException | InstantiationException e) {
throw new RuntimeException("Failed to instantiate org.h2.server.web.WebServlet", e);
}
}
@Autowired(required = false)
public void setMetricRegistry(MetricRegistry metricRegistry) {
this.metricRegistry = metricRegistry;
}
}
| [
"[email protected]"
] | |
aa55916bf980e5feb57672286b1a29a367b6c9ff | c18aab8d653d128bb7cfa5cff2ead1057c3dd50a | /ds/eden-authcenter-agent/src/main/java/com/chineseall/eden/authcenter/agent/enums/DianjiaoguanGradeType.java | 3dd93c95aa5ec473240de35e0177a0080eaa3e1b | [] | no_license | shanghai-edu/ds-suxiang | d084a3372bd26c0b2e317ecc29419197ee7fde72 | 2e8a713707e4037b6f8ca31d052613d1d4a37413 | refs/heads/master | 2023-07-31T23:27:08.111233 | 2021-09-15T06:55:12 | 2021-09-15T06:55:12 | 329,651,132 | 0 | 1 | null | 2021-09-15T06:55:13 | 2021-01-14T15:11:08 | null | UTF-8 | Java | false | false | 1,840 | java | package com.chineseall.eden.authcenter.agent.enums;
import lombok.Getter;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
public enum DianjiaoguanGradeType {
FIRST_GRADE("11", "一年级",1),
SECOND_GRADE("12", "二年级",2),
THIRD_GRADE("13", "三年级",3),
FOURTH_GRADE("14", "四年级",4),
FIFTH_GRADE("15", "五年级",5),
SIXTH_GRADE("16", "六年级",6),
SEVENTH_GRADE("17", "七年级",7),
EIGHTH_GRADE("18", "八年级",8),
NINTH_GRADE("19", "九年级",9),
TENTH_GRADE("31", "高一",10),
ELEVENTH_GRADE("32", "高二",11),
TWELFTH_GRADE("33", "高三",12);
@Getter
private final String code;
@Getter
private final String description;
@Getter
private final int level;
private final static Map<String, DianjiaoguanGradeType> gradeLevelMap;
private final static Map<String, DianjiaoguanGradeType> descriptionMap;
static {
gradeLevelMap = new LinkedHashMap<>();
descriptionMap = new HashMap<>();
for (DianjiaoguanGradeType type : DianjiaoguanGradeType.values()) {
gradeLevelMap.put(type.getCode(), type);
descriptionMap.put(type.getDescription(), type);
}
}
DianjiaoguanGradeType(String code, String description, int level) {
this.code = code;
this.description = description;
this.level = level;
}
public static DianjiaoguanGradeType getByName(String name) {
try {
return DianjiaoguanGradeType.valueOf(name);
} catch (Exception ex) {
return null;
}
}
public static DianjiaoguanGradeType getByCode(String code) {
try {
return gradeLevelMap.get(code);
} catch (Exception ex) {
return null;
}
}
}
| [
"[email protected]"
] | |
1419b8481e1283bd6c3f331b82d666e873eb8bcb | fa0095fcf9af933279ad882e7d8b95cb0d16cc92 | /src/com/zyw/bean/RolePermission.java | bde74c55bf0a9918e7f67ed50758cc66b512cf8f | [] | no_license | githubpig/backstage | 85edbe2da3946cee7bc200b4999d7e3bfeb221f7 | 4d950f5af9c64d431ea7eee19c156f0b3ccfef50 | refs/heads/master | 2022-06-18T00:21:22.232971 | 2020-05-08T10:45:51 | 2020-05-08T10:45:51 | 262,280,450 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 663 | java | package com.zyw.bean;
import java.io.Serializable;
public class RolePermission implements Serializable{
private static final long serialVersionUID = 1L;
private Integer roleId;
private Integer permissionId;
public RolePermission() {
super();
}
public Integer getRoleId() {
return roleId;
}
public void setRoleId(Integer roleId) {
this.roleId = roleId;
}
public Integer getPermissionId() {
return permissionId;
}
public void setPermissionId(Integer permissionId) {
this.permissionId = permissionId;
}
@Override
public String toString() {
return "RolePermission [roleId=" + roleId + ", permissionId="
+ permissionId + "]";
}
}
| [
"[email protected]"
] | |
e3a0497780450801e31fc3905cfb5f57030576a8 | 3ee87ef515337cc2997526154a466c0df616e619 | /core/Grammar2Model.KDM/src/kdm/code/Datatype.java | 570bd95a066cc13610cfc24840f4ecfe60b803fc | [] | no_license | adolfosbh/gra2mol | e0eb121e0d4b9757b53546e90aa570194a920bf5 | ab03b456446ba906ce796fd996703df243410492 | refs/heads/master | 2020-04-05T23:00:58.753302 | 2016-11-19T13:13:07 | 2016-11-19T13:13:07 | 51,363,734 | 0 | 0 | null | 2016-02-09T11:49:49 | 2016-02-09T11:49:49 | null | UTF-8 | Java | false | false | 363 | java | /**
* <copyright>
* </copyright>
*
* $Id$
*/
package kdm.code;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datatype</b></em>'.
* <!-- end-user-doc -->
*
*
* @see kdm.code.CodePackage#getDatatype()
* @model interface="true" abstract="true"
* @generated
*/
public interface Datatype extends CodeItem {
} // Datatype
| [
"[email protected]"
] | |
d8999feed8fb3b3f138a34aaf33b95beff7bf760 | de8e95374482d6025c39e205f03076632d5cc3ed | /app/src/main/java/me/jessyan/retrofiturlmanager/demo/NetWorkManager.java | a8df6568ab073764e5a971161fcf21aa5e67edb4 | [
"Apache-2.0"
] | permissive | msdgwzhy6/RetrofitUrlManager | 9ee0c454db9507ced1b13760efec3e4601ea9aba | 98ad3e3f754ca33f3f6dfffef7ec2c317e8991e0 | refs/heads/master | 2021-01-01T18:40:22.382172 | 2017-07-26T08:28:23 | 2017-07-26T08:28:23 | 98,401,872 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,380 | java | package me.jessyan.retrofiturlmanager.demo;
import java.util.concurrent.TimeUnit;
import me.jessyan.retrofiturlmanager.RetrofitUrlManager;
import me.jessyan.retrofiturlmanager.demo.api.OneApiService;
import me.jessyan.retrofiturlmanager.demo.api.ThreeApiService;
import me.jessyan.retrofiturlmanager.demo.api.TwoApiService;
import okhttp3.OkHttpClient;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
import static me.jessyan.retrofiturlmanager.demo.api.Api.APP_DEFAULT_DOMAIN;
/**
* Created by jess on 18/07/2017 17:03
* Contact with [email protected]
*/
public class NetWorkManager {
private OkHttpClient mOkHttpClient;
private Retrofit mRetrofit;
private OneApiService mOneApiService;
private TwoApiService mTwoApiService;
private ThreeApiService mThreeApiService;
private static class NetWorkManagerHolder {
private static final NetWorkManager INSTANCE = new NetWorkManager();
}
public static final NetWorkManager getInstance() {
return NetWorkManagerHolder.INSTANCE;
}
private NetWorkManager() {
this.mOkHttpClient = RetrofitUrlManager.getInstance().with(new OkHttpClient.Builder()) //RetrofitUrlManager 初始化
.readTimeout(5, TimeUnit.SECONDS)
.connectTimeout(5, TimeUnit.SECONDS)
.build();
this.mRetrofit = new Retrofit.Builder()
.baseUrl(APP_DEFAULT_DOMAIN)
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())//使用rxjava
.addConverterFactory(GsonConverterFactory.create())//使用Gson
.client(mOkHttpClient)
.build();
this.mOneApiService = mRetrofit.create(OneApiService.class);
this.mTwoApiService = mRetrofit.create(TwoApiService.class);
this.mThreeApiService = mRetrofit.create(ThreeApiService.class);
}
public OkHttpClient getOkHttpClient() {
return mOkHttpClient;
}
public Retrofit getRetrofit() {
return mRetrofit;
}
public OneApiService getOneApiService() {
return mOneApiService;
}
public TwoApiService getTwoApiService() {
return mTwoApiService;
}
public ThreeApiService getThreeApiService() {
return mThreeApiService;
}
}
| [
"[email protected]"
] | |
827b87f640b75a6ec12f46ac4b5c24200e4cad87 | 6e93e8bf60adbd63a639acdeb13d2346eedce969 | /backend-utils/src/main/java/com/clf/backendutils/util/PageUtil.java | 6dc17cace3a84b9632a858d32b87cab543951d20 | [] | no_license | kvenLin/CloudSecurity | 29227daf30a53c6b6f9ddef5b4bb3ff13c39c137 | f12842d379931da39417bc07c88a98ea66096b76 | refs/heads/master | 2022-06-23T14:32:58.820424 | 2020-03-04T13:46:27 | 2020-03-04T13:46:27 | 244,618,026 | 0 | 0 | null | 2022-06-21T02:55:02 | 2020-03-03T11:25:23 | Java | UTF-8 | Java | false | false | 872 | java | package com.clf.backendutils.util;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.google.common.collect.Maps;
import java.util.HashMap;
import java.util.Map;
/**
* @Author: clf
* @Date: 2020-03-01
* @Description: 封装Json格式的Map
*/
public class PageUtil {
/**
* 分页信息Json的重构
* @param page 这里是使用的Mybatis-plus内部的IPage, 需要依赖引入
* @param title
* @return
*/
public static Map<String, Object> getPageResult(IPage page, String title) {
HashMap<String, Object> result = Maps.newHashMap();
result.put("totalSize", page.getTotal());
result.put("totalPages", page.getPages());
result.put("pageSize", page.getSize());
result.put("nowPage", page.getCurrent());
result.put(title, page.getRecords());
return result;
}
}
| [
"[email protected]"
] | |
025d6640f8175e88c93946c334c0fe8d5ee2aef0 | 5dfadf842bdf166c604cdeecae309f45fe3f1a79 | /src/com/msbinfo/expresslync/rct/UserLoginDocument.java | 72d94a8a774ce5b18372854e5cbb300fce86da75 | [] | no_license | JB2001216/MSBValuationClient | a9d86260ffbf16bd82216b60498704bb42259083 | e2cf9299a8482ffdcc807c84fc3bd0ce6a83b0c8 | refs/heads/master | 2023-02-23T22:11:50.951025 | 2021-01-27T13:48:39 | 2021-01-27T13:48:39 | 333,434,368 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,687 | java | /*
* An XML document type.
* Localname: UserLogin
* Namespace: http://msbinfo.com/expresslync/rct
* Java type: com.msbinfo.expresslync.rct.UserLoginDocument
*
* Automatically generated - do not modify.
*/
package com.msbinfo.expresslync.rct;
/**
* A document containing one UserLogin(@http://msbinfo.com/expresslync/rct) element.
*
* This is a complex type.
*/
public interface UserLoginDocument extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(UserLoginDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s1768D09471800D65E1818E928883FB9D").resolveHandle("userlogin34dddoctype");
/**
* Gets the "UserLogin" element
*/
java.lang.String getUserLogin();
/**
* Gets (as xml) the "UserLogin" element
*/
org.apache.xmlbeans.XmlString xgetUserLogin();
/**
* Sets the "UserLogin" element
*/
void setUserLogin(java.lang.String userLogin);
/**
* Sets (as xml) the "UserLogin" element
*/
void xsetUserLogin(org.apache.xmlbeans.XmlString userLogin);
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static com.msbinfo.expresslync.rct.UserLoginDocument newInstance() {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static com.msbinfo.expresslync.rct.UserLoginDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (com.msbinfo.expresslync.rct.UserLoginDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}
| [
"[email protected]"
] | |
2c6406be62c66ef5f4b7e1942e7e9e586944e313 | 9cda387c2fec185d7af6c17886b1aefc0e3ca0b3 | /TentsAndTrees/src/main.java | a9f501876740c75aae419ae6a5484b231da91c58 | [] | no_license | carolinaVerg/tents_and_trees | c6260739eb46bfd0dfed901bc2af2409cb952cb6 | 7522aeb0177f6adddddded73230e237b65d3fbb1 | refs/heads/master | 2020-05-01T11:05:35.533579 | 2019-03-24T15:40:06 | 2019-03-24T15:40:06 | 177,434,037 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 339 | java | import java.util.LinkedList;
public class main {
public static World world;
public static World_creator wc;
public static void main(String[] args) {
wc = new World_creator(10,10);
System.out.println(wc);
world = new World(wc.getNum_trees(),wc.getWorld(),wc.getNum_of_tentRow(),wc.getNum_of_tentCol());
world.solve();
}
}
| [
"[email protected]"
] | |
beda3f15e651baf6972395e0bf8354af77fa8c60 | 99ac771b8858325480dcc829489463ab22110c7e | /app/src/main/java/com/hardteam/rg/soundcheckstudio/ui/fragments/ContactsFragment.java | d96393c6de8448689a6e54ec8d168669c22d4c9b | [] | no_license | RussellGk/SoundcheckStudio | 2db49befdf6cef9f980d227905796718652b83d0 | 8f4a96a52e34e21d3f531f114ea77e087a7e5f75 | refs/heads/master | 2021-01-18T21:49:53.680847 | 2016-06-04T03:09:08 | 2016-06-04T03:09:08 | 54,225,752 | 0 | 3 | null | 2016-06-15T04:00:25 | 2016-03-18T19:14:42 | Java | UTF-8 | Java | false | false | 703 | java | package com.hardteam.rg.soundcheckstudio.ui.fragments;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.hardteam.rg.soundcheckstudio.R;
/**
* Created by rg on 3/22/16.
*/
public class ContactsFragment extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View contactsView = inflater.inflate(R.layout.contacts_fragment, container, false);
getActivity().setTitle("Контакты");
return contactsView;
}
}
| [
"[email protected]"
] | |
7f3d1a24d1d5d92b1d8981605b56d01e8f5a9972 | c2a7a6cf72ca638d2f6adf2386c214f681ec1187 | /src/main/java/com/jisucloud/clawler/regagent/service/impl/photo/HuaBanWangSpider.java | 93b0d103028eace6d59732962070943b63b4a866 | [] | no_license | caijlm/regchecker | 71b561656fac56d3e6a9885253256908dac817ab | 27dac3654683acaf21d08c7489d84796e216cfda | refs/heads/master | 2022-04-26T06:28:20.027932 | 2020-04-28T13:09:31 | 2020-04-28T13:09:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,587 | java | package com.jisucloud.clawler.regagent.service.impl.photo;
import com.jisucloud.clawler.regagent.interfaces.PapaSpider;
import com.jisucloud.clawler.regagent.interfaces.PapaSpiderConfig;
import lombok.extern.slf4j.Slf4j;
import okhttp3.Request;
import okhttp3.Response;
import java.util.Map;
@Slf4j
@PapaSpiderConfig(
home = "huaban.com",
message = "花瓣网, 设计师寻找灵感的天堂!图片素材领导者,帮你采集,发现网络上你喜欢的事物.你可以用它收集灵感,保存有用的素材,计划旅行,晒晒自己想要的东西。",
platform = "huaban",
platformName = "花瓣网",
tags = { "原创" , "设计", "素材" },
testTelephones = { "13991808887", "15120058878" })
public class HuaBanWangSpider extends PapaSpider {
public boolean checkTelephone(String account) {
try {
String url = "https://huaban.com/auth/";
Request request = new Request.Builder().url(url)
.addHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0")
.addHeader("Referer", "https://huaban.com/")
.post(createUrlEncodedForm("email="+account+"&password=dasdas231123&_ref=frame"))
.build();
Response response = okHttpClient.newCall(request).execute();
String res = response.body().string();
if (res.contains("用户密码错误")) {
return true;
}
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
@Override
public boolean checkEmail(String account) {
return false;
}
@Override
public Map<String, String> getFields() {
return null;
}
}
| [
"[email protected]"
] | |
05f64b35842eadf4511ab57487a82df68dfb8091 | ed166738e5dec46078b90f7cca13a3c19a1fd04b | /minor/guice-OOM-error-reproduction/src/main/java/gen/Q_Gen189.java | b9ce6837476780dafe18a47db0f0cfa0afe5fe05 | [] | no_license | michalradziwon/script | 39efc1db45237b95288fe580357e81d6f9f84107 | 1fd5f191621d9da3daccb147d247d1323fb92429 | refs/heads/master | 2021-01-21T21:47:16.432732 | 2016-03-23T02:41:50 | 2016-03-23T02:41:50 | 22,663,317 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 331 | java |
package gen;
public class Q_Gen189 {
@com.google.inject.Inject
public Q_Gen189(Q_Gen190 q_gen190){
System.out.println(this.getClass().getCanonicalName() + " created. " + q_gen190 );
}
@com.google.inject.Inject public void injectInterfaceWithoutImpl(gen.InterfaceWithoutImpl i){} // should expolode :)
}
| [
"[email protected]"
] | |
3dbd1cbb77df020a31b00abf39ec85de5e98b048 | 97eea138515d7734ec38cfdc6ef3e5d9b7cb1c9d | /src/com/jsp/utils/MakeFileName.java | 2cbd2965e9a4b554939de6edbb86185ee39231c5 | [] | no_license | hyunChulKang/JSP_MyProject | 463964ebd0919efb887580dacff6c813600c8f2d | 9eace0d38aae0ac48e38c66e19fdf404a4a8e5f6 | refs/heads/master | 2021-05-25T08:48:41.379455 | 2020-04-25T09:05:00 | 2020-04-25T09:05:00 | 253,747,907 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 257 | java | package com.jsp.utils;
import java.util.UUID;
public class MakeFileName {
public static String toUUIDFileName(String fileName, String delimiter) {
String uuid = UUID.randomUUID().toString().replace("-", "");
return uuid +delimiter + fileName;
}
}
| [
"[email protected]"
] | |
afef3c99dd9d4a4442a865ca4b0ba093de3c3420 | 9cc25d7440187d3833819ee07d1e436d9a9a89bc | /src/main/java/life/lxd/community/mapper/UserMapper.java | 6ffd663dc2993fd1e25ffa051b0f9b939e5b4722 | [
"Apache-2.0"
] | permissive | 1373006963lxd/community | 093e1ff5388bba56e6e07ba9134b940ab7c548ee | accf26414bd118388189c3c0235356db33eb5bc0 | refs/heads/master | 2022-07-02T04:33:14.210765 | 2020-01-05T13:16:58 | 2020-01-05T13:16:58 | 225,770,564 | 3 | 0 | Apache-2.0 | 2022-06-21T02:22:51 | 2019-12-04T03:26:12 | Java | UTF-8 | Java | false | false | 3,185 | java | package life.lxd.community.mapper;
import java.util.List;
import life.lxd.community.model.User;
import life.lxd.community.model.UserExample;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface UserMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
long countByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int deleteByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int insert(User record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int insertSelective(User record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
List<User> selectByExampleWithRowbounds(UserExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
List<User> selectByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
User selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int updateByExampleSelective(@Param("record") User record, @Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int updateByExample(@Param("record") User record, @Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int updateByPrimaryKeySelective(User record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user
*
* @mbg.generated Thu Dec 26 16:00:38 CST 2019
*/
int updateByPrimaryKey(User record);
} | [
"[email protected]"
] | |
f23df82110440f8d8d2806b37e22bc143996441c | a4c0b1e6d8194e5f785f08ed26d0fae31465dfe7 | /branches/1.6/java/src/hu/pagavcs/client/operation/Revert.java | c286d9c7bf913ebdcb1f3aa8a7be1e5c64cadc08 | [] | no_license | polluks/pagavcs | 611acbb5b86180138fbb32b955937fae7b8a0740 | 1baac855f723df8d71605a78915d36b68c1fe8b8 | refs/heads/master | 2020-09-15T09:05:47.964072 | 2015-03-25T21:16:23 | 2015-03-25T21:16:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,007 | java | package hu.pagavcs.client.operation;
import hu.pagavcs.client.bl.Manager;
import hu.pagavcs.client.gui.RevertGui;
import java.io.File;
import java.util.prefs.BackingStoreException;
import org.tmatesoft.svn.core.SVNDepth;
import org.tmatesoft.svn.core.wc.SVNClientManager;
import org.tmatesoft.svn.core.wc.SVNWCClient;
/**
* PagaVCS is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.<br>
* <br>
* PagaVCS is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.<br>
* <br>
* You should have received a copy of the GNU General Public License along with
* PagaVCS; If not, see http://www.gnu.org/licenses/.
*/
public class Revert {
public enum RevertStatus {
INIT, START, REVERTED, FAILED
}
private String path;
private boolean autoClose;
public Revert(String path) throws BackingStoreException {
this.path = path;
}
public void execute() throws Exception {
RevertGui gui = new RevertGui(this);
SVNClientManager mgrSvn = Manager.getSVNClientManagerForWorkingCopyOnly();
try {
gui.setStatus(RevertStatus.INIT);
File wcFile = new File(path);
SVNWCClient wcClient = mgrSvn.getWCClient();
gui.setStatus(RevertStatus.START);
wcClient.doRevert(new File[] { wcFile }, SVNDepth.INFINITY, null);
Manager.invalidate(wcFile);
gui.setStatus(RevertStatus.REVERTED);
if (autoClose) {
gui.close();
}
} catch (Exception ex) {
gui.setStatus(RevertStatus.FAILED);
throw ex;
} finally {
mgrSvn.dispose();
}
}
public String getPath() {
return path;
}
public void setAutoClose(boolean autoClose) {
this.autoClose = autoClose;
}
public boolean isAutoClose() {
return autoClose;
}
}
| [
"[email protected]"
] | |
af5337dba8c9ea93c6bc370afe2a29249afdc559 | 7caecbdf94a6de498a653b4c9dc047e69a6aeb0b | /3. Methods/2. BaaBaaBetter/BaaBaaBetter1.java | ce55a39a9776a703cecfda39195f15205383abea | [] | no_license | devayanmandal/Java_Programming | 7ceba8319517f50c2423a7ae80df1f62a27c2bf8 | b4c3c1bd602125cb5405c95180d94947c8cf4c26 | refs/heads/master | 2020-03-26T23:32:23.300517 | 2018-08-21T11:16:21 | 2018-08-21T11:16:21 | 145,550,026 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 447 | java | import javax.swing.JOptionPane;
public class BaaBaaBetter1 {
public static void main (String[] args) {
refrain ();
JOptionPane.showMessageDialog(null, "BaaBaaBetter1 statement 2");
refrain ();
}
public static void refrain () {
JOptionPane.showMessageDialog(null, "Will this refrain method, created after"
+ " the main method be called correctly?");
}
} | [
"[email protected]"
] | |
dbe96ffcf587e17081aa12635ecfda6d3251a84d | 7327f13b7de1fd200473745ad027c4f05b5b20e5 | /NetBeansProjects/projectManagement/src/projectmanagement/container.java | b00f575c7fa285fba1bafb790255d726b6da9b0b | [] | no_license | PL2Buddies2017/NewTask2 | c59bb5f4d7f3b4664624002eb28aee81193729be | 445bc8202962f5257f36322d5260667699b431dd | refs/heads/master | 2021-08-27T23:07:10.798396 | 2017-12-10T16:56:29 | 2017-12-10T16:56:29 | 113,767,173 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,014 | java | package projectmanagement;
import java.io.Serializable;
import java.util.*;
public class container implements Serializable {
public ArrayList<employee> employees;
public ArrayList<teamLeader> teamLeaders;
public ArrayList<projectManager> projectManagers;
public ArrayList<admin> admins;
public ArrayList<user> users;
public ArrayList<project> projects;
public ArrayList<vacation> vacations;
public ArrayList<penaltie> penalties;
public container()
{
this.users = new ArrayList<>();
this.employees = new ArrayList<>();
this.teamLeaders = new ArrayList<>();
this.projectManagers = new ArrayList<>();
this.admins = new ArrayList<>();
this.projects = new ArrayList<>();
this.vacations = new ArrayList<>();
this.penalties = new ArrayList<>();
user master = new user();
project masterProject = new project();
this.users = master.readFromFile();
this.employees = master.getUsersByRole(this.users, 1);
this.teamLeaders = master.getUsersByRole(this.users, 2);
this.projectManagers = master.getUsersByRole(this.users, 3);
this.admins = master.getUsersByRole(this.users, 4);
this.projects = masterProject.ReadFromFile();
for(employee emp : this.employees)
{
ArrayList<vacation> vacs = new ArrayList<>();
ArrayList<penaltie> penals = new ArrayList<>();
if(emp.getVacationCount() > 0)
{
vacs = emp.getAllVacations();
for(vacation vac : vacs)
{
this.vacations.add(vac);
}//end of for
}//end of if
if(emp.getPenaltieCount() > 0)
{
penals = emp.getAllPenalties();
for(penaltie pen : penals)
{
this.penalties.add(pen);
}
}
}//end of for
}
}
| [
"[email protected]"
] | |
d9152adf72c1722b7cb7c475f3684347322420df | 50eaafa66d1456006f12c4705181d66424f22a97 | /src/main/java/com/mycol/api/controller/AlumnoController.java | 74f2a162879e6f190ec599248d8186c7208baaf9 | [] | no_license | Castletco/mycol-app | 1bbed70c23ad48c33faf729557f32ba732dbece5 | 07e7bff9c5de4cdc0bab23f8ac1ad023ba8dc819 | refs/heads/main | 2023-02-21T20:01:53.294611 | 2021-01-28T18:20:27 | 2021-01-28T18:20:27 | 329,494,029 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,234 | java | package com.mycol.api.controller;
import com.mycol.api.entity.Alumno;
import com.mycol.api.service.IAlumnoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@CrossOrigin(origins = "*", methods = {RequestMethod.GET, RequestMethod.POST, RequestMethod.PUT})
@RequestMapping("/api")
public class AlumnoController {
@Autowired
private IAlumnoService serviceAlumnos;
@GetMapping("/alumnos")
public List<Alumno> buscarTodos() {
return serviceAlumnos.buscarTodos();
}
@GetMapping("/alumnos/search/{id}")
public Alumno buscarPorId (@PathVariable("id") int idAlumno) {
return serviceAlumnos.buscarPorId(idAlumno);
}
@PostMapping("/alumnos")
public Alumno guardar (@RequestBody Alumno alumno) {
return serviceAlumnos.guardar(alumno);
}
@PutMapping("/alumnos")
public Alumno modificar (Alumno alumno) {
return serviceAlumnos.guardar(alumno);
}
@DeleteMapping("/alumnos/{id}")
public String eliminar (@PathVariable("id") int idAlumno) {
serviceAlumnos.eliminar(idAlumno);
return "Registro Alumno Eliminado";
}
}
| [
"[email protected]"
] | |
922cc24b1d18d222cb1544698adf97db32fe38e0 | 4a516da7d0afa8b42602e0176a50127bb65123ae | /wicket-core/src/test/java/org/apache/wicket/protocol/http/RequestUtilsTest.java | 80da4ed95011b1d6b5926792e029728cf04aa3b5 | [
"BSD-3-Clause",
"Apache-1.1",
"Apache-2.0",
"X11",
"CDDL-1.0",
"MIT",
"EPL-1.0"
] | permissive | nileshdevdas/apwicket | cd4b31e3f737330c0a4ef64b90e3f1419816209b | 252a410fd8d628ec69f38dcfb3c8b85fb4aaf05f | refs/heads/master | 2022-12-17T13:09:24.333310 | 2019-10-28T11:13:12 | 2019-10-28T11:13:12 | 218,026,942 | 1 | 0 | Apache-2.0 | 2022-12-04T17:53:51 | 2019-10-28T11:02:11 | Java | UTF-8 | Java | false | false | 5,179 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wicket.protocol.http;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.nio.charset.Charset;
import org.apache.wicket.protocol.http.mock.MockHttpServletRequest;
import org.apache.wicket.request.mapper.parameter.PageParameters;
import org.junit.jupiter.api.Test;
/**
*
* @author Johan
*/
class RequestUtilsTest
{
private static final Charset UTF_8_CHARSET = Charset.forName("UTF-8");
/**
*
*/
@Test
void doubleDotsMiddle()
{
assertEquals("/a/b", RequestUtils.removeDoubleDots("/a/b/../b"));
assertEquals("a/b", RequestUtils.removeDoubleDots("a/b/../b"));
assertEquals("a/b/", RequestUtils.removeDoubleDots("a/b/../b/"));
}
/**
*
*/
@Test
void doubleDotsEnd()
{
assertEquals("/a/b", RequestUtils.removeDoubleDots("/a/b/c/.."));
assertEquals("a/b", RequestUtils.removeDoubleDots("a/b/c/.."));
}
/**
*
*/
@Test
void doubleDotsStart()
{
assertEquals("/../a/b", RequestUtils.removeDoubleDots("/../a/b"));
assertEquals("../a/b", RequestUtils.removeDoubleDots("../a/b"));
}
/**
*
*/
@Test
void emptyDoubleDots()
{
assertEquals("", RequestUtils.removeDoubleDots(""));
}
/**
*
*/
@Test
void oneDoubleDots()
{
assertEquals("..", RequestUtils.removeDoubleDots(".."));
assertEquals("../", RequestUtils.removeDoubleDots("../"));
assertEquals("/..", RequestUtils.removeDoubleDots("/.."));
}
/**
*
*/
@Test
void toAbsolutePath()
{
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/test/test", "../blah/zzz"),
"http://aif.ru/blah/zzz");
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/test", "blah/zzz"),
"http://aif.ru/blah/zzz");
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/test/", "../blah/zzz"),
"http://aif.ru/blah/zzz");
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/blah/test", "zzz"),
"http://aif.ru/blah/zzz");
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/blah/test", "./zzz"),
"http://aif.ru/blah/zzz");
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/blah/test", "./"),
"http://aif.ru/blah/");
assertEquals(RequestUtils.toAbsolutePath("http://aif.ru/", "./"), "http://aif.ru/");
}
/**
* WICKET-4664 - remove leading ? if present
*/
@Test
void removeLeadingQuestionMark_simpleParam()
{
final PageParameters params = new PageParameters();
RequestUtils.decodeParameters("?key=value", params, UTF_8_CHARSET);
assertEquals("value", params.get("key").toString());
}
/**
* WICKET-4664 - remove leading ? if present
*/
@Test
void removeLeadingQuestionMark_simpleParamWithoutValueAndAnotherParam()
{
final PageParameters params = new PageParameters();
RequestUtils.decodeParameters("?123&key=value", params, UTF_8_CHARSET);
assertEquals("", params.get("123").toString());
assertEquals("value", params.get("key").toString());
}
/**
* WICKET-4664 - remove leading ? if present
*/
@Test
void removeLeadingQuestionMark_simpleParamWithoutValue()
{
final PageParameters params = new PageParameters();
RequestUtils.decodeParameters("?123", params, UTF_8_CHARSET);
assertEquals("", params.get("123").toString());
}
/**
*
*/
@Test
void decodeParam_simpleParam_noQuestionMark()
{
final PageParameters params = new PageParameters();
RequestUtils.decodeParameters("key=value", params, UTF_8_CHARSET);
assertEquals("value", params.get("key").toString());
}
/**
*
*/
@Test
void decodeParam_simpleParamWithoutValueAndAnotherParam_NoQuestionMark()
{
final PageParameters params = new PageParameters();
RequestUtils.decodeParameters("123&key=value", params, UTF_8_CHARSET);
assertEquals("", params.get("123").toString());
assertEquals("value", params.get("key").toString());
}
/**
*
*/
@Test
void decodeParam_simpleParamWithoutValue_NoQuestionMark()
{
final PageParameters params = new PageParameters();
RequestUtils.decodeParameters("123", params, UTF_8_CHARSET);
assertEquals("", params.get("123").toString());
}
@Test
void charset() throws Exception
{
MockHttpServletRequest request = new MockHttpServletRequest(null, null, null);
request.setCharacterEncoding("UTF-8");
assertEquals(Charset.forName("UTF-8"), RequestUtils.getCharset(request));
request.setCharacterEncoding("FOO");
assertEquals(Charset.forName("UTF-8"), RequestUtils.getCharset(request));
}
}
| [
"[email protected]"
] | |
f07e067a86d6175bc96fbf02c28fe0ba103c7568 | bd5b3bf02356cd89bd55eaf8125f354ab13c8977 | /mooc-2013-OOProgrammingWithJava-PART2/week7-week7_04.ThingSuitcaseAndContainer/src/Main.java | 2df04ea9ca37f0cdda7658b7827ffb47da91e94a | [] | no_license | Schlenges/oop-java-mooc | d50f1523976eea4d2f4f5de3b032e7fe70f5614b | 7e72b155823f68166805d64ada076524ffa381a5 | refs/heads/master | 2021-08-07T21:53:39.654608 | 2018-09-04T15:59:22 | 2018-09-04T15:59:22 | 134,033,849 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 640 | java |
public class Main {
public static void main(String[] Container) {
Container container = new Container(1000);
addSuitcasesFullOfBricks(container);
System.out.println(container);
}
public static void addSuitcasesFullOfBricks(Container container) {
// adding 100 suitcases with one brick in each
int weight = 0;
for(int i = 0; i < 100; i++){
weight++;
Thing brick = new Thing("brick", weight);
Suitcase suitcase = new Suitcase(100);
suitcase.addThing(brick);
container.addSuitcase(suitcase);
}
}
}
| [
"[email protected]"
] | |
23dc455464180edc19a6815453966c7c0b611c3b | 1cba864808ab58717c3ae7b1d2b49032bcd92641 | /SpringBoot-O2O/o2o/src/main/java/com/JunWang/o2o/dao/UserShopMapDao.java | 529df999f5eaac0a43fef8de02e10ddcc8e70dff | [] | no_license | zhiyouwang/O2O_project | c08b7d381a9447891774ee9a21839d0915395790 | 869605376fda10375a891da51aa0cfcb9d5ae310 | refs/heads/master | 2022-12-23T19:33:51.484537 | 2019-08-11T13:24:10 | 2019-08-11T13:24:10 | 200,505,959 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,318 | java | package com.JunWang.o2o.dao;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.JunWang.o2o.entity.UserShopMap;
public interface UserShopMapDao {
/**
* 根据查询条件分页返回用户店铺积分列表
*
* @param userShopCondition
* @param rowIndex
* @param pageSize
* @return
*/
List<UserShopMap> queryUserShopMapList(@Param("userShopCondition") UserShopMap userShopCondition,
@Param("rowIndex") int rowIndex, @Param("pageSize") int pageSize);
/**
* 配合queryUserShopMapList根据相同的查询条件返回用户店铺积分记录总数
*
* @param userShopCondition
* @return
*/
int queryUserShopMapCount(@Param("userShopCondition") UserShopMap userShopCondition);
/**
* 根据传入的用户Id和shopId查询该用户在某个店铺的积分信息
*
* @param userId
* @param shopId
* @return
*/
UserShopMap queryUserShopMap(@Param("userId") long userId, @Param("shopId") long shopId);
/**
* 添加一条用户店铺的积分记录
*
* @param userShopMap
* @return
*/
int insertUserShopMap(UserShopMap userShopMap);
/**
* 更新用户在某店铺的积分
*
* @param userShopMap
* @return
*/
int updateUserShopMapPoint(UserShopMap userShopMap);
}
| [
"[email protected]"
] | |
623235de1bbd1f0dd8382e05fb67ff4416fccc91 | a6bc0cbacda65c7bdec91523eef7cd5881bbe3ce | /backend/src/main/java/com/anu/bank/model/Account.java | 4c75755564b3ab518f12d046c97802a9171e44c6 | [] | no_license | Ramya1297/Capricorn | 028fcdf12e054cc558a45bdc98d1a9b8a8071e1e | bee60095745d08409e937ecb1abdfdb4375275cb | refs/heads/master | 2020-07-08T02:59:23.594689 | 2019-08-30T05:18:12 | 2019-08-30T05:18:12 | 203,545,871 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,340 | java | package com.anu.bank.model;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
public class Account {
@Id
//@GeneratedValue
private long account_number;
private String account_type;
private int customer_id ;
private float balance;
public Account() {
super();
// TODO Auto-generated constructor stub
}
public long getAccount_number() {
return account_number;
}
public void setAccount_number(long account_number) {
this.account_number = account_number;
}
public String getAccount_type() {
return account_type;
}
public void setAccount_type(String account_type) {
this.account_type = account_type;
}
public int getCustomer_id() {
return customer_id;
}
public void setCustomer_id(int customer_id) {
this.customer_id = customer_id;
}
public float getBalance() {
return balance;
}
public void setBalance(float balance) {
this.balance = balance;
}
public Account(String account_type, int customer_id, float balance) {
super();
this.account_type = account_type;
this.customer_id = customer_id;
this.balance = balance;
}
@Override
public String toString() {
return "Account [account_number=" + account_number + ", account_type=" + account_type + ", customer_id="
+ customer_id + ", balance=" + balance + "]";
}
}
| [
"[email protected]"
] | |
2d62803b6ed6df511ee070165797e7a16e107856 | 872bd0bb5ceec4de90c862a991cb3dff607a617a | /Test/app/src/androidTest/java/com/example/a1216qdf/test/ApplicationTest.java | e83f0a838855bfb2601ddcf0ce8a250a0991f2f4 | [] | no_license | sos418/Help | f863e835ef10552b5b10a8724deaf0b55dd5931b | 624a443f892d854362a810cb041db8eafc285eb8 | refs/heads/master | 2021-01-20T20:35:57.920446 | 2016-08-05T09:28:55 | 2016-08-05T09:28:55 | 65,006,724 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 356 | java | package com.example.a1216qdf.test;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
} | [
"[email protected]"
] | |
0d5514eff158e235ca27f96f97e60f7b35321a52 | 5be7b668a52d217e6ed6b3c9bb9e3f69c4c02b1a | /dcs-server/src/main/java/cn/gnetop/dcs/server/service/logservice/handler/FlushConfigHandler.java | 71aacdaa46fa3bec8c96866e24fcbf30bb3e7091 | [] | no_license | michael1013/dcs | 6a1277277ec877961ff073572cfaf04fae2e92b8 | dce4d0d8736b11de2666c4db09f8dda04540edd0 | refs/heads/master | 2020-03-08T09:09:27.442964 | 2018-04-10T07:34:25 | 2018-04-10T07:34:25 | 128,039,648 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,195 | java | package cn.gnetop.dcs.server.service.logservice.handler;
import cn.gnetop.dcs.server.init.ServerInitManager;
import cn.gnetop.dcs.server.service.logservice.req.FlushConfigReq;
import cn.gnetop.dcs.server.service.logservice.rsp.FlushConfigRsp;
import cn.gnetop.dcs.system.entity.ResultCode;
import cn.gnetop.dcs.system.exception.DcsException;
import cn.gnetop.pde.foundation.StringUtils;
import cn.gnetop.pde.foundation.encryte.DESBaseUtils;
import net.sf.json.JSONObject;
public class FlushConfigHandler {
public FlushConfigRsp flushConfig(FlushConfigReq req) throws DcsException {
String k = req.getK();
String v = req.getV();
String x = req.getX();
if (StringUtils.hasBlank(k, v, x)) {
throw new DcsException(ResultCode.ACCESS_DENY);
}
FlushConfigRsp rsp = new FlushConfigRsp();
try {
if (v.equals(DESBaseUtils.encrypt(k, "gNetopSZ2017"))) {
if ("server".equals(x)) {
ServerInitManager.paramVerifyInit();
} else if ("config".equals(x)) {
ServerInitManager.configInit();
}
} else {
JSONObject j = new JSONObject();
j.put("msg", "v error");
rsp.setData(j);
}
} catch (Exception e) {
e.printStackTrace();
}
return rsp;
}
}
| [
"[email protected]"
] | |
114f8ba72140a53fac1a360bb7ffe32fd0f8a1b9 | 4988a258b6df88221ff901eddc98926ae52feaaf | /engine_java/src/main/java/com/alibabacloud/polar_race/engine/common/utils/PutMessageReentrantLock.java | 34ced1aca356e89569eaa3d7664ab9f8a040f711 | [] | no_license | Qiwc/polardb-race | 6fb73c3e9da65ce17af0e7b4728da985d6e70042 | 7a077d55f59eb284871e55b369cca2fc795efa69 | refs/heads/master | 2020-04-27T21:24:54.289765 | 2019-03-10T04:52:06 | 2019-03-10T04:52:06 | 174,695,169 | 30 | 6 | null | null | null | null | UTF-8 | Java | false | false | 521 | java | package com.alibabacloud.polar_race.engine.common.utils;
import java.util.concurrent.locks.ReentrantLock;
/**
* Created by IntelliJ IDEA.
* User: wenchao.qi
* Date: 2018/10/16
* Time: 上午10:35
*/
public class PutMessageReentrantLock implements PutMessageLock {
private ReentrantLock putMessageNormalLock = new ReentrantLock(); // NonfairSync
public void lock() {
putMessageNormalLock.lock();
}
public void unlock() {
putMessageNormalLock.unlock();
}
}
| [
"[email protected]"
] | |
6423badaade1dc291d8f4e8ef2ffbdb5d6ee6033 | ffbc94dda09388842d3bac270a020f8a2b692ccf | /library/src/main/java/com/dxm/variable/Var.java | 190d045573c3dbdcc59c572a26dbf4a98cc1a19b | [] | no_license | moomoon/variables | 2e266bda92e42039536e7d7cbfebcd55242c75be | 62f619c1322f0a1695ba4817013d805d5f09675b | refs/heads/master | 2021-01-12T07:49:17.824616 | 2017-05-15T01:45:34 | 2017-05-15T01:45:34 | 77,030,213 | 0 | 0 | null | 2016-12-30T06:06:21 | 2016-12-21T07:50:17 | Java | UTF-8 | Java | false | false | 134 | java | package com.dxm.variable;
/**
* Created by phoebe on 21/12/2016.
*/
public interface Var<T> extends Val<T> {
void set(T t);
}
| [
"[email protected]"
] | |
b492ae6463808a8d7c6973b40897c399c293e436 | 2f606013f2b579fb36600522188abb95727b1f33 | /solution/Solution3.java | c75e3edc46eef7e9aecf8210fab671e70d3c05d8 | [] | no_license | jiangxiaosheng/leetcode | c2c473902dc187b62f7d3e8d366bae2860c6c77b | 5be65bfebe4cf03adf97db51fa416de958dbe611 | refs/heads/master | 2023-07-10T15:26:55.455638 | 2021-08-13T12:43:12 | 2021-08-13T12:43:12 | 342,120,405 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 829 | java | import java.util.HashSet;
import java.util.Set;
public class Solution3 {
// sliding window
// "abcabcbb"
public int lengthOfLongestSubstring(String s) {
Set<Character> set = new HashSet<>();
int left = 0, right = 0, maxLength = 0;
while (right < s.length() && left <= right) {
char currChar = s.charAt(right);
if (!set.contains(currChar)) {
right++;
set.add(currChar);
if (right - left > maxLength)
maxLength = right - left;
} else {
while (s.charAt(left) != currChar) {
set.remove(s.charAt(left));
left++;
}
left++;
right++;
}
}
return maxLength;
}
}
| [
"[email protected]"
] | |
60c65e1af005e5b49bce539c60c1cafc1789e6b7 | fe33b8a0d361bfc8a61ff7b4c7e41f4a87d2d4da | /gauge/gen/com/thoughtworks/gauge/lexer/_ConceptLexer.java | d8bdd05b8e7c048cfa1ffa346f223968d50b49fd | [] | no_license | xmool/intellij-plugins | ea5f4d8c2405596c30e8f19a94be18a77f10bc21 | 69acef60aa785a8e9d4b15b14ad348be63d72222 | refs/heads/master | 2022-12-07T00:23:30.642644 | 2020-08-24T20:07:43 | 2020-08-25T14:18:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 20,783 | java | /*
* Copyright (C) 2020 ThoughtWorks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.thoughtworks.gauge.lexer;
import com.intellij.lexer.FlexLexer;
import com.intellij.psi.tree.IElementType;
import static com.thoughtworks.gauge.language.token.ConceptTokenTypes.*;
/**
* This class is a scanner generated by
* <a href="http://www.jflex.de/">JFlex</a> 1.7.0
* from the specification file <tt>_ConceptLexer.flex</tt>
*/
public class _ConceptLexer implements FlexLexer {
/**
* This character denotes the end of file
*/
public static final int YYEOF = -1;
/**
* initial size of the lookahead buffer
*/
private static final int ZZ_BUFFERSIZE = 16384;
/**
* lexical states
*/
public static final int YYINITIAL = 0;
public static final int INSTEP = 2;
public static final int INARG = 4;
public static final int INDYNAMIC = 6;
public static final int INTABLEHEADER = 8;
public static final int INTABLEBODY = 10;
public static final int INTABLEBODYROW = 12;
public static final int INDYNAMICTABLEITEM = 14;
public static final int INCONCEPTHEADING = 16;
public static final int INDYNAMICCONCEPTARG = 18;
public static final int INTABLECELL = 20;
/**
* ZZ_LEXSTATE[l] is the state in the DFA for the lexical state l
* ZZ_LEXSTATE[l+1] is the state in the DFA for the lexical state l
* at the beginning of a line
* l is of the form l = 2*k, k a non negative integer
*/
private static final int ZZ_LEXSTATE[] = {
0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
8, 8, 9, 9, 10, 10
};
/**
* Translates characters to character classes
* Chosen bits are [8, 6, 7]
* Total runtime size is 1040 bytes
*/
public static int ZZ_CMAP(int ch) {
return ZZ_CMAP_A[ZZ_CMAP_Y[ZZ_CMAP_Z[ch >> 13] | ((ch >> 7) & 0x3f)] | (ch & 0x7f)];
}
/* The ZZ_CMAP_Z table has 136 entries */
static final char ZZ_CMAP_Z[] = zzUnpackCMap(
"\1\0\207\100");
/* The ZZ_CMAP_Y table has 128 entries */
static final char ZZ_CMAP_Y[] = zzUnpackCMap(
"\1\0\177\200");
/* The ZZ_CMAP_A table has 256 entries */
static final char ZZ_CMAP_A[] = zzUnpackCMap(
"\11\0\1\4\1\2\1\0\1\4\1\1\22\0\1\4\1\0\1\11\1\3\6\0\1\6\2\0\1\14\16\0\1\10" +
"\1\7\1\13\35\0\1\12\37\0\1\5\203\0");
/**
* Translates DFA states to action switch labels.
*/
private static final int[] ZZ_ACTION = zzUnpackAction();
private static final String ZZ_ACTION_PACKED_0 =
"\1\0\1\1\1\2\1\3\1\4\1\0\1\5\1\0" +
"\1\6\1\3\1\7\3\10\1\11\1\10\1\12\1\13" +
"\1\1\2\14\1\15\1\16\1\2\1\17\1\2\2\3" +
"\1\20\1\4\2\21\1\22\1\4\1\23\1\24\1\7" +
"\2\25\1\5\1\26\1\7\1\24\4\27\1\30\1\6" +
"\2\31\1\32\1\33\2\7\3\0\1\10\5\0\2\10" +
"\2\0\2\34";
private static int[] zzUnpackAction() {
int[] result = new int[70];
int offset = 0;
offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAction(String packed, int offset, int[] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do {
result[j++] = value;
}
while (--count > 0);
}
return j;
}
/**
* Translates a state to a row index in the transition table
*/
private static final int[] ZZ_ROWMAP = zzUnpackRowMap();
private static final String ZZ_ROWMAP_PACKED_0 =
"\0\0\0\15\0\32\0\47\0\64\0\101\0\116\0\133" +
"\0\150\0\165\0\202\0\217\0\234\0\251\0\266\0\303" +
"\0\266\0\266\0\320\0\335\0\266\0\266\0\266\0\352" +
"\0\266\0\367\0\u0104\0\u0111\0\266\0\u011e\0\u012b\0\u0138" +
"\0\266\0\u0145\0\266\0\266\0\266\0\u0152\0\u015f\0\u016c" +
"\0\266\0\u0179\0\u0186\0\266\0\u012b\0\u0138\0\u0193\0\266" +
"\0\u01a0\0\u01ad\0\266\0\266\0\266\0\u01ba\0\u01c7\0\217" +
"\0\u01d4\0\u01e1\0\u01ee\0\u01fb\0\u0208\0\251\0\303\0\u0215" +
"\0\u0222\0\266\0\u022f\0\u023c\0\u0249\0\266";
private static int[] zzUnpackRowMap() {
int[] result = new int[70];
int offset = 0;
offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
return result;
}
private static int zzUnpackRowMap(String packed, int offset, int[] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int high = packed.charAt(i++) << 16;
result[j++] = high | packed.charAt(i++);
}
return j;
}
/**
* The transition table of the DFA
*/
private static final int[] ZZ_TRANS = zzUnpackTrans();
private static final String ZZ_TRANS_PACKED_0 =
"\1\14\1\15\1\16\1\17\1\20\1\21\1\22\6\14" +
"\1\23\1\24\1\25\5\23\1\26\1\27\3\23\11\30" +
"\1\31\1\32\2\30\12\33\1\34\1\35\1\33\1\36" +
"\1\37\1\40\2\36\1\41\4\36\1\42\2\36\5\43" +
"\1\44\7\43\1\45\1\46\1\47\1\45\1\50\1\44" +
"\2\45\1\51\1\45\1\52\1\45\1\53\1\54\1\55" +
"\1\56\7\54\1\57\1\60\1\54\1\61\1\62\1\63" +
"\5\61\1\64\4\61\12\33\1\34\1\65\1\33\1\66" +
"\1\46\1\47\2\66\1\44\4\66\1\67\2\66\1\70" +
"\1\71\1\72\1\73\1\74\2\73\6\70\1\75\1\0" +
"\1\76\1\0\1\76\2\0\7\75\3\0\1\76\2\0" +
"\6\75\15\0\1\70\1\71\1\72\1\0\1\77\2\0" +
"\6\70\1\23\2\0\5\23\2\0\3\23\2\0\1\25" +
"\12\0\11\30\1\0\1\32\14\30\1\32\2\30\12\33" +
"\1\34\1\0\13\33\1\34\2\33\1\36\2\0\2\36" +
"\1\0\4\36\1\42\2\36\2\0\1\40\1\0\1\40" +
"\14\0\1\40\10\0\1\36\2\0\7\36\1\42\2\36" +
"\2\0\1\47\1\0\1\47\14\0\1\47\14\0\1\50" +
"\15\0\1\45\23\0\1\53\10\0\1\54\2\0\1\54" +
"\1\0\1\61\2\0\5\61\1\0\4\61\2\0\1\63" +
"\12\0\1\66\2\0\2\66\1\0\4\66\1\67\3\66" +
"\2\0\7\66\1\67\2\66\2\0\1\72\4\0\1\100" +
"\14\0\1\100\5\0\1\73\1\101\1\102\12\73\1\103" +
"\1\71\1\72\1\73\1\74\2\73\6\103\1\75\2\0" +
"\1\73\1\104\2\73\6\75\1\0\1\105\1\106\4\0" +
"\1\100\7\0\1\102\12\0\1\103\1\71\1\72\1\0" +
"\1\103\2\0\6\103\3\0\1\73\1\104\2\73\10\0" +
"\1\106\12\0";
private static int[] zzUnpackTrans() {
int[] result = new int[598];
int offset = 0;
offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
return result;
}
private static int zzUnpackTrans(String packed, int offset, int[] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
value--;
do {
result[j++] = value;
}
while (--count > 0);
}
return j;
}
/* error codes */
private static final int ZZ_UNKNOWN_ERROR = 0;
private static final int ZZ_NO_MATCH = 1;
private static final int ZZ_PUSHBACK_2BIG = 2;
/* error messages for the codes above */
private static final String[] ZZ_ERROR_MSG = {
"Unknown internal scanner error",
"Error: could not match input",
"Error: pushback value was too large"
};
/**
* ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
*/
private static final int[] ZZ_ATTRIBUTE = zzUnpackAttribute();
private static final String ZZ_ATTRIBUTE_PACKED_0 =
"\1\0\4\1\1\0\1\1\1\0\6\1\1\11\1\1" +
"\2\11\2\1\3\11\1\1\1\11\3\1\1\11\3\1" +
"\1\11\1\1\3\11\3\1\1\11\2\1\1\11\3\1" +
"\1\11\2\1\3\11\2\1\3\0\1\1\5\0\1\1" +
"\1\11\2\0\1\1\1\11";
private static int[] zzUnpackAttribute() {
int[] result = new int[70];
int offset = 0;
offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAttribute(String packed, int offset, int[] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do {
result[j++] = value;
}
while (--count > 0);
}
return j;
}
/**
* the input device
*/
private java.io.Reader zzReader;
/**
* the current state of the DFA
*/
private int zzState;
/**
* the current lexical state
*/
private int zzLexicalState = YYINITIAL;
/**
* this buffer contains the current text to be matched and is
* the source of the yytext() string
*/
private CharSequence zzBuffer = "";
/**
* the textposition at the last accepting state
*/
private int zzMarkedPos;
/**
* the current text position in the buffer
*/
private int zzCurrentPos;
/**
* startRead marks the beginning of the yytext() string in the buffer
*/
private int zzStartRead;
/**
* endRead marks the last character in the buffer, that has been read
* from input
*/
private int zzEndRead;
/**
* zzAtBOL == true <=> the scanner is currently at the beginning of a line
*/
private boolean zzAtBOL = true;
/**
* zzAtEOF == true <=> the scanner is at the EOF
*/
private boolean zzAtEOF;
/**
* denotes if the user-EOF-code has already been executed
*/
private boolean zzEOFDone;
/* user code: */
public _ConceptLexer() {
this((java.io.Reader)null);
}
/**
* Creates a new scanner
*
* @param in the java.io.Reader to read input from.
*/
public _ConceptLexer(java.io.Reader in) {
this.zzReader = in;
}
/**
* Unpacks the compressed character translation table.
*
* @param packed the packed character translation table
* @return the unpacked character translation table
*/
private static char[] zzUnpackCMap(String packed) {
int size = 0;
for (int i = 0, length = packed.length(); i < length; i += 2) {
size += packed.charAt(i);
}
char[] map = new char[size];
int i = 0; /* index in packed string */
int j = 0; /* index in unpacked array */
while (i < packed.length()) {
int count = packed.charAt(i++);
char value = packed.charAt(i++);
do {
map[j++] = value;
}
while (--count > 0);
}
return map;
}
public final int getTokenStart() {
return zzStartRead;
}
public final int getTokenEnd() {
return getTokenStart() + yylength();
}
public void reset(CharSequence buffer, int start, int end, int initialState) {
zzBuffer = buffer;
zzCurrentPos = zzMarkedPos = zzStartRead = start;
zzAtEOF = false;
zzAtBOL = true;
zzEndRead = end;
yybegin(initialState);
}
/**
* Refills the input buffer.
*
* @return <code>false</code>, iff there was new input.
* @throws java.io.IOException if any I/O-Error occurs
*/
private boolean zzRefill() throws java.io.IOException {
return true;
}
/**
* Returns the current lexical state.
*/
public final int yystate() {
return zzLexicalState;
}
/**
* Enters a new lexical state
*
* @param newState the new lexical state
*/
public final void yybegin(int newState) {
zzLexicalState = newState;
}
/**
* Returns the text matched by the current regular expression.
*/
public final CharSequence yytext() {
return zzBuffer.subSequence(zzStartRead, zzMarkedPos);
}
/**
* Returns the character at position <tt>pos</tt> from the
* matched text.
* <p>
* It is equivalent to yytext().charAt(pos), but faster
*
* @param pos the position of the character to fetch.
* A value from 0 to yylength()-1.
* @return the character at position pos
*/
public final char yycharat(int pos) {
return zzBuffer.charAt(zzStartRead + pos);
}
/**
* Returns the length of the matched text region.
*/
public final int yylength() {
return zzMarkedPos - zzStartRead;
}
/**
* Reports an error that occured while scanning.
* <p>
* In a wellformed scanner (no or only correct usage of
* yypushback(int) and a match-all fallback rule) this method
* will only be called with things that "Can't Possibly Happen".
* If this method is called, something is seriously wrong
* (e.g. a JFlex bug producing a faulty scanner etc.).
* <p>
* Usual syntax/scanner level error handling should be done
* in error fallback rules.
*
* @param errorCode the code of the errormessage to display
*/
private void zzScanError(int errorCode) {
String message;
try {
message = ZZ_ERROR_MSG[errorCode];
}
catch (ArrayIndexOutOfBoundsException e) {
message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
}
throw new Error(message);
}
/**
* Pushes the specified amount of characters back into the input stream.
* <p>
* They will be read again by then next call of the scanning method
*
* @param number the number of characters to be read again.
* This number must not be greater than yylength()!
*/
public void yypushback(int number) {
if (number > yylength()) {
zzScanError(ZZ_PUSHBACK_2BIG);
}
zzMarkedPos -= number;
}
/**
* Resumes scanning until the next regular expression is matched,
* the end of input is encountered or an I/O-Error occurs.
*
* @return the next token
* @throws java.io.IOException if any I/O-Error occurs
*/
public IElementType advance() throws java.io.IOException {
int zzInput;
int zzAction;
// cached fields:
int zzCurrentPosL;
int zzMarkedPosL;
int zzEndReadL = zzEndRead;
CharSequence zzBufferL = zzBuffer;
int[] zzTransL = ZZ_TRANS;
int[] zzRowMapL = ZZ_ROWMAP;
int[] zzAttrL = ZZ_ATTRIBUTE;
while (true) {
zzMarkedPosL = zzMarkedPos;
zzAction = -1;
zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
zzState = ZZ_LEXSTATE[zzLexicalState];
// set up zzAction for empty match case:
int zzAttributes = zzAttrL[zzState];
if ((zzAttributes & 1) == 1) {
zzAction = zzState;
}
zzForAction:
{
while (true) {
if (zzCurrentPosL < zzEndReadL) {
zzInput = Character.codePointAt(zzBufferL, zzCurrentPosL/*, zzEndReadL*/);
zzCurrentPosL += Character.charCount(zzInput);
}
else if (zzAtEOF) {
zzInput = YYEOF;
break zzForAction;
}
else {
// store back cached positions
zzCurrentPos = zzCurrentPosL;
zzMarkedPos = zzMarkedPosL;
boolean eof = zzRefill();
// get translated positions and possibly new buffer
zzCurrentPosL = zzCurrentPos;
zzMarkedPosL = zzMarkedPos;
zzBufferL = zzBuffer;
zzEndReadL = zzEndRead;
if (eof) {
zzInput = YYEOF;
break zzForAction;
}
else {
zzInput = Character.codePointAt(zzBufferL, zzCurrentPosL/*, zzEndReadL*/);
zzCurrentPosL += Character.charCount(zzInput);
}
}
int zzNext = zzTransL[zzRowMapL[zzState] + ZZ_CMAP(zzInput)];
if (zzNext == -1) break zzForAction;
zzState = zzNext;
zzAttributes = zzAttrL[zzState];
if ((zzAttributes & 1) == 1) {
zzAction = zzState;
zzMarkedPosL = zzCurrentPosL;
if ((zzAttributes & 8) == 8) break zzForAction;
}
}
}
// store back cached position
zzMarkedPos = zzMarkedPosL;
if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
zzAtEOF = true;
return null;
}
else {
switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
case 1: {
yybegin(INSTEP);
return STEP;
}
// fall through
case 29:
break;
case 2: {
return ARG;
}
// fall through
case 30:
break;
case 3: {
return DYNAMIC_ARG;
}
// fall through
case 31:
break;
case 4: {
yybegin(INTABLEHEADER);
return TABLE_HEADER;
}
// fall through
case 32:
break;
case 5: {
yybegin(INTABLEBODYROW);
return WHITESPACE;
}
// fall through
case 33:
break;
case 6: {
yybegin(INCONCEPTHEADING);
return CONCEPT_HEADING;
}
// fall through
case 34:
break;
case 7: {
yybegin(INTABLECELL);
return TABLE_ROW_VALUE;
}
// fall through
case 35:
break;
case 8: {
return COMMENT;
}
// fall through
case 36:
break;
case 9: {
yybegin(INCONCEPTHEADING);
return CONCEPT_HEADING_IDENTIFIER;
}
// fall through
case 37:
break;
case 10: {
yybegin(INTABLEHEADER);
return TABLE_BORDER;
}
// fall through
case 38:
break;
case 11: {
yybegin(INSTEP);
return STEP_IDENTIFIER;
}
// fall through
case 39:
break;
case 12: {
yybegin(YYINITIAL);
return STEP;
}
// fall through
case 40:
break;
case 13: {
yybegin(INDYNAMIC);
return DYNAMIC_ARG_START;
}
// fall through
case 41:
break;
case 14: {
yybegin(INARG);
return ARG_START;
}
// fall through
case 42:
break;
case 15: {
yybegin(INSTEP);
return ARG_END;
}
// fall through
case 43:
break;
case 16: {
yybegin(INSTEP);
return DYNAMIC_ARG_END;
}
// fall through
case 44:
break;
case 17: {
yybegin(INTABLEBODY);
return NEW_LINE;
}
// fall through
case 45:
break;
case 18: {
yybegin(INTABLEHEADER);
return TABLE_BORDER;
}
// fall through
case 46:
break;
case 19: {
yypushback(1);
yybegin(YYINITIAL);
}
// fall through
case 47:
break;
case 20: {
yybegin(INTABLEBODYROW);
return TABLE_BORDER;
}
// fall through
case 48:
break;
case 21: {
yybegin(INTABLEBODY);
return NEW_LINE;
}
// fall through
case 49:
break;
case 22: {
yybegin(INDYNAMICTABLEITEM);
return DYNAMIC_ARG_START;
}
// fall through
case 50:
break;
case 23: {
yybegin(INDYNAMICTABLEITEM);
return DYNAMIC_ARG;
}
// fall through
case 51:
break;
case 24: {
yybegin(INTABLEBODYROW);
return DYNAMIC_ARG_END;
}
// fall through
case 52:
break;
case 25: {
yybegin(YYINITIAL);
return NEW_LINE;
}
// fall through
case 53:
break;
case 26: {
yybegin(INDYNAMICCONCEPTARG);
return DYNAMIC_ARG_START;
}
// fall through
case 54:
break;
case 27: {
yybegin(INCONCEPTHEADING);
return DYNAMIC_ARG_END;
}
// fall through
case 55:
break;
case 28: {
yybegin(YYINITIAL);
return CONCEPT_HEADING;
}
// fall through
case 56:
break;
default:
zzScanError(ZZ_NO_MATCH);
}
}
}
}
}
| [
"[email protected]"
] | |
4cc79c5e1fe5c7e0bec2feb1c02f2697ab5d9d45 | 68cab239fc647184d8bd53651bb02303fcf3f26c | /ui/org.omnetpp.common/src/org/omnetpp/eventlog/EventLogTableFacade.java | b78b31871959d57305a059355eb5c7b8c7b08b21 | [] | no_license | omnetpp/omnetpp | 0c91b230bf937701de95f42f2383318ed39add07 | e42d35366ec3e354a528b17d0fe15ef1f0ac7b55 | refs/heads/master | 2023-08-19T22:10:18.311271 | 2023-08-18T09:18:23 | 2023-08-18T13:18:11 | 160,219,599 | 507 | 160 | null | 2023-09-05T18:48:09 | 2018-12-03T16:18:31 | C | UTF-8 | Java | false | false | 14,253 | java | package org.omnetpp.eventlog;
import org.eclipse.core.runtime.Assert;
import org.omnetpp.common.engine.JavaMatchableObject;
import org.omnetpp.common.engine.MatchExpression;
import org.omnetpp.eventlog.engine.FileReader;
import org.omnetpp.eventlog.entry.BeginSendEntry;
import org.omnetpp.eventlog.entry.EventEntry;
public class EventLogTableFacade extends EventLogFacade
{
protected long approximateNumberOfEntries = -1; // cached value, -1 means not yet calculated
protected long lastMatchedEventNumber = -1; // -1 means unused
protected int lastNumMatchingEventLogEntries; // -1 means unused
protected EventLogTableFilterMode filterMode; // can be set with the public API
protected String customFilter; // can be set with the public API
protected MatchExpression filterMatchExpression = new MatchExpression(); // cached expression
protected JavaMatchableObject javaMatchableObject = new JavaMatchableObject();
protected static final class RefObject<T> {
public T argValue;
public RefObject(T refArg) {
argValue = refArg;
}
}
public EventLogTableFacade(IEventLog eventLog) {
super(eventLog);
clearInternalState();
setCustomFilter("*");
setFilterMode(EventLogTableFilterMode.ALL_ENTRIES);
}
@Override
public void synchronize(int change) {
if (change != FileReader.FileChange.UNCHANGED) {
switch (change) {
case FileReader.FileChange.OVERWRITTEN:
case FileReader.FileChange.APPENDED:
super.synchronize(change);
clearInternalState();
break;
default:
throw new RuntimeException("Unknown file change");
}
}
}
public final EventLogTableFilterMode getFilterMode() {
return filterMode;
}
public final void setFilterMode(EventLogTableFilterMode filterMode) {
this.filterMode = filterMode;
clearInternalState();
}
public final boolean matchesFilter(EventLogEntry eventLogEntry) {
switch (filterMode) {
case ALL_ENTRIES:
return true;
case EVENT_AND_SEND_AND_MESSAGE_ENTRIES:
return eventLogEntry instanceof EventEntry || eventLogEntry instanceof BeginSendEntry || eventLogEntry instanceof EventLogMessageEntry;
case EVENT_AND_MESSAGE_ENTRIES:
return eventLogEntry instanceof EventEntry || eventLogEntry instanceof EventLogMessageEntry;
case EVENT_ENTRIES:
return eventLogEntry instanceof EventEntry;
case CUSTOM_ENTRIES: {
javaMatchableObject.setJavaObject(eventLogEntry);
return filterMatchExpression.matches(javaMatchableObject);
}
default:
throw new RuntimeException("Unknown eventlog table filter");
}
}
public final int getNumMatchingEventLogEntries(IEvent event) {
if (lastMatchedEventNumber == event.getEventNumber())
return lastNumMatchingEventLogEntries;
else {
lastMatchedEventNumber = event.getEventNumber();
switch (filterMode) {
case ALL_ENTRIES:
lastNumMatchingEventLogEntries = event.getNumEventLogEntries();
break;
case EVENT_AND_SEND_AND_MESSAGE_ENTRIES:
lastNumMatchingEventLogEntries = event.getNumBeginSendEntries() + event.getNumEventLogMessages() + 1;
break;
case EVENT_AND_MESSAGE_ENTRIES:
lastNumMatchingEventLogEntries = event.getNumEventLogMessages() + 1;
break;
case EVENT_ENTRIES:
lastNumMatchingEventLogEntries = 1;
break;
case CUSTOM_ENTRIES: {
int count = 0;
int num = event.getNumEventLogEntries();
for (int i = 0; i < num; i++) {
if (matchesFilter(event.getEventLogEntry(i)))
count++;
}
lastNumMatchingEventLogEntries = count;
break;
}
default:
throw new RuntimeException("Unknown eventlog table filter");
}
return lastNumMatchingEventLogEntries;
}
}
public final void setCustomFilter(String pattern) {
customFilter = pattern;
filterMatchExpression.setPattern("E or (" + customFilter + ")", false, true, false);
clearInternalState();
}
public final String getCustomFilter() {
return customFilter;
}
public EventLogEntry getEventLogEntry(long eventNumber, int eventLogEntryIndex) {
IEvent event = eventLog.getEventForEventNumber(eventNumber);
Assert.isTrue(event != null);
return event.getEventLogEntry(eventLogEntryIndex);
}
public final EventLogEntry getFirstEntry() {
IEvent event = eventLog.getFirstEvent();
if (event == null)
return null;
else
return getEntryInEvent(event, 0);
}
public final EventLogEntry getLastEntry() {
IEvent event = eventLog.getLastEvent();
if (event == null)
return null;
else
return getEntryInEvent(event, getNumMatchingEventLogEntries(event) - 1);
}
public final int getEntryIndexInEvent(EventLogEntry eventLogEntry) {
IEvent event = eventLogEntry.getEvent();
int index = 0;
int num = event.getNumEventLogEntries();
for (int i = 0; i < num; i++) {
EventLogEntry currentEventLogEntry = event.getEventLogEntry(i);
if (matchesFilter(currentEventLogEntry)) {
if (currentEventLogEntry == eventLogEntry)
return index;
else
index++;
}
}
throw new RuntimeException("No eventlog entry found in event: " + event.getEventNumber());
}
public final EventLogEntry getEntryInEvent(IEvent event, int index) {
Assert.isTrue(index >= 0 && index < getNumMatchingEventLogEntries(event));
if (filterMode == EventLogTableFilterMode.ALL_ENTRIES)
return event.getEventLogEntry(index);
else {
int num = event.getNumEventLogEntries();
for (int i = 0; i < num; i++) {
EventLogEntry eventLogEntry = event.getEventLogEntry(i);
if (matchesFilter(eventLogEntry)) {
if (index == 0)
return eventLogEntry;
else
index--;
}
}
}
throw new RuntimeException("No eventlog entry with index: " + index + " in event: " + event.getEventNumber());
}
public long getDistanceToEntry(EventLogEntry sourceEventLogEntry, EventLogEntry targetEventLogEntry, long limit) {
var reachedDistance = new RefObject<Long>(null);
getEntryAndDistance(sourceEventLogEntry, targetEventLogEntry, limit, reachedDistance);
return reachedDistance.argValue;
}
public final EventLogEntry getClosestEntryInEvent(EventLogEntry eventLogEntry) {
Assert.isTrue(eventLogEntry != null);
IEvent event = eventLogEntry.getEvent();
for (int i = eventLogEntry.getEntryIndex(); i >= 0; i--) {
eventLogEntry = event.getEventLogEntry(i);
if (matchesFilter(eventLogEntry))
return eventLogEntry;
}
throw new RuntimeException("EventEntry should always match the filter");
}
public long getDistanceToFirstEntry(EventLogEntry eventLogEntry, long limit) {
var reachedDistance = new RefObject<Long>(null);
getEntryAndDistance(eventLogEntry, getFirstEntry(), -limit, reachedDistance);
return -reachedDistance.argValue;
}
public long getDistanceToLastEntry(EventLogEntry eventLogEntry, long limit) {
var reachedDistance = new RefObject<Long>(null);
getEntryAndDistance(eventLogEntry, getLastEntry(), limit, reachedDistance);
return reachedDistance.argValue;
}
public EventLogEntry getNeighbourEntry(EventLogEntry eventLogEntry, long distance) {
var reachedDistance = new RefObject<Long>(null);
return getEntryAndDistance(eventLogEntry, null, distance, reachedDistance);
}
public final double getApproximatePercentageForEntry(EventLogEntry eventLogEntry) {
IEvent beforeEvent = eventLogEntry.getEvent();
IEvent afterEvent = beforeEvent.getNextEvent();
double beforePercentage = eventLog.getApproximatePercentageForEventNumber(beforeEvent.getEventNumber());
double afterPercentage = afterEvent != null ? eventLog.getApproximatePercentageForEventNumber(afterEvent.getEventNumber()) : 1.0;
int index = getEntryIndexInEvent(eventLogEntry);
return beforePercentage + (afterPercentage - beforePercentage) * index / getNumMatchingEventLogEntries(beforeEvent);
}
public final EventLogEntry getApproximateEventLogEntryAt(double percentage) {
Assert.isTrue(0.0 <= percentage && percentage <= 1.0);
if (percentage == 1) {
IEvent event = eventLog.getLastEvent();
if (event == null)
return null;
else
return getEntryInEvent(event, getNumMatchingEventLogEntries(event) - 1);
}
else {
IEvent beforeEvent = eventLog.getApproximateEventAt(percentage);
if (beforeEvent == null)
return null;
else {
double beforePercentage = eventLog.getApproximatePercentageForEventNumber(beforeEvent.getEventNumber());
double afterPercentage = 1;
IEvent afterEvent = beforeEvent.getNextEvent();
if (afterEvent != null)
afterPercentage = eventLog.getApproximatePercentageForEventNumber(afterEvent.getEventNumber());
if (percentage < beforePercentage || percentage > afterPercentage)
return beforeEvent.getEventEntry();
else {
double entryPercentage = (percentage - beforePercentage) / (afterPercentage - beforePercentage);
Assert.isTrue(0.0 <= entryPercentage && entryPercentage <= 1.0);
int index = (int)Math.floor((getNumMatchingEventLogEntries(beforeEvent) - 1) * entryPercentage);
return getEntryInEvent(beforeEvent, index);
}
}
}
}
public final long getApproximateNumberOfEntries() {
if (approximateNumberOfEntries == -1) {
IEvent firstEvent = eventLog.getFirstEvent();
IEvent lastEvent = eventLog.getLastEvent();
if (firstEvent == null)
approximateNumberOfEntries = 0;
else {
int sum = 0;
int count = 0;
int eventCount = 100;
for (int i = 0; i < eventCount; i++) {
if (firstEvent != null) {
sum += getNumMatchingEventLogEntries(firstEvent);
count++;
firstEvent = firstEvent.getNextEvent();
}
if (lastEvent != null) {
sum += getNumMatchingEventLogEntries(lastEvent);
count++;
lastEvent = lastEvent.getPreviousEvent();
}
}
double average = (double)sum / count;
approximateNumberOfEntries = (int)(eventLog.getApproximateNumberOfEvents() * average);
}
}
return approximateNumberOfEntries;
}
protected final EventLogEntry getPreviousEntry(EventLogEntry eventLogEntry, RefObject<Integer> index) {
IEvent event = eventLog.getEventForEventNumber(eventLogEntry.getEvent().getEventNumber());
index.argValue--;
if (index.argValue == -1) {
event = event.getPreviousEvent();
if (event != null)
index.argValue = getNumMatchingEventLogEntries(event) - 1;
}
if (event == null)
return null;
else
return getEntryInEvent(event, index.argValue);
}
protected final EventLogEntry getNextEntry(EventLogEntry eventLogEntry, RefObject<Integer> index) {
IEvent event = eventLog.getEventForEventNumber(eventLogEntry.getEvent().getEventNumber());
index.argValue++;
if (index.argValue == getNumMatchingEventLogEntries(event)) {
event = event.getNextEvent();
index.argValue = 0;
}
if (event == null)
return null;
else
return getEntryInEvent(event, index.argValue);
}
public EventLogEntry getEntryAndDistance(EventLogEntry sourceEventLogEntry, EventLogEntry targetEventLogEntry, long distance, RefObject<Long> reachedDistance) {
Assert.isTrue(sourceEventLogEntry != null);
EventLogEntry eventLogEntry = sourceEventLogEntry;
reachedDistance.argValue = (long)0;
var index = new RefObject<Integer>(getEntryIndexInEvent(eventLogEntry));
Assert.isTrue(index.argValue >= 0);
while (distance != 0 && eventLogEntry != null && eventLogEntry != targetEventLogEntry) {
if (distance > 0) {
eventLogEntry = getNextEntry(eventLogEntry, index);
distance--;
reachedDistance.argValue++;
}
else {
eventLogEntry = getPreviousEntry(eventLogEntry, index);
distance++;
reachedDistance.argValue--;
}
}
if (eventLogEntry == null)
reachedDistance.argValue += distance;
return eventLogEntry;
}
protected final void clearInternalState() {
approximateNumberOfEntries = -1;
lastMatchedEventNumber = -1;
lastNumMatchingEventLogEntries = -1;
}
}
| [
"[email protected]"
] | |
9aa3815cb4f48d42d0785490c175acffd7d51e59 | fbc1ff274b8e0b7e82326c3d5c511d350e76ad23 | /Test/src/hR_2017/ComparingTimes.java | 078d74c0c36c21801928e37878d055145016338f | [] | no_license | abhishekprasannan/TestTool | 1a95a10e263378da3dba73b4aece3105cc16093e | 4d3f940b407f37a313a1c357aa2cc6884d88770a | refs/heads/master | 2021-05-16T08:53:58.436779 | 2018-03-02T14:50:50 | 2018-03-02T14:50:50 | 104,262,464 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,238 | java | package hR_2017;
import java.util.Scanner;
public class ComparingTimes {
static String timeCompare(String t1, String t2){
// Complete this function
String m1 = t1.substring(t1.length()-2);
String m2 = t1.substring(t2.length()-2);
char mc1 = t1.charAt(t1.length()-2);
char mc2 = t2.charAt(t2.length()-2);
if(mc1==mc2){
int i1 = Integer.parseInt(t1.substring(0, 2));
int i2 = Integer.parseInt(t2.substring(0, 2));
if(i1<i2){
return "First";
}
else if(i1>i2){
return "Second";
}
else if(i1==i2){
int i3 = Integer.parseInt(t1.substring(3, 5));
int i4 = Integer.parseInt(t2.substring(3, 5));
if(i3<i4){
return "First";
}
else if(i3>i4){
return "Second";
}
}
}
else if(mc1<mc2){
return "First";
}
else if(mc1>mc2){
return "Second";
}
return "";
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int q = in.nextInt();
for(int a0 = 0; a0 < q; a0++){
String t1 = in.next();
String t2 = in.next();
String result = timeCompare(t1, t2);
System.out.println(result);
}
}
}
| [
"[email protected]"
] | |
1801dcea994a91caf56e93b6b8fa89d37aaf6056 | 7d63f8763d19d20a64c927b4eac7d1f4a92d4db1 | /src/main/java/zhongd/member/utils/constant/FileTypeConstant.java | 387cfebaf288b37c538d8ae792592b44e9e1610f | [] | no_license | larry0xff/coi_member | a67a40474ebe1f40afb2da196d9c370368fb2f2f | a2bf966475d9f8d2cbf3cb10ce13b5adb8dc8925 | refs/heads/master | 2021-09-14T21:54:54.900368 | 2018-05-20T16:50:26 | 2018-05-20T16:50:26 | 116,211,087 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 407 | java | package zhongd.member.utils.constant;
/**
* @Author xiezd
* @Description
* @Date Created in 15:38 星期四 2017/12/7/007
*/
public final class FileTypeConstant {
/**
* 表格文件
*/
public static final int FILE_EXCEL = 1;
/**
* 图片
*/
public static final int FILE_IMG = 2;
/**
* 压缩文件
*/
public static final int FILE_COMPRESS = 3;
}
| [
"[email protected]"
] | |
a993d1775374eb15c1d3222b3b14c39fc5d3a5ea | 23c9dcc425b76a593d45a248a72a86e5022e2ea1 | /access/person/FamilyList.java | 78ff1338d8e9bd1085c76a60d6e3220dee507fea | [] | no_license | tiborh/java | c54436ba982fdd7e64eaeb1ed3b65e8e1a7f2a94 | 5e0fafd44a1f6eeea6482030513d4241ac5cb26b | refs/heads/master | 2020-04-07T05:18:03.702429 | 2017-04-03T00:40:57 | 2017-04-03T00:40:57 | 54,286,999 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,336 | java | package person;
import java.util.List;
import java.util.ArrayList;
/**
* Represents a family that lives in a household together.
* A family always has at least one person in it.
* Families are mutable.
*/
class FamilyList implements Familiar
{
// the people in the family, sorted from oldest to youngest, with no duplicates.
public List<Person> people;
public FamilyList() { people = new ArrayList<Person>(); }
public void addMember(Person aMember) { people.add(aMember); }
public int getSize() { return people.size(); }
public Person getFirst()
{
assert(people.size() > 0);
return people.get(0);
}
public Person getLast()
{
assert(people.size() > 0);
return people.get(people.size()-1);
}
/**
* @return a list containing all the members of the family, with no duplicates.
*/
public List<Person> getMembers() { return people; }
public static void main(String[] argv)
{
Person aPerson = new Person();
FamilyList aFamily = new FamilyList();
aFamily.addMember(aPerson);
List<Person> theMembers = aFamily.getMembers();
System.out.println("Number of familty members: " + theMembers.size());
System.out.println("First member: " + theMembers.get(0));
}
}
| [
"[email protected]"
] | |
6fb2e18e4d0a1f67712696380324dd3ce3decfef | f9de8ebdf2b9660afe5e81a80db2c681bc8f74ac | /driver-core/src/main/com/mongodb/client/model/search/ValueBoostSearchScore.java | 684aa9d23a6ffa6ca30e06c6a4632f39f36ee8d6 | [
"Apache-2.0"
] | permissive | kevinAlbs/mongo-java-driver | 0f407b57971387d78b812e7dc3c7e5dd3dbb92ae | 22cda2c78e574ea3e761926ef14dfde3d69646a6 | refs/heads/master | 2023-07-09T14:53:33.156096 | 2023-04-05T18:30:41 | 2023-04-05T18:30:41 | 182,289,209 | 0 | 0 | Apache-2.0 | 2019-04-19T15:51:44 | 2019-04-19T15:51:44 | null | UTF-8 | Java | false | false | 878 | java | /*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.client.model.search;
import com.mongodb.annotations.Beta;
import com.mongodb.annotations.Evolving;
/**
* @see SearchScore#boost(float)
* @since 4.7
*/
@Evolving
@Beta(Beta.Reason.CLIENT)
public interface ValueBoostSearchScore extends SearchScore {
}
| [
"[email protected]"
] | |
2dc20cefbe533b030fb71f3c490e4a681803f22c | ca7bc277816cfae25182b75916f733c740c629f5 | /chap05/src/verify/Gugudan.java | 4dc2fe684058ba10e2d2f186d08bbd550261fa69 | [] | no_license | jupark1862/javaLab | 5f60834b7658a55b2eef86091002f249b86c2e0e | 6376402ad21ecfe836b4107560647b0ecd7a36e7 | refs/heads/master | 2023-04-10T05:12:37.251749 | 2021-04-29T04:17:56 | 2021-04-29T04:17:56 | 352,486,303 | 0 | 0 | null | null | null | null | MacCentralEurope | Java | false | false | 187 | java | package verify;
public class Gugudan {
public static void main(String[] args) {
// ī‹ title√‚∑¬
double ran=(Math.random());
System.out.println(ran);
}
} | [
"[email protected]"
] | |
e83e489808e1cee52b52d188894951da13607407 | 9007acd1ba3a71515fb2479b14b6e66c802e969f | /tracker/trunk/com.verticon.opengis.kml.core.model.tests/src/com/verticon/opengis/kml/tests/LinkTest.java | 2f93b1b943e0464672618218b7bfc2ad61f72939 | [] | no_license | jconlon/tracker | 17d36709a52bf7ec5c758f30b66ea808fa9be790 | 937b3c30ac9937342ed27b984c2bd31f27bddb55 | refs/heads/master | 2020-03-08T05:31:34.895003 | 2018-04-03T19:20:38 | 2018-04-03T19:20:38 | 127,949,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,618 | java | /**
* <copyright>
* </copyright>
*
* $Id$
*/
package com.verticon.opengis.kml.tests;
import com.verticon.opengis.kml.KmlFactory;
import com.verticon.opengis.kml.Link;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Link</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are tested:
* <ul>
* <li>{@link com.verticon.opengis.kml.Link#getLinkSimpleExtensionGroup() <em>Link Simple Extension Group</em>}</li>
* <li>{@link com.verticon.opengis.kml.Link#getLinkObjectExtensionGroup() <em>Link Object Extension Group</em>}</li>
* </ul>
* </p>
* @generated
*/
public class LinkTest extends BasicLinkTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(LinkTest.class);
}
/**
* Constructs a new Link test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public LinkTest(String name) {
super(name);
}
/**
* Returns the fixture for this Link test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Link getFixture() {
return (Link)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(KmlFactory.eINSTANCE.createLink());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
/**
* Tests the '{@link com.verticon.opengis.kml.Link#getLinkSimpleExtensionGroup() <em>Link Simple Extension Group</em>}' feature getter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see com.verticon.opengis.kml.Link#getLinkSimpleExtensionGroup()
* @generated
*/
public void testGetLinkSimpleExtensionGroup() {
// TODO: implement this feature getter test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
/**
* Tests the '{@link com.verticon.opengis.kml.Link#getLinkObjectExtensionGroup() <em>Link Object Extension Group</em>}' feature getter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see com.verticon.opengis.kml.Link#getLinkObjectExtensionGroup()
* @generated
*/
public void testGetLinkObjectExtensionGroup() {
// TODO: implement this feature getter test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
} //LinkTest
| [
"[email protected]"
] | |
9ac4770be7cc3cfe95b4bb8f19c2a871e6d77149 | e358b37e784abfe8fa0c83a154e4a738dc44693d | /src/main/java/com/brave/config/MyUserDetails.java | 549bb3514fc86c5e3e03b0d314a3a8551600e042 | [] | no_license | dalerxli/KyjxSys | 2204be45764a007f0934701bb348d64da22377f2 | e930bb820cae91116f8e889d0f7d200a210e0427 | refs/heads/master | 2022-01-08T02:10:14.898579 | 2018-04-16T04:15:20 | 2018-04-16T04:15:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,498 | java | package com.brave.config;
import java.util.Collection;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import com.brave.entity.Visit;
public class MyUserDetails implements UserDetails {
/**
*
*
*/
private static final long serialVersionUID = 1L;
private Visit visit;
private Collection<? extends GrantedAuthority> authoritiesCollection;
public MyUserDetails(Visit visit, Collection<? extends GrantedAuthority> authoritiesCollection) {
this.visit = visit;
this.authoritiesCollection = authoritiesCollection;
}
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
// TODO Auto-generated method stub
return this.authoritiesCollection;
}
@Override
public String getPassword() {
return visit.getPassword();
}
@Override
public String getUsername() {
return visit.getUsername();
}
@Override
public boolean isAccountNonExpired() {
// TODO Auto-generated method stub
return true;
}
@Override
public boolean isAccountNonLocked() {
// TODO Auto-generated method stub
return true;
}
@Override
public boolean isCredentialsNonExpired() {
// TODO Auto-generated method stub
return true;
}
@Override
public boolean isEnabled() {
// TODO Auto-generated method stub
return true;
}
@Override
public String toString() {
return "用户名:" + visit.getUsername() + ";密码:" + visit.getPassword() + "权限:" + this.getAuthorities();
}
}
| [
"[email protected]"
] | |
3911907ea1652c4f134f194e79e54cad21f7ded0 | f029030798ecfa90becb744c222c2a3fe2207f67 | /messenger/src/main/java/org/lucky/projects/maven/jersey/messenger/example8SubResource/Exception/DataNotFoundException.java | 261011062590e7c678a69ba05cb12f12f62bf5b0 | [] | no_license | lakhminder/FirstRepo | 9f4308cdc3b44e2bac9f1920d53f51629de84856 | cb78ff39f2b1edca39bc894a703b90993e6cb4f2 | refs/heads/master | 2020-06-06T10:23:02.534914 | 2018-08-11T15:04:16 | 2018-08-11T15:04:16 | 34,740,898 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 270 | java | package org.lucky.projects.maven.jersey.messenger.example8SubResource.Exception;
public class DataNotFoundException extends RuntimeException{
private static final long serialVersionUID = 1L;
public DataNotFoundException(String msg) {
super(msg);
}
}
| [
"[email protected]"
] | |
86ee9dcb6bbdd91b099ba25ef00efea9edda436e | 4f5ef428522d39bdabf936915ed9d3edd78a4692 | /CardDetails.java | 0835741d4170c0298811f0076d4161e024500125 | [] | no_license | zeenatparveen/Java-HandsOn | 0ddfc4866dbd092188e83ea16d8ea6f97a03a284 | d96db96d086d83d421d116f5aed27450c3ec98c6 | refs/heads/main | 2023-05-06T22:13:05.949287 | 2021-06-04T11:59:19 | 2021-06-04T11:59:19 | 373,824,857 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,188 | java | package corejava;
import java.util.Scanner;
public class CardDetails {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("Select the Card \r\n" +
"1.Payback Card \r\n" +
"2.Membership Card \r\n" +
"");
int choice=sc.nextInt();
sc.nextLine();
if(choice==1) {
System.out.println("Enter the Card Details: ");
String details=sc.nextLine();
String det[]=details.split("\\|");
System.out.println("Enter points in card ");
int pointsEarned=sc.nextInt();
System.out.println("Enter Amount ");
int totalAmount=sc.nextInt();
PaybackCard p=new PaybackCard(det[0], det[1], det[2], pointsEarned, totalAmount);
System.out.println(p.getHolderName()+"\'s Payback Card Details: ");
System.out.println("Card Number "+p.getCardNumber());
System.out.println("Points Earned "+p.getPointsEarned());
System.out.println("Total Amount "+p.getTotalAmount());
}else {
System.out.println("Enter the Card Details: ");
String details=sc.nextLine();
String det[]=details.split("\\|");
System.out.println("Enter rating in card ");
int rating=sc.nextInt();
MembershipCard m=new MembershipCard(det[0], det[1], det[2], rating);
System.out.println(m.getHolderName()+"\'s Membership Card Details: ");
System.out.println("Card Number "+m.getCardNumber());
System.out.println("Rating "+m.getRating());
}
sc.close();
}
}
abstract class Card{
String holderName;
String cardNumber;
String expiryDate;
public String getHolderName() {
return holderName;
}
public void setHolderName(String holderName) {
this.holderName = holderName;
}
public String getCardNumber() {
return cardNumber;
}
public void setCardNumber(String cardNumber) {
this.cardNumber = cardNumber;
}
public String getExpiryDate() {
return expiryDate;
}
public void setExpiryDate(String expiryDate) {
this.expiryDate = expiryDate;
}
public Card(String holderName, String cardNumber, String expiryDate) {
this.holderName = holderName;
this.cardNumber = cardNumber;
this.expiryDate = expiryDate;
}
}
class MembershipCard extends Card{
int rating;
public int getRating() {
return rating;
}
public void setRating(int rating) {
this.rating = rating;
}
public MembershipCard(String holderName, String cardNumber, String expiryDate, int rating) {
super(holderName, cardNumber, expiryDate);
this.rating = rating;
}
}
class PaybackCard extends Card{
int pointsEarned;
double totalAmount;
public int getPointsEarned() {
return pointsEarned;
}
public void setPointsEarned(int pointsEarned) {
this.pointsEarned = pointsEarned;
}
public double getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(double totalAmount) {
this.totalAmount = totalAmount;
}
public PaybackCard(String holderName, String cardNumber, String expiryDate, int pointsEarned, double totalAmount) {
super(holderName, cardNumber, expiryDate);
this.pointsEarned = pointsEarned;
this.totalAmount = totalAmount;
}
}
| [
"[email protected]"
] | |
45b8c4e71d98e6eed015d6ee5b6f04a0ff8e2f1f | 3b6a0e2f3fe029da83f8056df18ece536afdeb1e | /xhsi/src/net/sourceforge/xhsi/model/RadioNavigationObject.java | f9ba633cde9e02dbad89d535a1ea0afa3cf1ba76 | [] | no_license | annerajb/XSHI_A3_MFD | 4f75920dde2824e8a124f63d12e986c7d140c432 | 2dbae7c4737a24745230a03acc3eb487f67fa034 | refs/heads/master | 2021-06-04T00:42:54.171290 | 2019-11-04T03:18:48 | 2019-11-04T03:18:48 | 12,901,956 | 4 | 3 | null | null | null | null | UTF-8 | Java | false | false | 1,906 | java | /**
* RadioNavigationObject.java
*
* Model superclass for radio navigation objects (VORs, NDBs and Localizers).
*
* Copyright (C) 2007 Georg Gruetter ([email protected])
* Copyright (C) 2009 Marc Rogiers ([email protected])
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package net.sourceforge.xhsi.model;
public class RadioNavigationObject extends NavigationObject {
public float frequency;
public int range;
public String ilt;
public int elevation;
public boolean has_dme;
public float dme_lat;
public float dme_lon;
public RadioNavigationObject(String name, String ilt, float lat, float lon, int elevation, float frequency, int range) {
super(name, lat, lon);
if (frequency < 1000) {
this.frequency = frequency;
} else {
this.frequency = frequency/100;
}
this.range = range;
this.ilt = ilt;
this.elevation = elevation;
this.has_dme = false;
this.dme_lat = lat;
this.dme_lon = lon;
}
public String toString() {
return "Radio Navigation object '" + this.name + " Freq=" + this.frequency + " Range=" + this.range + " @ (" + this.lat + "," + this.lon + ") ";
}
}
| [
"[email protected]"
] | |
189f11d16366ddac60bf51ac774ccc833e44edec | 68aa969acc0accdbab8ad3e6e61f730a4cef7633 | /src/main/java/ru/ttv/patterns/provider/impl/DBFValidateProvider.java | dbe28380a3a90fea5fa26993617fec83ec4a9815 | [] | no_license | timteplych/patterns | 3175e68e7465f1b200b7989f69bc20599ea526b5 | f6c11710096e13c8d113a2f4a1295b1275fd61c2 | refs/heads/master | 2020-05-15T02:09:20.271804 | 2019-05-16T12:45:25 | 2019-05-16T12:45:25 | 182,043,812 | 0 | 0 | null | 2019-05-16T13:48:04 | 2019-04-18T08:02:21 | Java | UTF-8 | Java | false | false | 321 | java | package ru.ttv.patterns.provider.impl;
import ru.ttv.patterns.Contract;
import ru.ttv.patterns.provider.ValidateProvider;
/**
* @author Teplykh Timofey 18.04.2019
*/
public class DBFValidateProvider implements ValidateProvider {
public Contract validateContract(Contract contract) {
return null;
}
}
| [
"[email protected]"
] | |
6d68fbc780c60129eaee91048e7269ea8f97157b | 150ae5288f3d4258b31ebf52a4db5fa7daf9b74a | /beintoosdk/mobile/android/src/com/beintoo/vgood/BeintooRecomDialog.java | e1a8195a4ebbe01c77a18403eeafbfd225b4e75c | [
"Apache-2.0"
] | permissive | cecilym/titanium_modules | 4bfcb21ee2f3f38f09e8d76f01262b5f7fbd447d | 9741644885a503f8f2b1d80c5a289ec3133b88e5 | refs/heads/master | 2021-01-18T08:51:18.625576 | 2012-04-13T14:37:31 | 2012-04-13T14:37:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,224 | java | /*******************************************************************************
* Copyright 2011 Beintoo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.beintoo.vgood;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import android.app.Dialog;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.graphics.Typeface;
import android.net.Uri;
import android.os.Handler;
import android.os.Message;
import android.view.Gravity;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.LinearLayout;
import com.beintoo.main.Beintoo;
import com.beintoo.main.Beintoo.BGetVgoodListener;
import com.beintoo.wrappers.VgoodChooseOne;
public class BeintooRecomDialog extends Dialog implements OnClickListener{
Context ctx;
private Dialog current;
VgoodChooseOne vgood;
private ImageView image;
private BGetVgoodListener gvl;
public BeintooRecomDialog(Context context, VgoodChooseOne v, BGetVgoodListener listener) {
super(context, context.getResources().getIdentifier("ThemeBeintooVgood", "style", context.getPackageName()));
this.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
ctx = context;
vgood = v;
current = this;
gvl = listener;
try {
LinearLayout main = new LinearLayout(context);
LinearLayout.LayoutParams mainparams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
main.setPadding(toDip(5), 0, toDip(5), 0);
main.setBackgroundColor(Color.TRANSPARENT);
main.setOrientation(LinearLayout.VERTICAL);
main.setLayoutParams(mainparams);
main.setGravity(Gravity.CENTER);
LinearLayout bg = new LinearLayout(context);
LinearLayout.LayoutParams bgparams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
bg.setPadding(toDip(1), toDip(1), toDip(1), toDip(1));
bg.setBackgroundColor(Color.argb(180, 150, 150, 150));
bg.setOrientation(LinearLayout.VERTICAL);
bg.setLayoutParams(bgparams);
LinearLayout top = new LinearLayout(context);
LinearLayout.LayoutParams topparams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
top.setPadding(toDip(10), toDip(6), toDip(10), toDip(10));
top.setOrientation(LinearLayout.VERTICAL);
top.setLayoutParams(topparams);
top.setBackgroundColor(Color.argb(190, 30, 25, 25));
top.setGravity(Gravity.CENTER);
bg.addView(top);
// TOP ROW LAYOUT
LinearLayout infoclose = new LinearLayout(context);
LinearLayout.LayoutParams infocloseparams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.WRAP_CONTENT);
infoclose.setOrientation(LinearLayout.HORIZONTAL);
infoclose.setLayoutParams(infocloseparams);
// CLOSE BUTTON LAYOUT
LinearLayout buttonlayout = new LinearLayout(context);
buttonlayout.setOrientation(LinearLayout.HORIZONTAL);
buttonlayout.setLayoutParams(infocloseparams);
buttonlayout.setGravity(Gravity.RIGHT);
// CLOSE BUTTON
Button no = new Button(context);
no.setBackgroundDrawable(null);
no.setText("X");
no.setTextSize(18);
no.setTypeface(null, Typeface.BOLD);
no.setId(0);
no.setOnClickListener(this);
no.setPadding(0,toDip(-3),0,0);
no.setTextColor(Color.WHITE);
// INFO CLICK
TextView info = new TextView(ctx);
String message = vgood.getVgoods().get(0).getRewardText();
if(message != null)
info.setText(message);
else
info.setText(ctx.getString(context.getResources().getIdentifier("vgoodhtmlmessage", "string", context.getPackageName())));
// ADD ALL TO TOPROW
infoclose.addView(info);
buttonlayout.addView(no);
infoclose.addView(buttonlayout);
// ADD TOPROW TO MAIN LAYOUT
top.addView(infoclose);
image = new ImageView(ctx);
image.setPadding(0, 0, 0, 0);
image.setOnClickListener(this);
image.setId(1);
top.addView(image);
main.addView(bg,mainparams);
this.setContentView(main);
}catch (Exception e) {e.printStackTrace();}
}
public void loadAlert(){
try{
getDrawableFromUrl(vgood.getVgoods().get(0).getImageUrl());
}catch(Exception e){e.printStackTrace();}
}
private int toDip (int px) {
double ratio = (ctx.getApplicationContext().getResources().getDisplayMetrics().densityDpi / 160d);
return (int)(ratio*px);
}
public void onClick(View v) {
try {
if(v.getId() == 0){ // REFUSE
this.cancel();
}else if(v.getId() == 1){ // ACCEPT
Intent browserIntent = new Intent("android.intent.action.VIEW", Uri.parse(vgood.getVgoods().get(0).getGetRealURL()));
ctx.startActivity(browserIntent);
this.cancel();
}
}catch(Exception e){}
}
Handler UIhandler = new Handler() {
@Override
public void handleMessage(Message msg) {
current.show();
if(gvl != null)
gvl.onComplete(vgood);
}
};
private String getWebUserAgent(){
String userAgent = null;
try {
userAgent = Beintoo.userAgent;
}catch(Exception e){ e.printStackTrace(); return userAgent;}
return userAgent;
}
private void getDrawableFromUrl(final String url) throws IOException, MalformedURLException {
try{
new Thread(new Runnable(){
public void run(){
try{
HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
String userAgent = getWebUserAgent();
if(userAgent != null)
conn.setRequestProperty("User-Agent", userAgent);
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
Bitmap bmImg = BitmapFactory.decodeStream(is);
// SCALE THE IMAGE TO FIT THE DEVICE SIZE
Bitmap resizedbitmap = Bitmap.createScaledBitmap(bmImg, toDip(bmImg.getWidth()), toDip(bmImg.getHeight()), true);
bis.close();
is.close();
image.setImageBitmap(resizedbitmap);
UIhandler.sendEmptyMessage(0);
}catch (Exception e){e.printStackTrace();}
}
}).start();
}catch(Exception e){
e.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
65ddfe5e07956d14f786df1ad79df9a6887b0f66 | 559113643ddc424a6c9aa2a2bed87558f3f9f7e3 | /app/src/androidTest/java/com/example/dreamilyeats/ExampleInstrumentedTest.java | b7b626803771de4e517705dab6fe1e72cb1d5573 | [] | no_license | Dimpisingh212/DreamilyEats-master | 942f898c2760d58477b04cc9deb414774b756dea | 7648bd859e448dfe9aa1dc1cf55bbc545ddddf91 | refs/heads/master | 2020-05-18T11:10:19.294342 | 2019-05-26T12:59:06 | 2019-05-26T12:59:06 | 184,371,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 732 | java | package com.example.dreamilyeats;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.dreamilyeats", appContext.getPackageName());
}
}
| [
"[email protected]"
] | |
d3f5f8e714c1a1c0598fa8dd2e92ef995b31be36 | e0e9c1938fafcea8f26d1b76d76529cc9f44665a | /HoloDesign-ver.3/Sofbus24/src/bg/znestorov/sofbus24/entity/MetroScheduleType.java | 9dafba8f8c85be279fd131cefbaca432d2f4138d | [] | no_license | zdravko-nestorov/Sofbus-24 | 46c67dba692f64eb3fbe9b898d0a2cab2875be7c | c8922be49fb3209399084dfea1d1166758cf3c4d | refs/heads/master | 2023-09-03T16:36:24.270045 | 2023-08-22T08:17:43 | 2023-08-22T08:17:43 | 32,795,928 | 1 | 1 | null | 2022-12-16T05:44:49 | 2015-03-24T12:03:34 | Java | UTF-8 | Java | false | false | 643 | java | package bg.znestorov.sofbus24.entity;
/**
* The type of the metro schedule - INCOMPLETE COURSE, SOFIA AIRPORT or
* BUSSINESS PARK
*
* @author Zdravko Nestorov
* @version 1.0
*/
public enum MetroScheduleType {
/**
* Indicates the INCOMPLETE COURSES of the metro schedule
*/
IC,
/**
* Indicates the trains that goes to the SOFIA AIRPORT
*/
SA,
/**
* Indicates the trains that goes to the BUSSINESS PARK
*/
BP,
/**
* Mixed scheduled types
*/
IC_SA, IC_BP,
/**
* None of the special schedule types
*/
NONE;
}
| [
"[email protected]"
] | |
57b7f42cfdade80a319cf5ef17752b81b846c6ea | 95aeb693e22d868f49a410f14b6138e84fa30910 | /src/test/java/com/lemon/cases/LoginCase.java | 9d2881b8d1c25b2eb96c153193a4893de2b92ff3 | [] | no_license | cheryl-Q/java_auto_api | d9d824c0f6de33ba0e1fb1cce151c80d6ad65d7f | baaaaa824e086a4657903d3c0b600905031caa3f | refs/heads/master | 2022-12-12T04:46:30.769942 | 2020-08-17T16:09:08 | 2020-08-17T16:09:08 | 288,223,691 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,272 | java | package com.lemon.cases;
/*
@auther:cheryl
@date:2020/8/3-21:54
*/
import com.alibaba.fastjson.JSONPath;
import com.lemon.pojo.CaseInfo;
import com.lemon.utils.Contants;
import com.lemon.utils.ExcelUtils;
import com.lemon.utils.HttpUtils;
import com.lemon.utils.UserData;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import java.util.List;
public class LoginCase extends BaseCase {
@Test(dataProvider = "datas")
public void test(CaseInfo caseInfo) throws Exception {
// 1.参数化替换
paramsReplace(caseInfo);
// 2.数据库前置查询结果(数据断言必须在接口执行前后都查询)
// 3.调用接口
String responseBody = HttpUtils.call(caseInfo, UserData.DEFAULT_HEADERS);
// 从响应中获取token、member_id放入UserData中
String code = JSONPath.read(responseBody,"$.code").toString();
if (caseInfo.getTitle().equals("管理员登录成功") && code.equals("0")){
getParamsToUserData(responseBody,"$.data.token_info.token","#admin_token#");
getParamsToUserData(responseBody,"$.data.id","#admin_id#");
}if (caseInfo.getTitle().equals("普通会员登录成功") && code.equals("0")) {
getParamsToUserData(responseBody, "$.data.token_info.token", "#token#");
getParamsToUserData(responseBody, "$.data.id", "#member_id#");
}
boolean responseAsserFlag = responseAssert(caseInfo.getExpected(), responseBody);
// 5.添加响应回写内容
addWriteBackData(sheetIndex,caseInfo.getId(), Contants.RESPONSE_CELL_NUM,responseBody);
// 6.数据库后置查询结果
// 7.数据库断言
// 8,回写接口断言结果
String assertResult = responseAsserFlag ?Contants.ASSERT_PASSED : Contants.ASSERT_FAILED;
addWriteBackData(sheetIndex, caseInfo.getId(), Contants.ASSERT_CELL_NUM, assertResult);
// 9,添加日志
// 10,报表断言
Assert.assertEquals(assertResult,Contants.ASSERT_PASSED);
}
@DataProvider
public Object[] datas(){
List list = ExcelUtils.read(sheetIndex,1, CaseInfo.class);
return list.toArray();
}
}
| [
"[email protected]"
] | |
8e3d42b5dc94d9194dc39edcef14639b865ca0a9 | 585f23698abcd41278690b281a9589d1724857dd | /code/experiments/src/main/java/de/tudarmstadt/ukp/experiments/argumentation/comments/pipeline/TopicModelGenerator.java | 59b60fd7250255009dc2b0ced40f4cce56f57738 | [
"Apache-2.0",
"Python-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | habernal/emnlp2015 | 7f04aed3c41a7c8ef0032078e657cad3e51a1731 | 50840a63de5449dff5f7e1a4066da7aa113d6be1 | refs/heads/master | 2021-01-11T10:47:29.344542 | 2016-02-25T11:39:14 | 2016-02-25T11:39:14 | 48,423,831 | 4 | 0 | null | 2016-01-22T10:47:20 | 2015-12-22T09:45:28 | Java | UTF-8 | Java | false | false | 6,432 | java | /*
* Copyright 2016
* Ubiquitous Knowledge Processing (UKP) Lab
* Technische Universität Darmstadt
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.tudarmstadt.ukp.experiments.argumentation.comments.pipeline;
import cc.mallet.topics.ParallelTopicModel;
import de.tudarmstadt.ukp.dkpro.core.stanfordnlp.StanfordLemmatizer;
import de.tudarmstadt.ukp.dkpro.core.stanfordnlp.StanfordSegmenter;
import org.apache.uima.fit.factory.AnalysisEngineFactory;
import org.apache.uima.fit.factory.CollectionReaderFactory;
import org.apache.uima.fit.pipeline.SimplePipeline;
import java.io.File;
/**
* @author Ivan Habernal
*/
public class TopicModelGenerator
{
private static final int N_THREADS = 2;
public static final int ITERATIONS = 100;
/**
* Collects and stores vocabulary
*
* @param corpusPath corpus
* @param vocabularyFile vocabulary
* @throws Exception
*/
public static void collectVocabularyDebates(String corpusPath, String vocabularyFile)
throws Exception
{
SimplePipeline.runPipeline(
// reader
CollectionReaderFactory.createReaderDescription(FullDebateContentReader.class,
FullDebateContentReader.PARAM_SOURCE_LOCATION, corpusPath),
// tokenize web-texts
AnalysisEngineFactory.createEngineDescription(ArktweetTokenizerFixed.class),
// find sentences
AnalysisEngineFactory.createEngineDescription(StanfordSegmenter.class,
StanfordSegmenter.PARAM_WRITE_TOKEN, false),
// lemma
AnalysisEngineFactory.createEngineDescription(StanfordLemmatizer.class),
AnalysisEngineFactory.createEngineDescription(VocabularyCollector.class,
VocabularyCollector.PARAM_MINIMAL_OCCURRENCE, 5,
VocabularyCollector.PARAM_IGNORE_STOPWORDS, true,
VocabularyCollector.PARAM_MODEL_LOCATION, vocabularyFile));
/*
INFO: Original vocabulary size: 155056
INFO: Filtered vocabulary size: 35039
INFO: total tokens: 14,348,505
*/
}
public static void trainTopicModelOnDebates(String corpusPath, String vocabularyFile,
String topicModelFile, int nTopics)
throws Exception
{
SimplePipeline.runPipeline(
// reader
CollectionReaderFactory.createReaderDescription(FullDebateContentReader.class,
FullDebateContentReader.PARAM_SOURCE_LOCATION, corpusPath),
// tokenize web-texts
AnalysisEngineFactory.createEngineDescription(ArktweetTokenizerFixed.class),
// find sentences
AnalysisEngineFactory.createEngineDescription(StanfordSegmenter.class,
StanfordSegmenter.PARAM_WRITE_TOKEN, false),
// lemma
AnalysisEngineFactory.createEngineDescription(StanfordLemmatizer.class),
AnalysisEngineFactory
.createEngineDescription(ExtendedMalletTopicModelEstimator.class,
ExtendedMalletTopicModelEstimator.PARAM_N_THREADS, N_THREADS,
ExtendedMalletTopicModelEstimator.PARAM_TARGET_LOCATION,
topicModelFile,
ExtendedMalletTopicModelEstimator.PARAM_N_ITERATIONS, ITERATIONS,
ExtendedMalletTopicModelEstimator.PARAM_N_TOPICS, nTopics,
ExtendedMalletTopicModelEstimator.PARAM_USE_LEMMA, true,
ExtendedMalletTopicModelEstimator.PARAM_VOCABULARY_FILE,
vocabularyFile));
ParallelTopicModel model = ParallelTopicModel.read(new File(topicModelFile));
System.out.println(model.getNumTopics());
}
/*
public static void trainTopicModelOnArguments(String corpusPath, String vocabularyFile,
String topicModelFile, int nTopics)
throws Exception
{
SimplePipeline.runPipeline(
// reader
CollectionReaderFactory
.createReaderDescription(XmiReader.class, XmiReader.PARAM_SOURCE_LOCATION,
corpusPath, XmiReader.PARAM_PATTERNS,
XmiReader.INCLUDE_PREFIX + "*.xmi"),
AnalysisEngineFactory
.createEngineDescription(ExtendedMalletTopicModelEstimator.class,
ExtendedMalletTopicModelEstimator.PARAM_N_THREADS, N_THREADS,
ExtendedMalletTopicModelEstimator.PARAM_TARGET_LOCATION,
topicModelFile,
ExtendedMalletTopicModelEstimator.PARAM_N_ITERATIONS, ITERATIONS,
ExtendedMalletTopicModelEstimator.PARAM_N_TOPICS, nTopics,
ExtendedMalletTopicModelEstimator.PARAM_USE_LEMMA, true,
ExtendedMalletTopicModelEstimator.PARAM_VOCABULARY_FILE,
vocabularyFile));
ParallelTopicModel model = ParallelTopicModel.read(new File(topicModelFile));
System.out.println(model.getNumTopics());
}
*/
public static void main(String[] args)
throws Exception
{
String corpusPath = args[0];
String vocabularyFile = args[1];
String topicModelFile = args[2];
Integer topics = Integer.valueOf(args[3]);
collectVocabularyDebates(corpusPath, vocabularyFile);
// trainTopicModelOnArguments(corpusPath, vocabularyFile, topicModelFile);
trainTopicModelOnDebates(corpusPath, vocabularyFile, topicModelFile, topics);
}
}
| [
"[email protected]"
] | |
0c1f698dca9345ea0792c6b6c1c0f4de644d5f30 | fe6f8b24b8720358d8f1b04540a52d2a7ebd7d44 | /src/main/java/com/little/banker/services/exceptions/InsufficientFundsException.java | f7b541c0b1f969c6aee141ce592bfd06912d6cb4 | [] | no_license | valeriacastelo/little-banker | 4845fc839647ff44a2c053d183df253a679a22ba | d6ca208e3bc335da796987dc471b0614a9e31758 | refs/heads/master | 2022-02-21T22:12:13.491625 | 2019-09-20T07:24:29 | 2019-09-20T07:24:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 366 | java | package com.little.banker.services.exceptions;
public class InsufficientFundsException extends RuntimeException {
private static final long serialVersionUID = 1L;
public InsufficientFundsException(String message) {
super(message);
}
public InsufficientFundsException(String message, Throwable throwable) {
super(message, throwable);
}
}
| [
"[email protected]"
] | |
f1403e879103da1c381eedb2aac293aad5cff175 | 0f568e262d02ef00d9d439c93b70ff3213d7485e | /src/Model/cliente.java | bad478b0a29d4fe2473866f349bab5795a5aa37e | [] | no_license | joaopauloguedesSilveira/Hotelaria | a8f7d91710470887b3246a636b6881663d66665b | 4d3dc46c64da910519bc1b783bca63ea7f6f6d45 | refs/heads/master | 2020-04-29T19:04:58.712655 | 2019-04-05T22:29:48 | 2019-04-05T22:29:48 | 176,343,336 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,131 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Model;
/**
*
* @author joaop
*/
public class cliente {
private int id;
private String Clinome;
private String CliCpf;
private int id_vei;
public cliente(){
}
public cliente(int id, String Clinome, String CliCpf, int id_vei) {
this.id = id;
this.Clinome = Clinome;
this.CliCpf = CliCpf;
this.id_vei = id_vei;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getClinome() {
return Clinome;
}
public void setClinome(String Clinome) {
this.Clinome = Clinome;
}
public String getCliCpf() {
return CliCpf;
}
public void setCliCpf(String CliCpf) {
this.CliCpf = CliCpf;
}
public int getId_vei() {
return id_vei;
}
public void setId_vei(int id_vei) {
this.id_vei = id_vei;
}
}
| [
"[email protected]"
] | |
9de89a708d7824707b38b9fa69b2b078d952a7c3 | ea5b2f2fd0f926542f6962ba33f51289f7f773f1 | /elevator/Elevator.java | 163133e0a56902c115179aaa23894ae7c6c8be12 | [] | no_license | SDEinSeattle/OOD | 96728a4c8dfc96c1cf4c48daa3f81e0946118f4f | 81bc3514ada3dc22caee76cedd111cbc451d989e | refs/heads/main | 2023-04-08T11:10:51.231911 | 2021-04-16T19:37:26 | 2021-04-16T19:37:26 | 351,316,653 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,647 | java | package OOD.elevator;
import java.util.List;
import java.util.PriorityQueue;
public class Elevator {
private String id;
private int capacity;
private int currentLevel;
private Direction currentDirection;
private List<InternalButton> internalButtonList;
private List<ExternalButton> externalButtonList;
private PriorityQueue<Integer> upTasks;
private PriorityQueue<Integer> downTasks;
public boolean handleExternalRequest(ExternalRequest external) {
/*
* checkValue(request)
* */
int currLevel = external.getLevel();
Direction requestDirection = external.getDirection();
if (requestDirection == Direction.UP) {
if (currLevel > currentLevel && currentDirection == Direction.UP) {
upTasks.offer(currLevel);
return true;
}
} else if (requestDirection == Direction.DOWN) {
if (currLevel < currentLevel && currentDirection == Direction.DOWN) {
downTasks.offer(currLevel);
return true;
}
}
return false;
}
public boolean handleInternalRequest(InternalRequest internal) {
// corner case
Integer requestLevel = internal.getLevel();
if (requestLevel > currentLevel && currentDirection == Direction.valueOf("UP")) {
upTasks.offer(requestLevel);
return true;
} else if (requestLevel < currentLevel && currentDirection == Direction.valueOf("DOWN")){
downTasks.offer(requestLevel);
return true;
}
return false;
}
}
| [
"[email protected]"
] | |
7f249004b25525decf36c605c6e81903af1a6a95 | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /api-vs-impl-small/core/src/main/java/org/gradle/testcore/performancenull_48/Productionnull_4791.java | dd38d20bb0dd85af54fdce809e8e5efd1cbe6be5 | [] | no_license | gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164276 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | null | UTF-8 | Java | false | false | 589 | java | package org.gradle.testcore.performancenull_48;
public class Productionnull_4791 {
private final String property;
public Productionnull_4791(String param) {
this.property = param;
}
public String getProperty() {
return property;
}
private String prop0;
public String getProp0() {
return prop0;
}
public void setProp0(String value) {
prop0 = value;
}
private String prop1;
public String getProp1() {
return prop1;
}
public void setProp1(String value) {
prop1 = value;
}
}
| [
"[email protected]"
] | |
13f714aea317715b1c1e0571730a90cf4cfdab71 | 8f3bbb080c54258fd17957ef97fe21f4a2d483f4 | /WT02-Zadania/src/tablice/suma.java | 53e02a5db5810b6a4db5745a788e4bdc8b07aa50 | [] | no_license | Trawa1967/Trawa | 7bc12777cf77739047527a1b221b8a46789199d1 | 4904999a6f8d20620141001717bc874c9844e23e | refs/heads/master | 2021-01-19T07:07:46.403212 | 2017-12-20T20:04:06 | 2017-12-20T20:13:38 | 87,524,377 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 919 | java | package tablice;
import java.util.Random;
import javax.swing.JOptionPane;
public class suma {
public static void main(String[] args) {
//Prośba o podanie rozmiaru tablicy
int roz = Integer.parseInt(JOptionPane.showInputDialog(("Podaj rozmiar tablicy")));
//Deklarowanie i inicjowanie tablicy
int[] tab = new int[roz];
//Wypełnianie tablicy losowymi danymi
Random r = new Random();
for (int i = 0; i<roz; i++)
tab[i] = r.nextInt(100);
//Wyświetlenie zawartości tablicy
System.out.println("Zawartość tablicy");
for (int x: tab) {
System.out.print(x+" ");
}
//Obliczenie sumy
//int roz= tab.length;
int suma = 0;
for (int i =0; i<roz; i++) {
suma+=tab[i];
}
System.out.println("\n");
System.out.println("Suma komórek tablicy wynosi: "+suma);
double srednia = suma/roz;
System.out.println("Śrdenia zaś to: "+srednia);
}
}
| [
"Wojciech@SAM_LAP.local"
] | Wojciech@SAM_LAP.local |
1d330ec4ae3a20ce68177bb470a5ae4d2c2c5b84 | 5c1e583db4ca55e2082841f85bfe69afac40311a | /Spring/bookings/src/main/java/lab/bookings/controlers/BookingController.java | a89a03d5512eb1b29ad42f408487f095478bfd97 | [] | no_license | RobertDudek/EnterpriseLabProjects | 8c182943f73bf546b44256fda0b1a642dbd45045 | 9f12da234012bb815c41e4c970f28b1572575c51 | refs/heads/main | 2023-06-01T13:41:59.988808 | 2021-06-20T10:59:06 | 2021-06-20T10:59:06 | 347,056,621 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,426 | java | package lab.bookings.controlers;
import lab.bookings.models.Apartment;
import lab.bookings.models.Booking;
import lab.bookings.repositories.ApartmentRepository;
import lab.bookings.repositories.BookingRepository;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.Errors;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.time.LocalDate;
import java.util.List;
import java.util.Optional;
@Controller
@RequestMapping("/bookings")
public class BookingController {
private BookingRepository bookingRepository;
private ApartmentRepository apartmentRepository;
public BookingController(BookingRepository bookingRepository,
ApartmentRepository apartmentRepository) {
this.bookingRepository = bookingRepository;
this.apartmentRepository = apartmentRepository;
}
@GetMapping
public String getAll(Model model) {
model.addAttribute(new Booking());
model.addAttribute("bookings", bookingRepository.findAll());
return "bookings";
}
@PostMapping
public String create(@Valid Booking booking, Errors errors,
Model model) {
String view;
if (errors.hasErrors()) {
model.addAttribute("bookings",
bookingRepository.findAll());
view = "bookings";
} else {
int numGuests = booking.getNumGuests();
LocalDate startDay = booking.getFromDate();
LocalDate endDay = booking.getToDate();
List<Apartment> availableApartments =
apartmentRepository.getFreeApartments(numGuests, startDay, endDay);
if(availableApartments.size() > 0) {
booking.setApartment(availableApartments.get(0));
bookingRepository.save(booking);
view = "redirect:/bookings";
} else {
model.addAttribute("noApartmentAvailable", true);
model.addAttribute("bookings",
bookingRepository.findAll());
view = "bookings";
}
}
return view;
}
@DeleteMapping("/delete/{id}")
public String delete(@PathVariable("id") long bookingId) {
bookingRepository.deleteById(bookingId);
return "redirect:/bookings";
}
} | [
"[email protected]"
] | |
6e6959d4ef9478fa7250d65737090d0ab658545d | ae4548243ea060ffeb201feaabd4a6cf17fada61 | /kz103_pengxiu/servlet/二三次作业/servlet/src/kz/servlet_zy/servlet_11zys.java | fe2e6589e4627a17a8b42549853e83c6101d5dff | [] | no_license | kaizhou-College/apri-homework | ef1654a3de62fe483cb9e815e3a09c34fb96c917 | b8092d03461ba37b1e30a886b5ae0dac007b370a | refs/heads/master | 2021-01-23T00:01:42.341789 | 2017-12-24T23:59:53 | 2017-12-24T23:59:53 | 102,425,806 | 3 | 1 | null | 2017-09-25T08:39:35 | 2017-09-05T02:46:01 | PLSQL | WINDOWS-1252 | Java | false | false | 2,519 | java | package kz.servlet_zy;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import Dao.selectUsers;
public class servlet_11zys extends HttpServlet {
/**
* Constructor of the object.
*/
public servlet_11zys() {
super();
}
/**
* Destruction of the servlet. <br>
*/
public void destroy() {
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}
/**
* The doGet method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to get.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=utf-8");
PrintWriter out = response.getWriter();
int id=Integer.parseInt(request.getParameter("id"));
System.out.println(id);
int delete = selectUsers.delete(id);
if(delete>0){
out.print("³É¹¦");
}else{
out.print("ʧ°Ü");
}
out.flush();
out.close();
}
/**
* The doPost method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out
.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println(" <HEAD><TITLE>A Servlet</TITLE></HEAD>");
out.println(" <BODY>");
out.print(" This is ");
out.print(this.getClass());
out.println(", using the POST method");
out.println(" </BODY>");
out.println("</HTML>");
out.flush();
out.close();
}
/**
* Initialization of the servlet. <br>
*
* @throws ServletException if an error occurs
*/
public void init() throws ServletException {
// Put your code here
}
}
| [
"[email protected]"
] | |
6b973305f9fb204613ada45ce80712fef5d31718 | 37d02168c691caac0228144213d03dbbb6e6dabd | /src/main/java/com/example/demo/TOptional/TOptional.java | 20a42a88605e9a3cb787f2cd5046f6c637e31f2f | [] | no_license | zhaiyujia/Demo | 12885225a350b097fdb1a9bd8e3e87a67b1d6fdb | c1ecce7a6c4589dbf0a04a0386ffc20d2e1f8736 | refs/heads/master | 2020-04-03T20:34:18.627941 | 2018-10-31T11:53:08 | 2018-10-31T11:53:08 | 155,549,488 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,720 | java | package com.example.demo.TOptional;
import com.google.common.collect.Lists;
import org.springframework.util.Assert;
import javax.validation.constraints.AssertTrue;
import java.util.List;
import java.util.Optional;
/**
* @author zhai
* @date 2018/9/12 19:55
*/
public class TOptional {
public static void main(String[] args) {
// Optional<User> emp = Optional.empty();
// System.out.println(emp.get());
// User user = null;
// Optional<User> emp = Optional.of(user);
// System.out.println(emp.get());
// User user = new User(2);
// Optional<User> emp1 = Optional.ofNullable(user);
// System.out.println(emp1.isPresent());
// System.out.println(emp1.ifPresent(user1 -> user.getId()));
// System.out.println(emp1.get().getId());
// User user1 = Optional.ofNullable(retUser()).orElse(user);
// System.out.println(user1.getId());
// User user = null;
// User result = Optional.ofNullable(user).orElse(retUser());
//
// User result2 = Optional.ofNullable(user).orElseGet(() -> retUser());
// User user = retUser();
// Integer id = Optional.ofNullable(user)
// .map(user1 -> user1.getId()).orElse(2);
// System.out.println(id);
// User u = new User(1);
// Optional<User> user = Optional.ofNullable(retUser())
// .filter(user1 -> user1.getId()!=0 && user1.getId()!=null);
// System.out.println(user.get().getId());
// UserO user = new UserO("[email protected]", "1234");
List<User> list = Lists.newArrayList();
}
public static User retUser(){
User user = new User(1);
return user;
}
}
| [
"[email protected]"
] | |
16db1c2da803c0908d398cddd5424f727a53900e | 916b918bcf49deb59ec189d9c96e433d5e306fe3 | /java/demo/src/main/java/com/greatsec/demo/modules/cms/dao/CommentDao.java | d9940d40f226f761050b29df15669f89a7b19869 | [
"MIT"
] | permissive | greatsec/newbie-training | 63eeef1e494aa94fead7f3d724c07074f2855b44 | c406d63ef3475a0f90d44ef25f09f593007eea40 | refs/heads/master | 2021-01-20T17:15:34.559772 | 2016-07-04T09:02:59 | 2016-07-04T09:02:59 | 62,373,182 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 967 | java |
package com.greatsec.demo.modules.cms.dao;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import com.greatsec.demo.common.persistence.BaseDao;
import com.greatsec.demo.common.persistence.BaseDaoImpl;
import com.greatsec.demo.modules.cms.entity.Comment;
/**
* 评论DAO接口
* @author bmwm.cn
* @version 2013-01-15
*/
public interface CommentDao extends CommentDaoCustom, CrudRepository<Comment, Long> {
@Modifying
@Query("update Comment set delFlag=?2 where id = ?1")
public int updateDelFlag(Long id, String status);
}
/**
* DAO自定义接口
* @author bmwm.cn
*/
interface CommentDaoCustom extends BaseDao<Comment> {
}
/**
* DAO自定义接口实现
* @author bmwm.cn
*/
@Repository
class CommentDaoImpl extends BaseDaoImpl<Comment> implements CommentDaoCustom {
}
| [
"[email protected]"
] | |
0003f3842a9f4e0b35aa2c0dbd2d61a11de3ef37 | f38abeabc68bcc469ee82167e3016328066b3923 | /src/day19_01_filter/FilterDemo03.java | 73e85dfd02f17b60d49be8e654681f86e10901fd | [] | no_license | Leader0721/JavaStudyDemo | 673207f46efe0ba5fd8ad2092e8839d324fc7dda | 55708d2969b99127c6df3295be3b890673193fce | refs/heads/master | 2021-05-06T17:20:30.155192 | 2017-11-23T14:56:13 | 2017-11-23T14:56:13 | 111,821,897 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 646 | java | package day19_01_filter;
import javax.servlet.*;
import java.io.IOException;
/**
* Created by 83731 on 2017/11/02.
*/
public class FilterDemo03 implements Filter {
@Override
public void init(FilterConfig filterConfig) throws ServletException {
}
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
System.out.println("FilterDemo03前");
filterChain.doFilter(servletRequest, servletResponse);
System.out.println("FilterDemo03后");
}
@Override
public void destroy() {
}
}
| [
"[email protected]"
] | |
4b9a40ba734af1eb27c1dbf7b812c081ac94e042 | bf08c946900c8a99da0f426479ba1b5ab0103cd0 | /crowdSpringBootDemo/pro03-spring-boot-mybatis/src/main/java/com/atguigu/spring/boot/SpringBootMainClass.java | 8b6a1d74c6911422fb8e725727ca9e85322284fc | [] | no_license | xiaoailiang/springCrowdProject | c4313c2e16cd4d36f7ef63e6ec3d1be3f64374db | ab0932d201cf4e99232e9f6419b60700e1c905dc | refs/heads/main | 2023-07-15T22:51:56.045128 | 2021-08-27T02:12:16 | 2021-08-27T02:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 431 | java | package com.atguigu.spring.boot;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@MapperScan("com.atguigu.spring.boot.mapper")
@SpringBootApplication
public class SpringBootMainClass {
public static void main(String[] args) {
SpringApplication.run(SpringBootMainClass.class, args);
}
}
| [
"[email protected]"
] | |
434847909c04a13338ba5c56c940af020df8bc36 | e9ba0cb5188329bf9e97c39d349e193a88235e57 | /app/src/main/java/com/zhishen/aixuexue/manager/IMAction.java | 3e5c61e5b776d5d133db8708bd8b30f7bcfa5494 | [] | no_license | GoogleJ/laji | c64801d24b73de3fe4de04f5f2261c2c260b326e | ebaa18b84fb928d06883979d575d2c006b2fa29e | refs/heads/master | 2020-04-06T14:42:00.556562 | 2019-03-12T14:09:10 | 2019-03-12T14:09:10 | 157,550,077 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,089 | java | package com.zhishen.aixuexue.manager;
/**
* Created by huangfangyi on 2017/2/10.
* qq 84543217
*/
public class IMAction {
public static final String ACTION_MESSAGE_READ = "action_message_read";
public static final String ACTION_INVITE_MESSAGE = "action_invite_message";
public static final String ACTION_NEW_MESSAGE = "action_new_message";
public static final String ACTION_REMOVED_FROM_GROUP = "action_removed_from_group";
public static final String ACTION_CONTACT_CHANAGED = "action_contact_changed";
public static final String ACTION_CONFLICT = "action_conflict";
public static final String ACTION_CONNECTION_CHANAGED = "action_connection_changed";
//消息撤回
public static final String ACTION_MESSAGE_WITHDROW = "action_message_withdrow";
//转发消息
public static final String ACTION_MESSAGE_FORWORD = "action_message_forword";
//清空消息
public static final String ACTION_MESSAGE_EMPTY = "ACTION_MESSAGE_EMPTY";
//删除好友通知
public static final String CMD_DELETE_FRIEND = "DELETE_FRIEND";
//资料更新的通知
public static final String ACTION_UPDATE_INFO = "ACTION_UPDATE_INFO";
//已读回执
public static final String ACTION_MSG_ASKED = "ACTION_MSG_ASKED";
public static final String ACTION_MOMENTS = "ACTION_MOMENTS";
//朋友圈消息已读
public static final String ACTION_MOMENTS_READ = "ACTION_MOMENTS_READ";
//刷新所有列表
public static final String ACTION_REFRESH_ALL_LIST = "ACTION_REFRESH_ALL_LIST";
//解除禁言
public static final String ACTION_HAS_CANCLED_NO_TALK = "ACTION_HAS_CANCLED_NO_TALK";
//被禁言
public static final String ACTION_HAS_NO_TALK = "ACTION_HAS_NO_TALK";
//定位的经纬度
public static final String ACTION_LOCATION_HAS = "ACTION_LOCATION_HAS";
// 定位失败
public static final String ACTION_LOCATION_FAILED = "ACTION_LOCATION_FAILED";
// 微信,支付宝支付的Action
public static final String PAY_BY_WECHAT_RESULT = "PAY_BY_WECHAT_RESULT";
public static final String PAY_BY_ALIPAY_RESULT = "PAY_BY_ALIPAY_RESULT";
//设置支付密码成功
public static final String SET_PAY_PWD_SUCCESS = "SET_PAY_PWD_SUCCESS";
//红包已领取
public static final String RP_IS_HAS_OPEND = "RP_IS_HAS_OPEND";
// 二维码已付款
public static final String QRCODE_IS_PAYED = "QRCODE_IS_PAYED";
//微信授权
public static final String ACTION_WECHAT_AUTH = "ACTION_WECHAT_AUTH";
//删除了好友刷新通知
public static final String REFRESH_CONTACTS_LIST = "REFRESH_CONTACTS_LIST";
//位置变化的通知
public static final String LOCATION_CHANGE_ACTION = "LOCATION_CHANGE_ACTION";
// 附近圈的消息
public static final String ACTION_MOMENTS_NEAR_BY = "ACTION_MOMENTS_NEAR_BY";
//附近圈消息已读
public static final String ACTION_MOMENTS_READ_NRAR_BY = "ACTION_MOMENTS_READ_NRAR_BY";
//直播退出的通知
public static final String ACTION_EXIT_LIVE = "ACTION_EXIT_LIVE";
}
| [
"[email protected]"
] | |
84eb777bdf5cde609dd7a00b6409fdd184594b91 | 435afa9f60e0b35d5d5b547b96655e0c1eb3e323 | /maven1/src/main/java/Candies.java | 9b34a0be3842a2bc749ee620341195c40f814d1e | [] | no_license | BindhuBhargavi/maven1 | 292e640349115432dd55e1cef51275785f9b36bd | 96fe976f41396c19d055ed3286a4cacf873ec222 | refs/heads/master | 2020-12-29T15:44:56.625287 | 2020-02-06T10:05:27 | 2020-02-06T10:05:27 | 238,657,811 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 323 | java | import java.util.Arrays;
public class Candies {
public void sort1(float[] a)
{
Arrays.sort(a);
System.out.printf("Modified arr[] : %s/n",
Arrays.toString(a));
}
}
class jellys extends Candies
{
public void printfun()
{
System.out.println("jellys");
}
}
| [
"[email protected]"
] | |
808681cc6dae0aa91a4b4d5195506eddfff3750a | 8067319fe6eb2183b249c3e6e387393352836847 | /java/app/src/main/java/ru/menu4me/extensions/notifier/ServerResult.java | b332723263f50ef54c913696cb053709cce0126f | [] | no_license | dmitry-kuzmenchuk/air-ane-notifier | 8baf4ba4a3dbdaa10006d0ae55e2593239b0db09 | c121154491bd87c558648e4ed4bba396b1d60d05 | refs/heads/master | 2020-03-28T10:54:12.652869 | 2018-09-10T13:19:43 | 2018-09-10T13:19:43 | 148,157,169 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 250 | java | package ru.menu4me.extensions.notifier;
public class ServerResult {
public int result = 0;
public String resultCode = null;
public ServerResultData data = null;
public ServerResult() {
data = new ServerResultData();
}
}
| [
"[email protected]"
] | |
26aac3c0b896fee65122446b959c12e089417c31 | 7d616cfaa3a73f9537a228849cbe407d7319887d | /src/com/Jarson/Array/ArrayDemo01.java | 94598e80962308574fe599485536a89122a761bb | [] | no_license | codeJarson/ArrayList01 | 74959e68bfa91cd9be73edf2638cb2f3eba88104 | d5bffc2d085a2b0aadd1813f1099f323ccf5931c | refs/heads/master | 2020-05-23T04:27:06.361509 | 2019-05-18T03:26:25 | 2019-05-18T03:26:25 | 186,629,404 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 784 | java | package com.Jarson.Array;
/**
* @author shkstart
* @create 2019-05-14 16:31
*/
//数组的定义
public class ArrayDemo01 {
public static void main(String[] args){
//对象数组,该长度一开始就是固定的,之后不能改变
Student[] students = {new Student(1,"张三丰"),
new Student(2,"张翠山"),
new Student(3,"张无忌")
};
//注:引用类型的对象数组有地址,因当中的toString方法
//如果我们想输出里面的值,则重写toString方法
for (int i = 0; i < students.length; i++) {
System.out.println(students[i]);
}
}
}
| [
"[email protected]"
] | |
2b40a4ae47ba747fa256f8f8460fc09a6f0df079 | 751b4b04b41d7a601ce42c9f3ad9537df178c599 | /Config/AbstractClasses/AbstractHLSM.java | a2658cd504b8d41bfc29b5f60e24d5c8765e3559 | [
"MIT"
] | permissive | MichaelMGonzalez/JFlapToCode | 6d05ff8893338a2904ba4031fd067289e6a6f1b2 | 482fc0dc16633d6af343bfe028a2afb3dbf204e8 | refs/heads/master | 2020-05-21T20:35:39.645921 | 2017-05-07T05:08:11 | 2017-05-07T05:08:11 | 61,017,381 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 511 | java | import java.util.Calendar;
public abstract class AbstractHLSM extends Thread {
protected long delayRate = 100;
protected abstract void runHLSM( );
public long transitionedAt = 0;
public void run() {
runHLSM( );
}
protected void pause(long delayRate) {
try {
Thread.sleep( delayRate );
} catch (InterruptedException e) {
e.printStackTrace();
}
}
protected long timeInState() {
return Calendar.getInstance().getTimeInMillis() - transitionedAt;
}
} | [
"[email protected]"
] | |
0744ef6e04c9a8797346b55621f40cf3a9ec38b5 | 1421cc7426f292c66fbbd9905296f59ab98ea2d3 | /169.多数元素.java | d1c0349b47a9ad4e54ec925b72641102a3bd720d | [] | no_license | djxf/LeetCode_djxf | 06ab70a4fcf03d5c72271ff5d4ca086026e78096 | a4731757d1f3354959dfaea265e25ef930202355 | refs/heads/master | 2021-06-27T03:32:41.413396 | 2020-11-14T14:04:36 | 2020-11-14T14:04:36 | 183,444,252 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,043 | java | import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Map.Entry;
/*
* @lc app=leetcode.cn id=169 lang=java
*
* [169] 多数元素
*/
// @lc code=start
class Solution {
public int majorityElement(int[] nums) {
// Hash表
HashMap<Integer,Integer> hashMap = new HashMap<Integer,Integer>();
for(int i=0;i<nums.length;i++){
if(hashMap.containsKey(nums[i])){
hashMap.put(nums[i], (Integer)hashMap.get(nums[i])+1);
}else{
hashMap.put(nums[i], 1);
}
}
Map.Entry<Integer,Integer> entry = null;
for(Map.Entry<Integer,Integer> entry2 : hashMap.entrySet()){
if(entry == null || entry2.getValue() > entry.getValue()){
entry = entry2;
}
}
return entry.getKey();
// Arrays.sort(nums);
// return nums[nums.length/2];
}
}
// @lc code=end
| [
"1763380121.qq.com"
] | 1763380121.qq.com |
7ba62e6630a2842091045797b94ae1866d30c103 | be1d5d5b210d49d95b445745d378d662daeb8d9b | /src/com/myProjects/Cell.java | 442fc2113cc9cc5e49bd9e9fcbce6ce84c20aec7 | [] | no_license | seeker1994/Chess | 4e02dc443889f30786daeb84f55faaa73835a177 | fdc3ae7f384db3ac2ab8e3a8e05ad1ea2808bc30 | refs/heads/master | 2022-11-20T09:23:30.352922 | 2020-07-23T19:01:22 | 2020-07-23T19:01:22 | 280,737,474 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 803 | java | package com.myProjects;
public class Cell {
int row, column;
public Cell(int row, int column){
this.row= row;
this.column= column;
}
public int getRow() {
return row;
}
public void setRow(int row) {
this.row = row;
}
public int getColumn() {
return column;
}
public void setColumn(int column) {
this.column = column;
}
public Cell nextCell(int row, int column){
int newRow = this.row+row;
int newCol = this.column+column;
if(newRow>=1 && newRow<=8 && newCol>=1 && newCol<=8)
return new Cell(newRow, newCol);
return null;
}
public String boardRep(){
char rowName= (char)(this.row-1+(int)'A');
return rowName+""+this.column;
}
}
| [
"[email protected]"
] | |
2bfc503f0eeacd1fcd12004cab4cf7743bf370ae | c06e5a85421ade4a625a22f01de61e88c735bcc2 | /0704AM/src/com/iss/util/PropertiesUtil.java | 0fe45bade4501c11c46dc5a8402d640e9fd60ce6 | [] | no_license | Lance-jie/2017shixun | 56f84f9b0b831e93a7a449fa254d4e585c8b1cf0 | fa5628b1beef89cde52ef9c53ca46263a6053335 | refs/heads/master | 2020-03-24T10:20:12.350408 | 2018-07-28T08:23:07 | 2018-07-28T08:23:07 | 142,642,247 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 501 | java | package com.iss.util;
import java.io.InputStream;
import java.util.Properties;
public class PropertiesUtil {
public static String getValue(String key) {
String str = "";
try {
Properties prop = new Properties();
InputStream in =new PropertiesUtil().getClass().getResourceAsStream("./myconfig.properties");
prop.load(in);
str = (String)prop.getProperty(key);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return str;
}
}
| [
"[email protected]"
] | |
ffb6b26e082503a6619212ddc064a352939cb0a0 | 9a8e21683bd5c1cc32fb1e35faf6066c71502d5a | /src/main/java/com/cursospring/api/repository/ClienteRepository.java | 57b1236e728f162d7d410e4c0884ba31b8d2dfc3 | [] | no_license | PedroHenriqueBraz/api-springboot | 8d8f65cffce88794da4da15f74010f34800516c8 | 881288b42691bdecc75e8539ca8fa65e7772a7b3 | refs/heads/master | 2022-12-09T13:42:37.340588 | 2020-09-11T15:00:53 | 2020-09-11T15:00:53 | 294,724,431 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 429 | java | package com.cursospring.api.repository;
import com.cursospring.api.domain.Cliente;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
@Repository
public interface ClienteRepository extends JpaRepository<Cliente, Integer> {
@Transactional(readOnly = true)
Cliente findByEmail(String email);
}
| [
"[email protected]"
] | |
d6527e996255c6a9c4a49abca559bc621c413074 | 5e7782eff03f1566979e9f6bfd62179ae16963d1 | /Survey/src/com/testing/survey/Student.java | 4c40fcd361cb63a41952ec522334daba61585d2f | [] | no_license | saikrupa/Survay | a0c4637cb2a2f42f50f99cde02b5059e4df801b9 | 2a6461f2123176efe49dab50f1e189cf200efde2 | refs/heads/master | 2021-01-10T03:55:27.664106 | 2015-12-18T01:24:08 | 2015-12-18T01:24:08 | 48,207,173 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,814 | java | package com.testing.survey;
import java.io.Serializable;
import android.util.Log;
public class Student implements Serializable {
private static final long serialVersionUID = 1L;
private String[] Question=new String[7];
private static int QuestionNumber=0;
private static int QuestionTelugu=1;
private static int Answer1=2;
private static int Answer2=3;
private static int Answer3=4;
private static int Answer4=5;
private static int Answer5=6;
private int radioButtonId=0;
private boolean isSelected;
private String final_answer;
public Student() {
}
public Student(String[] questionArray) {
Question=questionArray;
Log.v("string", questionArray[0]);
Log.v("question", Question[0]);
}
public String getQuestionNumber() {
return Question[QuestionNumber];
}
public String getQuestion() {
return Question[QuestionTelugu];
}
public String getAnswer1() {
return Question[Answer1];
}
public String getAnswer2() {
return Question[Answer2];
}
public String getAnswer3() {
return Question[Answer3];
}
public String getAnswer4() {
return Question[Answer4];
}
public String getAnswer5() {
return Question[Answer5];
}
public void putQuestionNumber(String value) {
this.Question[QuestionNumber]=value;
}
public void putQuestion(String value) {
this.Question[QuestionTelugu]=value;
}
public void putAnswer1(String value) {
this.Question[Answer1]=value;
}
public void putAnswer2(String value) {
this.Question[Answer2]=value;
}
public void putAnswer3(String value) {
this.Question[Answer3]=value;
}
public void putAnswer4(String value) {
this.Question[Answer4]=value;
}
public void putAnswer5(String value) {
this.Question[Answer5]=value;
}
public boolean isSelected() {
return isSelected;
}
public void setSelected(boolean isSelected) {
this.isSelected = isSelected;
}
public void setSelectedRadioButtonId(int radioButtonId) {
this.radioButtonId=radioButtonId;
}
public int getSelectedRadioButtonId() {
return radioButtonId;
}
public String getFinalAnswer(){
return final_answer;
}
public void setFinalAnswer(String final_answer){
this.final_answer = final_answer;
}
}
| [
"[email protected]"
] | |
d8d59cfce2bfd6b9e5fc65a3e935697bff813f2f | ea98f0adaf2d3a44e3a7958ae06b097221a166fd | /src/main/java/com/guinardsolutions/mp/endpoint/CompetenceEndpoint.java | 85b76ef9d2c4193240ca226da9d760a3f8288a8e | [] | no_license | guinardpaul/MP-SOAP-WS | 5ff04706de4ff4b40e5fc5c0579e415a9e727f08 | 7490a03899d11fd12ae6ae7170c0a00ef0fab210 | refs/heads/master | 2020-03-13T15:00:06.088798 | 2018-04-26T14:46:53 | 2018-04-26T14:46:53 | 131,169,007 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,800 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.guinardsolutions.mp.endpoint;
import com.guinardsolutions.mp.entities.Competence;
import com.guinardsolutions.mp.gs_ws.AddCompetenceRequest;
import com.guinardsolutions.mp.gs_ws.AddCompetenceResponse;
import com.guinardsolutions.mp.gs_ws.CompetenceInfo;
import com.guinardsolutions.mp.gs_ws.DeleteCompetenceRequest;
import com.guinardsolutions.mp.gs_ws.DeleteCompetenceResponse;
import com.guinardsolutions.mp.gs_ws.GetAllCompetencesByCycleRequest;
import com.guinardsolutions.mp.gs_ws.GetAllCompetencesByCycleResponse;
import com.guinardsolutions.mp.gs_ws.GetAllCompetencesByDomaineRequest;
import com.guinardsolutions.mp.gs_ws.GetAllCompetencesByDomaineResponse;
import com.guinardsolutions.mp.gs_ws.GetAllCompetencesRequest;
import com.guinardsolutions.mp.gs_ws.GetAllCompetencesResponse;
import com.guinardsolutions.mp.gs_ws.GetCompetenceByIdRequest;
import com.guinardsolutions.mp.gs_ws.GetCompetenceByIdResponse;
import com.guinardsolutions.mp.gs_ws.ServiceStatus;
import com.guinardsolutions.mp.gs_ws.UpdateCompetenceRequest;
import com.guinardsolutions.mp.gs_ws.UpdateCompetenceResponse;
import com.guinardsolutions.mp.service.CompetenceService;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.BeanUtils;
import org.springframework.http.HttpStatus;
import org.springframework.ws.server.endpoint.annotation.Endpoint;
import org.springframework.ws.server.endpoint.annotation.PayloadRoot;
import org.springframework.ws.server.endpoint.annotation.RequestPayload;
import org.springframework.ws.server.endpoint.annotation.ResponsePayload;
/**
*
* @author Paul
*/
@Endpoint
public class CompetenceEndpoint {
private static final String NAMESPACE_URI = "http://guinardsolutions.com/mp/gs_ws";
private CompetenceService competenceService;
public CompetenceEndpoint(CompetenceService competenceService) {
this.competenceService = competenceService;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "getAllCompetencesRequest")
@ResponsePayload
public GetAllCompetencesResponse getAllCompetences(@RequestPayload GetAllCompetencesRequest request) {
GetAllCompetencesResponse response = new GetAllCompetencesResponse();
List<CompetenceInfo> competenceInfos = new ArrayList<>();
List<Competence> competences = competenceService.getAllCompetences();
for (Competence c : competences) {
CompetenceInfo ci = new CompetenceInfo();
BeanUtils.copyProperties(c, ci);
competenceInfos.add(ci);
}
response.getCompetenceInfos().addAll(competenceInfos);
return response;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "getAllCompetencesByDomaineRequest")
@ResponsePayload
public GetAllCompetencesByDomaineResponse getAllCompetencesByDomaine(@RequestPayload GetAllCompetencesByDomaineRequest request) {
GetAllCompetencesByDomaineResponse response = new GetAllCompetencesByDomaineResponse();
List<CompetenceInfo> competenceInfos = new ArrayList<>();
List<Competence> competences = competenceService.getAllCompetencesByDomaine(request.getDomaineId());
for (Competence c : competences) {
CompetenceInfo ci = new CompetenceInfo();
BeanUtils.copyProperties(c, ci);
competenceInfos.add(ci);
}
response.getCompetenceInfos().addAll(competenceInfos);
return response;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "getAllCompetencesByCycleRequest")
@ResponsePayload
public GetAllCompetencesByCycleResponse getAllCompetencesByCycle(@RequestPayload GetAllCompetencesByCycleRequest request) {
GetAllCompetencesByCycleResponse response = new GetAllCompetencesByCycleResponse();
List<CompetenceInfo> competenceInfos = new ArrayList<>();
List<Competence> competences = competenceService.getAllCompetencesByCycle(request.getCycle());
for (Competence c : competences) {
CompetenceInfo ci = new CompetenceInfo();
BeanUtils.copyProperties(c, ci);
competenceInfos.add(ci);
}
response.getCompetenceInfos().addAll(competenceInfos);
return response;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "getCompetenceByIdRequest")
@ResponsePayload
public GetCompetenceByIdResponse getOneCompetence(@RequestPayload GetCompetenceByIdRequest request) {
GetCompetenceByIdResponse response = new GetCompetenceByIdResponse();
CompetenceInfo competenceInfo = new CompetenceInfo();
Competence competence = competenceService.getOneCompetence(request.getCompetenceId());
BeanUtils.copyProperties(competence, competenceInfo);
response.setCompetenceInfo(competenceInfo);
return response;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "addCompetenceRequest")
@ResponsePayload
public AddCompetenceResponse addCompetences(@RequestPayload AddCompetenceRequest request) {
AddCompetenceResponse response = new AddCompetenceResponse();
CompetenceInfo competenceInfo = new CompetenceInfo();
competenceInfo.setRef(request.getRef());
competenceInfo.setDescription(request.getDescription());
competenceInfo.setCycle(request.getCycle());
competenceInfo.setAbstractDomaine(request.getAbstractDomaine());
Competence competence = new Competence();
BeanUtils.copyProperties(competenceInfo, competence);
competence = competenceService.saveCompetence(competence);
BeanUtils.copyProperties(competence, competenceInfo);
ServiceStatus ss = new ServiceStatus();
ss.setStatusCode(Integer.toString(HttpStatus.OK.value()));
ss.setMessage("Competence saved successfully");
response.setServiceStatus(ss);
response.setCompetenceInfo(competenceInfo);
return response;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "updateCompetenceRequest")
@ResponsePayload
public UpdateCompetenceResponse updateCompetences(@RequestPayload UpdateCompetenceRequest request) {
UpdateCompetenceResponse response = new UpdateCompetenceResponse();
CompetenceInfo competenceInfo = request.getCompetenceInfo();
Competence competence = new Competence();
BeanUtils.copyProperties(competenceInfo, competence);
competence = competenceService.updateCompetence(competence);
BeanUtils.copyProperties(competence, competenceInfo);
ServiceStatus ss = new ServiceStatus();
ss.setStatusCode(Integer.toString(HttpStatus.OK.value()));
ss.setMessage("Competence updated successfully");
response.setServiceStatus(ss);
response.setCompetenceInfo(competenceInfo);
return response;
}
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "deleteCompetenceRequest")
@ResponsePayload
public DeleteCompetenceResponse deleteCompetences(@RequestPayload DeleteCompetenceRequest request) {
DeleteCompetenceResponse response = new DeleteCompetenceResponse();
competenceService.deleteCompetence(request.getCompetenceId());
ServiceStatus ss = new ServiceStatus();
ss.setStatusCode(Integer.toString(HttpStatus.OK.value()));
ss.setMessage("Competence deleted successfully");
response.setServiceStatus(ss);
return response;
}
}
| [
"[email protected]"
] | |
2c998eff678637a95a61eebc297e32eaf8f4b786 | 9ce1f60aa434d712ed1e1038d5fbf88fcd0b63cb | /Mage.Sets/src/mage/cards/c/CoalitionFlag.java | 20080703141b772e5e7228bd12fbd8a312760d20 | [] | no_license | exmage/mage | b238ab44a65345191e7997a0117f1069bf815db9 | f3e6f7198788968d784ffa28818af3c6002f4383 | refs/heads/master | 2020-12-30T14:12:52.513975 | 2017-05-14T22:51:46 | 2017-05-14T22:51:46 | 91,289,923 | 0 | 0 | null | 2017-05-15T03:06:56 | 2017-05-15T03:06:56 | null | UTF-8 | Java | false | false | 3,671 | java | /*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 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 OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.cards.c;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.common.AttachEffect;
import mage.abilities.effects.common.continuous.SetCardSubtypeAttachedEffect;
import mage.abilities.effects.common.ruleModifying.TargetsHaveToTargetPermanentIfAbleEffect;
import mage.abilities.keyword.EnchantAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.filter.FilterPermanent;
import mage.target.TargetPermanent;
import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
/**
*
* @author LevelX2
*/
public class CoalitionFlag extends CardImpl {
public CoalitionFlag(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{W}");
this.subtype.add("Aura");
// Enchant creature you control
TargetPermanent auraTarget = new TargetCreaturePermanent();
this.getSpellAbility().addTarget(auraTarget);
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
// Enchanted creature is a Flagbearer.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SetCardSubtypeAttachedEffect("Flagbearer", Duration.WhileOnBattlefield, AttachmentType.AURA)));
// While choosing targets as part of casting a spell or activating an ability, your opponents must choose at least one Flagbearer on the battlefield if able.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new TargetsHaveToTargetPermanentIfAbleEffect(new FilterPermanent("Flagbearer", "one Flagbearer"))));
}
public CoalitionFlag(final CoalitionFlag card) {
super(card);
}
@Override
public CoalitionFlag copy() {
return new CoalitionFlag(this);
}
}
| [
"fireshoes@fireshoes-PC"
] | fireshoes@fireshoes-PC |
b453648bf5756c6f387d5d0d7451661912037f98 | 09d0ddd512472a10bab82c912b66cbb13113fcbf | /TestApplications/privacy-friendly-netmonitor-2.0/DecompiledCode/Fernflower/src/main/java/com/github/mikephil/charting/components/Legend.java | e77ad0975728f461952a027489e49e2679572592 | [] | no_license | sgros/activity_flow_plugin | bde2de3745d95e8097c053795c9e990c829a88f4 | 9e59f8b3adacf078946990db9c58f4965a5ccb48 | refs/heads/master | 2020-06-19T02:39:13.865609 | 2019-07-08T20:17:28 | 2019-07-08T20:17:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 25,224 | java | package com.github.mikephil.charting.components;
import android.graphics.DashPathEffect;
import android.graphics.Paint;
import com.github.mikephil.charting.utils.FSize;
import com.github.mikephil.charting.utils.Utils;
import com.github.mikephil.charting.utils.ViewPortHandler;
import java.util.ArrayList;
import java.util.List;
public class Legend extends ComponentBase {
private List mCalculatedLabelBreakPoints;
private List mCalculatedLabelSizes;
private List mCalculatedLineSizes;
private Legend.LegendDirection mDirection;
private boolean mDrawInside;
private LegendEntry[] mEntries;
private LegendEntry[] mExtraEntries;
private DashPathEffect mFormLineDashEffect;
private float mFormLineWidth;
private float mFormSize;
private float mFormToTextSpace;
private Legend.LegendHorizontalAlignment mHorizontalAlignment;
private boolean mIsLegendCustom;
private float mMaxSizePercent;
public float mNeededHeight;
public float mNeededWidth;
private Legend.LegendOrientation mOrientation;
private Legend.LegendForm mShape;
private float mStackSpace;
public float mTextHeightMax;
public float mTextWidthMax;
private Legend.LegendVerticalAlignment mVerticalAlignment;
private boolean mWordWrapEnabled;
private float mXEntrySpace;
private float mYEntrySpace;
public Legend() {
this.mEntries = new LegendEntry[0];
this.mIsLegendCustom = false;
this.mHorizontalAlignment = Legend.LegendHorizontalAlignment.LEFT;
this.mVerticalAlignment = Legend.LegendVerticalAlignment.BOTTOM;
this.mOrientation = Legend.LegendOrientation.HORIZONTAL;
this.mDrawInside = false;
this.mDirection = Legend.LegendDirection.LEFT_TO_RIGHT;
this.mShape = Legend.LegendForm.SQUARE;
this.mFormSize = 8.0F;
this.mFormLineWidth = 3.0F;
this.mFormLineDashEffect = null;
this.mXEntrySpace = 6.0F;
this.mYEntrySpace = 0.0F;
this.mFormToTextSpace = 5.0F;
this.mStackSpace = 3.0F;
this.mMaxSizePercent = 0.95F;
this.mNeededWidth = 0.0F;
this.mNeededHeight = 0.0F;
this.mTextHeightMax = 0.0F;
this.mTextWidthMax = 0.0F;
this.mWordWrapEnabled = false;
this.mCalculatedLabelSizes = new ArrayList(16);
this.mCalculatedLabelBreakPoints = new ArrayList(16);
this.mCalculatedLineSizes = new ArrayList(16);
this.mTextSize = Utils.convertDpToPixel(10.0F);
this.mXOffset = Utils.convertDpToPixel(5.0F);
this.mYOffset = Utils.convertDpToPixel(3.0F);
}
@Deprecated
public Legend(List var1, List var2) {
this(Utils.convertIntegers(var1), Utils.convertStrings(var2));
}
@Deprecated
public Legend(int[] var1, String[] var2) {
this();
if (var1 != null && var2 != null) {
if (var1.length != var2.length) {
throw new IllegalArgumentException("colors array and labels array need to be of same size");
} else {
ArrayList var3 = new ArrayList();
for(int var4 = 0; var4 < Math.min(var1.length, var2.length); ++var4) {
LegendEntry var5 = new LegendEntry();
var5.formColor = var1[var4];
var5.label = var2[var4];
if (var5.formColor == 1122868) {
var5.form = Legend.LegendForm.NONE;
} else if (var5.formColor == 1122867 || var5.formColor == 0) {
var5.form = Legend.LegendForm.EMPTY;
}
var3.add(var5);
}
this.mEntries = (LegendEntry[])var3.toArray(new LegendEntry[var3.size()]);
}
} else {
throw new IllegalArgumentException("colors array or labels array is NULL");
}
}
public Legend(LegendEntry[] var1) {
this();
if (var1 == null) {
throw new IllegalArgumentException("entries array is NULL");
} else {
this.mEntries = var1;
}
}
public void calculateDimensions(Paint var1, ViewPortHandler var2) {
float var3 = Utils.convertDpToPixel(this.mFormSize);
float var4 = Utils.convertDpToPixel(this.mStackSpace);
float var5 = Utils.convertDpToPixel(this.mFormToTextSpace);
float var6 = Utils.convertDpToPixel(this.mXEntrySpace);
float var7 = Utils.convertDpToPixel(this.mYEntrySpace);
boolean var8 = this.mWordWrapEnabled;
LegendEntry[] var9 = this.mEntries;
int var10 = var9.length;
this.mTextWidthMax = this.getMaximumEntryWidth(var1);
this.mTextHeightMax = this.getMaximumEntryHeight(var1);
float var11;
float var12;
float var17;
float var18;
float var19;
float var21;
int var30;
switch(this.mOrientation) {
case VERTICAL:
var11 = Utils.getLineHeight(var1);
var30 = 0;
var21 = 0.0F;
var6 = 0.0F;
boolean var28 = false;
for(var17 = 0.0F; var30 < var10; var17 = var18) {
LegendEntry var24 = var9[var30];
boolean var29;
if (var24.form != Legend.LegendForm.NONE) {
var29 = true;
} else {
var29 = false;
}
if (Float.isNaN(var24.formSize)) {
var19 = var3;
} else {
var19 = Utils.convertDpToPixel(var24.formSize);
}
String var25 = var24.label;
if (!var28) {
var17 = 0.0F;
}
var12 = var17;
if (var29) {
var18 = var17;
if (var28) {
var18 = var17 + var4;
}
var12 = var18 + var19;
}
if (var25 == null) {
var17 = var12 + var19;
var18 = var17;
if (var30 < var10 - 1) {
var18 = var17 + var4;
}
var28 = true;
} else {
if (var29 && !var28) {
var18 = var12 + var5;
var19 = var21;
var17 = var6;
var29 = var28;
} else {
var19 = var21;
var17 = var6;
var29 = var28;
var18 = var12;
if (var28) {
var19 = Math.max(var21, var12);
var17 = var6 + var11 + var7;
var29 = false;
var18 = 0.0F;
}
}
var12 = var18 + (float)Utils.calcTextWidth(var1, var25);
var21 = var19;
var6 = var17;
var28 = var29;
var18 = var12;
if (var30 < var10 - 1) {
var6 = var17 + var11 + var7;
var21 = var19;
var28 = var29;
var18 = var12;
}
}
var21 = Math.max(var21, var18);
++var30;
}
this.mNeededWidth = var21;
this.mNeededHeight = var6;
break;
case HORIZONTAL:
var11 = Utils.getLineHeight(var1);
var12 = Utils.getLineSpacing(var1) + var7;
float var13 = var2.contentWidth();
float var14 = this.mMaxSizePercent;
this.mCalculatedLabelBreakPoints.clear();
this.mCalculatedLabelSizes.clear();
this.mCalculatedLineSizes.clear();
int var15 = 0;
int var16 = -1;
var17 = 0.0F;
var7 = 0.0F;
var18 = 0.0F;
LegendEntry[] var23 = var9;
for(var19 = var3; var15 < var10; var7 = var21) {
LegendEntry var26 = var23[var15];
boolean var20;
if (var26.form != Legend.LegendForm.NONE) {
var20 = true;
} else {
var20 = false;
}
if (Float.isNaN(var26.formSize)) {
var21 = var19;
} else {
var21 = Utils.convertDpToPixel(var26.formSize);
}
String var27 = var26.label;
this.mCalculatedLabelBreakPoints.add(false);
if (var16 == -1) {
var3 = 0.0F;
} else {
var3 = var7 + var4;
}
List var22;
if (var27 != null) {
this.mCalculatedLabelSizes.add(Utils.calcTextSize(var1, var27));
if (var20) {
var21 += var5;
} else {
var21 = 0.0F;
}
var21 = var3 + var21 + ((FSize)this.mCalculatedLabelSizes.get(var15)).width;
} else {
var22 = this.mCalculatedLabelSizes;
var22.add(FSize.getInstance(0.0F, 0.0F));
if (!var20) {
var21 = 0.0F;
}
var3 += var21;
var21 = var3;
if (var16 == -1) {
var21 = var3;
var16 = var15;
}
}
if (var27 != null || var15 == var10 - 1) {
if (var18 == 0.0F) {
var3 = 0.0F;
} else {
var3 = var6;
}
if (var8 && var18 != 0.0F && var13 * var14 - var18 < var3 + var21) {
this.mCalculatedLineSizes.add(FSize.getInstance(var18, var11));
var18 = Math.max(var17, var18);
var22 = this.mCalculatedLabelBreakPoints;
if (var16 > -1) {
var30 = var16;
} else {
var30 = var15;
}
var22.set(var30, true);
var17 = var21;
} else {
var3 = var18 + var3 + var21;
var18 = var17;
var17 = var3;
}
if (var15 == var10 - 1) {
this.mCalculatedLineSizes.add(FSize.getInstance(var17, var11));
var3 = Math.max(var18, var17);
var18 = var17;
var17 = var3;
} else {
var3 = var18;
var18 = var17;
var17 = var3;
}
}
if (var27 != null) {
var16 = -1;
}
++var15;
}
this.mNeededWidth = var17;
var21 = (float)this.mCalculatedLineSizes.size();
if (this.mCalculatedLineSizes.size() == 0) {
var15 = 0;
} else {
var15 = this.mCalculatedLineSizes.size() - 1;
}
this.mNeededHeight = var11 * var21 + var12 * (float)var15;
}
this.mNeededHeight += this.mYOffset;
this.mNeededWidth += this.mXOffset;
}
public List getCalculatedLabelBreakPoints() {
return this.mCalculatedLabelBreakPoints;
}
public List getCalculatedLabelSizes() {
return this.mCalculatedLabelSizes;
}
public List getCalculatedLineSizes() {
return this.mCalculatedLineSizes;
}
@Deprecated
public int[] getColors() {
LegendEntry[] var1 = this.mEntries;
int var2 = 0;
int[] var4;
for(var4 = new int[var1.length]; var2 < this.mEntries.length; ++var2) {
int var3;
if (this.mEntries[var2].form == Legend.LegendForm.NONE) {
var3 = 1122868;
} else if (this.mEntries[var2].form == Legend.LegendForm.EMPTY) {
var3 = 1122867;
} else {
var3 = this.mEntries[var2].formColor;
}
var4[var2] = var3;
}
return var4;
}
public Legend.LegendDirection getDirection() {
return this.mDirection;
}
public LegendEntry[] getEntries() {
return this.mEntries;
}
@Deprecated
public int[] getExtraColors() {
LegendEntry[] var1 = this.mExtraEntries;
int var2 = 0;
int[] var4;
for(var4 = new int[var1.length]; var2 < this.mExtraEntries.length; ++var2) {
int var3;
if (this.mExtraEntries[var2].form == Legend.LegendForm.NONE) {
var3 = 1122868;
} else if (this.mExtraEntries[var2].form == Legend.LegendForm.EMPTY) {
var3 = 1122867;
} else {
var3 = this.mExtraEntries[var2].formColor;
}
var4[var2] = var3;
}
return var4;
}
public LegendEntry[] getExtraEntries() {
return this.mExtraEntries;
}
@Deprecated
public String[] getExtraLabels() {
LegendEntry[] var1 = this.mExtraEntries;
int var2 = 0;
String[] var3;
for(var3 = new String[var1.length]; var2 < this.mExtraEntries.length; ++var2) {
var3[var2] = this.mExtraEntries[var2].label;
}
return var3;
}
public Legend.LegendForm getForm() {
return this.mShape;
}
public DashPathEffect getFormLineDashEffect() {
return this.mFormLineDashEffect;
}
public float getFormLineWidth() {
return this.mFormLineWidth;
}
public float getFormSize() {
return this.mFormSize;
}
public float getFormToTextSpace() {
return this.mFormToTextSpace;
}
public Legend.LegendHorizontalAlignment getHorizontalAlignment() {
return this.mHorizontalAlignment;
}
@Deprecated
public String[] getLabels() {
LegendEntry[] var1 = this.mEntries;
int var2 = 0;
String[] var3;
for(var3 = new String[var1.length]; var2 < this.mEntries.length; ++var2) {
var3[var2] = this.mEntries[var2].label;
}
return var3;
}
public float getMaxSizePercent() {
return this.mMaxSizePercent;
}
public float getMaximumEntryHeight(Paint var1) {
LegendEntry[] var2 = this.mEntries;
float var3 = 0.0F;
int var4 = 0;
float var7;
for(int var5 = var2.length; var4 < var5; var3 = var7) {
String var6 = var2[var4].label;
if (var6 == null) {
var7 = var3;
} else {
float var8 = (float)Utils.calcTextHeight(var1, var6);
var7 = var3;
if (var8 > var3) {
var7 = var8;
}
}
++var4;
}
return var3;
}
public float getMaximumEntryWidth(Paint var1) {
float var2 = Utils.convertDpToPixel(this.mFormToTextSpace);
LegendEntry[] var3 = this.mEntries;
float var4 = 0.0F;
int var5 = 0;
int var6 = var3.length;
float var7;
float var9;
for(var7 = 0.0F; var5 < var6; var7 = var9) {
LegendEntry var8 = var3[var5];
if (Float.isNaN(var8.formSize)) {
var9 = this.mFormSize;
} else {
var9 = var8.formSize;
}
float var10 = Utils.convertDpToPixel(var9);
var9 = var7;
if (var10 > var7) {
var9 = var10;
}
String var11 = var8.label;
if (var11 == null) {
var7 = var4;
} else {
var10 = (float)Utils.calcTextWidth(var1, var11);
var7 = var4;
if (var10 > var4) {
var7 = var10;
}
}
++var5;
var4 = var7;
}
return var4 + var7 + var2;
}
public Legend.LegendOrientation getOrientation() {
return this.mOrientation;
}
@Deprecated
public Legend.LegendPosition getPosition() {
if (this.mOrientation == Legend.LegendOrientation.VERTICAL && this.mHorizontalAlignment == Legend.LegendHorizontalAlignment.CENTER && this.mVerticalAlignment == Legend.LegendVerticalAlignment.CENTER) {
return Legend.LegendPosition.PIECHART_CENTER;
} else {
Legend.LegendPosition var1;
if (this.mOrientation == Legend.LegendOrientation.HORIZONTAL) {
if (this.mVerticalAlignment == Legend.LegendVerticalAlignment.TOP) {
if (this.mHorizontalAlignment == Legend.LegendHorizontalAlignment.LEFT) {
var1 = Legend.LegendPosition.ABOVE_CHART_LEFT;
} else if (this.mHorizontalAlignment == Legend.LegendHorizontalAlignment.RIGHT) {
var1 = Legend.LegendPosition.ABOVE_CHART_RIGHT;
} else {
var1 = Legend.LegendPosition.ABOVE_CHART_CENTER;
}
return var1;
} else {
if (this.mHorizontalAlignment == Legend.LegendHorizontalAlignment.LEFT) {
var1 = Legend.LegendPosition.BELOW_CHART_LEFT;
} else if (this.mHorizontalAlignment == Legend.LegendHorizontalAlignment.RIGHT) {
var1 = Legend.LegendPosition.BELOW_CHART_RIGHT;
} else {
var1 = Legend.LegendPosition.BELOW_CHART_CENTER;
}
return var1;
}
} else if (this.mHorizontalAlignment == Legend.LegendHorizontalAlignment.LEFT) {
if (this.mVerticalAlignment == Legend.LegendVerticalAlignment.TOP && this.mDrawInside) {
var1 = Legend.LegendPosition.LEFT_OF_CHART_INSIDE;
} else if (this.mVerticalAlignment == Legend.LegendVerticalAlignment.CENTER) {
var1 = Legend.LegendPosition.LEFT_OF_CHART_CENTER;
} else {
var1 = Legend.LegendPosition.LEFT_OF_CHART;
}
return var1;
} else {
if (this.mVerticalAlignment == Legend.LegendVerticalAlignment.TOP && this.mDrawInside) {
var1 = Legend.LegendPosition.RIGHT_OF_CHART_INSIDE;
} else if (this.mVerticalAlignment == Legend.LegendVerticalAlignment.CENTER) {
var1 = Legend.LegendPosition.RIGHT_OF_CHART_CENTER;
} else {
var1 = Legend.LegendPosition.RIGHT_OF_CHART;
}
return var1;
}
}
}
public float getStackSpace() {
return this.mStackSpace;
}
public Legend.LegendVerticalAlignment getVerticalAlignment() {
return this.mVerticalAlignment;
}
public float getXEntrySpace() {
return this.mXEntrySpace;
}
public float getYEntrySpace() {
return this.mYEntrySpace;
}
public boolean isDrawInsideEnabled() {
return this.mDrawInside;
}
public boolean isLegendCustom() {
return this.mIsLegendCustom;
}
public boolean isWordWrapEnabled() {
return this.mWordWrapEnabled;
}
public void resetCustom() {
this.mIsLegendCustom = false;
}
public void setCustom(List var1) {
this.mEntries = (LegendEntry[])var1.toArray(new LegendEntry[var1.size()]);
this.mIsLegendCustom = true;
}
public void setCustom(LegendEntry[] var1) {
this.mEntries = var1;
this.mIsLegendCustom = true;
}
public void setDirection(Legend.LegendDirection var1) {
this.mDirection = var1;
}
public void setDrawInside(boolean var1) {
this.mDrawInside = var1;
}
public void setEntries(List var1) {
this.mEntries = (LegendEntry[])var1.toArray(new LegendEntry[var1.size()]);
}
public void setExtra(List var1) {
this.mExtraEntries = (LegendEntry[])var1.toArray(new LegendEntry[var1.size()]);
}
@Deprecated
public void setExtra(List var1, List var2) {
this.setExtra(Utils.convertIntegers(var1), Utils.convertStrings(var2));
}
public void setExtra(int[] var1, String[] var2) {
ArrayList var3 = new ArrayList();
for(int var4 = 0; var4 < Math.min(var1.length, var2.length); ++var4) {
LegendEntry var5 = new LegendEntry();
var5.formColor = var1[var4];
var5.label = var2[var4];
if (var5.formColor != 1122868 && var5.formColor != 0) {
if (var5.formColor == 1122867) {
var5.form = Legend.LegendForm.EMPTY;
}
} else {
var5.form = Legend.LegendForm.NONE;
}
var3.add(var5);
}
this.mExtraEntries = (LegendEntry[])var3.toArray(new LegendEntry[var3.size()]);
}
public void setExtra(LegendEntry[] var1) {
LegendEntry[] var2 = var1;
if (var1 == null) {
var2 = new LegendEntry[0];
}
this.mExtraEntries = var2;
}
public void setForm(Legend.LegendForm var1) {
this.mShape = var1;
}
public void setFormLineDashEffect(DashPathEffect var1) {
this.mFormLineDashEffect = var1;
}
public void setFormLineWidth(float var1) {
this.mFormLineWidth = var1;
}
public void setFormSize(float var1) {
this.mFormSize = var1;
}
public void setFormToTextSpace(float var1) {
this.mFormToTextSpace = var1;
}
public void setHorizontalAlignment(Legend.LegendHorizontalAlignment var1) {
this.mHorizontalAlignment = var1;
}
public void setMaxSizePercent(float var1) {
this.mMaxSizePercent = var1;
}
public void setOrientation(Legend.LegendOrientation var1) {
this.mOrientation = var1;
}
@Deprecated
public void setPosition(Legend.LegendPosition var1) {
Legend.LegendHorizontalAlignment var2;
Legend.LegendVerticalAlignment var4;
switch(var1) {
case LEFT_OF_CHART:
case LEFT_OF_CHART_INSIDE:
case LEFT_OF_CHART_CENTER:
this.mHorizontalAlignment = Legend.LegendHorizontalAlignment.LEFT;
if (var1 == Legend.LegendPosition.LEFT_OF_CHART_CENTER) {
var4 = Legend.LegendVerticalAlignment.CENTER;
} else {
var4 = Legend.LegendVerticalAlignment.TOP;
}
this.mVerticalAlignment = var4;
this.mOrientation = Legend.LegendOrientation.VERTICAL;
break;
case RIGHT_OF_CHART:
case RIGHT_OF_CHART_INSIDE:
case RIGHT_OF_CHART_CENTER:
this.mHorizontalAlignment = Legend.LegendHorizontalAlignment.RIGHT;
if (var1 == Legend.LegendPosition.RIGHT_OF_CHART_CENTER) {
var4 = Legend.LegendVerticalAlignment.CENTER;
} else {
var4 = Legend.LegendVerticalAlignment.TOP;
}
this.mVerticalAlignment = var4;
this.mOrientation = Legend.LegendOrientation.VERTICAL;
break;
case ABOVE_CHART_LEFT:
case ABOVE_CHART_CENTER:
case ABOVE_CHART_RIGHT:
if (var1 == Legend.LegendPosition.ABOVE_CHART_LEFT) {
var2 = Legend.LegendHorizontalAlignment.LEFT;
} else if (var1 == Legend.LegendPosition.ABOVE_CHART_RIGHT) {
var2 = Legend.LegendHorizontalAlignment.RIGHT;
} else {
var2 = Legend.LegendHorizontalAlignment.CENTER;
}
this.mHorizontalAlignment = var2;
this.mVerticalAlignment = Legend.LegendVerticalAlignment.TOP;
this.mOrientation = Legend.LegendOrientation.HORIZONTAL;
break;
case BELOW_CHART_LEFT:
case BELOW_CHART_CENTER:
case BELOW_CHART_RIGHT:
if (var1 == Legend.LegendPosition.BELOW_CHART_LEFT) {
var2 = Legend.LegendHorizontalAlignment.LEFT;
} else if (var1 == Legend.LegendPosition.BELOW_CHART_RIGHT) {
var2 = Legend.LegendHorizontalAlignment.RIGHT;
} else {
var2 = Legend.LegendHorizontalAlignment.CENTER;
}
this.mHorizontalAlignment = var2;
this.mVerticalAlignment = Legend.LegendVerticalAlignment.BOTTOM;
this.mOrientation = Legend.LegendOrientation.HORIZONTAL;
break;
case PIECHART_CENTER:
this.mHorizontalAlignment = Legend.LegendHorizontalAlignment.CENTER;
this.mVerticalAlignment = Legend.LegendVerticalAlignment.CENTER;
this.mOrientation = Legend.LegendOrientation.VERTICAL;
}
boolean var3;
if (var1 != Legend.LegendPosition.LEFT_OF_CHART_INSIDE && var1 != Legend.LegendPosition.RIGHT_OF_CHART_INSIDE) {
var3 = false;
} else {
var3 = true;
}
this.mDrawInside = var3;
}
public void setStackSpace(float var1) {
this.mStackSpace = var1;
}
public void setVerticalAlignment(Legend.LegendVerticalAlignment var1) {
this.mVerticalAlignment = var1;
}
public void setWordWrapEnabled(boolean var1) {
this.mWordWrapEnabled = var1;
}
public void setXEntrySpace(float var1) {
this.mXEntrySpace = var1;
}
public void setYEntrySpace(float var1) {
this.mYEntrySpace = var1;
}
public static enum LegendDirection {
LEFT_TO_RIGHT,
RIGHT_TO_LEFT;
}
public static enum LegendForm {
CIRCLE,
DEFAULT,
EMPTY,
LINE,
NONE,
SQUARE;
}
public static enum LegendHorizontalAlignment {
CENTER,
LEFT,
RIGHT;
}
public static enum LegendOrientation {
HORIZONTAL,
VERTICAL;
}
@Deprecated
public static enum LegendPosition {
ABOVE_CHART_CENTER,
ABOVE_CHART_LEFT,
ABOVE_CHART_RIGHT,
BELOW_CHART_CENTER,
BELOW_CHART_LEFT,
BELOW_CHART_RIGHT,
LEFT_OF_CHART,
LEFT_OF_CHART_CENTER,
LEFT_OF_CHART_INSIDE,
PIECHART_CENTER,
RIGHT_OF_CHART,
RIGHT_OF_CHART_CENTER,
RIGHT_OF_CHART_INSIDE;
}
public static enum LegendVerticalAlignment {
BOTTOM,
CENTER,
TOP;
}
}
| [
"[email protected]"
] | |
6167d81ec6253e98ff97928af9bb147d92dd4bc0 | d4c3659ac9ddb5e3c0010b326f3bcc7e33ce0bed | /ren-regression/src/main/java/com/exigen/dxp/employer/Enrollees/UpdatePreferencePage.java | d05c4048d1fcef0975e8fa175cc7ce615016341d | [] | no_license | NandiniDR29/regression-test | cbfdae60e8b462cf32485afb3df0d9504200d0e1 | c4acbc3488195217f9d6a780130d2e5dfe01d6e5 | refs/heads/master | 2023-07-03T14:35:40.673146 | 2021-08-11T07:03:13 | 2021-08-11T07:03:13 | 369,527,619 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,325 | java | package com.exigen.dxp.employer.Enrollees;
import com.exigen.dxp.DXPBaseTest;
import com.exigen.istf.webdriver.controls.waiters.Waiters;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.WebDriverWait;
import java.awt.*;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
public class UpdatePreferencePage {
Actions builder;
Robot robot;
WebDriver driver;
@FindBy(xpath = "(//img[contains(@alt,'View Group Details')])[1]")
private WebElement viewgroup;
@FindBy(xpath = "//img[contains(@alt,'View Contact')]")
private WebElement viewcontactperson;
@FindBy(xpath = "//td[text()='Administrative']/following-sibling::td//div[contains(@class,'checkedCircle_1GKQn148')]/../following-sibling::div")
private WebElement adminSelected;
// @FindBy(xpath = "//td[text()='Administrative']/following-sibling::td//div[text()='Paper']/../div[contains(@class,'radio')]")
@FindBy(xpath = "(//div[text()='Paper']/..//div[@class='radio_1oIKWEXY'])[1]")
private WebElement adminPaperRadioBtn;
@FindBy(xpath = "(//div[text()='Paperless']/..//div[@class='radio_1oIKWEXY'])[1]")
private WebElement adminPaperlessRadioBtn;
@FindBy(xpath = "((//div[@class='checkedCircle_1GKQn148'])[1]/../..//div)[3]")
private List<WebElement> radioadminBTNSelected;
@FindBy(xpath = "(//div[text()='Paper']/..//div[@class='radio_1oIKWEXY'])[2]")
private WebElement billingPaperRadioBtn;
@FindBy(xpath = "(//div[text()='Paperless']/..//div[@class='radio_1oIKWEXY'])[2]")
private WebElement billingPaperlessRadioBtn;
@FindBy(xpath = "((//div[@class='checkedCircle_1GKQn148'])[3]/../..//div)[3]")
private List<WebElement> radiobillingBTNSelected;
@FindBy(xpath = "(//div[text()='Paper']/..//div[@class='radio_1oIKWEXY'])[3]")
private WebElement claimsPaperRadioBtn;
@FindBy(xpath = "(//div[text()='Paperless']/..//div[@class='radio_1oIKWEXY'])[3]")
private WebElement claimsPaperlessRadioBtn;
@FindBy(xpath = "((//div[@class='checkedCircle_1GKQn148'])[3]/../..//div)[3]")
private List<WebElement> radioclaimsBTNSelected;
public UpdatePreferencePage(WebDriver driver, WebDriverWait wait, Robot robot, Actions builder, Properties prop) {
PageFactory.initElements(driver, this);
this.builder = builder;
this.robot = robot;
this.driver = driver;
driver.manage().timeouts().implicitlyWait(1, TimeUnit.MINUTES);
}
public void ClickViewGroup()
{
viewgroup.click();
}
public void ClickViewContactPerson()
{
viewcontactperson.click();
}
public void UpdateClickAdmin() throws InterruptedException {
DXPBaseTest.js.executeScript("arguments[0].scrollIntoView();", adminPaperRadioBtn);
if(radioadminBTNSelected.size()==0 ) {
Waiters.SLEEP(5000).go();
adminPaperlessRadioBtn.click();
}
else if(radioadminBTNSelected.get(0).getText().equalsIgnoreCase("Paper")) {
Waiters.SLEEP(5000).go();
adminPaperlessRadioBtn.click();
System.out.println("paperless selected");
DXPBaseTest.reportLog("adminpaperless is selected", 1);
}
else {
Waiters.SLEEP(5000).go();
adminPaperRadioBtn.click();
System.out.println("paper selected");
DXPBaseTest.reportLog("adminpaper is selected", 1);
}
}
public void UpdateClickBilling() throws InterruptedException {
DXPBaseTest.js.executeScript("arguments[0].scrollIntoView();", adminPaperRadioBtn);
if(radiobillingBTNSelected.size()==0 ) {
Waiters.SLEEP(5000).go();
billingPaperlessRadioBtn.click();
}
else if(radiobillingBTNSelected.get(0).getText().equalsIgnoreCase("Paper")) {
Waiters.SLEEP(5000).go();
billingPaperlessRadioBtn.click();
System.out.println("paperless selected");
DXPBaseTest.reportLog("billingaperless is selected", 1);
}
else {
Waiters.SLEEP(5000).go();
billingPaperRadioBtn.click();
System.out.println("paper selected");
DXPBaseTest.reportLog("billingpaper is selected", 1);
}
}
public void UpdateClickClaims() throws InterruptedException {
DXPBaseTest.js.executeScript("arguments[0].scrollIntoView();", adminPaperRadioBtn);
if(radioclaimsBTNSelected.size()==0 ) {
Waiters.SLEEP(5000).go();
claimsPaperlessRadioBtn.click();
}
else if(radioclaimsBTNSelected.get(0).getText().equalsIgnoreCase("Paper")) {
Waiters.SLEEP(5000).go();
claimsPaperlessRadioBtn.click();
System.out.println("paperless selected");
DXPBaseTest.reportLog("claim paperless is selected", 1);
}
else {
Waiters.SLEEP(5000).go();
claimsPaperRadioBtn.click();
System.out.println("paper selected");
DXPBaseTest.reportLog("claim paper is selected", 1);
}
}
} | [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.