blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
132 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
8bc8261bc0218e2d838da86eec8976dc44692839
085b5355908b1d79629809bd07f24bbc15339d85
/src/edu/unc/flashlight/client/ui/widget/js/MouseOverLabelHandler.java
2daf455e5830ebb52b3b8d76d0110779bbddc9a5
[]
no_license
UNC-Major-Lab/Spotlite
6f0b88f645a9e8d864b49356a2cb87b293a65b03
b5dbf1b28a3e0fdcfccccea7c768b26678e56804
refs/heads/master
2021-06-09T18:25:33.499893
2017-01-11T15:08:43
2017-01-11T15:08:43
42,091,919
0
0
null
null
null
null
UTF-8
Java
false
false
2,341
java
/******************************************************************************* * Copyright 2012 The University of North Carolina at Chapel Hill. * All Rights Reserved. * * Permission to use, copy, modify OR distribute this software and its * documentation for educational, research and non-profit purposes, without * fee, and without a written agreement is hereby granted, provided that the * above copyright notice and the following three paragraphs appear in all * copies. * * IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE * LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR * CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE * USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY * OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH * DAMAGES. * * THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF * NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, * UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * The authors may be contacted via: * * US Mail: Dennis Goldfarb * Wei Wang * * Department of Computer Science * Sitterson Hall, CB #3175 * University of N. Carolina * Chapel Hill, NC 27599-3175 * * Ben Major * * Department of Cell Biology and Physiology * Lineberger Comprehensive Cancer Center * University of N. Carolina * Chapel Hill, NC 27599-3175 * * Email: dennisg@cs.unc.edu * weiwang@cs.unc.edu * ben_major@med.unc.edu * * Web: www.unc.edu/~dennisg/ ******************************************************************************/ package edu.unc.flashlight.client.ui.widget.js; import com.google.gwt.event.shared.EventHandler; public interface MouseOverLabelHandler extends EventHandler { void onMouseOverLabel(MouseOverLabelEvent event); }
[ "dennisg@dhcp-v439-01887.med-1x-wireless.unc.edu" ]
dennisg@dhcp-v439-01887.med-1x-wireless.unc.edu
0ae947454423965e827923963374041edee22771
db479e46d5eee986ab6c05f9c7440decbe96f1ce
/app/src/androidTest/java/com/example/qtm/coolweather/ExampleInstrumentedTest.java
12b7ed07e6834666b05db70792eee5d6ff1b9a47
[ "Apache-2.0" ]
permissive
qintianmingDev/coolweather
11fdbe123739c9517de6f099ffecd281b5455698
8765d35c5b4175e393bf82eecded021254e2dfa2
refs/heads/master
2021-01-23T05:25:42.192413
2017-03-29T06:43:30
2017-03-29T06:43:30
86,307,711
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.example.qtm.coolweather; 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.*; /** * Instrumentation 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() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.qtm.coolweather", appContext.getPackageName()); } }
[ "15739559478@163.com" ]
15739559478@163.com
81ecc9363c9d51df3dacf2d9950ac9252b2f1af2
3a220032023dd69952e312742424dd6bff9a59c0
/_/elasticsearch-essentials-java-examples/src/main/java/com/essentials/elasticsearch/connection/ES_Connection.java
962101f5ef93a900248736739d2a6d8dbcf21ccf
[ "Apache-2.0" ]
permissive
paullewallencom/elasticsearch-978-1-7843-9101-0
3812b92e476d613c0c83b83966f33f3cdb88dfcf
ff74cb7faafdf54c9d1ba828f74fea592898201f
refs/heads/main
2023-02-10T08:11:02.726847
2020-12-30T01:06:24
2020-12-30T01:06:24
319,436,158
0
0
null
null
null
null
UTF-8
Java
false
false
997
java
/** * @author bharvi */ package com.essentials.elasticsearch.connection; import java.net.InetAddress; import java.net.UnknownHostException; import org.elasticsearch.client.Client; import org.elasticsearch.client.transport.TransportClient; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.transport.InetSocketTransportAddress; public class ES_Connection { /** * Class for initializing ELasticsearch connection */ static Client client; static Settings settings; public static Client getEsConnection() { settings = Settings.settingsBuilder().put("cluster.name", "elasticsearch").put("path.home", "/").build(); try { client = TransportClient.builder().settings(settings).build() .addTransportAddress(new InetSocketTransportAddress(InetAddress.getByName("localhost"), 9300)); System.out.println("connection created"); } catch (UnknownHostException e) { // TODO Auto-generated catch block e.printStackTrace(); } return client; } }
[ "paullewallencom@users.noreply.github.com" ]
paullewallencom@users.noreply.github.com
99b8dc37085fced84ae3854f3883a17f7e1a4ef9
f14562f70d910628d5510227b94dafcd46d4714c
/projects/stage-1/middleware-frameworks/my-interceptor/src/main/java/org/geektimes/interceptor/InterceptorRegistry.java
f2a125f1f2d7daae6925dbe74af74e8b44ecf06d
[ "Apache-2.0" ]
permissive
zcw888/geekbang-lessons
2af6be8e55632db0774cf4a3225994077783bb93
df75a26ce25eae6d1f16ed430d98e389f07b8e8c
refs/heads/master
2023-08-02T18:29:14.495523
2021-09-08T01:00:35
2021-09-08T01:00:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,890
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.geektimes.interceptor; import org.geektimes.commons.lang.util.ClassLoaderUtils; import org.geektimes.commons.util.ServiceLoaders; import org.geektimes.interceptor.util.InterceptorUtils; import javax.interceptor.InterceptorBinding; import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedElement; import java.util.List; import static java.util.Arrays.asList; import static org.geektimes.commons.util.ServiceLoaders.loadSpi; /** * The registry of {@link Interceptor} * * @author <a href="mailto:mercyblitz@gmail.com">Mercy</a> * @since 1.0.0 */ public interface InterceptorRegistry { void registerInterceptorClass(Class<?> interceptorClass); default void registerInterceptorClasses(Class<?> interceptorClass, Class<?>... otherInterceptorClasses) { registerInterceptorClass(interceptorClass); registerInterceptorClasses(otherInterceptorClasses); } default void registerInterceptorClasses(Class<?>[] interceptorClasses) { registerInterceptorClasses(asList(interceptorClasses)); } default void registerInterceptorClasses(Iterable<Class<?>> interceptorClasses) { interceptorClasses.forEach(this::registerInterceptorClass); } void registerInterceptor(Object interceptor); default void registerInterceptors(Object interceptor, Object... otherInterceptors) { registerInterceptor(interceptor); registerInterceptors(otherInterceptors); } default void registerInterceptors(Object[] interceptors) { registerInterceptors(asList(interceptors)); } default void registerInterceptors(Iterable<?> interceptors) { interceptors.forEach(this::registerInterceptor); } default void registerDiscoveredInterceptors() { registerInterceptors(ServiceLoaders.load(Interceptor.class)); } /** * Gets the {@linkplain InterceptorBinding interceptor bindings} of the interceptor. * * @return the instance of {@linkplain InterceptorBindings interceptor bindings} * @throws IllegalStateException See exception details on {@link InterceptorUtils#isInterceptorClass(Class)} */ default InterceptorBindings getInterceptorBindings(Class<?> interceptorClass) throws IllegalStateException { return getInterceptorInfo(interceptorClass).getInterceptorBindings(); } /** * Get the instance of {@link InterceptorInfo} from the given interceptor class * * @param interceptorClass the given interceptor class * @return non-null if <code>interceptorClass</code> is a valid interceptor class * @throws IllegalStateException See exception details on {@link InterceptorUtils#isInterceptorClass(Class)} */ InterceptorInfo getInterceptorInfo(Class<?> interceptorClass) throws IllegalStateException; /** * Gets the sorted {@link List list} of {@link javax.interceptor.Interceptor @Interceptor} instances * * @param interceptedElement the intercepted of {@linkplain AnnotatedElement annotated element} * @return a non-null read-only sorted {@link List list} */ List<Object> getInterceptors(AnnotatedElement interceptedElement); /** * <p> * Declares an annotation type as an {@linkplain javax.interceptor.Interceptor @Interceptor} binding type if you * wish to make an annotation an interceptor binding type without adding {@link InterceptorBinding} to it. * </p> * * @param interceptorBindingType */ void registerInterceptorBindingType(Class<? extends Annotation> interceptorBindingType); default boolean isInterceptorBinding(Annotation annotation) { return isInterceptorBindingType(annotation.annotationType()); } boolean isInterceptorBindingType(Class<? extends Annotation> annotationType); static InterceptorRegistry getInstance(ClassLoader classLoader) { return loadSpi(InterceptorRegistry.class, classLoader); } static InterceptorRegistry getInstance() { return getInstance(ClassLoaderUtils.getClassLoader(InterceptorRegistry.class)); } }
[ "mercyblitz@gmail.com" ]
mercyblitz@gmail.com
a9a8fc312eacc56458bf2781aa34c1e60ff9475b
13c741c395c29242feff7cf901bbde6ea3fed038
/cft-weixin/src/main/java/com/cft/weixin/bean/paymch/SendCoupon.java
01936f94ad33d92c81c9cb26226412769fce78cc
[]
no_license
liang999miss/cft
2009401752aee89bc08605f5860398eaf68b6894
4d3238450c521815ac05c74bfab0ba54286ab7c8
refs/heads/master
2022-07-12T14:56:05.789548
2019-10-12T02:11:40
2019-10-12T02:11:40
214,339,617
0
1
null
2022-06-21T02:02:02
2019-10-11T03:56:22
null
UTF-8
Java
false
false
2,716
java
package com.cft.weixin.bean.paymch; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name="xml") @XmlAccessorType(XmlAccessType.FIELD) public class SendCoupon{ private String coupon_stock_id; private Integer openid_count; private String partner_trade_no; private String openid; private String appid; private String mch_id; private String sub_mch_id; private String op_user_id; private String device_info; private String nonce_str; private String sign; private String version; private String type; private String sign_type; public String getCoupon_stock_id() { return coupon_stock_id; } public void setCoupon_stock_id(String coupon_stock_id) { this.coupon_stock_id = coupon_stock_id; } public Integer getOpenid_count() { return openid_count; } public void setOpenid_count(Integer openid_count) { this.openid_count = openid_count; } public String getPartner_trade_no() { return partner_trade_no; } public void setPartner_trade_no(String partner_trade_no) { this.partner_trade_no = partner_trade_no; } public String getOpenid() { return openid; } public void setOpenid(String openid) { this.openid = openid; } public String getAppid() { return appid; } public void setAppid(String appid) { this.appid = appid; } public String getMch_id() { return mch_id; } public void setMch_id(String mch_id) { this.mch_id = mch_id; } public String getSub_mch_id() { return sub_mch_id; } public void setSub_mch_id(String sub_mch_id) { this.sub_mch_id = sub_mch_id; } public String getOp_user_id() { return op_user_id; } public void setOp_user_id(String op_user_id) { this.op_user_id = op_user_id; } public String getDevice_info() { return device_info; } public void setDevice_info(String device_info) { this.device_info = device_info; } public String getNonce_str() { return nonce_str; } public void setNonce_str(String nonce_str) { this.nonce_str = nonce_str; } public String getSign() { return sign; } public void setSign(String sign) { this.sign = sign; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getSign_type() { return sign_type; } public void setSign_type(String sign_type) { this.sign_type = sign_type; } }
[ "liangjianhui0912@163.com" ]
liangjianhui0912@163.com
a755b14e5cada8bb3a459d43bba7464c9e1937d4
3b43c420b0fc9c620f999a8cd1df8bb2031a8127
/EmpManagementSystem/src/com/org/moglix/controller/EmployeeController.java
babb8420ccaf50a711931bd9fa4993dbf0ecbe32
[]
no_license
AmanMoglix/Dummy
3bbffb75285fc78d728b6426e9c4e554500cb04a
35c6ba5a88fa04410721c878de5cf1bd9b70f3ae
refs/heads/master
2023-08-06T01:26:08.396305
2021-09-30T05:57:23
2021-09-30T05:57:23
411,940,681
0
0
null
null
null
null
UTF-8
Java
false
false
785
java
package com.org.moglix.controller; import com.org.moglix.domain.Employee; import com.org.moglix.service.EmployeeService; import com.org.moglix.service.impl.EmployeeServiceImpl; public class EmployeeController { EmployeeService empService = EmployeeServiceImpl.getInstance(); public String addEmployee(Employee employee) { return this.empService.addEmployee(employee); } public Employee getById(String empId) { return this.empService.getById(empId); } public String updateEmployeeById(Employee employee, String empId) { return this.empService.updateEmployeeById(employee, empId); } public Employee[] getList() { return this.empService.getEmployeeList(); } public String deleteEmployeeById(String empId) { return this.empService.deleteEmployeeById(empId); } }
[ "aman.katiyar@moglix.com" ]
aman.katiyar@moglix.com
24b1ec966f23748d3c75942293c56487fee92142
1fcb62696ec7413cc6a2e5c8c67d430d51a665c7
/src/iso-tc211-xml/src/generated/java/org/isotc211/iso19139/gmd/MDIdentificationPropertyType.java
cdc995b77dc11c6bf324e07dc961c0bbe08e0b29
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
florianesser/excel-adapter
cd1836dad969e6b481396997a3f4abd4e38029e9
16b98486da3702ee958c5c0155a77520a0722906
refs/heads/master
2021-01-08T08:11:40.938728
2019-05-24T10:02:34
2019-05-24T10:02:34
241,966,970
0
0
NOASSERTION
2020-02-20T19:06:34
2020-02-20T19:06:34
null
UTF-8
Java
false
false
15,039
java
/** */ package org.isotc211.iso19139.gmd; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; import org.w3.xlink.ActuateType; import org.w3.xlink.ShowType; import org.w3.xlink.TypeType; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>MD Identification Property Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getAbstractMDIdentificationGroup <em>Abstract MD Identification Group</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getAbstractMDIdentification <em>Abstract MD Identification</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getActuate <em>Actuate</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getArcrole <em>Arcrole</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getHref <em>Href</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getNilReason <em>Nil Reason</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getRole <em>Role</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getShow <em>Show</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getTitle <em>Title</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getType <em>Type</em>}</li> * <li>{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getUuidref <em>Uuidref</em>}</li> * </ul> * * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType() * @model extendedMetaData="name='MD_Identification_PropertyType' kind='elementOnly'" * @generated */ public interface MDIdentificationPropertyType extends EObject { /** * Returns the value of the '<em><b>Abstract MD Identification Group</b></em>' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Abstract MD Identification Group</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Abstract MD Identification Group</em>' attribute list. * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_AbstractMDIdentificationGroup() * @model dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="false" * extendedMetaData="kind='group' name='AbstractMD_Identification:group' namespace='##targetNamespace'" * @generated */ FeatureMap getAbstractMDIdentificationGroup(); /** * Returns the value of the '<em><b>Abstract MD Identification</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Abstract MD Identification</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Abstract MD Identification</em>' containment reference. * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_AbstractMDIdentification() * @model containment="true" transient="true" changeable="false" volatile="true" derived="true" * extendedMetaData="kind='element' name='AbstractMD_Identification' namespace='##targetNamespace' group='AbstractMD_Identification:group'" * @generated */ AbstractMDIdentificationType getAbstractMDIdentification(); /** * Returns the value of the '<em><b>Actuate</b></em>' attribute. * The literals are from the enumeration {@link org.w3.xlink.ActuateType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Actuate</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Actuate</em>' attribute. * @see org.w3.xlink.ActuateType * @see #isSetActuate() * @see #unsetActuate() * @see #setActuate(ActuateType) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Actuate() * @model unsettable="true" * extendedMetaData="kind='attribute' name='actuate' namespace='http://www.w3.org/1999/xlink'" * @generated */ ActuateType getActuate(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getActuate <em>Actuate</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Actuate</em>' attribute. * @see org.w3.xlink.ActuateType * @see #isSetActuate() * @see #unsetActuate() * @see #getActuate() * @generated */ void setActuate(ActuateType value); /** * Unsets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getActuate <em>Actuate</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetActuate() * @see #getActuate() * @see #setActuate(ActuateType) * @generated */ void unsetActuate(); /** * Returns whether the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getActuate <em>Actuate</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Actuate</em>' attribute is set. * @see #unsetActuate() * @see #getActuate() * @see #setActuate(ActuateType) * @generated */ boolean isSetActuate(); /** * Returns the value of the '<em><b>Arcrole</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Arcrole</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Arcrole</em>' attribute. * @see #setArcrole(String) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Arcrole() * @model dataType="org.w3.xlink.ArcroleType" * extendedMetaData="kind='attribute' name='arcrole' namespace='http://www.w3.org/1999/xlink'" * @generated */ String getArcrole(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getArcrole <em>Arcrole</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Arcrole</em>' attribute. * @see #getArcrole() * @generated */ void setArcrole(String value); /** * Returns the value of the '<em><b>Href</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Href</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Href</em>' attribute. * @see #setHref(String) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Href() * @model dataType="org.w3.xlink.HrefType" * extendedMetaData="kind='attribute' name='href' namespace='http://www.w3.org/1999/xlink'" * @generated */ String getHref(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getHref <em>Href</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Href</em>' attribute. * @see #getHref() * @generated */ void setHref(String value); /** * Returns the value of the '<em><b>Nil Reason</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Nil Reason</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Nil Reason</em>' attribute. * @see #setNilReason(Object) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_NilReason() * @model dataType="net.opengis.gml32.NilReasonType" * extendedMetaData="kind='attribute' name='nilReason' namespace='http://www.isotc211.org/2005/gco'" * @generated */ Object getNilReason(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getNilReason <em>Nil Reason</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Nil Reason</em>' attribute. * @see #getNilReason() * @generated */ void setNilReason(Object value); /** * Returns the value of the '<em><b>Role</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Role</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Role</em>' attribute. * @see #setRole(String) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Role() * @model dataType="org.w3.xlink.RoleType" * extendedMetaData="kind='attribute' name='role' namespace='http://www.w3.org/1999/xlink'" * @generated */ String getRole(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getRole <em>Role</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Role</em>' attribute. * @see #getRole() * @generated */ void setRole(String value); /** * Returns the value of the '<em><b>Show</b></em>' attribute. * The literals are from the enumeration {@link org.w3.xlink.ShowType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Show</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Show</em>' attribute. * @see org.w3.xlink.ShowType * @see #isSetShow() * @see #unsetShow() * @see #setShow(ShowType) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Show() * @model unsettable="true" * extendedMetaData="kind='attribute' name='show' namespace='http://www.w3.org/1999/xlink'" * @generated */ ShowType getShow(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getShow <em>Show</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Show</em>' attribute. * @see org.w3.xlink.ShowType * @see #isSetShow() * @see #unsetShow() * @see #getShow() * @generated */ void setShow(ShowType value); /** * Unsets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getShow <em>Show</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetShow() * @see #getShow() * @see #setShow(ShowType) * @generated */ void unsetShow(); /** * Returns whether the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getShow <em>Show</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Show</em>' attribute is set. * @see #unsetShow() * @see #getShow() * @see #setShow(ShowType) * @generated */ boolean isSetShow(); /** * Returns the value of the '<em><b>Title</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Title</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Title</em>' attribute. * @see #setTitle(String) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Title() * @model dataType="org.w3.xlink.TitleAttrType" * extendedMetaData="kind='attribute' name='title' namespace='http://www.w3.org/1999/xlink'" * @generated */ String getTitle(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getTitle <em>Title</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Title</em>' attribute. * @see #getTitle() * @generated */ void setTitle(String value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. * The default value is <code>"simple"</code>. * The literals are from the enumeration {@link org.w3.xlink.TypeType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' attribute. * @see org.w3.xlink.TypeType * @see #isSetType() * @see #unsetType() * @see #setType(TypeType) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Type() * @model default="simple" unsettable="true" * extendedMetaData="kind='attribute' name='type' namespace='http://www.w3.org/1999/xlink'" * @generated */ TypeType getType(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see org.w3.xlink.TypeType * @see #isSetType() * @see #unsetType() * @see #getType() * @generated */ void setType(TypeType value); /** * Unsets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetType() * @see #getType() * @see #setType(TypeType) * @generated */ void unsetType(); /** * Returns whether the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getType <em>Type</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Type</em>' attribute is set. * @see #unsetType() * @see #getType() * @see #setType(TypeType) * @generated */ boolean isSetType(); /** * Returns the value of the '<em><b>Uuidref</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Uuidref</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Uuidref</em>' attribute. * @see #setUuidref(String) * @see org.isotc211.iso19139.gmd.GMDPackage#getMDIdentificationPropertyType_Uuidref() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='uuidref'" * @generated */ String getUuidref(); /** * Sets the value of the '{@link org.isotc211.iso19139.gmd.MDIdentificationPropertyType#getUuidref <em>Uuidref</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Uuidref</em>' attribute. * @see #getUuidref() * @generated */ void setUuidref(String value); } // MDIdentificationPropertyType
[ "fe@bespire.de" ]
fe@bespire.de
e35e7feb0796a97d2714e05c7fd0317517fe401f
3750b72e45dddbaf2adfbca73cf2b9c0b1877dce
/src/FinalProject2019/DualSimplex.java
b74944eeea7e1c4f6effc71baa58f16e60245166
[]
no_license
luchtech/LinearProgKit
9775902d0fc999dbad94c3f8aab5487a1129e9a2
bfeeadc322b9461d56d8caa644e0b35537d461e7
refs/heads/master
2023-05-25T19:09:10.200185
2020-01-30T05:51:08
2020-01-30T05:51:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,653
java
package FinalProject2019; import java.util.ArrayList; import java.util.Arrays; import javax.script.ScriptException; public class DualSimplex { private Problem p; private int indexSymbol, ctrSlack; private ArrayList<String> tempEquation = null, tempFooter = null; private ArrayList<ArrayList<String>> tempConstraints = null; private ArrayList<ArrayList<String>> tempTableau = null; public DualSimplex(Problem problem) { setProblem(problem); setTempEquation(); setTempConstraints(); } //SETTERS public void setProblem(Problem problem) { p = problem; } public void setTempEquation() { if(p.getNumVariables()>0) { tempEquation = new ArrayList<String>(Arrays.asList(p.getEquation())); tempEquation.add(0, ""); tempEquation.add("RHS"); }else { tempEquation = null; } } public void setTempConstraints() { if(p.getNumConstraints()>0) { tempConstraints = new ArrayList<ArrayList<String>>(); for (int i = 0; i < p.getNumConstraints(); i++) { tempConstraints.add(new ArrayList<String>(Arrays.asList(p.getConstraints()[i]))); tempConstraints.get(i).add(0, ""); } }else { tempConstraints = null; } } //GETTERS public Problem getProblem() { return p; } public boolean isNormalConstraints() { for (int i = 0; i < p.getNumConstraints(); i++) { if(p.getConstraints()[i][p.getNumVariables()].equals(">=")) { return false; } } return true; } public ArrayList<ArrayList<String>> getTempConstraints() { return tempConstraints; } public ArrayList<String> getTempEquation() { return tempEquation; } //DISPLAY public void printTempEquation() { System.out.println("Temp Equation: "); System.out.println(tempEquation == null ? "ERROR: Temp Equation is null." : Arrays.toString(tempEquation.toArray())); } public void printTempConstraints() { System.out.println("Temp Constraints: "); for (int i = 0; i < p.getNumConstraints(); i++) { System.out.println(Arrays.toString(tempConstraints.get(i).toArray())); } if(p.getNumConstraints() == 0) System.out.println("ERROR: Temp Constraints is null."); } public void printTempTableau() { System.out.println("Temp Tableau: "); for (int i = 0; i < tempTableau.size(); i++) { System.out.println(Arrays.toString(tempTableau.get(i).toArray())); } if(p.getNumConstraints() == 0) System.out.println("ERROR: Temp Constraints is null."); } //DEEP ALGORITHMS public void execute() throws NumberFormatException, ScriptException { if(p.isSolvable() && isNormalConstraints()) { convertConstraintsToEqualities(); setTempFooter(); setInitialTableau(); new simplex(tempTableau); }else { System.out.println(p.getErrorMessage()); } } private void convertConstraintsToEqualities() { ctrSlack = 0; indexSymbol = p.getNumVariables() + 1; for (int i = 0; i < p.getNumConstraints(); i++) { for (int j = 0; j < p.getNumConstraints(); j++) { tempConstraints.get(j).add(indexSymbol, i==j ? "1" : "0"); } tempEquation.add(indexSymbol, "0 s"+(i+1)); tempConstraints.get(i).set(0, tempEquation.get(indexSymbol)); ctrSlack++; indexSymbol = p.getNumVariables() + 1 + ctrSlack; tempConstraints.get(i).set(indexSymbol, "="); } for (int i = 0; i < p.getNumConstraints(); i++) { tempConstraints.get(i).remove(indexSymbol); } } private void setTempFooter() { tempFooter = new ArrayList<String>(); for (int i = 0; i < tempEquation.size(); i++) { tempFooter.add(""); } } private void setInitialTableau() { tempTableau = new ArrayList<ArrayList<String>>(); tempTableau.add(tempEquation); tempTableau.addAll(tempConstraints); tempTableau.add(tempFooter); } }
[ "mrstudyfirst@gmail.com" ]
mrstudyfirst@gmail.com
01f0fd41bb468776d08d44039cce6aed6c2ca3a4
0b39a0b2c90a84199a0f9d2c46be7b152497a1b2
/BookManage/src/com/lanou/Dao/CarouselDaoImp.java
d06eeaec9695c5f5ff70f263560d4e863b9fbe7d
[]
no_license
break-others/my_project
4436bd6efa8caade37b274d102f68dccbe57c782
8db3b1fe1a72af955ce9a54999571c89d4f513b8
refs/heads/master
2023-02-26T01:10:33.419955
2021-02-03T12:57:10
2021-02-03T12:57:10
335,579,164
0
0
null
null
null
null
UTF-8
Java
false
false
1,580
java
package com.lanou.Dao; import java.sql.ResultSet; import java.util.ArrayList; import java.util.List; import com.lanou.bean.Carousel; import com.lanou.util.JDBCUtil; public class CarouselDaoImp implements ICarouselDao{ @Override public List<Carousel> getQuery() throws Exception { String sql="select * from t_carousel"; ResultSet re=JDBCUtil.queryAll(sql); List<Carousel> acrlist=new ArrayList<>(); while(re.next()) { Integer id=re.getInt("id"); String timg=re.getString("timg"); Carousel acr=new Carousel(id, timg); acrlist.add(acr); } return acrlist; } @Override public List<Carousel> getQuery(int pagenum, int pagecount) throws Exception { String sql="select * from t_Carousel limit "+(pagenum-1)*pagecount+","+pagecount; ResultSet re=JDBCUtil.queryAll(sql); List<Carousel> acrlist=new ArrayList<>(); while(re.next()) { int id=re.getInt("id"); String timg=re.getString("timg"); Carousel acr=new Carousel(id, timg); acrlist.add(acr); } return acrlist; } @Override public void getDelete(String id) throws Exception { String sql="delete from t_Carousel where id='"+id+"'"; JDBCUtil.zhengShanGai(sql); } @Override public void getAdd(String timg) throws Exception { String sql="insert into t_Carousel (timg) values ('"+timg+"') "; JDBCUtil.zhengShanGai(sql); } @Override public int getCount() throws Exception { String sql="select count(*) count from t_Carousel"; ResultSet re=JDBCUtil.queryAll(sql); if(re.next()) { Integer count =re.getInt("count"); return count; } return 0; } }
[ "1036524674@qq.com" ]
1036524674@qq.com
f104f69ccc7cb0f73600ba3d37dd10ec8cd4fa19
8284bc1529a0cbc84ac201d6377261736e825d52
/src/model/task/IDatabaseTask.java
4db51ba7bcaac869e861fedfa85c344ccad96c22
[]
no_license
jjviasus/Personal-Planner
04340e01563c030d23d68813a14e7540533e8c2d
66d9c4c8da3609293c006596449dd9841ce9db22
refs/heads/main
2023-02-13T12:05:07.523277
2021-01-12T20:50:37
2021-01-12T20:50:37
321,457,333
1
0
null
null
null
null
UTF-8
Java
false
false
456
java
package model.task; /** * An extension of an ITask to be used for a planner that is linked to a database. Offers additional * capabilities such as getting and setting the id of a task. */ public interface IDatabaseTask extends ITask { /** * Gets the id of the task. * @return the id of the task as an integer */ public int getId(); /** * Sets the id of the task. * @param id the id to be set */ public void setId(int id); }
[ "61569318+jjviasus@users.noreply.github.com" ]
61569318+jjviasus@users.noreply.github.com
910cc53f9cb32a65f552a1e0ae8dbaa1bb64f3b5
ce8e8e8453be6c8de8799241e210eaee55668f9a
/knf-ofe-reporting-tools/src/main/java/pl/softech/knf/ofe/opf/contributions/Contribution.java
2ebf9c6286436121dded79857c57583efadca75e
[]
no_license
ssledz/incubator
09e541cbd5f473c72555c03a3a782d9f907299fe
81025425e7202747ac75de7383e4616c67d8c42c
refs/heads/master
2021-01-22T21:17:07.276309
2015-06-01T22:35:54
2015-06-01T22:35:54
33,742,742
0
0
null
null
null
null
UTF-8
Java
false
false
3,815
java
package pl.softech.knf.ofe.opf.contributions; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; import pl.softech.knf.ofe.shared.Money; /** * @author Sławomir Śledź <slawomir.sledz@gmail.com> * @since 1.0 */ public class Contribution { private final Money amount; private final long number; private final Money interests; private final Money averageBasis; public Contribution(Builder builder) { this.amount = builder.amount; this.number = builder.number; this.interests = builder.interests; this.averageBasis = builder.averageBasis; } public Money getAmount() { return amount; } public long getNumber() { return number; } public Money getInterests() { return interests; } public Money getAverageBasis() { return averageBasis; } public Builder toBuilder() { return new Builder() .withAmount(amount) .withInterests(interests) .withNumber(number) .withAverageBasis(averageBasis); } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Contribution)) { return false; } Contribution that = (Contribution) o; return new EqualsBuilder() .append(amount, that.amount) .append(number, that.number) .append(interests, that.interests) .append(averageBasis, that.averageBasis) .isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(17, 37) .append(amount) .append(number) .append(interests) .append(averageBasis) .toHashCode(); } @Override public String toString() { return new ToStringBuilder(this) .append("amount", amount) .append("number", number) .append("interests", interests) .append("averageBasis", averageBasis) .toString(); } public static class Builder { private Money amount; private long number; private Money interests; private Money averageBasis; public Builder withAmount(long amount) { this.amount = new Money(amount); return this; } public Builder withAmount(Money amount) { this.amount = amount; return this; } public Builder withAmount(double amount) { this.amount = new Money(amount); return this; } public Builder withNumber(long number) { this.number = number; return this; } public Builder withInterests(long interests) { this.interests = new Money(interests); return this; } public Builder withInterests(double interests) { this.interests = new Money(interests); return this; } public Builder withInterests(Money interests) { this.interests = interests; return this; } public Builder withAverageBasis(long averageBasis) { this.averageBasis = new Money(averageBasis); return this; } public Builder withAverageBasis(double averageBasis) { this.averageBasis = new Money(averageBasis); return this; } public Builder withAverageBasis(Money averageBasis) { this.averageBasis = averageBasis; return this; } } }
[ "slawomir.sledz@gmail.com" ]
slawomir.sledz@gmail.com
6dec8c4aa9cd07c5e0b4153b8e0607b3e250505f
98e1486a0351c59410e1667a19da4a0d2e1b47cd
/app/src/main/java/com/symbysoft/task2/PlanetsList.java
ee1ef836601072dc3bee11fd2213eef202a51717
[]
no_license
symalex/task2
f316528b20f66b18d0686d3361ab054c08fbb942
89e9a070545b09f6ce40a2a210458c9909258e99
refs/heads/master
2021-01-10T03:13:09.314668
2015-11-23T06:57:03
2015-11-23T06:57:03
45,794,081
0
0
null
null
null
null
UTF-8
Java
false
false
1,479
java
package com.symbysoft.task2; import java.util.ArrayList; import android.os.Parcel; import android.os.Parcelable; public class PlanetsList extends ArrayList<PlanetDetails> implements Parcelable { private static final long serialVersionUID = 400000000000000001L; private int mSelectedIndex; public PlanetsList() { } @SuppressWarnings("unused") public PlanetsList(Parcel in) { this(); readFromParcel(in); } public int getSelectedIndex() { return mSelectedIndex; } public void setSelectedIndex(int value) { mSelectedIndex = value; } public PlanetDetails getSelectedItem() { return mSelectedIndex < size() ? this.get(mSelectedIndex) : null; } private void readFromParcel(Parcel in) { this.clear(); // First we have to read the list size int size = in.readInt(); for (int i = 0; i < size; i++) this.add(new PlanetDetails(in)); } @Override public int describeContents() { return 0; } public final Parcelable.Creator<PlanetsList> CREATOR = new Parcelable.Creator<PlanetsList>() { public PlanetsList createFromParcel(Parcel in) { return new PlanetsList(in); } public PlanetsList[] newArray(int size) { return new PlanetsList[size]; } }; @Override public void writeToParcel(Parcel dest, int flags) { int size = this.size(); // We have to write the list size, we need him recreating the list dest.writeInt(size); for (int i = 0; i < size; i++) this.get(i).writeToParcel(dest, flags); } }
[ "symalex@gmail.com" ]
symalex@gmail.com
71b38dd3f27c08720f224ada09bbfbb133b473d6
e7fc2b27a874f523564ac1a0fd7df2e52608808b
/JAVA/TestingSystem05/src/com/vti/education/entity/Question2Interface/ThiSinhKhoiB.java
f0717eabf79cf93554e649cd857da9c7beeaa73b
[]
no_license
TrieuQuocDung/Rocket_11
4cf2f7d8a9ae64aa601ed5568f55ac2ae569ecec
d2c3bdb348e5fec3d7d28da2bcaca6ab51c04380
refs/heads/master
2023-05-06T14:55:41.639724
2021-06-05T13:00:26
2021-06-05T13:00:26
344,000,840
0
0
null
null
null
null
UTF-8
Java
false
false
1,221
java
package com.vti.education.entity.Question2Interface; import java.util.Scanner; public class ThiSinhKhoiB extends ThiSinh{ private float toan; private float hoa; private float sinh; private Scanner scanner; public ThiSinhKhoiB() { scanner = new Scanner(System.in); inputInfo(); } public ThiSinhKhoiB(String soBaoDanh, String hoTen, String diaChi, int mucUuTien,String monThi ,String tenKhoi) { super(soBaoDanh, hoTen, diaChi, mucUuTien, monThi,tenKhoi); // this.toan = toan; // this.hoa = hoa; // this.sinh = sinh; scanner = new Scanner(System.in); } public float getToan() { return toan; } public float getHoa() { return hoa; } public float getSinh() { return sinh; } @Override public void inputInfo() { super.inputInfo(); System.out.println("Mời bạn nhập điểm môn Toán"); toan = scanner.nextFloat(); System.out.println("Mời bạn nhập điểm môn Hóa"); hoa = scanner.nextFloat(); System.out.println("Mời bạn nhập điểm môn Sinh"); sinh = scanner.nextFloat(); } @Override public void showInfo() { super.showInfo(); System.out.println("Toán: " + toan); System.out.println("Hóa: " + hoa); System.out.println("Sinh: " + sinh); } }
[ "dungthuonglap99@gmail.com" ]
dungthuonglap99@gmail.com
31bfa3c27959f62de4e4888a3b32099782da9dfa
c8eb36460eb81c76e630de6a629e4bc63abe914a
/leaderboard/src/leaderboard/Demo.java
a340fb3252d72fae00ce6ff4977278b49490d546
[]
no_license
aman1711/Machine_coding
5029df1c0c0b8edb4674d813c25b9f15b9afc737
3a6457732b6fe5ede1596f4c0f838e17ba9a73d4
refs/heads/master
2023-06-01T17:44:30.284777
2021-06-21T10:07:49
2021-06-21T10:07:49
378,883,530
2
0
null
null
null
null
UTF-8
Java
false
false
1,951
java
package leaderboard; import java.util.*; class Player { private String name; Player(String n) { name=n; } public String getName() { return name; } } class Team { private String teamName; private int numberOfPlayer; private int totalPoints; private ArrayList<Player>players; Team (String n, int num,int points, ArrayList<Player>p) { totalPoints=points; teamName=n; numberOfPlayer=num; players=p; } public String getTeamName() { return teamName; } public ArrayList<Player> getPlayers() { return players; } public int getTotalPoints() { return totalPoints; } } class Cricket { private int numberOfTeam; private ArrayList<Team> teams; Cricket(int num, ArrayList<Team> t) { numberOfTeam=num; teams=t; } public String maxPoints() { int mx=Integer.MIN_VALUE; String team=""; for(Team t:teams) { String n= t.getTeamName(); int p=t.getTotalPoints(); if(p>mx) { mx=p; team=n; } } return team; } } public class Demo { public static void main(String args[]) { int tNum; Scanner obj=new Scanner(System.in); System.out.println("Input Number of Team"); tNum= obj.nextInt(); obj.nextLine(); int x=tNum; ArrayList<Team> tl=new ArrayList<Team>(); int marker=1; while(x>0) { System.out.println("Input name of team " + marker); String tName=obj.nextLine(); System.out.println("Input number of players in team "+ tName); int pNum= obj.nextInt(); obj.nextLine(); System.out.println("Input name of "+ pNum + " players"); ArrayList<Player> pl=new ArrayList<Player>(); for(int i=0;i<pNum;i++) { String pName=obj.nextLine(); Player p =new Player(pName); pl.add(p); } System.out.println("Input of total points of team"); int tPoints=obj.nextInt(); obj.nextLine(); Team t= new Team(tName,pNum,tPoints,pl); tl.add(t); x--; marker++; } Cricket ck=new Cricket(tNum,tl); System.out.println(ck.maxPoints()); } }
[ "amangupta1711@gmail.com" ]
amangupta1711@gmail.com
6284c66039024fee9db6cec5dbe1f215d69a2e21
292a89a191ae42bd227bea66ab69843a30332ddb
/src/com/lanou/trd/ation/ClassesAction.java
000fc67ed324a0ba697965b5f491c529bc474483
[]
no_license
J0703/ssh_yz_crm
e4f00519941a688206a4c1d861dfdc0afbe02e83
d49d250fc188b1da9209c3038935bcd358857f25
refs/heads/master
2021-05-08T04:38:09.711348
2017-11-02T00:47:33
2017-11-02T00:47:33
108,350,590
0
0
null
null
null
null
UTF-8
Java
false
false
2,986
java
package com.lanou.trd.ation; import com.lanou.base_util.PageBean; import com.lanou.trd.domain.Classes; import com.lanou.trd.domain.Course; import com.lanou.trd.service.ClassesService; import com.lanou.trd.service.CourseService; import com.opensymphony.xwork2.ActionSupport; import com.opensymphony.xwork2.ModelDriven; import org.apache.struts2.ServletActionContext; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Controller; import java.util.List; /** * Created by dllo on 17/10/31. */ @Controller("classesAction") @Scope public class ClassesAction extends ActionSupport implements ModelDriven<Classes>{ private Classes classes; private String pc; @Qualifier("classesService") @Autowired private ClassesService classesService; @Qualifier("courseService") @Autowired private CourseService courseService; public String findAll(){ int pc = getPc(); int ps = 3; PageBean<Classes> pb = classesService.findPagingAll(pc, ps); System.out.println(pb); ServletActionContext.getRequest().setAttribute("pb",pb); return SUCCESS; } public String findById(){ String clazzId = classes.getClassId(); Classes clazz= classesService.findById(clazzId); System.out.println(clazz); List<Course> courses = courseService.findAll(); ServletActionContext.getRequest().setAttribute("clazz",clazz); ServletActionContext.getRequest().getSession().setAttribute("courses",courses); return SUCCESS; } public String showCourses(){ List<Course> courses = courseService.findAll(); ServletActionContext.getRequest().getSession().setAttribute("courses",courses); return SUCCESS; } public String classSaveOrUpdate(){ System.out.println("class:"+classes); if (classes.getClassId().equals("")){ classes.setClassId(null); classesService.saveOrUpdate(classes); return SUCCESS; } Classes clazz = classesService.findById(classes.getClassId()); clazz.setName(classes.getName()); clazz.getCourse().setCourseTypeId(classes.getCourse().getCourseTypeId()); clazz.setBeginTime(classes.getBeginTime()); clazz.setEndTime(classes.getEndTime()); clazz.setRemark(classes.getRemark()); classesService.saveOrUpdate(clazz); return SUCCESS; } @Override public Classes getModel() { classes = new Classes(); return classes; } public int getPc() { String value = pc; System.out.println("pc:"+pc); if (value == null || value.trim().isEmpty()){ return 1; } return Integer.parseInt(value); } public void setPc(String pc) { this.pc = pc; } }
[ "winter951209@163.com" ]
winter951209@163.com
926cc3841b386ad0d8e588e0b033b9acf91cab86
c4eab06c988972a3207584f97453e6b06da12184
/workspace/src/org/ddd/section2/example2_39/MyProxy.java
342a509e3558cdd09aedaab836c2c4827d92a7d9
[]
no_license
dailiwen/HighJava
f1ef9034c1860d6a72aa1e741983459c661c6c81
28fc1204df613a1d218e1043a06b0133393a94e9
refs/heads/master
2020-03-21T01:59:57.206350
2018-06-20T03:11:31
2018-06-20T03:11:31
137,973,921
1
0
null
null
null
null
UTF-8
Java
false
false
472
java
package org.ddd.section2.example2_39; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; public class MyProxy implements InvocationHandler { private Object proxied; public MyProxy(Object proxied){ this.proxied = proxied; } public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method.invoke(this.proxied, args); System.out.println("运行时间: " + System.currentTimeMillis()); return null; } }
[ "450326779@qq.com" ]
450326779@qq.com
17fc34acac4c2ab37719f83efe3806695faf2cf5
646bdcd122695ba4751c3861652476eae04bc6c9
/src/main/java/composite/DirectoryEntry.java
70ba9a0880cf12b5f0d8a4344d3a2ac08b7eefd8
[]
no_license
The-Neo-Noir/Design-pattern-katas
925b3eaf68a0cd33ddfbd8b0e1cb206c4fa3e0ec
10b012d51a150e33d90e9fcfe426676229cbb9c3
refs/heads/master
2021-04-06T08:32:54.887671
2018-03-10T18:07:13
2018-03-10T18:07:13
124,678,909
0
0
null
2018-03-10T17:18:29
2018-03-10T17:18:28
null
UTF-8
Java
false
false
934
java
package composite; import java.io.File; import java.util.ArrayList; import java.util.List; /** * Created by delle on 2/10/2017. */ public class DirectoryEntry implements FileSystemEntry { private File file; List<FileSystemEntry> entries = new ArrayList<>(); private int totalCount; private long totalSize; public DirectoryEntry(File file) { this.file = file; for (File f : file.listFiles()) { entries.add(FileSystemFactory.getComponent(f)); } } @Override public long getCount() { for (FileSystemEntry entry : entries) { totalCount += entry.getCount(); } return totalCount; } @Override public long getSize() { for (FileSystemEntry entry : entries) { totalSize += entry.getSize(); } return totalSize; } public String getName() { return file.getName(); } }
[ "del.legg.iii@gmail.com" ]
del.legg.iii@gmail.com
1e2f0045ab11419fbb2f08761c3acf6f97773b10
716d42dafefbd52aa70c97a81c014eed614c7ab0
/app/src/main/java/kr/rowan/motive_app/network/dto/UpdatePswdRequest.java
35fb679a2cc476c496865025d77bdd2dde958478
[]
no_license
leemJungHun/motive-app
2908086ca06f2031829d7488544af85d88bbbe71
03e4d1f3cbfa9c42a83728dc13da3256a7f66d93
refs/heads/master
2022-12-09T08:26:11.818938
2020-08-03T02:16:32
2020-08-03T02:16:32
248,417,440
0
0
null
null
null
null
UTF-8
Java
false
false
473
java
package kr.rowan.motive_app.network.dto; public class UpdatePswdRequest { String id; String currentPswd; String newPswd; String type; public void setId(String id) { this.id = id; } public void setCurrentPswd(String currentPswd) { this.currentPswd = currentPswd; } public void setNewPswd(String newPswd) { this.newPswd = newPswd; } public void setType(String type) { this.type = type; } }
[ "leem559@naver.com" ]
leem559@naver.com
57d52691c6950a62a0779fd36804fe415c10f1fd
72b92f5808423186532bf6dc69460e826011d179
/app/src/main/java/com/android/proyectoalimentar/utils/StorageUtils.java
b82006bc02d37407e185b25d463658719413e20a
[]
no_license
NicoBuch/AlimentAR-android
2aa4c20a4a4a9e56969c47ba7ff1a179959d6472
17e7043b7773b4b01ff21d9e0592febfe3cecfb8
refs/heads/master
2021-01-18T09:04:50.722563
2018-04-26T17:07:41
2018-04-26T17:07:41
65,651,099
1
0
null
null
null
null
UTF-8
Java
false
false
2,478
java
package com.android.proyectoalimentar.utils; import android.app.Activity; import android.content.SharedPreferences; import com.android.proyectoalimentar.AlimentarApp; import com.google.gson.Gson; /** * A bunch of shared preferences utils methods to get and set different types of values. */ public class StorageUtils { //Vars private static SharedPreferences sp = AlimentarApp.getContext().getSharedPreferences( "ProyectoAlimentarSharedPreferences", Activity.MODE_PRIVATE); public static void storeInSharedPreferences(String key, String value) { sp.edit().putString(key, value).apply(); } public static void storeInSharedPreferences(String key, Integer value) { sp.edit().putInt(key, value).apply(); } public static void storeInSharedPreferences(String key, Float value) { sp.edit().putFloat(key, value).apply(); } public static void storeInSharedPreferences(String key, Boolean value) { sp.edit().putBoolean(key, value).apply(); } public static void storeInSharedPreferences(String key, Long value) { sp.edit().putLong(key, value).apply(); } public static <T> void storeInSharedPreferences(String key, T value) { Gson gson = new Gson(); storeInSharedPreferences(key, gson.toJson(value)); } public static String getStringFromSharedPreferences(String key, String defValue) { return sp.getString(key, defValue); } public static Integer getIntFromSharedPreferences(String key, Integer defValue) { return sp.getInt(key, defValue); } public static Float getFloatFromSharedPreferences(String key, Float defValue) { return sp.getFloat(key, defValue); } public static Boolean getBooleanFromSharedPreferences(String key, Boolean defValue) { return sp.getBoolean(key, defValue); } public static Long getLongFromSharedPreferences(String key, Long defValue) { return sp.getLong(key, defValue); } public static <T> T getObjectFromSharedPreferences(String key, Class<T> clazz) { String stringValue = getStringFromSharedPreferences(key, null); Gson gson = new Gson(); return gson.fromJson(stringValue, clazz); } public static void clearKey(String key) { sp.edit().remove(key).apply(); } public static boolean keyExists(String key) { return sp.contains(key); } }
[ "gonzalo.nardini.dev@gmail.com" ]
gonzalo.nardini.dev@gmail.com
1aa4ee11c0c38087e0046721088988c0975fef2e
e9541bb45c48f2a8f0db14b4cf378cb1754e7d39
/app/src/main/java/chat/rocket/android/activity/business/UpdateGroupActivity.java
1fd58d5b2549cd11398c95b9b736b70b11ae73ba
[ "MIT" ]
permissive
gangt/Rocket.Chat.Android-develop
31098204a8032074498b9ec9ccb366798b148d9c
6e12a07960841cf8df72c5a8b5bec78141985024
refs/heads/master
2020-03-21T04:43:03.480816
2018-06-21T05:58:36
2018-06-21T05:58:36
138,123,986
0
0
null
null
null
null
UTF-8
Java
false
false
4,846
java
package chat.rocket.android.activity.business; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.support.annotation.Nullable; import android.text.TextUtils; import android.view.View; import android.view.WindowManager; import android.widget.EditText; import android.widget.ImageView; import android.widget.TextView; import bolts.Task; import chat.rocket.android.R; import chat.rocket.android.RocketChatCache; import chat.rocket.android.ToastUtils; import chat.rocket.android.api.MethodCallHelper; import chat.rocket.android.log.RCLog; /** * Created by helloworld on 2018/2/2 */ public class UpdateGroupActivity extends BusinessBaseActivity implements View.OnClickListener{ private TextView tv_title,tv_create; private ImageView iv_back,iv_delete; private EditText et_groupName; private String roomId; private String roomTopic; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_update_group); roomId = getIntent().getStringExtra("roomId"); initView(); setListener(); } private void setListener() { iv_back.setOnClickListener(this); tv_create.setOnClickListener(this); iv_delete.setOnClickListener(this); } private void initView() { tv_title = findViewById(R.id.tv_title); iv_back = findViewById(R.id.iv_back); tv_create = findViewById(R.id.tv_create); iv_delete = findViewById(R.id.iv_delete); et_groupName = findViewById(R.id.et_groupName); tv_create.setText(R.string.finish); tv_title.setText(R.string.update_group_name); et_groupName.setFocusable(true); et_groupName.setFocusableInTouchMode(true); et_groupName.requestFocus(); getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE); String subscriptionDisplayName = getIntent().getStringExtra("subscriptionDisplayName"); roomTopic = getIntent().getStringExtra("roomTopic"); String name = subscriptionDisplayName == null ? roomTopic : subscriptionDisplayName; et_groupName.setText(name); et_groupName.setSelection(name.length());//将光标移至文字末尾 } @Override public void onClick(View v) { switch (v.getId()){ case R.id.iv_back: finish(); break; case R.id.iv_delete: et_groupName.setText(""); break; case R.id.tv_create: blockUserForMobile(); break; } } private void blockUserForMobile(){ String hostname = RocketChatCache.INSTANCE.getSelectedServerHostname(); String name = et_groupName.getText().toString().trim(); if(TextUtils.isEmpty(name)){ ToastUtils.showToast(getResources().getString(R.string.please_input_content)); return; } showProgressDialog(); MethodCallHelper methodCallHelper = new MethodCallHelper(this, hostname); if(roomTopic == null){ methodCallHelper.modifyRoomInfo(roomId, et_groupName.getText().toString()) .continueWithTask(task -> { dismissProgressDialog(); if (task.isFaulted()) { RCLog.e("blockUserForMobile: result=" + task.getError(), true); return null; } ToastUtils.showToast(getResources().getString(R.string.update_finish)); Intent intent = new Intent(); intent.putExtra("updateName", name); setResult(Activity.RESULT_OK, intent); UpdateGroupActivity.this.finish(); return null; }, Task.UI_THREAD_EXECUTOR); }else { methodCallHelper.modifyRoomInfo2(roomId, et_groupName.getText().toString()) .continueWithTask(task -> { dismissProgressDialog(); if (task.isFaulted()) { RCLog.e("blockUserForMobile: result=" + task.getError(), true); return null; } ToastUtils.showToast(getResources().getString(R.string.update_finish)); Intent intent = new Intent(); intent.putExtra("updateName", name); setResult(Activity.RESULT_OK, intent); UpdateGroupActivity.this.finish(); return null; }, Task.UI_THREAD_EXECUTOR); } } }
[ "18271817996@163.com" ]
18271817996@163.com
831f1c25bbfe967e9f9f8b71a5ec0cf443a51836
4a8f456a7d08b918b0cdb668151486ce1bf5fb60
/keepalive/src/main/java/com/sdk/keepbackground/work/AbsWorkService.java
dde084164646dbf0fa65561ca10deebe2b99cf0c
[]
no_license
ytl2009/KeepAlive
938f8dabd9dc7757084e03d2d9a55880018c0b86
382f3c4f85d38192f820070e9625c44fe9f9fef2
refs/heads/master
2020-11-23T19:45:56.057387
2019-10-08T07:52:34
2019-10-08T07:52:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,260
java
package com.sdk.keepbackground.work; import android.app.Service; import android.content.BroadcastReceiver; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.pm.PackageManager; import android.os.IBinder; import android.util.Log; import com.sdk.keepbackground.watch.AbsServiceConnection; import com.sdk.keepbackground.utils.ForegroundNotificationUtils; import com.sdk.keepbackground.singlepixel.ScreenReceiverUtil; import com.sdk.keepbackground.watch.WatchDogService; import com.sdk.keepbackground.watch.WatchProcessPrefHelper; /** * 主要Service 用户继承该类用来处理自己业务逻辑 * * 该类已经实现如何启动结束及保活的功能,用户无需关心。 */ public abstract class AbsWorkService extends Service { private StopBroadcastReceiver stopBroadcastReceiver; private AbsServiceConnection mConnection = new AbsServiceConnection() { @Override public void onDisconnected(ComponentName name) { if (needStartWorkService()) { DaemonEnv.startServiceMayBind(AbsWorkService.this, WatchDogService.class, mConnection); } } }; @Override public void onCreate() { super.onCreate(); if(DaemonEnv.app==null)return; Log.d("sj_keep", this.getClass()+" onCreate 启动。。。。"); WatchProcessPrefHelper.mWorkServiceClass=this.getClass(); if (!needStartWorkService()) { stopSelf(); }else { Log.d("sj_keep", "AbsWorkService onCreate 启动。。。。"); startRegisterReceiver(); createScreenListener(); ForegroundNotificationUtils.startForegroundNotification(this); getPackageManager().setComponentEnabledSetting(new ComponentName(getPackageName(), WatchDogService.class.getName()), PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP); } } @Override public int onStartCommand(Intent intent, int flags, int startId) { return onStart(); } /** * 1.防止重复启动,可以任意调用 DaemonEnv.startServiceMayBind(Class serviceClass); * 2.利用漏洞启动前台服务而不显示通知; * 3.在子线程中运行定时任务,处理了运行前检查和销毁时保存的问题; * 4.启动守护服务; * 5.守护 Service 组件的启用状态, 使其不被 MAT 等工具禁用. */ protected int onStart() { //启动守护服务,运行在:watch子进程中 //业务逻辑: 实际使用时,根据需求,将这里更改为自定义的条件,判定服务应当启动还是停止 (任务是否需要运行) // 此处不比重复关闭服务。否则mConnection.mConnectedState的状态没有来得及改变, // 再次unbindService(conn)服务会导致 Service not registered 异常抛出。 服务启动和关闭都需要耗时,段时间内不宜频繁开启和关闭。 //若还没有取消订阅,说明任务仍在运行,为防止重复启动,直接 return DaemonEnv.startServiceMayBind(AbsWorkService.this, WatchDogService.class, mConnection); Boolean workRunning = isWorkRunning(); if (!workRunning){ //业务逻辑 startWork(); } return START_STICKY; } @Override public IBinder onBind(Intent intent) { return onBindService(intent, null); } /** * 最近任务列表中划掉卡片时回调 */ @Override public void onTaskRemoved(Intent rootIntent) { onEnd(); } /** * 设置-正在运行中停止服务时回调 */ @Override public void onDestroy() { ForegroundNotificationUtils.deleteForegroundNotification(this); stopRegisterReceiver(); stopScreenListener(); onEnd(); } protected void onEnd() { onServiceKilled(); // // 不同的进程,所有的静态和单例都会失效 if (needStartWorkService()){ DaemonEnv.startServiceSafely(AbsWorkService.this,WatchDogService.class); } } /** * 是否 任务完成, 不再需要服务运行? * @return true 应当启动服务; false 应当停止服务; null 无法判断, 什么也不做. */ public abstract Boolean needStartWorkService(); /** * 开启具体业务,实际调用与isWorkRunning方法返回值有关,当isWorkRunning返回false才会执行该方法 */ public abstract void startWork(); /** * 服务停止需要执行的操作 */ public abstract void stopWork(); /** * 任务是否正在运行? 由实现者处理 * @return 任务正在运行, true; 任务当前不在运行, false; 无法判断, 什么也不做, null. */ public abstract Boolean isWorkRunning(); /** * 绑定远程service 可根据实际业务情况是否绑定自定义binder或者直接返回默认binder * @param intent * @param alwaysNull * @return */ public abstract IBinder onBindService(Intent intent, Void alwaysNull); public abstract void onServiceKilled(); /** * 任务完成,停止服务并取消定时唤醒 * * 停止服务使用取消订阅的方式实现,而不是调用 Context.stopService(Intent name)。因为: * 1.stopService 会调用 Service.onDestroy(),而 AbsWorkService 做了保活处理,会把 Service 再拉起来; * 2.我们希望 AbsWorkService 起到一个类似于控制台的角色,即 AbsWorkService 始终运行 (无论任务是否需要运行), * 而是通过 onStart() 里自定义的条件,来决定服务是否应当启动或停止。 */ private void stopService() { // 给实现者处理业务逻辑 DaemonEnv.safelyUnbindService(this,mConnection); stopWork(); stopSelf(); } private ScreenReceiverUtil mScreenUtils; private void createScreenListener(){ // 注册锁屏广播监听器 mScreenUtils = new ScreenReceiverUtil(this); mScreenUtils.startScreenReceiverListener(); } private void stopScreenListener(){ // 取消注册 if (mScreenUtils != null){ mScreenUtils.stopScreenReceiverListener(); mScreenUtils = null; } } private void startRegisterReceiver(){ if (stopBroadcastReceiver == null){ stopBroadcastReceiver = new StopBroadcastReceiver(); IntentFilter intentFilter = new IntentFilter(); intentFilter.addAction(DaemonEnv.ACTION_CANCEL_JOB_ALARM_SUB); registerReceiver(stopBroadcastReceiver,intentFilter); } } private void stopRegisterReceiver(){ if (stopBroadcastReceiver != null){ unregisterReceiver(stopBroadcastReceiver); stopBroadcastReceiver = null; } } class StopBroadcastReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // 停止业务 stopService(); } } }
[ "1452011874@qq.com" ]
1452011874@qq.com
b8cfcfcab4c818c3d9e7433596bb12f24b739c27
f5d154d3965cc8713bca6fec8dcf387984e04dbd
/src/com/suprnovae/takee/Home.java
4f9ac212f8af0d20d7c984ae934f94e33959b3f3
[]
no_license
vidbina/taki-android
c15bde4bc574e3c5f91fa0a5b8e0ff85397eea90
8566f93d90c2554e68ff87389d62d485e3c6ee2d
refs/heads/master
2016-09-06T00:05:09.446777
2013-03-29T21:32:57
2013-03-29T21:32:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
340
java
package com.suprnovae.takee; import android.app.Activity; import android.os.Bundle; public class Home extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } }
[ "david@supr.nu" ]
david@supr.nu
22ba18d3759f401254c485fff14151579d32aaf2
54ea1a722713f82f3bd94ba7d03f0e670b1da163
/basic/src/test/java/com/liluyang/ApplicationTests.java
aaff44153d0f1a7ad8a239c6c913e03ff87da2cf
[]
no_license
llyer/learn-spring
e3c39b2fda5546ad1a07b3e67d09cee8fd0e2378
2bd6248acf4d3b65665fea658ac0f370ed251b90
refs/heads/master
2023-07-29T12:39:28.054923
2019-07-27T08:00:00
2019-07-27T08:00:00
110,692,205
1
0
null
2023-07-16T09:33:59
2017-11-14T13:13:54
Java
UTF-8
Java
false
false
323
java
package com.liluyang; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class ApplicationTests { @Test public void contextLoads() { } }
[ "392439022@qq.com" ]
392439022@qq.com
3a0cd549452c0f65da28c540c591018d35d6e6f6
1eaaa723ee850e38e2320eb37791e3d5a2cff8ad
/src/main/java/com/msc/route/CitiRouteApplication.java
85baf6d4e98bbd82852897eed76094f8858a58db
[]
no_license
rakeshramteke2jul/citi-route
667646857ef8147f8f3a59ac3b5b8b444fa76fd9
20229706b42064212ccff23af2d323dc0da0408b
refs/heads/master
2022-12-20T00:14:09.631892
2020-09-06T16:29:13
2020-09-06T16:29:13
292,898,985
0
0
null
null
null
null
UTF-8
Java
false
false
312
java
package com.msc.route; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class CitiRouteApplication { public static void main(String[] args) { SpringApplication.run(CitiRouteApplication.class, args); } }
[ "ramteke.rakesh@gmail.com" ]
ramteke.rakesh@gmail.com
3105a20887d5103298f12b2e1cd95e360a65fb82
9d0517091fe2313c40bcc88a7c82218030d2075c
/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/blobstore/integration/SwiftContainerIntegrationLiveTest.java
fcabb0ae52659dc6010f1ab6e9f470a780140533
[ "Apache-2.0" ]
permissive
nucoupons/Mobile_Applications
5c63c8d97f48e1051049c5c3b183bbbaae1fa6e6
62239dd0f17066c12a86d10d26bef350e6e9bd43
refs/heads/master
2020-12-04T11:49:53.121041
2020-01-04T12:00:04
2020-01-04T12:00:04
231,754,011
0
0
Apache-2.0
2020-01-04T12:02:30
2020-01-04T11:46:54
Java
UTF-8
Java
false
false
2,402
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.jclouds.openstack.swift.v1.blobstore.integration; import static org.jclouds.openstack.keystone.v2_0.config.KeystoneProperties.CREDENTIAL_TYPE; import static org.testng.Assert.assertTrue; import java.util.Properties; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; import org.testng.annotations.Test; import org.testng.SkipException; @Test(groups = "live", testName = "SwiftContainerIntegrationLiveTest") public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationTest { public SwiftContainerIntegrationLiveTest() { provider = "openstack-swift"; } @Override protected Properties setupProperties() { Properties props = super.setupProperties(); setIfTestSystemPropertyPresent(props, CREDENTIAL_TYPE); return props; } @Override public void testListRootUsesDelimiter() throws InterruptedException { try { super.testListRootUsesDelimiter(); } catch (AssertionError e) { // swift doesn't have the "common prefixes" in the response that s3 // does. If we wanted this to pass, we'd need to create // pseudo-directories implicitly, which is costly and troublesome. It // is better to fail this assertion. assertTrue(e.getMessage().matches(".*16.* but .*15.*"), e.getMessage()); // ^^ squishy regex to deal with various formats of testng messages. } } @Override public void testDelimiter() throws Exception { throw new SkipException("openstack-swift does not implement pseudo-directories"); } }
[ "Administrator@fdp" ]
Administrator@fdp
519b344d8516394ad5bf18dc0353a124b65b06c6
63f6511659e73cac147224de8e4c173dc341f849
/app/src/main/Stores/Clothing.java
703364c042688c7b24ae810078182c798024b499
[]
no_license
ncarsello/Mall
c6b3b9d27b19cf78e3fa01f988846483a8635511
16a7247ac1d5327c3855efc5b6de78fe3417bcf3
refs/heads/master
2020-04-25T02:13:19.259357
2019-03-27T21:23:13
2019-03-27T21:23:13
172,431,925
0
0
null
null
null
null
UTF-8
Java
false
false
725
java
package com.example.nicholas.mall; package Facility /** * Created by nicholas on 24 February 2019. */ public class Clothing extends Store { private String clothesTypes; public int getListInventory() { return getListInventory(); } public void setListInventory(String clothestypes) { this.clothestypes = clothestypes; } //clerk public int getEmployeeRole() { return getEmployeeRole; } public void setEmployeeRole(String clerkrole) { this.clerkrole = clerkrole; } //cashier public int getEmployeeRole() { return getEmployeeRole; } public void setEmployeeRole(String cashierrole) { this.role = cashierrole; }
[ "ncarsello@luc.edu" ]
ncarsello@luc.edu
9b32a699fbd8e44dd1e79af401a15110c3d1e950
3a44caee63e6ddb7fe8d11b6f84b7e346a0f96dd
/MoinSipan.java
ce8bbe347fdebbe98556c3448490ece014bd8e62
[]
no_license
Minhtintin/Minhtintin
b311530ad7ce066462768c15b24d0848fffc2287
a85677973c6f3ce974692becb5e9f67906a7dc12
refs/heads/master
2020-04-05T01:39:45.374121
2018-11-06T20:39:46
2018-11-06T20:39:46
156,441,832
0
0
null
null
null
null
UTF-8
Java
false
false
115
java
public class MoinSipan { public static void main (String [] args){ system.out.println("Sipan du geile Sau"); } }
[ "minh.tamngo@yahoo.de" ]
minh.tamngo@yahoo.de
22fb7db356b6cbcdf743b72c1373e91ed6b97cf8
4f57aed823ff96ae43d95cf84cf439f6fa41cd7a
/open-metadata-implementation/adapters/open-connectors/repository-services-connectors/open-metadata-collection-store-connectors/ibm-igc-repository-connector/igc-rest-client-library/src/main/java/org/odpi/openmetadata/adapters/repositoryservices/igc/clientlibrary/model/generated/v11701sp1/ChangedProperties.java
f9999c3cb38ef335f678bc28820f59a5d917944e
[ "CC-BY-4.0", "Apache-2.0" ]
permissive
ElshadV/egeria
2640607a332ca08dab9c3af0276ba509722a7a50
dd43bdff970e88c885a3002929b061c90a0796fe
refs/heads/master
2020-05-18T01:23:03.615663
2019-04-29T14:14:19
2019-04-29T14:14:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,705
java
/* SPDX-License-Identifier: Apache-2.0 */ /* Copyright Contributors to the ODPi Egeria project. */ package org.odpi.openmetadata.adapters.repositoryservices.igc.clientlibrary.model.generated.v11701sp1; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonTypeName; import javax.annotation.Generated; import org.odpi.openmetadata.adapters.repositoryservices.igc.clientlibrary.model.common.*; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.ArrayList; /** * POJO for the {@code changed_properties} asset type in IGC, displayed as '{@literal Changed Properties}' in the IGC UI. * <br><br> * (this code has been generated based on out-of-the-box IGC metadata types; * if modifications are needed, eg. to handle custom attributes, * extending from this class in your own custom class is the best approach.) */ @Generated("org.odpi.openmetadata.adapters.repositoryservices.igc.clientlibrary.model.IGCRestModelGenerator") @JsonIgnoreProperties(ignoreUnknown=true) @JsonTypeName("changed_properties") public class ChangedProperties extends Reference { public static String getIgcTypeDisplayName() { return "Changed Properties"; } /** * The {@code term_history} property, displayed as '{@literal Term History}' in the IGC UI. * <br><br> * Will be a {@link ReferenceList} of {@link TermHistory} objects. */ protected ReferenceList term_history; /** * The {@code property_name} property, displayed as '{@literal Property Name}' in the IGC UI. */ protected ArrayList<String> property_name; /** * The {@code previous_value} property, displayed as '{@literal Previous Value}' in the IGC UI. */ protected ArrayList<String> previous_value; /** * The {@code created_by} property, displayed as '{@literal Created By}' in the IGC UI. */ protected String created_by; /** * The {@code created_on} property, displayed as '{@literal Created On}' in the IGC UI. */ protected Date created_on; /** * The {@code modified_by} property, displayed as '{@literal Modified By}' in the IGC UI. */ protected String modified_by; /** * The {@code modified_on} property, displayed as '{@literal Modified On}' in the IGC UI. */ protected Date modified_on; /** @see #term_history */ @JsonProperty("term_history") public ReferenceList getTermHistory() { return this.term_history; } /** @see #term_history */ @JsonProperty("term_history") public void setTermHistory(ReferenceList term_history) { this.term_history = term_history; } /** @see #property_name */ @JsonProperty("property_name") public ArrayList<String> getPropertyName() { return this.property_name; } /** @see #property_name */ @JsonProperty("property_name") public void setPropertyName(ArrayList<String> property_name) { this.property_name = property_name; } /** @see #previous_value */ @JsonProperty("previous_value") public ArrayList<String> getPreviousValue() { return this.previous_value; } /** @see #previous_value */ @JsonProperty("previous_value") public void setPreviousValue(ArrayList<String> previous_value) { this.previous_value = previous_value; } /** @see #created_by */ @JsonProperty("created_by") public String getCreatedBy() { return this.created_by; } /** @see #created_by */ @JsonProperty("created_by") public void setCreatedBy(String created_by) { this.created_by = created_by; } /** @see #created_on */ @JsonProperty("created_on") public Date getCreatedOn() { return this.created_on; } /** @see #created_on */ @JsonProperty("created_on") public void setCreatedOn(Date created_on) { this.created_on = created_on; } /** @see #modified_by */ @JsonProperty("modified_by") public String getModifiedBy() { return this.modified_by; } /** @see #modified_by */ @JsonProperty("modified_by") public void setModifiedBy(String modified_by) { this.modified_by = modified_by; } /** @see #modified_on */ @JsonProperty("modified_on") public Date getModifiedOn() { return this.modified_on; } /** @see #modified_on */ @JsonProperty("modified_on") public void setModifiedOn(Date modified_on) { this.modified_on = modified_on; } public static Boolean canBeCreated() { return false; } public static Boolean includesModificationDetails() { return true; } private static final List<String> NON_RELATIONAL_PROPERTIES = Arrays.asList( "property_name", "previous_value", "created_by", "created_on", "modified_by", "modified_on" ); private static final List<String> STRING_PROPERTIES = Arrays.asList( "property_name", "previous_value", "created_by", "modified_by" ); private static final List<String> PAGED_RELATIONAL_PROPERTIES = Arrays.asList( "term_history" ); private static final List<String> ALL_PROPERTIES = Arrays.asList( "term_history", "property_name", "previous_value", "created_by", "created_on", "modified_by", "modified_on" ); public static List<String> getNonRelationshipProperties() { return NON_RELATIONAL_PROPERTIES; } public static List<String> getStringProperties() { return STRING_PROPERTIES; } public static List<String> getPagedRelationshipProperties() { return PAGED_RELATIONAL_PROPERTIES; } public static List<String> getAllProperties() { return ALL_PROPERTIES; } public static Boolean isChangedProperties(Object obj) { return (obj.getClass() == ChangedProperties.class); } }
[ "chris@thegrotes.net" ]
chris@thegrotes.net
fd868c22a37002649ed03711ebfe2e2bd6c73564
f284830557b9a44f51eb2bf331b255f8bb342b2e
/src/main/java/com/example/newbeemall/entity/TbNewbeeMallIndexConfig.java
20c9864550415f73a4bdf983ce2ac18e93dd0d90
[]
no_license
LiaoShengQiu/newbee-mall
720ea2985339c7f723166e82c9f615c56c14fc9a
b688fc4d38b6ace97e750524df5be595caf556cc
refs/heads/master
2020-12-30T03:44:03.538024
2020-05-12T11:13:37
2020-05-12T11:13:37
238,848,705
0
1
null
null
null
null
UTF-8
Java
false
false
3,802
java
package com.example.newbeemall.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import java.time.LocalDateTime; import java.io.Serializable; /** * <p> * * </p> * * @author *** * @since 2020-02-07 */ public class TbNewbeeMallIndexConfig implements Serializable { private static final long serialVersionUID=1L; /** * 首页配置项主键id */ @TableId(value = "config_id", type = IdType.AUTO) private Long configId; /** * 显示字符(配置搜索时不可为空,其他可为空) */ private String configName; /** * 1-搜索框热搜 2-搜索下拉框热搜 3-(首页)热销商品 4-(首页)新品上线 5-(首页)为你推荐 */ private Integer configType; /** * 商品id 默认为0 */ private Long goodsId; /** * 点击后的跳转地址(默认不跳转) */ private String redirectUrl; /** * 排序值(字段越大越靠前) */ private Integer configRank; /** * 删除标识字段(0-未删除 1-已删除) */ private Integer isDeleted; /** * 创建时间 */ private LocalDateTime createTime; /** * 创建者id */ private Integer createUser; /** * 最新修改时间 */ private LocalDateTime updateTime; /** * 修改者id */ private Integer updateUser; public Long getConfigId() { return configId; } public void setConfigId(Long configId) { this.configId = configId; } public String getConfigName() { return configName; } public void setConfigName(String configName) { this.configName = configName; } public Integer getConfigType() { return configType; } public void setConfigType(Integer configType) { this.configType = configType; } public Long getGoodsId() { return goodsId; } public void setGoodsId(Long goodsId) { this.goodsId = goodsId; } public String getRedirectUrl() { return redirectUrl; } public void setRedirectUrl(String redirectUrl) { this.redirectUrl = redirectUrl; } public Integer getConfigRank() { return configRank; } public void setConfigRank(Integer configRank) { this.configRank = configRank; } public Integer getIsDeleted() { return isDeleted; } public void setIsDeleted(Integer isDeleted) { this.isDeleted = isDeleted; } public LocalDateTime getCreateTime() { return createTime; } public void setCreateTime(LocalDateTime createTime) { this.createTime = createTime; } public Integer getCreateUser() { return createUser; } public void setCreateUser(Integer createUser) { this.createUser = createUser; } public LocalDateTime getUpdateTime() { return updateTime; } public void setUpdateTime(LocalDateTime updateTime) { this.updateTime = updateTime; } public Integer getUpdateUser() { return updateUser; } public void setUpdateUser(Integer updateUser) { this.updateUser = updateUser; } @Override public String toString() { return "TbNewbeeMallIndexConfig{" + "configId=" + configId + ", configName=" + configName + ", configType=" + configType + ", goodsId=" + goodsId + ", redirectUrl=" + redirectUrl + ", configRank=" + configRank + ", isDeleted=" + isDeleted + ", createTime=" + createTime + ", createUser=" + createUser + ", updateTime=" + updateTime + ", updateUser=" + updateUser + "}"; } }
[ "58867918+LiaoShengQiu@users.noreply.github.com" ]
58867918+LiaoShengQiu@users.noreply.github.com
107cec5e8deeb6465c25260c499b87b67dbd0f42
a919d96820e9b71cae21a7f7f5fd7ad2ed4045f5
/app/src/main/java/com/coolweather/android/util/Utility.java
07061f4f17fa319addb2accf497be3989401860b
[ "Apache-2.0" ]
permissive
Yang-YuLin/coolweather
c7e0e8f7302d3b4987f1530fc56ca5acbbfbb291
060b6aa21ac48ba5cd77d0c37c5ea572fbe87a7c
refs/heads/master
2021-09-21T10:31:10.257430
2018-08-24T13:29:06
2018-08-24T13:29:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,545
java
package com.coolweather.android.util; import android.text.TextUtils; import com.coolweather.android.db.City; import com.coolweather.android.db.County; import com.coolweather.android.db.Province; import com.coolweather.android.gson.Weather; import com.google.gson.Gson; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; /** * Created by Yangyulin on 2018/8/20. */ //用来解析和处理json格式数据的工具类 public class Utility { /** * 解析和处理服务器返回的省级数据 */ public static boolean handleProvinceResponse(String response){ if(!TextUtils.isEmpty(response)){ try{ JSONArray allProvinces = new JSONArray(response); for(int i = 0; i < allProvinces.length(); i++){ JSONObject provinceObject = allProvinces.getJSONObject(i); Province province = new Province(); province.setProvinceName(provinceObject.getString("name")); province.setProvinceCode(provinceObject.getInt("id")); province.save(); } return true; }catch (JSONException e){ e.printStackTrace(); } } return false; } /** * 解析和处理服务器返回的市级数据 */ public static boolean handleCityResponse(String response,int provinceId){ if(!TextUtils.isEmpty(response)){ try{ JSONArray allCities = new JSONArray(response); for(int i = 0; i < allCities.length(); i++){ JSONObject cityObject = allCities.getJSONObject(i); City city = new City(); city.setCityName(cityObject.getString("name")); city.setCityCode(cityObject.getInt("id")); city.setProvinceId(provinceId); city.save(); } return true; }catch (JSONException e){ e.printStackTrace(); } } return false; } /** * 解析和处理服务器返回的县级数据 */ public static boolean handleCountyResponse(String response,int cityId){ if(!TextUtils.isEmpty(response)){ try{ JSONArray allCounties = new JSONArray(response); for(int i = 0; i < allCounties.length(); i++){ JSONObject countyObject = allCounties.getJSONObject(i); County county = new County(); county.setCountyName(countyObject.getString("name")); county.setWeatherId(countyObject.getString("weather_id")); county.setCityId(cityId); county.save(); } return true; }catch (JSONException e){ e.printStackTrace(); } } return false; } /** * 将返回的JSON数据解析成Weather实体类 */ public static Weather handleWeatherResponse(String response){ try{ JSONObject jsonObject = new JSONObject(response); JSONArray jsonArray = jsonObject.getJSONArray("HeWeather"); String weatherContent = jsonArray.getJSONObject(0).toString(); return new Gson().fromJson(weatherContent,Weather.class); }catch (Exception e){ e.printStackTrace(); } return null; } }
[ "you@example.com" ]
you@example.com
a36d51703a2a320c0b03f2281bf3d40dac87d518
db4061605841358b96f4186deef3881d88758e63
/src/Lesson19.java
d39750d2464354e2d1c668d1cd4aae379d5df1b6
[]
no_license
Qisone/Java-for-beginners
40c3cd377a369114e9208baf48f2618169d99607
90506899a0fff0d17eedf3f1c24020ba38dda92f
refs/heads/master
2021-01-01T03:13:23.436041
2020-02-08T16:10:57
2020-02-08T16:10:57
239,156,802
0
0
null
null
null
null
UTF-8
Java
false
false
648
java
public class Lesson19 { public static void main(String[] args) { Lala human1 = new Lala(); human1.setAge(18); human1.setName("Tom"); human1.getInfo(); } } class Lala { String name; int age; public void setName (String name){ this.name = name; // this - вызывает объект внутри класса } public void setAge (int age){ this.age = age; } public String getName(){ return name; } public int getAge(){ return age; } public void getInfo(){ System.out.println(name+", "+age); } }
[ "qisone@Qisone-2.local" ]
qisone@Qisone-2.local
9d727c559d87bb7c989bc794bb2f0435e1bee4a3
d6634e1ac9d1e110760a7ffdc18f98c0c73a9095
/src/streaminout/InputStreamReaderTest.java
6b18e92b921abfe253860f9247532608186658f4
[]
no_license
skysamer/java_review
6fd178b37e35882d32a1e541c406f7f1d612ce29
36f5c3260b6042d0c84c8aaa271b8676aedc089b
refs/heads/master
2023-03-17T06:10:17.652556
2021-03-21T11:51:24
2021-03-21T11:51:24
332,936,310
0
0
null
null
null
null
UTF-8
Java
false
false
421
java
package streaminout; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; public class InputStreamReaderTest { public static void main(String[] args) { try(InputStreamReader jsr=new InputStreamReader(new FileInputStream("reader.txt"))){ int i; while((i=jsr.read())!=-1) { System.out.print((char)i); } }catch (IOException e) { e.printStackTrace(); } } }
[ "skyslayer123@naver.com" ]
skyslayer123@naver.com
c30e5fb4d3dd0c324bb36c195199d99c0d0161cf
f4076eecdb2be8377bddbaf09e6f7c87d6c10cb8
/app/src/main/java/com/fstravassos/sirast/master/view/SearchSlaveDialog.java
d94e68dd6d585f6469179e7aee692f7969733896
[]
no_license
travassosfs/p2_app
307041ff45f3f0e277e6bf2be05234469de6f9b7
35f7774f92f7b6d518088fa2cfd19b3e2a15068f
refs/heads/master
2020-06-01T02:51:57.098651
2017-06-20T03:47:55
2017-06-20T03:47:55
94,059,726
0
0
null
null
null
null
UTF-8
Java
false
false
2,007
java
package com.fstravassos.sirast.master.view; import android.app.DialogFragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ListView; import com.fstravassos.sirast.R; import com.fstravassos.sirast.master.Adapter.PhonesListAdapter; import com.fstravassos.sirast.master.models.Slavery; import com.fstravassos.sirast.master.database.MasterDataBase; import java.util.List; /** * Created by felip_000 on 09/03/2017. */ public class SearchSlaveDialog extends DialogFragment { ListView mLvPhones; MasterDataBase db; List<Slavery> myList; String number; /** * Create a new instance of MyDialogFragment, providing "num" * as an argument. */ static SearchSlaveDialog newInstance() { SearchSlaveDialog f = new SearchSlaveDialog(); return f; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View v = inflater.inflate(R.layout.activity_track_select_phone, container, false); mLvPhones = (ListView) v.findViewById(R.id.lv_phonelist); db = new MasterDataBase(getActivity()); loadList(); return v; } private void loadList() { myList = db.getAllSlavers(); mLvPhones.setAdapter(new PhonesListAdapter(getActivity(), myList)); mLvPhones.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long arg3) { view.setSelected(true); number = myList.get(position).getNumber(); ((StartMasterActivity) getActivity()).getLocation(number); } }); } }
[ "fstravassos@gmail.com" ]
fstravassos@gmail.com
1f4228b893fee801d83dd0065108322acd33fd60
d27d13da4086990c7fb176f587ce3caf0d6e72e7
/app/src/main/java/com/takacsl/coinchecker/ui/newcoin/NewCoinPresenter.java
b8256f7d953050abf9e1442e14c1f7f4a837aba0
[]
no_license
takilevi/CoinChecker
5b450209a6a067ff216e30b4f9a2a7ec9ebaaac8
f578ca8905a424e153df7631784e3ee66178276c
refs/heads/master
2020-05-03T20:19:39.241326
2019-06-10T17:15:06
2019-06-10T17:15:06
178,800,450
0
0
null
null
null
null
UTF-8
Java
false
false
1,991
java
package com.takacsl.coinchecker.ui.newcoin; import com.takacsl.coinchecker.dependencyinjection.Network; import com.takacsl.coinchecker.interactor.NewCoinInteractor; import com.takacsl.coinchecker.interactor.event.NewCoinEvent; import com.takacsl.coinchecker.ui.Presenter; import org.greenrobot.eventbus.EventBus; import org.greenrobot.eventbus.Subscribe; import org.greenrobot.eventbus.ThreadMode; import java.util.concurrent.Executor; import javax.inject.Inject; public class NewCoinPresenter extends Presenter<NewCoinScreen> { NewCoinInteractor newCoinInteractor; Executor networkExecutor; @Inject public NewCoinPresenter(@Network Executor networkExecutor, NewCoinInteractor newCoinInteractor) { this.newCoinInteractor = newCoinInteractor; this.networkExecutor = networkExecutor; } @Override public void attachScreen(NewCoinScreen screen) { super.attachScreen(screen); EventBus.getDefault().register(this); } @Override public void detachScreen() { EventBus.getDefault().unregister(this); super.detachScreen(); } public void addNewCoin(final String name, final String symbol, final String price, final String marketcap) { networkExecutor.execute(new Runnable() { @Override public void run() { newCoinInteractor.newCoin(name,symbol,Double.parseDouble(price),Double.parseDouble(marketcap)); } }); } @Subscribe(threadMode = ThreadMode.MAIN) public void onEventMainThread(final NewCoinEvent event) { if (event.getThrowable() != null) { event.getThrowable().printStackTrace(); if (screen != null) { screen.showNetworkError(event.getThrowable().getMessage()); } } else { if (screen != null) { screen.newCoin(event.getName(),event.getSymbol(),event.getPrice(),event.getMarketcap()); } } } }
[ "levi.takacs@gmail.com" ]
levi.takacs@gmail.com
175754e92a80d4e3ad108aae43bf26318b1b52aa
883df62c6c9bafc85df5967e83a90327b00827c0
/app/src/main/java/br/ifpe/kaio/geoquiz/Questao.java
ab0f37f992e239be7853e2194c47bca56f912e7d
[ "MIT" ]
permissive
Kaio-Brasil/geoquiz
6419825627b7a0aba6e2bcd36da07ea4bea605ff
d0d8d0246be3bd48af0e3f489a0fbaba8fd71c6c
refs/heads/master
2020-03-11T22:13:30.468582
2018-05-13T23:38:37
2018-05-13T23:38:37
130,286,362
0
0
null
null
null
null
UTF-8
Java
false
false
623
java
package br.ifpe.kaio.geoquiz; /** * Created by Kaio on 25/04/2018. */ public class Questao { private int mTextoResId; private boolean mResposta; public Questao(int mTextoResId, boolean mResposta) { this.mTextoResId = mTextoResId; this.mResposta = mResposta; } public int getTextoResId() { return mTextoResId; } public void setTextoResId(int mTextoResId) { this.mTextoResId = mTextoResId; } public boolean isResposta() { return mResposta; } public void setResposta(boolean mResposta) { this.mResposta = mResposta; } }
[ "kaio.gus@outlook.com" ]
kaio.gus@outlook.com
e4b4b5834b3fa729d0d39009d71ad74dcfb9b179
04406cd4df93f7b1e19953e359b17cd49e0bfd96
/sources/com.superking.ludo.star/java/com/unity3d/ads/api/Resolve.java
9e04460164232da62ed2be990795a490b6e32ee8
[]
no_license
lancelot1337/Udo
97c2f2249518460960b6723940615a9665d77f43
2e42f9e37bc7cc47cdb95aaef1a678d20dc024b9
refs/heads/master
2021-01-25T12:01:26.726595
2018-03-01T15:22:22
2018-03-01T15:22:22
123,451,782
0
0
null
null
null
null
UTF-8
Java
false
false
1,408
java
package com.unity3d.ads.api; import com.unity3d.ads.request.IResolveHostListener; import com.unity3d.ads.request.ResolveHostError; import com.unity3d.ads.request.ResolveHostEvent; import com.unity3d.ads.request.WebRequestThread; import com.unity3d.ads.webview.WebViewApp; import com.unity3d.ads.webview.WebViewEventCategory; import com.unity3d.ads.webview.bridge.WebViewCallback; import com.unity3d.ads.webview.bridge.WebViewExposed; public class Resolve { @WebViewExposed public static void resolve(final String id, String host, WebViewCallback callback) { if (WebRequestThread.resolve(host, new IResolveHostListener() { public void onResolve(String host, String address) { if (WebViewApp.getCurrentApp() != null) { WebViewApp.getCurrentApp().sendEvent(WebViewEventCategory.RESOLVE, ResolveHostEvent.COMPLETE, id, host, address); } } public void onFailed(String host, ResolveHostError error, String errorMessage) { if (WebViewApp.getCurrentApp() != null) { WebViewApp.getCurrentApp().sendEvent(WebViewEventCategory.RESOLVE, ResolveHostEvent.FAILED, id, host, error.name(), errorMessage); } } })) { callback.invoke(id); return; } callback.error(ResolveHostError.INVALID_HOST, id); } }
[ "sudhanshusah2001@gmail.com" ]
sudhanshusah2001@gmail.com
c18fab009b5148e859d0e8c1b52aa073f599a3b5
d52fc86965764314eef5dc62cfca769c5ac4aac4
/pj4w/pj4w09filterasynch/src/main/java/learn/ee/pj4w09filterasync/NonAsyncServlet.java
441aea34e6acbf361da1a4291aab58944880c111
[]
no_license
dpopkov/learnee
8980381fb0469e027fbea828b00a7b3b97fd38da
a4bea58ef59117e979cf2b23a1c706e1e554ecd7
refs/heads/master
2022-12-21T14:31:36.103328
2020-10-19T23:52:44
2020-10-19T23:52:44
231,949,360
0
0
null
2022-12-16T15:51:48
2020-01-05T17:03:46
Java
UTF-8
Java
false
false
802
java
package learn.ee.pj4w09filterasync; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @WebServlet( name = "nonAsyncServlet", urlPatterns = "/regular" ) public class NonAsyncServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { System.out.println("Entering " + getClass().getSimpleName() + ".doGet()"); req.getRequestDispatcher("/WEB-INF/jsp/view/nonAsync.jsp").forward(req, resp); System.out.println("Leaving " + getClass().getSimpleName() + ".doGet()"); } }
[ "pkvdenis@gmail.com" ]
pkvdenis@gmail.com
1a6e6e892001465c05da7b36308a028d6ec0dc0c
bf2966abae57885c29e70852243a22abc8ba8eb0
/aws-java-sdk-sagemaker/src/main/java/com/amazonaws/services/sagemaker/model/transform/CreateTrialComponentRequestProtocolMarshaller.java
00539137ca062e12bde27ef47f1b56481abd78d2
[ "Apache-2.0" ]
permissive
kmbotts/aws-sdk-java
ae20b3244131d52b9687eb026b9c620da8b49935
388f6427e00fb1c2f211abda5bad3a75d29eef62
refs/heads/master
2021-12-23T14:39:26.369661
2021-07-26T20:09:07
2021-07-26T20:09:07
246,296,939
0
0
Apache-2.0
2020-03-10T12:37:34
2020-03-10T12:37:33
null
UTF-8
Java
false
false
2,765
java
/* * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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.amazonaws.services.sagemaker.model.transform; import javax.annotation.Generated; import com.amazonaws.SdkClientException; import com.amazonaws.Request; import com.amazonaws.http.HttpMethodName; import com.amazonaws.services.sagemaker.model.*; import com.amazonaws.transform.Marshaller; import com.amazonaws.protocol.*; import com.amazonaws.protocol.Protocol; import com.amazonaws.annotation.SdkInternalApi; /** * CreateTrialComponentRequest Marshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") @SdkInternalApi public class CreateTrialComponentRequestProtocolMarshaller implements Marshaller<Request<CreateTrialComponentRequest>, CreateTrialComponentRequest> { private static final OperationInfo SDK_OPERATION_BINDING = OperationInfo.builder().protocol(Protocol.AWS_JSON).requestUri("/") .httpMethodName(HttpMethodName.POST).hasExplicitPayloadMember(false).hasPayloadMembers(true).operationIdentifier("SageMaker.CreateTrialComponent") .serviceName("AmazonSageMaker").build(); private final com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory; public CreateTrialComponentRequestProtocolMarshaller(com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory) { this.protocolFactory = protocolFactory; } public Request<CreateTrialComponentRequest> marshall(CreateTrialComponentRequest createTrialComponentRequest) { if (createTrialComponentRequest == null) { throw new SdkClientException("Invalid argument passed to marshall(...)"); } try { final ProtocolRequestMarshaller<CreateTrialComponentRequest> protocolMarshaller = protocolFactory.createProtocolMarshaller(SDK_OPERATION_BINDING, createTrialComponentRequest); protocolMarshaller.startMarshalling(); CreateTrialComponentRequestMarshaller.getInstance().marshall(createTrialComponentRequest, protocolMarshaller); return protocolMarshaller.finishMarshalling(); } catch (Exception e) { throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e); } } }
[ "" ]
e6b1321edd72013f20feb33e9d64f5d6aada9b7b
2dec0976096b98dfd257c260b9efa833219ebc5c
/siddhi/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/util/collection/expression/CompareCollectionExpression.java
c6adb0f28099115232120d820729ff970cea8f44
[ "Apache-2.0" ]
permissive
PivithuruThejan/Filter_Bytecode
c6d6f65ff53599f1d651bea1bd91bc11b88606bb
cafaf5be8dc3cd83ef56f088e7870fd9e536ce8b
refs/heads/master
2021-01-19T18:25:55.373686
2017-08-23T04:20:59
2017-08-23T04:20:59
101,137,076
0
1
null
null
null
null
UTF-8
Java
false
false
2,372
java
/* * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. 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.wso2.siddhi.core.util.collection.expression; import org.wso2.siddhi.query.api.expression.Expression; import org.wso2.siddhi.query.api.expression.condition.Compare; /** * Implementation of {@link CollectionExpression} which represent Compare expressions. */ public class CompareCollectionExpression implements CollectionExpression { private final Compare compareExpression; private final CollectionScope collectionScope; private CollectionExpression attributeCollectionExpression; private Compare.Operator operator; private CollectionExpression valueCollectionExpression; public CompareCollectionExpression(Compare compareExpression, CollectionScope collectionScope, CollectionExpression attributeCollectionExpression, Compare.Operator operator, CollectionExpression valueCollectionExpression) { this.compareExpression = compareExpression; this.collectionScope = collectionScope; this.attributeCollectionExpression = attributeCollectionExpression; this.operator = operator; this.valueCollectionExpression = valueCollectionExpression; } public CollectionExpression getAttributeCollectionExpression() { return attributeCollectionExpression; } public CollectionExpression getValueCollectionExpression() { return valueCollectionExpression; } public Expression getExpression() { return compareExpression; } public Compare.Operator getOperator() { return operator; } @Override public CollectionScope getCollectionScope() { return collectionScope; } }
[ "pivithuru.14@cse.mrt.ac.lk" ]
pivithuru.14@cse.mrt.ac.lk
79f7f1a1c14234d622417294d139a428cba0bee2
914ea9e79f8ee9d9f58c3094a201d12aa2869cc3
/src/main/java/view/TRemoverUsuario.java
56ef6db9ed1e1d87bbc3d607a671c84777fb5b52
[]
no_license
IvanHenrique1/VacinApp
40d90bd9b77c32eea2b33ebed40c0f7a1a10ed00
899d193a2655a58acf429e1825a4fa4e0b27087d
refs/heads/main
2023-05-31T16:48:34.849744
2021-06-25T21:14:29
2021-06-25T21:14:29
368,961,845
1
0
null
null
null
null
UTF-8
Java
false
false
8,738
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 view; import model.Usuario; import javax.swing.JOptionPane; import dao.UsuarioDAO; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; /** * * @author ivan1 */ public class TRemoverUsuario extends javax.swing.JFrame { /** * Creates new form TelaRemoverUsuario */ public TRemoverUsuario() throws ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException { UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); initComponents(); setResizable(false); setLocationRelativeTo(null); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { idField = new javax.swing.JTextField(); removerButton = new javax.swing.JButton(); voltarButton = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setTitle("Remoção de usuário"); idField.setBorder(javax.swing.BorderFactory.createTitledBorder("Id do usuário")); removerButton.setBackground(new java.awt.Color(99, 218, 201)); removerButton.setFont(new java.awt.Font("Segoe UI", 0, 18)); // NOI18N removerButton.setForeground(new java.awt.Color(0, 0, 0)); removerButton.setText("Remover"); removerButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { removerButtonActionPerformed(evt); } }); voltarButton.setText("Voltar"); voltarButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { voltarButtonActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(28, 28, 28) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(idField, javax.swing.GroupLayout.PREFERRED_SIZE, 146, javax.swing.GroupLayout.PREFERRED_SIZE) .addGroup(layout.createSequentialGroup() .addGap(20, 20, 20) .addComponent(removerButton)) .addGroup(layout.createSequentialGroup() .addGap(33, 33, 33) .addComponent(voltarButton))) .addContainerGap(41, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(idField, javax.swing.GroupLayout.PREFERRED_SIZE, 57, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(removerButton) .addGap(18, 18, 18) .addComponent(voltarButton) .addContainerGap(13, Short.MAX_VALUE)) ); pack(); }// </editor-fold>//GEN-END:initComponents private void removerButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_removerButtonActionPerformed int id = Integer.parseInt(idField.getText()); Usuario u = new Usuario(id); UsuarioDAO uDAO = new UsuarioDAO(); try { if (UsuarioDAO.existeIfExclui(u)) { int escolha = JOptionPane.showConfirmDialog(this, "Confirma a exclusão do usuário?"); if (escolha == JOptionPane.YES_OPTION) { UsuarioDAO.excluirUsuario(u); JOptionPane.showMessageDialog(null, "Usuário excluído com sucesso!"); idField.setText(""); } else { idField.setText(""); } } else { JOptionPane.showMessageDialog(this, "Este usuário não existe!", "Exclusão falhou!", JOptionPane.ERROR_MESSAGE); idField.setText(""); } } catch (Exception e) { JOptionPane.showMessageDialog(this, "Erro por falta de dados!", "Exclusão falhou!", JOptionPane.ERROR_MESSAGE); return; } }//GEN-LAST:event_removerButtonActionPerformed private void voltarButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_voltarButtonActionPerformed try { TDashboardAdmin tela = new TDashboardAdmin(); tela.setVisible(true); this.dispose(); } catch (ClassNotFoundException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } catch (InstantiationException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_voltarButtonActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(TRemoverUsuario.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(TRemoverUsuario.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(TRemoverUsuario.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(TRemoverUsuario.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { try { new TRemoverUsuario().setVisible(true); } catch (ClassNotFoundException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } catch (InstantiationException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(TRemoverUsuario.class.getName()).log(Level.SEVERE, null, ex); } } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JTextField idField; private javax.swing.JButton removerButton; private javax.swing.JButton voltarButton; // End of variables declaration//GEN-END:variables }
[ "ivan.henrique.s.1406@gmail.com" ]
ivan.henrique.s.1406@gmail.com
a0beccc8df01de667247232814faefaeb3bb1d32
842c1437238647e45bb5c3eb7c73425c252d6d7d
/hope/src/main/java/com/er/fin/service/impl/BorcServiceImpl.java
1f8eafcc5e398b7595df95da01f6d2ac719b3b04
[]
no_license
asimerkut/fin
2059269001fc561fe0df98d9b7e52d10794e6e8c
9eccbb3758051c57f860f5641be30a3fede77e76
refs/heads/master
2021-01-24T04:07:42.766041
2018-02-28T06:26:29
2018-02-28T06:26:29
122,920,354
0
0
null
null
null
null
UTF-8
Java
false
false
3,242
java
package com.er.fin.service.impl; import com.er.fin.domain.DosyaBorc; import com.er.fin.service.BorcService; import com.er.fin.domain.Borc; import com.er.fin.repository.BorcRepository; import com.er.fin.repository.search.BorcSearchRepository; import com.er.fin.service.dto.ComboSelDTO; import com.er.fin.service.dto.FinUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import static org.elasticsearch.index.query.QueryBuilders.*; /** * Service Implementation for managing Borc. */ @Service @Transactional public class BorcServiceImpl implements BorcService { private final Logger log = LoggerFactory.getLogger(BorcServiceImpl.class); private final BorcRepository borcRepository; private final BorcRepository borcSearchRepository; public BorcServiceImpl(BorcRepository borcRepository, BorcRepository borcSearchRepository) { this.borcRepository = borcRepository; this.borcSearchRepository = borcSearchRepository; } /** * Save a borc. * * @param borc the entity to save * @return the persisted entity */ @Override public Borc save(Borc borc) { log.debug("Request to save Borc : {}", borc); Borc result = borcRepository.save(borc); borcSearchRepository.save(result); return result; } /** * Get all the borcs. * * @param pageable the pagination information * @return the list of entities */ @Override @Transactional(readOnly = true) public Page<Borc> findAll(Pageable pageable) { log.debug("Request to get all Borcs"); pageable = FinUtil.getPageParam(); return borcRepository.findAll(pageable); } /** * Get one borc by id. * * @param id the id of the entity * @return the entity */ @Override @Transactional(readOnly = true) public Borc findOne(Long id) { log.debug("Request to get Borc : {}", id); return borcRepository.findOne(id); } /** * Delete the borc by id. * * @param id the id of the entity */ @Override public void delete(Long id) { log.debug("Request to delete Borc : {}", id); borcRepository.delete(id); borcSearchRepository.delete(id); } /** * Search for the borc corresponding to the query. * * @param query the query of the search * @param pageable the pagination information * @return the list of entities */ @Override @Transactional(readOnly = true) public Page<Borc> search(String query, Pageable pageable) { log.debug("Request to search for a page of Borcs for query {}", query); pageable = FinUtil.getPageParam(); Page<Borc> result = null; ComboSelDTO obj = FinUtil.getComboSelDTO(query); if (obj!=null){ result = borcSearchRepository.findAllByDosyaId(pageable, obj.getSelId()); } else { result = borcSearchRepository.findAll(pageable); } return result; } }
[ "aerkut" ]
aerkut
c166b82c9e8dee2ccaa8cb53cd11f43d28782ffc
dfa58a969d4a87e15b687385ef439eca438b7e27
/src/main/java/com/example/springsecuritydemo/MvcConfig.java
be96624e2343233122b9b2550e74932c16ed7e05
[]
no_license
alpizano/spring-security
60dfe803a93402a86af4fcd6a765fd3ab98d4082
497ff587b6e79145f1c9c5151a1b622d64bcb379
refs/heads/master
2023-01-27T14:51:49.608254
2020-12-13T02:59:25
2020-12-13T02:59:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
680
java
package com.example.springsecuritydemo; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class MvcConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/home").setViewName("home"); registry.addViewController("/").setViewName("home"); registry.addViewController("/hello").setViewName("hello"); registry.addViewController("/login").setViewName("login"); } }
[ "Al.pizano@motorolasolutions.com" ]
Al.pizano@motorolasolutions.com
30cbb4212f953d7ec43e084117d7a3722d528793
29ed58492c9bbcda0100c135db320510ce3e7b3e
/src/main/java/honkaku7/PatternMachi.java
aac9f36ba9904cc2c5b0f5d555db5be7b6bd0f60
[]
no_license
TakeshiHora/JavaExercise
61092cf8b00455d4de2399cbc59e6d01a1e2cfcf
67208404ae2f000af11c5ba36ee852cd9de0935d
refs/heads/master
2022-12-26T21:52:23.928258
2020-05-18T13:21:31
2020-05-18T13:21:31
264,943,130
0
0
null
2020-10-13T22:05:01
2020-05-18T13:10:09
Java
UTF-8
Java
false
false
588
java
package honkaku7; import java.util.regex.Matcher; import java.util.regex.Pattern; public class PatternMachi { public static void main(String[] args){ String sentence = "This is a pen."; System.out.println("(1)"); System.out.println(sentence.matches("Th.* is a .*\\.")); System.out.println("(2)"); String[] words = sentence.split("\\s+"); for (String word : words){ System.out.println(word); } System.out.println("(3)"); System.out.println(sentence.replaceAll("\\s+", " ")); } }
[ "a1936th@aiit.ac.jp" ]
a1936th@aiit.ac.jp
8341d78d7a6688cd98d4865cc96176e889227bc6
d1620fac6a5ed94889e8b2153de81ca79eb2c265
/EasyLib/app/src/main/java/com/easylib/dima/easylib/Activities/Lists/NewsListActivity.java
e328708f8b6d2789c4e8243c046aa021f9a8d695
[]
no_license
filus95/DIMA-Project
2a6101f0afd5bfab47a879ca0ecf5b6295dfed4e
f6a290eafe3c8b3da11f2e7e4611c96dda4dd4da
refs/heads/master
2020-04-07T00:21:43.488037
2019-04-30T20:53:37
2019-04-30T20:53:37
157,900,490
0
0
null
null
null
null
UTF-8
Java
false
false
3,486
java
package com.easylib.dima.easylib.Activities.Lists; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.res.Configuration; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.DefaultItemAnimator; import android.support.v7.widget.GridLayoutManager; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import com.easylib.dima.easylib.Activities.NoInternetActivity; import com.easylib.dima.easylib.Adapters.NewsAdapter; import com.easylib.dima.easylib.ConnectionLayer.Constants; import com.easylib.dima.easylib.R; import java.time.LocalDateTime; import java.time.Month; import java.util.ArrayList; import java.util.Iterator; import java.util.Objects; import java.util.Set; import AnswerClasses.News; public class NewsListActivity extends AppCompatActivity { private static final String ALL_NEWS = "All News"; private ArrayList<News> newsList; // recycle view private RecyclerView mRecyclerView; private NewsAdapter mAdapter; private RecyclerView.LayoutManager mLayoutManager; //This is the handler that will manager to process the broadcast intent //This has to be created inside each activity that needs it ( almost anyone ) private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String key = extractKey(intent); if (key.equals(Constants.NETWORK_STATE_DOWN)){ Intent internetIntent = new Intent (context, NoInternetActivity.class); startActivity (internetIntent); } } }; private String extractKey(Intent intent){ Set<String> keySet = Objects.requireNonNull(intent.getExtras()).keySet(); Iterator iterator = keySet.iterator(); return (String)iterator.next(); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.list_activity); newsList = (ArrayList<News>) getIntent().getSerializableExtra(ALL_NEWS); // Recycle View Settings mRecyclerView = (RecyclerView) findViewById(R.id.list_recycle); mRecyclerView.setHasFixedSize(true); if ((getResources ().getConfiguration ().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_NORMAL) { // used linear layout mLayoutManager = new LinearLayoutManager (this); } else if ((getResources ().getConfiguration ().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_XLARGE) { // used grid layout mLayoutManager = new GridLayoutManager (this, 2); } mRecyclerView.setLayoutManager(mLayoutManager); mRecyclerView.setItemAnimator(new DefaultItemAnimator()); // specify an adapter mAdapter = new NewsAdapter(this, newsList); mRecyclerView.setAdapter(mAdapter); } @Override protected void onResume() { super.onResume (); this.registerReceiver(mMessageReceiver, new IntentFilter (Constants.NETWORK_STATE_DOWN)); } @Override protected void onPause() { super.onPause (); unregisterReceiver(mMessageReceiver); } }
[ "koci4@live.it" ]
koci4@live.it
3f8b932e8380b839e2686ef8d70372cc2b1f5e55
619acae0b93dc8f0402cacfe4c4689747df6774c
/src/main/java/com/tactfactory/ovg/entities/RendezVous.java
75d80a98f2a835b80255e4b1a48214fcc57b3ee9
[]
no_license
jponcy/jdbc
7b88b03f169f706d4867e4dd310fbab1275ee284
b81d39fd3d6d5c4725034b5eaa460dbf6ef73a90
refs/heads/master
2022-07-16T23:32:05.305648
2019-11-29T14:26:46
2019-11-29T14:26:46
219,752,022
2
0
null
2022-06-21T02:10:40
2019-11-05T13:30:15
Java
UTF-8
Java
false
false
2,081
java
package com.tactfactory.ovg.entities; import java.time.LocalDateTime; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @Table(name = "app_rdv") public class RendezVous extends EntityBase { private LocalDateTime startedAt; /** Le livreur doit-il installer le materiel. */ @Column(nullable = false) private boolean toInstall = false; /** La personne livree. */ @ManyToOne(optional = false) private Customer customer; @ManyToOne(optional = false) private Employee deliveryMan; /** Le produit a livrer (une livraison = 1 produit). */ @ManyToOne(optional = false) private Product product; /** * @return the startedAt */ public LocalDateTime getStartedAt() { return startedAt; } /** * @param startedAt the startedAt to set */ public void setStartedAt(LocalDateTime startedAt) { this.startedAt = startedAt; } /** * @return the customer */ public Customer getCustomer() { return customer; } /** * @param customer the customer to set */ public void setCustomer(Customer customer) { this.customer = customer; } /** * @return the deliveryMan */ public Employee getDeliveryMan() { return deliveryMan; } /** * @param deliveryMan the deliveryMan to set */ public void setDeliveryMan(Employee deliveryMan) { this.deliveryMan = deliveryMan; } /** * @return the toInstall */ public boolean isToInstall() { return toInstall; } /** * @param toInstall the toInstall to set */ public void setToInstall(boolean toInstall) { this.toInstall = toInstall; } /** * @return the product */ public Product getProduct() { return product; } /** * @param product the product to set */ public void setProduct(Product product) { this.product = product; } }
[ "jonathan.poncy@tactfactory.com" ]
jonathan.poncy@tactfactory.com
ddb0be7ae1f3dd2cec79dc3bdde821f6d60414de
1246c5baf0bed38e69b5f71e3b06cc8431f2aa47
/src/com/qlhui/thoughtlight/utils/LoadImg.java
4ebb907fc39af92650c6a7090ead5eb33ea7b332
[]
no_license
zhanpeng111/wenhuaquan
87c61e49d249bda4d1d4fe6c2aa6b121c2ddec0f
5f74490341d4fba9a03536b93d3762eb16dca797
refs/heads/master
2021-01-12T05:46:28.323357
2016-12-23T03:40:31
2016-12-23T03:40:31
77,194,162
0
0
null
null
null
null
UTF-8
Java
false
false
4,860
java
package com.qlhui.thoughtlight.utils; import java.io.InputStream; import java.lang.ref.SoftReference; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import com.qlhui.thoughtlight.model.Model; import com.qlhui.thoughtlight.net.DownBitmap; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Handler; import android.os.Message; import android.widget.ImageView; /** * 控制图片的加载类 * 列表在滑动过程时,没有图片会进行下载,并保存到sdcard与 imageCaches 当中去,使用软引用进行封装,如果内存不够时 * 我们的imageCaches 当中的Bitmap对象会被清理掉,图片被释放掉 再次需要加载的时候,先从1级缓存当中获取,如果没有的话,去 * 本地获取,本地也获取不到的话,去网络下载。 一级缓存作用:对于listview当中刚刚滑动过的item显示的图片进行保存 * 二级缓存作用:对于listview当中很久前查看的图片或已经被释放掉图片 进行保存 * */ public class LoadImg { // 下载图片最大并行线程数 private static final int Max = 5; // 图片的一级缓存,保存在我们程序内部 private Map<String, SoftReference<Bitmap>> imageCaches = null; private static String filepath = null; private static String imgurl = null; // 查看本地缓存工具类 private FileUtiles fileUtiles; // android 提供给我们的一个线程池,使用方便 private ExecutorService threadPools = null; // 初始化上面的相关的变量 public LoadImg(Context ctx) { imageCaches = new HashMap<String, SoftReference<Bitmap>>(); fileUtiles = new FileUtiles(ctx); } public static String GetImgUrl() { return imgurl; } // 加载图片时,入口 public Bitmap loadImage(final ImageView imageView, final String imageUrl, final ImageDownloadCallBack imageDownloadCallBack) { // imageUrl 由于其唯一型,把他作为我们map当中的key // 图片名称 final String filename = imageUrl.substring( imageUrl.lastIndexOf("/") + 1, imageUrl.length()); imgurl = imageUrl; // 图片保存到本地时的地址 filepath = fileUtiles.getAbsolutePath() + "/" + filename; // 查找一级缓存,看看是否有这张图片 // 如果map当中有这个key返回一个true if (imageCaches.containsKey(imageUrl)) { // 找到对应图片软引用的封装 SoftReference<Bitmap> soft = imageCaches.get(imageUrl); // 从软引用当中获取图片 Bitmap bit = soft.get(); if (bit != null) return bit; // 从我们的一级缓存(程序内部获取图片) } // 从二级缓存当中获取图片 if (fileUtiles.isBitmap(filename)) { Bitmap bit = BitmapFactory.decodeFile(filepath); // 在二级缓存读取的时候直接添加到一级缓存当中 imageCaches.put(imageUrl, new SoftReference<Bitmap>(bit)); return bit; } // 一级缓存,二级缓存都不存在,直接到网络加载 if (imageUrl != null && !imageUrl.equals("")) { if (threadPools == null) { // 实例化我们的线程池 threadPools = Executors.newFixedThreadPool(Max); } // 下载回图片回调Handler final Handler hand = new Handler() { @Override public void handleMessage(Message msg) { // 如果图片下载成功,并且回调对象不为空时 if (msg.what == 111 && imageDownloadCallBack != null) { Bitmap bit = (Bitmap) msg.obj; // 调用回调自定义适配器的接口方法传递数据 imageDownloadCallBack.onImageDownload(imageView, bit); } super.handleMessage(msg); } }; // 下载图片线程 Thread thread = new Thread() { public void run() { // 网络下载时的字节流 InputStream inputStream = DownBitmap.getInstance() .getInputStream(imageUrl); // 图片压缩为原来的一半 BitmapFactory.Options op = new BitmapFactory.Options(); op.inSampleSize = 2; if(Model.IMGFLAG) op.inSampleSize = 1; Bitmap bit = BitmapFactory.decodeStream(inputStream, null, op); if (bit != null) { // 添加到一级缓存当中 imageCaches.put(imageUrl, new SoftReference<Bitmap>(bit)); // 添加到二级缓存 fileUtiles.saveBitmap(filename, bit); // 传递给Handler Message msg = hand.obtainMessage(); msg.what = 111; msg.obj = bit; hand.sendMessage(msg); } } }; threadPools.execute(thread); } return null; } // 通过回调机制设置图片时的接口(类似于Button的Onclick) public interface ImageDownloadCallBack { // ImageView 你所想要设定的imageview Bitmap 想要设定的图片 void onImageDownload(ImageView imageView, Bitmap bitmap); } }
[ "389663696@qq.com" ]
389663696@qq.com
00f83909897fd77be723bb320ccbc7e169674f07
6d6676bcab5a9741f2460c1b057f37a54cd572e7
/app/src/main/java/com/calix/calixgigaspireapp/services/APIRequestHandler.java
e70cc078f2cf8c79964992c1a09a933fc61bff91
[]
no_license
abiranjan/calix-android
c641ac4dd88d8e3a71a0e4cdca6bb601802b4d59
7cb0a80498daf7f97556327423a23ef3cd0abf0f
refs/heads/master
2020-03-17T08:28:39.396286
2018-05-15T00:49:39
2018-05-15T00:49:39
133,439,923
0
0
null
null
null
null
UTF-8
Java
false
false
13,266
java
package com.calix.calixgigaspireapp.services; import android.support.annotation.NonNull; import com.calix.calixgigaspireapp.input.model.LoginRegistrationInputModel; import com.calix.calixgigaspireapp.main.BaseActivity; import com.calix.calixgigaspireapp.output.model.CommonResponse; import com.calix.calixgigaspireapp.output.model.EncryptionTypeResponse; import com.calix.calixgigaspireapp.output.model.ErrorResponse; import com.calix.calixgigaspireapp.output.model.LoginResponse; import com.calix.calixgigaspireapp.output.model.RegistrationResponse; import com.calix.calixgigaspireapp.output.model.RouterMapResponse; import com.calix.calixgigaspireapp.output.model.RouterSetupResponse; import com.calix.calixgigaspireapp.utils.AppConstants; import com.calix.calixgigaspireapp.utils.DialogManager; import com.calix.calixgigaspireapp.utils.PreferenceUtil; import com.google.gson.Gson; import com.google.gson.JsonParseException; import java.io.IOException; import java.util.Objects; import retrofit2.Call; import retrofit2.Callback; import retrofit2.Response; import retrofit2.Retrofit; import retrofit2.converter.gson.GsonConverterFactory; public class APIRequestHandler { private static APIRequestHandler sInstance = new APIRequestHandler(); /*Init retrofit for API call*/ private Retrofit retrofit = new Retrofit.Builder().baseUrl(AppConstants.BASE_URL) .addConverterFactory(GsonConverterFactory.create()) .build(); private APICommonInterface mServiceInterface = retrofit.create( APICommonInterface.class); public static APIRequestHandler getInstance() { return sInstance; } /*Login API*/ public void loginAPICall(LoginRegistrationInputModel loginInputModel, final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.loginAPI(loginInputModel).enqueue(new Callback<LoginResponse>() { @Override public void onResponse(@NonNull Call<LoginResponse> call, @NonNull Response<LoginResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful() && response.body() != null) { baseActivity.onRequestSuccess(response.body()); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new LoginResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<LoginResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new LoginResponse(), t); } }); } /*Registration API*/ public void registrationAPICall(LoginRegistrationInputModel registrationInputModel, final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.registrationAPI(registrationInputModel).enqueue(new Callback<RegistrationResponse>() { @Override public void onResponse(@NonNull Call<RegistrationResponse> call, @NonNull Response<RegistrationResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful() && response.body() != null) { baseActivity.onRequestSuccess(response.body()); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new RegistrationResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<RegistrationResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new RegistrationResponse(), t); } }); } /*Reset Password API*/ public void resetAPICall(String emailStr, final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.restPasswordAPI(emailStr).enqueue(new Callback<CommonResponse>() { @Override public void onResponse(@NonNull Call<CommonResponse> call, @NonNull Response<CommonResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful()) { CommonResponse commonResponse = new CommonResponse(); commonResponse.setErrorType(AppConstants.SUCCESS_CODE); baseActivity.onRequestSuccess(commonResponse); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new CommonResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<CommonResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new CommonResponse(), t); } }); } /*Router Setup API*/ public void routerSetupAPICall(String macAddressStr, String serialNumberStr, final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.routerSetupAPI(PreferenceUtil.getAuthorization(baseActivity), macAddressStr, serialNumberStr).enqueue(new Callback<RouterSetupResponse>() { @Override public void onResponse(@NonNull Call<RouterSetupResponse> call, @NonNull Response<RouterSetupResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful() && response.body() != null) { baseActivity.onRequestSuccess(response.body()); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new RouterSetupResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<RouterSetupResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new RouterSetupResponse(), t); } }); } /*EncryptionType API*/ public void encryptionTypeAPICall(final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.encryptionTypeAPI(PreferenceUtil.getAuthorization(baseActivity)).enqueue(new Callback<EncryptionTypeResponse>() { @Override public void onResponse(@NonNull Call<EncryptionTypeResponse> call, @NonNull Response<EncryptionTypeResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful() && response.body() != null) { baseActivity.onRequestSuccess(response.body()); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new EncryptionTypeResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<EncryptionTypeResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new EncryptionTypeResponse(), t); } }); } /*Router Map API*/ public void routerMapAPICall(final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.routerMapAPI(PreferenceUtil.getAuthorization(baseActivity)).enqueue(new Callback<RouterMapResponse>() { @Override public void onResponse(@NonNull Call<RouterMapResponse> call, @NonNull Response<RouterMapResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful() && response.body() != null) { baseActivity.onRequestSuccess(response.body()); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new RouterMapResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<RouterMapResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new RouterMapResponse(), t); } }); } /*Update Router Details API*/ public void routerUpdateAPICall(String routerIdStr, String routerNameStr, String ssidStr, String passwordStr, String encryptionTypeStr, final BaseActivity baseActivity) { DialogManager.getInstance().showProgress(baseActivity); mServiceInterface.routerUpdateAPI(PreferenceUtil.getAuthorization(baseActivity), routerIdStr, routerNameStr, ssidStr, passwordStr, encryptionTypeStr).enqueue(new Callback<CommonResponse>() { @Override public void onResponse(@NonNull Call<CommonResponse> call, @NonNull Response<CommonResponse> response) { DialogManager.getInstance().hideProgress(); if (response.isSuccessful()) { CommonResponse commonResponse = new CommonResponse(); commonResponse.setErrorType(AppConstants.SUCCESS_CODE); baseActivity.onRequestSuccess(commonResponse); } else { String errorMsgStr = response.raw().message(); try { ErrorResponse errorBodyRes = new Gson().fromJson(Objects.requireNonNull(response.errorBody()).string(), ErrorResponse.class); errorMsgStr = errorBodyRes.getErrorDesc().isEmpty() ? errorMsgStr : errorBodyRes.getErrorDesc(); } catch (IOException | JsonParseException e) { e.printStackTrace(); } baseActivity.onRequestFailure(new CommonResponse(), new Throwable(errorMsgStr)); } } @Override public void onFailure(@NonNull Call<CommonResponse> call, @NonNull Throwable t) { DialogManager.getInstance().hideProgress(); baseActivity.onRequestFailure(new CommonResponse(), t); } }); } }
[ "abiranjan.p@gmail.com" ]
abiranjan.p@gmail.com
ae7bb0f67b559fee026afbacad046e6ab18b728a
1ab269d72dd38dc7061ae3ed483f77bbd1f68fc8
/ssm/src/main/java/com/rectrl/repository/BookRepository.java
5d2db254b8dfcb5ccfa25304328d83ab64a97391
[]
no_license
zhehongen/sshm
1049f88b3ecb1035d4d1b087f0499c6b4371d7c4
5a7b79242bd41a1d6cfd8148b91162a07fc62a01
refs/heads/master
2022-12-24T06:26:27.952629
2019-08-30T08:37:20
2019-08-30T08:37:20
201,916,284
0
0
null
2022-11-16T12:26:03
2019-08-12T11:22:18
Java
UTF-8
Java
false
false
693
java
package com.rectrl.repository; import com.rectrl.entity.Book; import org.apache.ibatis.annotations.Param; import java.util.List; public interface BookRepository { /** * 通过ID查询单本图书 * * @param bookId * @return */ Book queryById(long bookId); /** * 查询所有图书 * * @param offset 查询起始位置 * @param limit 查询条数 * @return */ List<Book> queryAll(@Param("offset") int offset, @Param("limit") int limit); /** * 减少馆藏数量 * * @param bookId * @return 如果影响行数等于>1,表示更新的记录行数 */ int reduceNumber(long bookId); }
[ "12345678" ]
12345678
98f8c25e1ec855ca3331a54ae45b610dcf2d0ac9
3478d959e709948a46020277cff1c9d01cd885b7
/src/autenticacao/AES.java
8ad02c4bd9ecb7ec2626bbdf1061f6ea2897ae28
[]
no_license
TroniPM/AulasSeguranca
6021f4f4bc561b3459da0d14029bfdd33e54a6ed
c6a7d37686886fdd23301acbb6b5e674d9ef49e8
refs/heads/master
2021-08-14T21:00:38.250984
2017-11-16T19:26:09
2017-11-16T19:26:09
109,194,483
0
0
null
null
null
null
UTF-8
Java
false
false
3,012
java
package autenticacao; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; import org.bouncycastle.crypto.BlockCipher; import org.bouncycastle.crypto.DataLengthException; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.engines.AESEngine; import org.bouncycastle.crypto.paddings.BlockCipherPadding; import org.bouncycastle.crypto.paddings.PKCS7Padding; import org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher; import org.bouncycastle.crypto.params.KeyParameter; import com.sun.org.apache.xerces.internal.impl.dv.util.Base64; public class AES { private final BlockCipher AESCipher = new AESEngine(); private PaddedBufferedBlockCipher pbbc; private KeyParameter key; public void setPadding(BlockCipherPadding bcp) { this.pbbc = new PaddedBufferedBlockCipher(AESCipher, bcp); } public void setKey(byte[] key) { this.key = new KeyParameter(key); } public byte[] encrypt(byte[] input) throws DataLengthException, InvalidCipherTextException { return processing(input, true); } public byte[] decrypt(byte[] input) throws DataLengthException, InvalidCipherTextException { return processing(input, false); } private byte[] processing(byte[] input, boolean encrypt) throws DataLengthException, InvalidCipherTextException { pbbc.init(encrypt, key); byte[] output = new byte[pbbc.getOutputSize(input.length)]; int bytesWrittenOut = pbbc.processBytes(input, 0, input.length, output, 0); pbbc.doFinal(output, bytesWrittenOut); return output; } public static void main(String[] args) { Usuario c1; c1 = new Usuario(); c1.setNome("jose"); c1.setCpf("123"); String s = Usuario.convertToString(c1); System.out.println("Usu�rio: " + s); try { KeyGenerator kg = KeyGenerator.getInstance("AES"); kg.init(256); SecretKey sk = kg.generateKey(); AES abc = new AES(); abc.setPadding(new PKCS7Padding()); abc.setKey(sk.getEncoded()); byte[] ba = s.getBytes("UTF-8"); byte[] encr = abc.encrypt(ba); System.out.println("User encrypted: " + encr.length + ": " + Base64.encode(encr)); byte[] retr = abc.decrypt(encr); if (retr.length == ba.length) { ba = retr; } else { System.arraycopy(retr, 0, ba, 0, ba.length); } String decrypted = new String(ba, "UTF-8"); System.out.println("User decrypted: " + decrypted); System.out.println(s.length()); System.out.println(decrypted.length()); Usuario user = Usuario.convertFromString(decrypted); System.out.println(user.getNome()); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
[ "paulomatew@gmail.com" ]
paulomatew@gmail.com
290cb51939c8382847ffb1ccdd86d41852f46a6d
ef252c6c81053d46da93935f141468adeb9c45f8
/mavenTest1/src/main/java/com/DanLiModel/lanhan_jingtai.java
91b8ae4469af7f99345e8b22db3336c3a916f05c
[]
no_license
LawLietzh/workspacePy
37fea26fc240d6aa19a23bee1b28d63b61035881
d13c8fbd8c435da7ee26b61b6aac9fa2ff2f20d9
refs/heads/master
2020-03-18T20:56:52.254615
2018-05-29T06:13:22
2018-05-29T06:13:22
135,248,841
0
0
null
null
null
null
UTF-8
Java
false
false
465
java
package com.DanLiModel; /** * Created by zhangheng on 2017/12/9. */ //懒汉模式 用 静态内部类 既实现了线程安全,又避免了同步带来的性能影响。 public class lanhan_jingtai { private static class LazyHolder{ private static final lanhan_jingtai instance = new lanhan_jingtai(); } private lanhan_jingtai(){} public static final lanhan_jingtai getInstace(){ return LazyHolder.instance; } }
[ "zhanghenghuadie@163.com" ]
zhanghenghuadie@163.com
ce0161ab3ab9f5e7e4bcdb72adff1bcc4a599411
cdb7cd0e03ecfab8dea80becf04d1a0e467f15b1
/test/br/com/caelum/leilao/dominio/AvaliadorTest.java
518c2f3217d1da4168075a143c7c7cb5f28cc75f
[]
no_license
hyagosouzza/tdd-pratica
b744b0983eb8fc2d43d1c28be7bf5d4c9f237f5c
2753caace34eaea9a272024c64916154c392f368
refs/heads/master
2020-09-17T09:24:32.206747
2019-11-26T00:23:14
2019-11-26T00:23:14
224,065,824
0
0
null
null
null
null
UTF-8
Java
false
false
1,895
java
package br.com.caelum.leilao.dominio; import org.junit.Test; import java.util.List; import static org.junit.Assert.assertEquals; public class AvaliadorTest { @Test public void deveEntenderLancesEmOrdemCrescente() { // codigo omitido } @Test public void deveEntenderLancesEmOrdemCrescenteComOutrosValores() { Usuario joao = new Usuario("João"); Usuario jose = new Usuario("José"); Usuario maria = new Usuario("Maria"); Leilao leilao = new Leilao("Playstation 3 Novo"); leilao.propoe(new Lance(joao, 1000.0)); leilao.propoe(new Lance(jose, 2000.0)); leilao.propoe(new Lance(maria, 3000.0)); Avaliador leiloeiro = new Avaliador(); leiloeiro.avalia(leilao); assertEquals(3000.0, leiloeiro.getMaiorLance(), 0.0001); assertEquals(1000.0, leiloeiro.getMenorLance(), 0.0001); } @Test public void deveEntenderLeilaoComApenasUmLance() { Usuario joao = new Usuario("João"); Leilao leilao = new Leilao("Playstation 3 Novo"); leilao.propoe(new Lance(joao, 1000.0)); Avaliador leiloeiro = new Avaliador(); leiloeiro.avalia(leilao); assertEquals(1000.0, leiloeiro.getMaiorLance(), 0.0001); assertEquals(1000.0, leiloeiro.getMenorLance(), 0.0001); } @Test public void deveEncontrarOsTresMaioresLances() { Usuario joao = new Usuario("João"); Usuario maria = new Usuario("Maria"); Leilao leilao = new Leilao("Playstation 3 Novo"); leilao.propoe(new Lance(joao, 100.0)); leilao.propoe(new Lance(maria, 200.0)); leilao.propoe(new Lance(joao, 300.0)); leilao.propoe(new Lance(maria, 400.0)); Avaliador leiloeiro = new Avaliador(); leiloeiro.avalia(leilao); List<Lance> maiores = leiloeiro.getTresMaiores(); assertEquals(3, maiores.size()); assertEquals(400.0, maiores.get(0).getValor(), 0.00001); assertEquals(300.0, maiores.get(1).getValor(), 0.00001); assertEquals(200.0, maiores.get(2).getValor(), 0.00001); } }
[ "hyagosouzza@hotmail.com" ]
hyagosouzza@hotmail.com
6e6b46ed2510c5ddafb29a531f7a9de21ea28387
95e944448000c08dd3d6915abb468767c9f29d3c
/sources/com/p280ss/android/ugc/aweme/net/corenet/C34062g.java
7adf623414c25d2c8c22c6fc2a2d17cfe837a719
[]
no_license
xrealm/tiktok-src
261b1faaf7b39d64bb7cb4106dc1a35963bd6868
90f305b5f981d39cfb313d75ab231326c9fca597
refs/heads/master
2022-11-12T06:43:07.401661
2020-07-04T20:21:12
2020-07-04T20:21:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
482
java
package com.p280ss.android.ugc.aweme.net.corenet; import com.p280ss.android.ugc.aweme.legacy.download.C32331a.C32332a; /* renamed from: com.ss.android.ugc.aweme.net.corenet.g */ final /* synthetic */ class C34062g implements C32332a { /* renamed from: a */ private final C34052a f88833a; C34062g(C34052a aVar) { this.f88833a = aVar; } /* renamed from: a */ public final Object mo83541a() { return C34061f.m109669a(this.f88833a); } }
[ "65450641+Xyzdesk@users.noreply.github.com" ]
65450641+Xyzdesk@users.noreply.github.com
4fc409abbc145925bf477b592757f1f3175906e2
40d844c1c780cf3618979626282cf59be833907f
/src/testcases/CWE113_HTTP_Response_Splitting/s02/CWE113_HTTP_Response_Splitting__getQueryString_Servlet_setHeaderServlet_81_bad.java
61196f9caad6a294ec3228ad5a4a03746736a63b
[]
no_license
rubengomez97/juliet
f9566de7be198921113658f904b521b6bca4d262
13debb7a1cc801977b9371b8cc1a313cd1de3a0e
refs/heads/master
2023-06-02T00:37:24.532638
2021-06-23T17:22:22
2021-06-23T17:22:22
379,676,259
1
0
null
null
null
null
UTF-8
Java
false
false
1,283
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE113_HTTP_Response_Splitting__getQueryString_Servlet_setHeaderServlet_81_bad.java Label Definition File: CWE113_HTTP_Response_Splitting.label.xml Template File: sources-sinks-81_bad.tmpl.java */ /* * @description * CWE: 113 HTTP Response Splitting * BadSource: getQueryString_Servlet Parse id param out of the URL query string (without using getParameter()) * GoodSource: A hardcoded string * Sinks: setHeaderServlet * GoodSink: URLEncode input * BadSink : querystring to setHeader() * Flow Variant: 81 Data flow: data passed in a parameter to an abstract method * * */ package testcases.CWE113_HTTP_Response_Splitting.s02; import testcasesupport.*; import javax.servlet.http.*; import java.net.URLEncoder; public class CWE113_HTTP_Response_Splitting__getQueryString_Servlet_setHeaderServlet_81_bad extends CWE113_HTTP_Response_Splitting__getQueryString_Servlet_setHeaderServlet_81_base { public void action(String data , HttpServletRequest request, HttpServletResponse response) throws Throwable { if (data != null) { /* POTENTIAL FLAW: Input not verified before inclusion in header */ response.setHeader("Location", "/author.jsp?lang=" + data); } } }
[ "you@example.com" ]
you@example.com
65a867ffcee9f82f9adeac64e3485ac3aec69a0c
a61c241925351f63d62fe8f65eceb1095630d13c
/m2tjobloader/src/main/java/m2t/service/model/jobloader/CreateOrReplaceContainerResponseDTO.java
0d1eb958310b7d81c02857ca975f44518f969bec
[]
no_license
danilo108/m2tgoogle
5f5578ca54ab2e0820236ee98d6bb6f8baf9bd4d
7c53590f28836985039214f4e7df27a1aa2da54e
refs/heads/master
2020-04-23T13:48:48.081367
2019-04-17T13:50:13
2019-04-17T13:50:13
171,210,440
0
0
null
null
null
null
UTF-8
Java
false
false
542
java
package m2t.service.model.jobloader; public class CreateOrReplaceContainerResponseDTO { private ContainerDTO deletedContainer; private String cointainerNumber; public ContainerDTO getDeletedContainer() { return deletedContainer; } public void setDeletedContainer(ContainerDTO containerDeleted) { this.deletedContainer = containerDeleted; } public String getCointainerNumber() { return cointainerNumber; } public void setCointainerNumber(String cointainerNumber) { this.cointainerNumber = cointainerNumber; } }
[ "daniloscuderoni@gmail.com" ]
daniloscuderoni@gmail.com
c612d10ac224d73202413aa0496365a0461102b3
a5d01febfd8d45a61f815b6f5ed447e25fad4959
/Source Code/5.5.1/sources/com/google/firebase/iid/FirebaseInstanceIdService.java
625cea75b4d27f26f02e0c4f599b51e57c1248f5
[]
no_license
kkagill/Decompiler-IQ-Option
7fe5911f90ed2490687f5d216cb2940f07b57194
c2a9dbbe79a959aa1ab8bb7a89c735e8f9dbc5a6
refs/heads/master
2020-09-14T20:44:49.115289
2019-11-04T06:58:55
2019-11-04T06:58:55
223,236,327
1
0
null
2019-11-21T18:17:17
2019-11-21T18:17:16
null
UTF-8
Java
false
false
1,488
java
package com.google.firebase.iid; import android.content.Intent; import android.support.annotation.WorkerThread; import android.util.Log; import com.google.android.gms.common.internal.Hide; public class FirebaseInstanceIdService extends f { @WorkerThread public void fM() { } @Hide protected final Intent m(Intent intent) { return (Intent) ac.wP().YZ.poll(); } @Hide public final void n(Intent intent) { if ("com.google.firebase.iid.TOKEN_REFRESH".equals(intent.getAction())) { fM(); return; } String stringExtra = intent.getStringExtra("CMD"); if (stringExtra != null) { if (Log.isLoggable("FirebaseInstanceId", 3)) { String valueOf = String.valueOf(intent.getExtras()); StringBuilder stringBuilder = new StringBuilder((String.valueOf(stringExtra).length() + 21) + String.valueOf(valueOf).length()); stringBuilder.append("Received command: "); stringBuilder.append(stringExtra); stringBuilder.append(" - "); stringBuilder.append(valueOf); Log.d("FirebaseInstanceId", stringBuilder.toString()); } if ("RST".equals(stringExtra) || "RST_FULL".equals(stringExtra)) { FirebaseInstanceId.wj().wr(); } else if ("SYNC".equals(stringExtra)) { FirebaseInstanceId.wj().ws(); } } } }
[ "yihsun1992@gmail.com" ]
yihsun1992@gmail.com
81d0a7dd512cdb8965eeef841d26300e9809d725
893bdc59bb8ff233ad4567182a04ff23a4ee13ae
/spring/spring3/SpringDev/src/com/rueggerllc/aop/MyAfterThrowingAspect.java
2d300ba6135c13700ea53b44adcc8ddf4c35e533
[]
no_license
rueggerc/rueggerllc-public
33f5396f04a423a62f6c7e7124fa02c8f455c2c8
a86950de18c1d5ec23aaf1051268f297b4bc4f78
refs/heads/master
2021-01-13T14:38:17.480642
2017-10-10T22:14:30
2017-10-10T22:14:30
76,731,748
0
0
null
null
null
null
UTF-8
Java
false
false
978
java
package com.rueggerllc.aop; import org.apache.log4j.Logger; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; import com.rueggerllc.exceptions.MyDataException; @Aspect public class MyAfterThrowingAspect { private static Logger logger = Logger.getLogger(MyAfterThrowingAspect.class); // Define our Pointcut and Advice @AfterThrowing(value="execution(* com.rueggerllc.aop.access.*.*(..))", throwing="e") public void runAfterThrowingAdvice(JoinPoint joinPoint, MyDataException e) throws Throwable { try { logger.info("After Throwing"); logger.info("class: " + joinPoint.getSignature().getDeclaringTypeName()); logger.info("method: " + joinPoint.getSignature().getName()); Object target = joinPoint.getTarget(); Object[] args = joinPoint.getArgs(); logger.info("Exception message=" + e.getMessage()); } catch (Exception e1) { throw e1; } } }
[ "chris.ruegger@gmail.com" ]
chris.ruegger@gmail.com
66d4e7aaac823d274cb03f264b684ef29970d80a
ce6ece1c9d42529e9aefa1cef69a6c4e1498c3df
/app/src/main/java/com/example/administrator/baselib/base/MvpPresenter.java
97a0bade16b161477fc22c54227a663ded67bcb3
[]
no_license
dyamail/dyaEasyApp
981976d5318696bc8722c698c04a0172701fa368
cca58ca65638cb8cda1b234f1e00c9c93fbee0f1
refs/heads/master
2021-07-17T07:24:44.472615
2021-06-27T14:42:49
2021-06-27T14:42:49
97,811,900
1
0
null
null
null
null
UTF-8
Java
false
false
154
java
package com.example.administrator.baselib.base; public interface MvpPresenter<V extends MvpView> { void attachView(V view); void detachView(); }
[ "dyamail@163.com" ]
dyamail@163.com
4bab07215b60933ac1f89ec7fd35bdec29e43c8e
146f0f8cf204698fdff202b53e14381a1c258957
/DW2-TP1-Guilherme-Joao-Lucas/src/main/java/br/ifsp/saocarlos/dw2/dw2/tp1/guilherme/joao/lucas/ServletLimpar.java
d030da923a997b2d4e583f340844eb58bbf168bc
[]
no_license
gmsansoni/DW2-TP1-Guilherme-Joao-Lucas
c440bc1382923566e03af216dd090467c282a240
57cc734daced39146c0adb74a1e7e5645cbb6c62
refs/heads/master
2021-01-10T10:48:38.683789
2015-10-05T02:16:54
2015-10-05T02:16:54
43,331,059
0
0
null
null
null
null
UTF-8
Java
false
false
1,717
java
/* Trabalho Prático de Desenvolvimento Web 2 (IFSP - ADS, 2015/2) Desenvolvido por: Guilherme Mourão Sansoni 120128-X João Antônio Arantes Gonçalves 120062-5 Lucas Pepino - 120153-1 */ package br.ifsp.saocarlos.dw2.dw2.tp1.guilherme.joao.lucas; import java.io.IOException; import java.util.HashSet; import java.util.Set; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet(name = "ServletLimpar", urlPatterns = {"/limpa"}) public class ServletLimpar extends HttpServlet { @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try{ Set<Produto> produtos =(HashSet<Produto>) request.getSession().getAttribute("produtos"); String limpar = request.getParameter("limpa"); if (produtos == null) { request.getRequestDispatcher("/WEB-INF/index.jsp").forward(request, response); } else { if (limpar.equals("true")) { produtos.clear(); } request.getRequestDispatcher("/WEB-INF/index.jsp").forward(request, response); } }catch (Exception e){ } request.getRequestDispatcher("/WEB-INF/index.jsp").forward(request, response); } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } }
[ "Guilherme@Guilherme-note" ]
Guilherme@Guilherme-note
3ec13140113c4e9b75841858726488e9b722b8b3
0cecb23fcf748d79cefbedf00098042427bdd3b7
/app/src/test/java/cn/edu/gdmec/s07150619/viewflipperdemo/ExampleUnitTest.java
75c29d81742a26cdbbaa6dbaea03d86b79262d2d
[]
no_license
gdmec07150619/Viewflipperdemo
9419ccf5bb674a2ffbe907167bb4f2eceded6239
2d453090cd3958a306c9d844f3aa2e6e37ce0777
refs/heads/master
2021-01-12T09:39:10.179514
2016-12-12T03:48:46
2016-12-12T03:48:46
76,219,955
0
0
null
null
null
null
UTF-8
Java
false
false
331
java
package cn.edu.gdmec.s07150619.viewflipperdemo; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "357677980@qq.com" ]
357677980@qq.com
a4ef201b837c811326c60546af66ca12be11237a
80d088cb3d14f52882fc710fe0bd8be71b21b44e
/app/src/test/java/com/mmd/constraint11/ExampleUnitTest.java
0878e8672487feddf039bc831128be0e02558156
[]
no_license
MinaSamirCap/Constriant1.1
fcb6b111120426ba2f87c39c714925572c746011
041734bdec58876e01fbae3c73b2f6fb722b9970
refs/heads/master
2020-03-15T06:46:37.483465
2018-05-03T15:29:16
2018-05-03T15:29:16
132,015,039
0
0
null
null
null
null
UTF-8
Java
false
false
381
java
package com.mmd.constraint11; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "MenaSamerCap@gmail.com" ]
MenaSamerCap@gmail.com
ca296c41429ed330d6e853a7db1fe705b9d45f85
a24dafad402053699da55bc1cbc90545eff792a2
/CybDemo/xOkHttp/src/androidTest/java/cyb/xandroid/xokhttp/ExampleInstrumentedTest.java
2a8ed71547f9b285b909f7f0e97f1cc7a5abfa30
[]
no_license
LorensCyb/framwork
469fe6a7fcd00eda31fc6a9e5606fbf2f40a10e8
5285fc9fa6002694d5d5fd29bde437fdbfddd032
refs/heads/master
2021-05-13T23:55:46.451586
2020-03-29T01:01:20
2020-03-29T01:01:20
116,528,280
0
0
null
null
null
null
UTF-8
Java
false
false
750
java
package cyb.xandroid.xokhttp; 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.getInstrumentation().getTargetContext(); assertEquals("cyb.xandroid.xokhttp.test", appContext.getPackageName()); } }
[ "2981536120@qq.com" ]
2981536120@qq.com
4e4692d346147480c75f9779d16b755334691459
71a65720a6c7a06b024b1fb45926d3de6488ad42
/src/main/java/duke/exception/DuplicateTaskDukeException.java
08c3d202be4e11b22f44e1001bd625d2d02d6624
[]
no_license
Nanosync/duke
32d8500872295781600c36fc34cdd7565703f2e0
7e1272f9639b530c7c4a68f81b2db35450fd5f5f
refs/heads/master
2020-07-05T20:19:53.312297
2019-09-28T14:30:38
2019-09-28T14:30:38
202,747,815
0
0
null
2019-08-16T15:01:06
2019-08-16T15:01:06
null
UTF-8
Java
false
false
225
java
package duke.exception; /** * Exceptions used for duplicate tasks. */ public class DuplicateTaskDukeException extends DukeException { public DuplicateTaskDukeException(String message) { super(message); } }
[ "10258208+Nanosync@users.noreply.github.com" ]
10258208+Nanosync@users.noreply.github.com
215eb830b5eac580f20a53355119a9214e48996d
9afb24e53d0b4766359a1d27f4726e06258db605
/src/MainForm.java
96982c3e480308712e132cc8969092d119667cc5
[]
no_license
dimakrivolap/MiAPR
02386a06a6433bcafd80dc87a247466c7d154e8e
b86a36283ea3469a7543a4d44e61f99d02b5913c
refs/heads/master
2020-05-26T16:23:47.588536
2017-02-19T23:14:00
2017-02-19T23:14:00
82,495,969
1
0
null
null
null
null
UTF-8
Java
false
false
2,213
java
import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Random; /** * Created by Дмитрий Криволап on 17.02.2017. */ public class MainForm extends JFrame { private int count_points; private int count_kernels; //private JPanel rootPanel = new JPanel(); private JButton button1 = new JButton("Страт"); private JPanel content ; private JTextField jtf_class = new JTextField(10); private JTextField jtf_points= new JTextField(10); private JLabel lb1 = new JLabel("Классы"); private JLabel lb2 = new JLabel("Точки"); private ClickButton handler= new ClickButton(); public MainForm(String s,int ck,int cp) { super(s); //setLayout(new FlowLayout()); setVisible(true); setSize(1000, 650); if (ck!=0||cp!=0) { content = new Kmeans(ck, cp); } else content = new Kmeans(5, 10000); button1.setSize(150,50); button1.setLocation(820,150); jtf_class.setLocation(880,50); jtf_class.setSize(100,20); lb1.setSize(100,20); lb2.setSize(100,20); lb1.setLocation(820,50); lb2.setLocation(820,80); jtf_points.setLocation(880,80); jtf_points.setSize(100,20); add(button1); add(jtf_class); add(jtf_points); add(lb1); add(lb2); content.setSize(800,600); content.setLocation(0,0); add(content); button1.addActionListener(handler); setLocationRelativeTo(null); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); } public static void main(String[] args) { new MainForm("laba_1",0,0); } public class ClickButton implements ActionListener { @Override public void actionPerformed(ActionEvent e) { if(e.getSource()==button1){ count_points = Integer.parseInt(jtf_points.getText()); count_kernels = Integer.parseInt(jtf_class.getText()); new MainForm("laba1",count_kernels,count_points); } } } }
[ "dima_juv@mail.ru" ]
dima_juv@mail.ru
9ac4c2d5bb661eaa2b10cbfbeb091ddf523d53e0
75950d61f2e7517f3fe4c32f0109b203d41466bf
/modules/tags/fabric3-modules-parent-pom-0.7/kernel/impl/fabric3-pojo/src/main/java/org/fabric3/pojo/builder/PojoSourceWireAttacher.java
c540b7927a53823aa0db021a21b086b3ab492945
[]
no_license
codehaus/fabric3
3677d558dca066fb58845db5b0ad73d951acf880
491ff9ddaff6cb47cbb4452e4ddbf715314cd340
refs/heads/master
2023-07-20T00:34:33.992727
2012-10-31T16:32:19
2012-10-31T16:32:19
36,338,853
0
0
null
null
null
null
MacCentralEurope
Java
false
false
6,204
java
/* * Fabric3 * Copyright © 2008 Metaform Systems Limited * * This proprietary software may be used only connection with the Fabric3 license * (the “License”), a copy of which is included in the software or may be * obtained at: http://www.metaformsystems.com/licenses/license.html. * Software distributed under the License is distributed on an “as is” basis, * without warranties or conditions of any kind. See the License for the * specific language governing permissions and limitations of use of the software. * This software is distributed in conjunction with other software licensed under * different terms. See the separate licenses for those programs included in the * distribution for the permitted and restricted uses of such software. * * --- Original Apache License --- * * 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.fabric3.pojo.builder; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.net.URI; import java.util.Map; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.fabric3.pojo.component.PojoComponent; import org.fabric3.pojo.provision.PojoWireSourceDefinition; import org.fabric3.model.type.service.DataType; import org.fabric3.model.type.java.InjectableAttribute; import org.fabric3.spi.model.physical.PhysicalWireTargetDefinition; import org.fabric3.spi.model.type.JavaClass; import org.fabric3.spi.model.type.JavaParameterizedType; import org.fabric3.spi.model.type.XSDSimpleType; import org.fabric3.spi.classloader.ClassLoaderRegistry; import org.fabric3.spi.transform.PullTransformer; import org.fabric3.spi.transform.TransformContext; import org.fabric3.spi.transform.TransformationException; import org.fabric3.spi.transform.TransformerRegistry; /** * @version $Revision$ $Date$ */ public abstract class PojoSourceWireAttacher { private static final XSDSimpleType SOURCE_TYPE = new XSDSimpleType(Node.class, XSDSimpleType.STRING); protected TransformerRegistry<PullTransformer<?, ?>> transformerRegistry; protected ClassLoaderRegistry classLoaderRegistry; protected PojoSourceWireAttacher(TransformerRegistry<PullTransformer<?, ?>> transformerRegistry, ClassLoaderRegistry classLoaderRegistry) { this.transformerRegistry = transformerRegistry; this.classLoaderRegistry = classLoaderRegistry; } @SuppressWarnings("unchecked") protected Object getKey(PojoWireSourceDefinition sourceDefinition, PojoComponent<?> source, PhysicalWireTargetDefinition targetDefinition, InjectableAttribute referenceSource) throws PropertyTransformException { if (!Map.class.isAssignableFrom(source.getMemberType(referenceSource))) { return null; } Document keyDocument = sourceDefinition.getKey(); if (keyDocument == null) { keyDocument = targetDefinition.getKey(); } if (keyDocument != null) { Element element = keyDocument.getDocumentElement(); Type formalType; Type type = source.getGerenricMemberType(referenceSource); if (type instanceof ParameterizedType) { ParameterizedType genericType = (ParameterizedType) type; formalType = genericType.getActualTypeArguments()[0]; if (formalType instanceof ParameterizedType && ((ParameterizedType) formalType).getRawType().equals(Class.class)) { formalType = ((ParameterizedType) formalType).getRawType(); } else if (formalType instanceof Class<?> && Enum.class.isAssignableFrom((Class<?>) formalType)) { Class<Enum> enumClass = (Class<Enum>) formalType; return Enum.valueOf(enumClass, element.getTextContent()); } } else { formalType = String.class; } URI sourceId = sourceDefinition.getClassLoaderId(); URI targetId = targetDefinition.getClassLoaderId(); ClassLoader sourceClassLoader = classLoaderRegistry.getClassLoader(sourceId); ClassLoader targetClassLoader = null; if (targetId != null) { targetClassLoader = classLoaderRegistry.getClassLoader(targetId); } TransformContext context = new TransformContext(sourceClassLoader, targetClassLoader, null, null); return createKey(formalType, element, context); } return null; } @SuppressWarnings("unchecked") private Object createKey(Type type, Element value, TransformContext context) throws PropertyTransformException { DataType<?> targetType; if (type instanceof Class<?>) { targetType = new JavaClass((Class<?>) type); } else { targetType = new JavaParameterizedType((ParameterizedType) type); } PullTransformer<Node, ?> transformer = (PullTransformer<Node, ?>) transformerRegistry.getTransformer(SOURCE_TYPE, targetType); if (transformer == null) { throw new PropertyTransformException("No transformer for : " + type); } try { return transformer.transform(value, context); } catch (TransformationException e) { throw new PropertyTransformException("Error transformatng property", e); } } }
[ "meerajk@83866bfc-822f-0410-aa35-bd5043b85eaf" ]
meerajk@83866bfc-822f-0410-aa35-bd5043b85eaf
d0df45e0d1bb8778766aee2ab4bb334da38272b5
f4cac7f40adef1a1070be987e186a2c22c60bf8d
/HomeWork16/src/MyClass.java
6ceef76d8a56b1cc3322757d6ce9956bc2e227ba
[]
no_license
KaterinaKorobchits/HomeWork
62dab895258360c215dda82b5c2cd8d0c7583d12
e5692688a7b34a707237dd89cb49f86626babcdd
refs/heads/master
2020-04-17T09:15:56.594784
2019-06-14T05:58:45
2019-06-14T05:58:45
166,451,108
0
0
null
null
null
null
UTF-8
Java
false
false
503
java
import java.util.ArrayList; public class MyClass { String name; ArrayList<MyMethod> listMethod = new ArrayList<MyMethod>(); public MyClass(String name) { this.name = name; } public void addMethod(MyMethod myMethod) { listMethod.add(myMethod); } @Override public String toString() { return "class " + name + (listMethod.size() > 0 ? (" has method" + (listMethod.size() == 1 ? " " : "s ") + listMethod.toString()) : " hasn't methods"); } }
[ "katerina.korobchicz@mail.ru" ]
katerina.korobchicz@mail.ru
1ed0efe02df8c26f296febb6235cfbd9d8b8d555
cda2fdba3d54264b7c09a332f194a27c69bce102
/src/main/java/com/pc/cofipa/service/exception/EmailUsuarioJaCadastradoException.java
96ea3183dcc8144edbc02ccedb74c4d8eec8cfaf
[]
no_license
ribeirowill/Teste
61aea5f93868988a6d405b75978520e77a5c0614
06a973f6e2f710a0d3b4aaced618f2d43039d0ce
refs/heads/master
2022-11-19T16:36:58.417563
2019-08-07T20:34:41
2019-08-07T20:34:41
201,118,529
0
0
null
2022-11-16T12:38:34
2019-08-07T19:54:06
JavaScript
UTF-8
Java
false
false
253
java
package com.pc.cofipa.service.exception; public class EmailUsuarioJaCadastradoException extends RuntimeException { private static final long serialVersionUID = 1L; public EmailUsuarioJaCadastradoException(String message) { super(message); } }
[ "ribeiro3001@hotmail.com" ]
ribeiro3001@hotmail.com
b6e6fd011abcffc98748c85705b1af978c62fbed
ceae57f8fa1a4093e40323db11fa8305a73e02ef
/src/main/java/com/shoppingcar/yosova/security/JWTAuthorizationFilter.java
2e5295a1b05335dc0bbb3a66cf3d63502423855f
[]
no_license
Yosova/my-car
4ab03d1a8430a038e1509f9e634b40742db8cec5
0c890bd03b826b587b564c9c279bba7f9f9d6c46
refs/heads/master
2022-12-09T11:19:53.855820
2020-09-14T19:02:36
2020-09-14T19:02:36
295,502,345
0
0
null
null
null
null
UTF-8
Java
false
false
3,400
java
package com.shoppingcar.yosova.security; import java.io.IOException; import java.util.List; import java.util.stream.Collectors; import javax.servlet.FilterChain; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.fasterxml.jackson.databind.ObjectMapper; import com.shoppingcar.yosova.error.ApiError; import io.jsonwebtoken.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.authority.SimpleGrantedAuthority; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.filter.OncePerRequestFilter; import org.springframework.web.servlet.HandlerExceptionResolver; import static org.springframework.http.HttpStatus.FORBIDDEN; @Component public class JWTAuthorizationFilter extends OncePerRequestFilter { @Autowired @Qualifier("handlerExceptionResolver") private HandlerExceptionResolver resolver; private final String HEADER = "Authorization"; private final String PREFIX = "Bearer "; private final String SECRET = "mySecretKey"; @Override @ExceptionHandler protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain chain) throws ServletException, IOException { try { if (checkJWTToken(request, response)) { Claims claims = validateToken(request); if (claims.get("authorities") != null) { setUpSpringAuthentication(claims); } else { SecurityContextHolder.clearContext(); } } else { SecurityContextHolder.clearContext(); } chain.doFilter(request, response); } catch (ExpiredJwtException | UnsupportedJwtException | MalformedJwtException|SignatureException e) { response.setContentType("application/json"); response.setStatus(HttpServletResponse.SC_FORBIDDEN); ApiError apiError = new ApiError(FORBIDDEN, e); apiError.setMessage(String.format("Token Invalido")); ObjectMapper mapper = new ObjectMapper(); String jsonString = mapper.writeValueAsString(apiError); response.getOutputStream().println(jsonString); return; } } private Claims validateToken(HttpServletRequest request) { String jwtToken = request.getHeader(HEADER).replace(PREFIX, ""); return Jwts.parser().setSigningKey(SECRET.getBytes()).parseClaimsJws(jwtToken).getBody(); } /** * Authentication method in Spring flow * * @param claims */ private void setUpSpringAuthentication(Claims claims) { @SuppressWarnings("unchecked") List<String> authorities = (List<String>) claims.get("authorities"); UsernamePasswordAuthenticationToken auth = new UsernamePasswordAuthenticationToken(claims.getSubject(), null, authorities.stream().map(SimpleGrantedAuthority::new).collect(Collectors.toList())); SecurityContextHolder.getContext().setAuthentication(auth); } private boolean checkJWTToken(HttpServletRequest request, HttpServletResponse res) { String authenticationHeader = request.getHeader(HEADER); if (authenticationHeader == null || !authenticationHeader.startsWith(PREFIX)) return false; return true; } }
[ "ysoto@soaint.com" ]
ysoto@soaint.com
b8c9cc352c7b3558f16a5100bc24352d507360c4
d8ad2798718bd4d6d22630fa4638f09965a36eba
/src/day44/Vehicle.java
721a0dcffb6229761c398647cd51e0c28c118e46
[]
no_license
ebrar95/FirstProject
c82738a5eb832037f76c1e91f680e62feb918398
12b7bbb8955add667dad9934e87a6d1b19811bf5
refs/heads/master
2020-12-03T22:56:33.845658
2020-02-23T22:50:35
2020-02-23T22:50:35
231,513,318
0
0
null
null
null
null
UTF-8
Java
false
false
377
java
package day44; public class Vehicle { String make; private int year; public void start() { System.out.println("starting " + make); } public void goForward() { System.out.println(make + " is going forward"); } public int getYear() { return year; } public void setYear(int year) { this.year = year; } }
[ "nigarebrarokc@gmail.com" ]
nigarebrarokc@gmail.com
41c6f2e21957786e1c591c21bff2344dec51cada
cd07184c14d998385bd7f1461c57474ad75ff10f
/App/Manage/app/src/androidTest/java/com/example/and/manage/ApplicationTest.java
aab4b33945049e5d98fda871b0fd1694b1965bce
[]
no_license
uhyun9930/CPL-20162-Team8
b57818d579e8c6b4b0a9f23c62450e15fc0e685a
9ee0e2b22c8d737ad01f862144773b1b949f7d5e
refs/heads/master
2020-07-10T16:14:07.022309
2018-07-15T02:02:43
2018-07-15T02:02:43
67,279,150
1
0
null
null
null
null
UTF-8
Java
false
false
353
java
package com.example.and.manage; 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); } }
[ "house1998@naver.com" ]
house1998@naver.com
14b9d6fada2360512863313d69ce8d0bb0801d8f
b5306a4fea7a308e43c23dbcb47579ce0817637d
/src/main/java/org/example/Sweets/Sweet.java
ac78d293db70bc135d08451f2bac5f5945a631c9
[]
no_license
Niyatiluthra/NiyatiLuthra-Epam-Maven
43fcc941940c76a140ffcfc339663ca4d3e7260f
f481d1bd80947c1ac53a4e14ed60e561241936fd
refs/heads/master
2020-12-29T12:26:51.222661
2020-02-06T04:41:32
2020-02-06T04:41:32
238,606,968
0
0
null
2020-10-13T19:18:27
2020-02-06T04:25:09
Java
UTF-8
Java
false
false
285
java
package org.example.Sweets; public abstract class Sweet { public int sweetWeight; public int numberOfChildren; public String childrenNames[]; public int price; public abstract void display(); public abstract int[] getList(); public abstract void sort(); }
[ "niyati227@gmail.com" ]
niyati227@gmail.com
931959bef38fb12acceb719c29d8f152f360cde7
5e78824dad37e44209b0f68ef56e7f6a92ac89a1
/AbstractFactoryPattern/src/main/java/com/epam/petroandrushchak/Color.java
04ad0e0eb82811a4a1a3cd182382520e3b555e16
[]
no_license
PetroAndrushchak/Patterns
415bb79dc35c2db79c7d29874954c3ea4124c629
36b531b12f0e3368f382b09d6457842ba77f4a6d
refs/heads/master
2021-01-13T09:11:35.151475
2018-04-21T13:29:35
2018-04-21T13:29:35
68,834,545
0
0
null
null
null
null
UTF-8
Java
false
false
80
java
package com.epam.petroandrushchak; public interface Color { void fill(); }
[ "Petro-Pavlo_Andrushchak@epam.com" ]
Petro-Pavlo_Andrushchak@epam.com
bb8e12480b6451989ed334fc18b6f749bcbe4973
8f608309230d4cfef5ea458d67ce5a49f64582db
/chapter_001/src/main/java/array/BarleyBreak.java
c06657a52530beff1892f5cfc17b2060a277e8ba
[]
no_license
fagot2005/job4j
0f50b5e6a71d7b344e6223ea2c60667b327ca6fd
8ff1fe1f992f68dba21c4d53d47bbf49e3c209d5
refs/heads/master
2020-12-31T11:19:47.073697
2020-07-04T08:26:43
2020-07-04T08:26:43
239,015,746
0
0
null
null
null
null
UTF-8
Java
false
false
518
java
package array; public class BarleyBreak { public static void main(String[] args) { int[][] table = new int[3][3]; int count = 1; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { table[i][j] = count; count = count + 1; } } for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { System.out.println("[" + i + "] [" + j + "] " + table[i][j]); } } } }
[ "60795549+fagot2005@users.noreply.github.com" ]
60795549+fagot2005@users.noreply.github.com
d600776d39557063b686f38cd4fc930cc4c23169
64288bfed10cb503b1ff03268145b92edfff4448
/src/main/java/io/github/synepis/trains/darwin/model/cttschema/CategoryType.java
32e86340af32c9f90cd305c3c7d1c9cbee07d1d4
[ "MIT" ]
permissive
synepis/trains
094dca5d83c882b71ce451e16d63916310e34ca4
cea39d4c316639233df4c59de161e76bddba2cd3
refs/heads/master
2020-03-30T07:36:22.005306
2018-09-30T22:46:49
2018-09-30T22:46:49
150,952,215
1
0
null
null
null
null
UTF-8
Java
false
false
1,210
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2018.09.30 at 11:17:55 AM BST // package io.github.synepis.trains.darwin.model.cttschema; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CategoryType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="CategoryType"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="JJ"/> * &lt;enumeration value="VV"/> * &lt;enumeration value="LK"/> * &lt;enumeration value="NP"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlType(name = "CategoryType") @XmlEnum public enum CategoryType { JJ, VV, LK, NP; public String value() { return name(); } public static CategoryType fromValue(String v) { return valueOf(v); } }
[ "argo.synepis@gmail.com" ]
argo.synepis@gmail.com
5813e05d3a0be3d78418783c4396ba5a9bd9a934
25de9996649f9b123060d7c0918a40f7e30332a9
/SourceCode/Android/AshaStableCode/app/src/main/java/com/persistent/healthmon/interfaces/OnAdapterNotify.java
6f4721b89392f6afcf4e130faf5078d0a5f321ed
[]
no_license
jasmira/HealthMON
bd47d42dc4be3977725b3dcb45e1927ab8973d24
d40b6b1ca209a1ffbc934f896e841bca3bb94d36
refs/heads/master
2021-01-22T23:34:48.173174
2017-03-21T07:32:09
2017-03-21T07:32:09
85,657,728
1
0
null
null
null
null
UTF-8
Java
false
false
160
java
package com.persistent.healthmon.interfaces; /** * Created by khyati_shah on 6/28/2016. */ public interface OnAdapterNotify { public void onNotify(); }
[ "jasmira_fernandes@persistent.co.in" ]
jasmira_fernandes@persistent.co.in
73addfc092b2db395af188c7781d5d8d22b57dd7
418a452260befb9442ce455c69944f88735c96b5
/Album/src/InterfaceTexto.java
b43b9b3caea7d121c6862376301488d5f347fa22
[]
no_license
Laura-Costa/Comp2_2020_1
d48f6957eb4b5cfd626c66a1515ec527a2c3322a
1226165efb2370dc2a5ef4a1273259db00baff86
refs/heads/main
2023-03-07T16:35:12.861809
2021-02-20T17:20:35
2021-02-20T17:20:35
318,623,563
0
0
null
null
null
null
UTF-8
Java
false
false
1,759
java
public class InterfaceTexto { /** * Main apenas para testes muito rápidos. Melhor seria escrever unit tests de verdade. * Na prática, o seu "main()" abriria uma interface de texto de verdade, * apresentando um menu, etc. * * @param args */ public static void main(String[] args) { Album album = new Album(200, 3); Pacotinho p1 = new Pacotinho(album, new int[] {1, 6, 18}); album.receberNovoPacotinho(p1); System.out.println("Possui figurinha 1? " + album.possuiFigurinhaColada(1)); System.out.println("Possui figurinha 6? " + album.possuiFigurinhaColada(6)); System.out.println("Possui figurinha 18? " + album.possuiFigurinhaColada(18)); System.out.println("Possui figurinha 60? " + album.possuiFigurinhaColada(60)); System.out.println("Quant figurinhas coladas? " + album.getQuantFigurinhasColadas()); Pacotinho p2 = new Pacotinho(album, new int[] {3, 6, 44}); album.receberNovoPacotinho(p2); System.out.println("Tem figurinha repetida 6? " + album.possuiFigurinhaRepetida(6)); System.out.println("Quant figurinhas coladas? " + album.getQuantFigurinhasColadas()); System.out.println("Quant figurinhas repetidas? " + album.getQuantFigurinhasRepetidas()); while(album.getQuantFigurinhasColadas() <= 180){ Pacotinho pacotinho = new Pacotinho(album); album.receberNovoPacotinho(pacotinho); } System.out.println("Qtd fig coladas = " + album.getQuantFigurinhasColadas()); System.out.println("auto completar"); album.autoCompletar(); System.out.println("Quantidade de figunrinhas coladas = " + album.getQuantFigurinhasColadas()); } }
[ "l.serranocosta@gmail.com" ]
l.serranocosta@gmail.com
1b4ebd471d9a0c29826d1d1f224d3c38e3e8ab00
905a1535c042e26e802d0b30e06e24dcab3f129a
/geometric/src/main/java/frameblock/vision/geometric/QuadrilateralDetector.java
06d14b871c0610676fed6a51da956636a9e77182
[]
no_license
gemunet/FrameBlockVisionAndroid
5f61cdaa4d1d40149c623d91df9fcc8877fecf28
240323ce3148867d1ce2a5d3339258ad5fb41f89
refs/heads/master
2021-07-10T15:23:35.448275
2020-12-02T21:00:53
2020-12-02T21:00:53
224,101,208
0
0
null
null
null
null
UTF-8
Java
false
false
1,163
java
package frameblock.vision.geometric; import android.graphics.Rect; import java.io.OutputStream; public class QuadrilateralDetector { static { System.loadLibrary("quad_detector"); } /** * Busca una tarjeta dentro de una imagen en el ROI indicado, una vez encontrada retorna los * puntos del cuadrilatero y el status indicando si es una tarjeta o no. * * @param image Imagen yuv * @param width width imagen * @param height height imagen * @param roi area a escanear de la imagen * @param outEdges (opcional, puede ser NULL) OutputStream donde se retornara la imagen de edges en jpg * @return Card si encuentra tarjeta, de lo contrario NULL */ public static Polygon detectLargestQuad(byte[] image, int width, int height, Rect roi, OutputStream outEdges) { return detectLargestQuad(image, width, height, roi, outEdges, 0.13f, 1.25f, 0.20f, 0.3f, 0.6f); } private static native Polygon detectLargestQuad(byte[] image, int width, int height, Rect roi, OutputStream outEdge, float cannyThr1Factor, float cannyThr2Factor, float margin, float minLineLength, float maxGap); }
[ "g3mu@hotmail.com" ]
g3mu@hotmail.com
7135ef2e19abe9e0538b72c58be7962747d398f0
d93d531314a26adf025a950c5b8d331a20961d7e
/src/java/admin/action/UserActivationDtlAction.java
96e1d76aa207786cdc8a8820292d0a770050066a
[]
no_license
anjanasuvariya/CampusLive
eb32334a1e979b9325eea8eb3457a8c762a10fca
78479e5fb77d61c3d6cfd0371e6a010945c10729
refs/heads/master
2021-01-01T15:45:15.886319
2014-01-26T05:12:07
2014-01-26T05:12:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,858
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package admin.action; import admin.dao.UserActivationDtlDAO; import admin.dao.UserActivationDtlDAOImpl; import admin.model.TmpUserExcelData; import common.model.CmnUserMst; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Properties; import javax.mail.Message; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.apache.log4j.Logger; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.apache.struts.actions.DispatchAction; import org.json.simple.JSONObject; import user.action.UserOrganizationDtlAction; /** * * @author SACHIN PATEL */ public class UserActivationDtlAction extends DispatchAction { /* forward name="success" path="" */ private static final String SUCCESS = "success"; private static final Logger logger = Logger.getLogger(UserOrganizationDtlAction.class); /** * This is the action called from the Struts framework. * * @param mapping The ActionMapping used to select this instance. * @param form The optional ActionForm bean for this request. * @param request The HTTP Request we are processing. * @param response The HTTP Response we are processing. * @throws java.lang.Exception * @return */ public ActionForward sendUserActivationDtlByMail(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { try { UserActivationDtlDAO lObjUserActivationDtlDAO = new UserActivationDtlDAOImpl(); String lStrUserActIds = request.getParameter("userActIds"); List<Long> lLstActId = new ArrayList<Long>(); List<TmpUserExcelData> lLstUserData = new ArrayList<TmpUserExcelData>(); HttpSession session = request.getSession(); CmnUserMst lObjCmnUserMst = (CmnUserMst) session.getAttribute("cmnUserMst"); if (lStrUserActIds != null && !"".equals(lStrUserActIds)) { String[] lArrStrActIds = lStrUserActIds.split("~"); for (int lIntCnt = 0; lIntCnt < lArrStrActIds.length; lIntCnt++) { lLstActId.add(Long.parseLong(lArrStrActIds[lIntCnt])); } lLstUserData = lObjUserActivationDtlDAO.getUserActivationDtlsByIds(lObjCmnUserMst.getUniversityId(), lLstActId); System.out.println("Starting to send..."); String host = "smtp.gmail.com"; String from = "anjanasuvariya@gmail.com"; String pass = ""; Properties props = System.getProperties(); props.put("mail.smtp.starttls.enable", "true"); // added this line props.put("mail.smtp.host", host); props.put("mail.smtp.user", from); props.put("mail.smtp.password", pass); props.put("mail.smtp.port", "587"); props.put("mail.smtp.auth", "true"); Session lObjSession = Session.getDefaultInstance(props, null); MimeMessage message = new MimeMessage(lObjSession); message.setFrom(new InternetAddress(from)); StringBuffer lStrMessage = null; for (int lIntCnt = 0; lIntCnt < lLstUserData.size(); lIntCnt++) { TmpUserExcelData lObjTmpUserExcelData = lLstUserData.get(lIntCnt); InternetAddress lObjToAddress = new InternetAddress(lObjTmpUserExcelData.getEmailId()); message.addRecipient(Message.RecipientType.TO, lObjToAddress); lStrMessage = new StringBuffer(); lStrMessage.append("Hi " + lObjTmpUserExcelData.getUserFullName() + ","); lStrMessage.append("\n\n\nPlease register on campusLive site through " + lObjTmpUserExcelData.getActivationCode() + " activation code"); lStrMessage.append("\n\nPlease don't share this code."); lStrMessage.append("\n\n*This code is one time use only."); lStrMessage.append("\n\n*This is a system generated mail, no need to reply."); System.out.println("Hey"); message.setSubject("Your Activation code"); message.setText(lStrMessage.toString()); Transport transport = lObjSession.getTransport("smtp"); System.out.println("Now Connecting"); transport.connect(host, from, pass); System.out.println("Connected"); transport.sendMessage(message, message.getAllRecipients()); transport.close(); } System.out.println("end"); } JSONObject jsonResult = new JSONObject(); jsonResult.put("success", "success"); jsonResult.toJSONString(); response.setContentType("application/json"); logger.info(jsonResult.toJSONString().toString()); response.getWriter().write(jsonResult.toJSONString()); } catch (Exception e) { logger.error("Error in sendUserActivationDtlByMail method of UserActivationDtlAction : " + e, e); e.printStackTrace(); } return null; } }
[ "anjanasuvariya@gmail.com" ]
anjanasuvariya@gmail.com
100e034ce63217eff7880f822c071b2fe3d3d5f4
dde5ecee5838e4811540ff4d6d53656a4306b4ef
/cloud-admin-service/service-app/src/main/java/cn/phenix/cloud/admin/app/cms/dao/CmsResourcesLanguageMapper.java
5be2fc98dfdc2d5815a90a05220e9b94b4cb3611
[]
no_license
AnjouKong/cloud-admin
1664a2d2368836febb194f9264901516d55d9da2
f4ae69e176f2637f9ff544a8b4f99b9ad091d033
refs/heads/master
2020-04-10T20:24:30.092954
2019-04-26T03:27:35
2019-04-26T03:27:35
161,266,630
0
0
null
null
null
null
UTF-8
Java
false
false
256
java
package cn.phenix.cloud.admin.app.cms.dao; import cn.phenix.cloud.jpa.GenericJpaRepository; import cn.phenix.model.app.cms.CmsResourcesLanguage; public interface CmsResourcesLanguageMapper extends GenericJpaRepository<CmsResourcesLanguage, String> { }
[ "18249729173@163.com" ]
18249729173@163.com
fdad78b87a357c0ee06e951409731613caa24098
8a38d1fc0153edf6a87c0a6cf6f7fb6c93a99c74
/src/main/java/com/zx/platform/common/utils/SystemPath.java
ce142074d82f2edd0e56304f4e7ace5287201083
[ "Apache-2.0", "BSD-2-Clause" ]
permissive
iVayne/zt-platform
e1de06de9f619f1dc7b7b8ab2d7424eaa6115e5e
aeb1bf0ed8475d3432411bff56d57c008c104f47
refs/heads/master
2021-09-04T13:22:08.375132
2018-01-19T04:48:27
2018-01-19T04:48:27
118,077,909
0
0
null
null
null
null
UTF-8
Java
false
false
1,391
java
/** * Copyright &copy; 2012-2016 邯郸市众翔信息科技有限公司 All rights reserved. */ package com.zx.platform.common.utils; /** * @author wanye * @date Dec 14, 2008 * @version v 1.0 * @description 得到当前应用的系统路径 */ public class SystemPath { public static String getSysPath() { String path = Thread.currentThread().getContextClassLoader() .getResource("").toString(); String temp = path.replaceFirst("file:/", "").replaceFirst( "WEB-INF/classes/", ""); String separator = System.getProperty("file.separator"); String resultPath = temp.replaceAll("/", separator + separator); return resultPath; } public static String getClassPath() { String path = Thread.currentThread().getContextClassLoader() .getResource("").toString(); String temp = path.replaceFirst("file:/", ""); String separator = System.getProperty("file.separator"); String resultPath = temp.replaceAll("/", separator + separator); return resultPath; } public static String getSystempPath() { return System.getProperty("java.io.tmpdir"); } public static String getSeparator() { return System.getProperty("file.separator"); } public static void main(String[] args) { System.out.println(getSysPath()); System.out.println(System.getProperty("java.io.tmpdir")); System.out.println(getSeparator()); System.out.println(getClassPath()); } }
[ "nowimwork@foxmail.com" ]
nowimwork@foxmail.com
c0cb0463367f7dd39ca0746bf08cda96398117a9
d68dbc954df92ae332552c821d5305b6a1095c3f
/MyApplicationTest/app/src/main/java/com/example/hongtao/myapplicationtest/managerface/FunctionManager.java
1c227cb2d6d5379bf48b203feb191a1ffaa16b0c
[]
no_license
zhenghongtao/OneTree
821676921edf5f891f6ddf2749fae5acbb3521e4
c79e09c2710cffc6a6e78df15e5a969924df1d7e
refs/heads/master
2020-03-13T03:49:34.531435
2018-04-25T08:27:14
2018-04-25T08:27:14
130,951,086
0
0
null
null
null
null
UTF-8
Java
false
false
4,139
java
package com.example.hongtao.myapplicationtest.managerface; import android.text.TextUtils; import java.util.HashMap; /** * 万能接口管理类 * Created by hongtao on 17/10/13. */ public class FunctionManager { static FunctionManager instance; public FunctionManager(){ mFunctionNoParamNoResult=new HashMap<>(); mFunctionWithParamOnly=new HashMap<>(); mFunctionWithResultOnly=new HashMap<>(); mFunctionWithParamAndResult=new HashMap<>(); } public static FunctionManager getInstance(){ if(instance==null){ synchronized (FunctionManager.class){ if(instance==null){ instance=new FunctionManager(); } } } return instance; } private HashMap<String, FunctionNoParamNoResult> mFunctionNoParamNoResult; private HashMap<String, FunctionWithParamOnly> mFunctionWithParamOnly; private HashMap<String, FunctionWithResultOnly> mFunctionWithResultOnly; private HashMap<String, FunctionWithParamAndResult> mFunctionWithParamAndResult; public FunctionManager addFunction(FunctionNoParamNoResult funtion){ mFunctionNoParamNoResult.put(funtion.function_name,funtion); return this; } public FunctionManager addFunctionWithResult(FunctionWithResultOnly funtion){ mFunctionWithResultOnly.put(funtion.function_name,funtion); return this; } public FunctionManager addFunctionWithParam(FunctionWithParamOnly funtion){ mFunctionWithParamOnly.put(funtion.function_name,funtion); return this; } public FunctionManager addFunctionWithParamAndResult(FunctionWithParamAndResult funtion){ mFunctionWithParamAndResult.put(funtion.function_name,funtion); return this; } public <Param> void inVokeFunction(String function_name, Param param) throws FunctoinException { if(TextUtils.isEmpty(function_name)){ return; } if(mFunctionWithParamOnly!=null){ FunctionWithParamOnly f=mFunctionWithParamOnly.get(function_name); if(f!=null){ f.function(param); }else{ throw new FunctoinException("no find function :"+function_name); } } } public <Result,Param> Result inVokeFunction(String function_name,Param param,Class<Result> c) throws FunctoinException { if(TextUtils.isEmpty(function_name)){ return null; } if(mFunctionWithParamAndResult!=null){ FunctionWithParamAndResult f=mFunctionWithParamAndResult.get(function_name); if(f!=null){ if(c!=null) { return c.cast(f.function(param)); }else{ return (Result) f.function(param); } }else{ throw new FunctoinException("no find function :"+function_name); } } return null; } public <Result> Result inVokeFunction(String function_name, Class<Result> c) throws FunctoinException { if(TextUtils.isEmpty(function_name)){ return null; } if(mFunctionWithResultOnly!=null){ FunctionWithResultOnly f=mFunctionWithResultOnly.get(function_name); if(f!=null){ if(c!=null) { return c.cast(f.function()); }else{ return (Result)f.function(); } }else{ throw new FunctoinException("no find function :"+function_name); } } return null; } public void inVokeFunction(String function_name) throws FunctoinException { if(TextUtils.isEmpty(function_name)){ return; } if(mFunctionNoParamNoResult!=null){ FunctionNoParamNoResult f=mFunctionNoParamNoResult.get(function_name); if(f!=null){ f.function(); }else{ throw new FunctoinException("no find function :"+function_name); } } } }
[ "501842670@qq.com" ]
501842670@qq.com
2457311945e0848fe74fb171739cde9fc80f8128
ef23a9444150a8e5d434dd5bdc6df6f157080d79
/app/build/generated/not_namespaced_r_class_sources/debug/r/com/hdpolover/ybbproject/R.java
0b2865cf8d757e557d771733972ded6d3344df11
[]
no_license
juraganpisang/ybbproject
04d65964cad43d33561883d1272d9cd72c8414e2
0911646e3bc3dab911f2aa63790696efb2126f90
refs/heads/master
2022-03-24T03:02:53.437032
2019-11-08T13:26:23
2019-11-08T13:26:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,007,469
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.hdpolover.ybbproject; public final class R { public static final class anim { public static final int abc_fade_in=0x7f010000; public static final int abc_fade_out=0x7f010001; public static final int abc_grow_fade_in_from_bottom=0x7f010002; public static final int abc_popup_enter=0x7f010003; public static final int abc_popup_exit=0x7f010004; public static final int abc_shrink_fade_out_from_bottom=0x7f010005; public static final int abc_slide_in_bottom=0x7f010006; public static final int abc_slide_in_top=0x7f010007; public static final int abc_slide_out_bottom=0x7f010008; public static final int abc_slide_out_top=0x7f010009; public static final int abc_tooltip_enter=0x7f01000a; public static final int abc_tooltip_exit=0x7f01000b; public static final int btn_checkbox_to_checked_box_inner_merged_animation=0x7f01000c; public static final int btn_checkbox_to_checked_box_outer_merged_animation=0x7f01000d; public static final int btn_checkbox_to_checked_icon_null_animation=0x7f01000e; public static final int btn_checkbox_to_unchecked_box_inner_merged_animation=0x7f01000f; public static final int btn_checkbox_to_unchecked_check_path_merged_animation=0x7f010010; public static final int btn_checkbox_to_unchecked_icon_null_animation=0x7f010011; public static final int btn_radio_to_off_mtrl_dot_group_animation=0x7f010012; public static final int btn_radio_to_off_mtrl_ring_outer_animation=0x7f010013; public static final int btn_radio_to_off_mtrl_ring_outer_path_animation=0x7f010014; public static final int btn_radio_to_on_mtrl_dot_group_animation=0x7f010015; public static final int btn_radio_to_on_mtrl_ring_outer_animation=0x7f010016; public static final int btn_radio_to_on_mtrl_ring_outer_path_animation=0x7f010017; public static final int design_bottom_sheet_slide_in=0x7f010018; public static final int design_bottom_sheet_slide_out=0x7f010019; public static final int design_snackbar_in=0x7f01001a; public static final int design_snackbar_out=0x7f01001b; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f020000; public static final int design_fab_hide_motion_spec=0x7f020001; public static final int design_fab_show_motion_spec=0x7f020002; public static final int mtrl_btn_state_list_anim=0x7f020003; public static final int mtrl_btn_unelevated_state_list_anim=0x7f020004; public static final int mtrl_chip_state_list_anim=0x7f020005; public static final int mtrl_fab_hide_motion_spec=0x7f020006; public static final int mtrl_fab_show_motion_spec=0x7f020007; public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020008; public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020009; } public static final class attr { /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarDivider=0x7f030000; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f030001; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f030002; /** * <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), and * mm (millimeters). * <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>wrap_content</td><td>0</td><td></td></tr> * </table> */ public static final int actionBarSize=0x7f030003; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f030004; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarStyle=0x7f030005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f030006; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f030007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f030008; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTheme=0x7f030009; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f03000a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionButtonStyle=0x7f03000b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f03000c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionLayout=0x7f03000d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f03000e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f03000f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeBackground=0x7f030010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f030011; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f030012; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f030013; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f030014; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f030015; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f030016; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f030017; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f030018; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f030019; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f03001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeStyle=0x7f03001b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f03001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f03001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f03001e; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f03001f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f030020; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f030021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f030022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f030023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogStyle=0x7f030024; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogTheme=0x7f030025; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f030026; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f030027; /** * <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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int alphabeticModifiers=0x7f030028; /** * <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), and * mm (millimeters). */ public static final int arrowHeadLength=0x7f030029; /** * <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), and * mm (millimeters). */ public static final int arrowShaftLength=0x7f03002a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f03002b; /** * <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), and * mm (millimeters). */ public static final int autoSizeMaxTextSize=0x7f03002c; /** * <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), and * mm (millimeters). */ public static final int autoSizeMinTextSize=0x7f03002d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f03002e; /** * <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), and * mm (millimeters). */ public static final int autoSizeStepGranularity=0x7f03002f; /** * <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>none</td><td>0</td><td></td></tr> * <tr><td>uniform</td><td>1</td><td></td></tr> * </table> */ public static final int autoSizeTextType=0x7f030030; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int background=0x7f030031; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f030032; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f030033; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundTint=0x7f030034; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int backgroundTintMode=0x7f030035; /** * <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), and * mm (millimeters). */ public static final int barLength=0x7f030036; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int barrierAllowsGoneWidgets=0x7f030037; /** * <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>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int barrierDirection=0x7f030038; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_autoHide=0x7f030039; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_fitToContents=0x7f03003a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_hideable=0x7f03003b; /** * <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), and * mm (millimeters). */ public static final int behavior_overlapTop=0x7f03003c; /** * <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), and * mm (millimeters). * <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>auto</td><td>ffffffff</td><td></td></tr> * </table> */ public static final int behavior_peekHeight=0x7f03003d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_skipCollapsed=0x7f03003e; /** * <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), and * mm (millimeters). */ public static final int borderWidth=0x7f03003f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f030040; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomAppBarStyle=0x7f030041; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomNavigationStyle=0x7f030042; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f030043; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f030044; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int boxBackgroundColor=0x7f030045; /** * <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>filled</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>outline</td><td>2</td><td></td></tr> * </table> */ public static final int boxBackgroundMode=0x7f030046; /** * <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), and * mm (millimeters). */ public static final int boxCollapsedPaddingTop=0x7f030047; /** * <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), and * mm (millimeters). */ public static final int boxCornerRadiusBottomEnd=0x7f030048; /** * <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), and * mm (millimeters). */ public static final int boxCornerRadiusBottomStart=0x7f030049; /** * <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), and * mm (millimeters). */ public static final int boxCornerRadiusTopEnd=0x7f03004a; /** * <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), and * mm (millimeters). */ public static final int boxCornerRadiusTopStart=0x7f03004b; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int boxStrokeColor=0x7f03004c; /** * <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), and * mm (millimeters). */ public static final int boxStrokeWidth=0x7f03004d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f03004e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f03004f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f030050; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f030051; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarStyle=0x7f030052; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonCompat=0x7f030053; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int buttonGravity=0x7f030054; /** * <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), and * mm (millimeters). */ public static final int buttonIconDimen=0x7f030055; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f030056; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>icon_only</td><td>2</td><td></td></tr> * <tr><td>standard</td><td>0</td><td></td></tr> * <tr><td>wide</td><td>1</td><td></td></tr> * </table> */ public static final int buttonSize=0x7f030057; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyle=0x7f030058; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f030059; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int buttonTint=0x7f03005a; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int buttonTintMode=0x7f03005b; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int c_background_color=0x7f03005c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int c_border=0x7f03005d; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int c_border_color=0x7f03005e; /** * <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), and * mm (millimeters). */ public static final int c_border_width=0x7f03005f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int c_shadow=0x7f030060; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int c_shadow_color=0x7f030061; /** * <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>bottom</td><td>3</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>end</td><td>5</td><td></td></tr> * <tr><td>start</td><td>4</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int c_shadow_gravity=0x7f030062; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int c_shadow_radius=0x7f030063; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int cardBackgroundColor=0x7f030064; /** * <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), and * mm (millimeters). */ public static final int cardCornerRadius=0x7f030065; /** * <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), and * mm (millimeters). */ public static final int cardElevation=0x7f030066; /** * <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), and * mm (millimeters). */ public static final int cardMaxElevation=0x7f030067; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int cardPreventCornerOverlap=0x7f030068; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int cardUseCompatPadding=0x7f030069; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int cardViewStyle=0x7f03006a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chainUseRtl=0x7f03006b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkboxStyle=0x7f03006c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedChip=0x7f03006d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedIcon=0x7f03006e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int checkedIconEnabled=0x7f03006f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int checkedIconVisible=0x7f030070; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f030071; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int chipBackgroundColor=0x7f030072; /** * <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), and * mm (millimeters). */ public static final int chipCornerRadius=0x7f030073; /** * <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), and * mm (millimeters). */ public static final int chipEndPadding=0x7f030074; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipGroupStyle=0x7f030075; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipIcon=0x7f030076; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chipIconEnabled=0x7f030077; /** * <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), and * mm (millimeters). */ public static final int chipIconSize=0x7f030078; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int chipIconTint=0x7f030079; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chipIconVisible=0x7f03007a; /** * <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), and * mm (millimeters). */ public static final int chipMinHeight=0x7f03007b; /** * <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), and * mm (millimeters). */ public static final int chipSpacing=0x7f03007c; /** * <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), and * mm (millimeters). */ public static final int chipSpacingHorizontal=0x7f03007d; /** * <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), and * mm (millimeters). */ public static final int chipSpacingVertical=0x7f03007e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipStandaloneStyle=0x7f03007f; /** * <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), and * mm (millimeters). */ public static final int chipStartPadding=0x7f030080; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int chipStrokeColor=0x7f030081; /** * <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), and * mm (millimeters). */ public static final int chipStrokeWidth=0x7f030082; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipStyle=0x7f030083; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int circleCrop=0x7f030084; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeIcon=0x7f030085; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int closeIconEnabled=0x7f030086; /** * <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), and * mm (millimeters). */ public static final int closeIconEndPadding=0x7f030087; /** * <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), and * mm (millimeters). */ public static final int closeIconSize=0x7f030088; /** * <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), and * mm (millimeters). */ public static final int closeIconStartPadding=0x7f030089; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int closeIconTint=0x7f03008a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int closeIconVisible=0x7f03008b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeItemLayout=0x7f03008c; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f03008d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapseIcon=0x7f03008e; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int collapsedTitleGravity=0x7f03008f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f030090; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int color=0x7f030091; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorAccent=0x7f030092; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorBackgroundFloating=0x7f030093; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorButtonNormal=0x7f030094; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlActivated=0x7f030095; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlHighlight=0x7f030096; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlNormal=0x7f030097; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f030098; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimary=0x7f030099; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimaryDark=0x7f03009a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>auto</td><td>2</td><td></td></tr> * <tr><td>dark</td><td>0</td><td></td></tr> * <tr><td>light</td><td>1</td><td></td></tr> * </table> */ public static final int colorScheme=0x7f03009b; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSecondary=0x7f03009c; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSwitchThumbNormal=0x7f03009d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int commitIcon=0x7f03009e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int constraintSet=0x7f03009f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int constraint_referenced_ids=0x7f0300a0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int content=0x7f0300a1; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f0300a2; /** * <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), and * mm (millimeters). */ public static final int contentInsetEnd=0x7f0300a3; /** * <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), and * mm (millimeters). */ public static final int contentInsetEndWithActions=0x7f0300a4; /** * <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), and * mm (millimeters). */ public static final int contentInsetLeft=0x7f0300a5; /** * <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), and * mm (millimeters). */ public static final int contentInsetRight=0x7f0300a6; /** * <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), and * mm (millimeters). */ public static final int contentInsetStart=0x7f0300a7; /** * <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), and * mm (millimeters). */ public static final int contentInsetStartWithNavigation=0x7f0300a8; /** * <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), and * mm (millimeters). */ public static final int contentPadding=0x7f0300a9; /** * <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), and * mm (millimeters). */ public static final int contentPaddingBottom=0x7f0300aa; /** * <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), and * mm (millimeters). */ public static final int contentPaddingLeft=0x7f0300ab; /** * <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), and * mm (millimeters). */ public static final int contentPaddingRight=0x7f0300ac; /** * <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), and * mm (millimeters). */ public static final int contentPaddingTop=0x7f0300ad; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int contentScrim=0x7f0300ae; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int controlBackground=0x7f0300af; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int coordinatorLayoutStyle=0x7f0300b0; /** * <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), and * mm (millimeters). */ public static final int cornerRadius=0x7f0300b1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int counterEnabled=0x7f0300b2; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int counterMaxLength=0x7f0300b3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f0300b4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterTextAppearance=0x7f0300b5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int customNavigationLayout=0x7f0300b6; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f0300b7; /** * <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), and * mm (millimeters). */ public static final int dialogCornerRadius=0x7f0300b8; /** * <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), and * mm (millimeters). */ public static final int dialogPreferredPadding=0x7f0300b9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dialogTheme=0x7f0300ba; /** * <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>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> */ public static final int displayOptions=0x7f0300bb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int divider=0x7f0300bc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerHorizontal=0x7f0300bd; /** * <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), and * mm (millimeters). */ public static final int dividerPadding=0x7f0300be; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerVertical=0x7f0300bf; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawableBottomCompat=0x7f0300c0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawableEndCompat=0x7f0300c1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawableLeftCompat=0x7f0300c2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawableRightCompat=0x7f0300c3; /** * <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), and * mm (millimeters). */ public static final int drawableSize=0x7f0300c4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawableStartCompat=0x7f0300c5; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int drawableTint=0x7f0300c6; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int drawableTintMode=0x7f0300c7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawableTopCompat=0x7f0300c8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f0300c9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0300ca; /** * <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), and * mm (millimeters). */ public static final int dropdownListPreferredItemHeight=0x7f0300cb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextBackground=0x7f0300cc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f0300cd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextStyle=0x7f0300ce; /** * <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), and * mm (millimeters). */ public static final int elevation=0x7f0300cf; /** * <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>gone</td><td>0</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * </table> */ public static final int emptyVisibility=0x7f0300d0; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int enforceMaterialTheme=0x7f0300d1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int enforceTextAppearance=0x7f0300d2; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int errorEnabled=0x7f0300d3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int errorTextAppearance=0x7f0300d4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f0300d5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int expanded=0x7f0300d6; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int expandedTitleGravity=0x7f0300d7; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMargin=0x7f0300d8; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginBottom=0x7f0300d9; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginEnd=0x7f0300da; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginStart=0x7f0300db; /** * <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), and * mm (millimeters). */ public static final int expandedTitleMarginTop=0x7f0300dc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f0300dd; /** * <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>center</td><td>0</td><td></td></tr> * <tr><td>end</td><td>1</td><td></td></tr> * </table> */ public static final int fabAlignmentMode=0x7f0300de; /** * <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), and * mm (millimeters). */ public static final int fabCradleMargin=0x7f0300df; /** * <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), and * mm (millimeters). */ public static final int fabCradleRoundedCornerRadius=0x7f0300e0; /** * <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), and * mm (millimeters). */ public static final int fabCradleVerticalOffset=0x7f0300e1; /** * <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), and * mm (millimeters). */ public static final int fabCustomSize=0x7f0300e2; /** * <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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fabSize=0x7f0300e3; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int fastScrollEnabled=0x7f0300e4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f0300e5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f0300e6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f0300e7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f0300e8; /** * <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), and * mm (millimeters). */ public static final int firstBaselineToTopHeight=0x7f0300e9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</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>". * <p>May be a floating point value, such as "<code>1.2</code>". * <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), and * 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. */ public static final int floatingActionButtonStyle=0x7f0300ea; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int font=0x7f0300eb; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f0300ec; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f0300ed; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fontProviderCerts=0x7f0300ee; /** * <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>async</td><td>1</td><td></td></tr> * <tr><td>blocking</td><td>0</td><td></td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f0300ef; /** * <p>May be an integer value, such as "<code>100</code>". * <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>forever</td><td>ffffffff</td><td></td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f0300f0; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f0300f1; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f0300f2; /** * <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>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fontStyle=0x7f0300f3; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontVariationSettings=0x7f0300f4; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f0300f5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int foregroundInsidePadding=0x7f0300f6; /** * <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), and * mm (millimeters). */ public static final int gapBetweenBars=0x7f0300f7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int goIcon=0x7f0300f8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int headerLayout=0x7f0300f9; /** * <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), and * mm (millimeters). */ public static final int height=0x7f0300fa; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int helperText=0x7f0300fb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int helperTextEnabled=0x7f0300fc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int helperTextTextAppearance=0x7f0300fd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hideMotionSpec=0x7f0300fe; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f0300ff; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnScroll=0x7f030100; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintAnimationEnabled=0x7f030101; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintEnabled=0x7f030102; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hintTextAppearance=0x7f030103; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f030104; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeLayout=0x7f030105; /** * <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), and * mm (millimeters). */ public static final int hoveredFocusedTranslationZ=0x7f030106; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int icon=0x7f030107; /** * <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), and * mm (millimeters). */ public static final int iconEndPadding=0x7f030108; /** * <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>start</td><td>1</td><td></td></tr> * <tr><td>textStart</td><td>2</td><td></td></tr> * </table> */ public static final int iconGravity=0x7f030109; /** * <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), and * mm (millimeters). */ public static final int iconPadding=0x7f03010a; /** * <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), and * mm (millimeters). */ public static final int iconSize=0x7f03010b; /** * <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), and * mm (millimeters). */ public static final int iconStartPadding=0x7f03010c; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int iconTint=0x7f03010d; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int iconTintMode=0x7f03010e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f03010f; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int imageAspectRatio=0x7f030110; /** * <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>adjust_height</td><td>2</td><td></td></tr> * <tr><td>adjust_width</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int imageAspectRatioAdjust=0x7f030111; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int imageButtonStyle=0x7f030112; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f030113; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f030114; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int insetForeground=0x7f030115; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f030116; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemBackground=0x7f030117; /** * <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), and * mm (millimeters). */ public static final int itemHorizontalPadding=0x7f030118; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int itemHorizontalTranslationEnabled=0x7f030119; /** * <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), and * mm (millimeters). */ public static final int itemIconPadding=0x7f03011a; /** * <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), and * mm (millimeters). */ public static final int itemIconSize=0x7f03011b; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int itemIconTint=0x7f03011c; /** * <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), and * mm (millimeters). */ public static final int itemPadding=0x7f03011d; /** * <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), and * mm (millimeters). */ public static final int itemSpacing=0x7f03011e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearance=0x7f03011f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearanceActive=0x7f030120; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearanceInactive=0x7f030121; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int itemTextColor=0x7f030122; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int keylines=0x7f030123; /** * <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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>labeled</td><td>1</td><td></td></tr> * <tr><td>selected</td><td>0</td><td></td></tr> * <tr><td>unlabeled</td><td>2</td><td></td></tr> * </table> */ public static final int labelVisibilityMode=0x7f030124; /** * <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), and * mm (millimeters). */ public static final int lastBaselineToBottomHeight=0x7f030125; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout=0x7f030126; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layoutManager=0x7f030127; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_anchor=0x7f030128; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int layout_anchorGravity=0x7f030129; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_behavior=0x7f03012a; /** * <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>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> */ public static final int layout_collapseMode=0x7f03012b; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_collapseParallaxMultiplier=0x7f03012c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int layout_constrainedHeight=0x7f03012d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int layout_constrainedWidth=0x7f03012e; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBaseline_creator=0x7f03012f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBaseline_toBaselineOf=0x7f030130; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBottom_creator=0x7f030131; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toBottomOf=0x7f030132; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toTopOf=0x7f030133; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_constraintCircle=0x7f030134; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintCircleAngle=0x7f030135; /** * <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), and * mm (millimeters). */ public static final int layout_constraintCircleRadius=0x7f030136; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_constraintDimensionRatio=0x7f030137; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toEndOf=0x7f030138; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toStartOf=0x7f030139; /** * <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), and * mm (millimeters). */ public static final int layout_constraintGuide_begin=0x7f03013a; /** * <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), and * mm (millimeters). */ public static final int layout_constraintGuide_end=0x7f03013b; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintGuide_percent=0x7f03013c; /** * <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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_default=0x7f03013d; /** * <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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_max=0x7f03013e; /** * <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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_min=0x7f03013f; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHeight_percent=0x7f030140; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_bias=0x7f030141; /** * <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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHorizontal_chainStyle=0x7f030142; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_weight=0x7f030143; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintLeft_creator=0x7f030144; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toLeftOf=0x7f030145; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toRightOf=0x7f030146; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintRight_creator=0x7f030147; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toLeftOf=0x7f030148; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toRightOf=0x7f030149; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toEndOf=0x7f03014a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toStartOf=0x7f03014b; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintTop_creator=0x7f03014c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toBottomOf=0x7f03014d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toTopOf=0x7f03014e; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_bias=0x7f03014f; /** * <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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintVertical_chainStyle=0x7f030150; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_weight=0x7f030151; /** * <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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_default=0x7f030152; /** * <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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_max=0x7f030153; /** * <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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_min=0x7f030154; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintWidth_percent=0x7f030155; /** * <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>all</td><td>77</td><td></td></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int layout_dodgeInsetEdges=0x7f030156; /** * <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), and * mm (millimeters). */ public static final int layout_editor_absoluteX=0x7f030157; /** * <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), and * mm (millimeters). */ public static final int layout_editor_absoluteY=0x7f030158; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginBottom=0x7f030159; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginEnd=0x7f03015a; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginLeft=0x7f03015b; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginRight=0x7f03015c; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginStart=0x7f03015d; /** * <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), and * mm (millimeters). */ public static final int layout_goneMarginTop=0x7f03015e; /** * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int layout_insetEdge=0x7f03015f; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_keyline=0x7f030160; /** * <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>barrier</td><td>2</td><td></td></tr> * <tr><td>chains</td><td>4</td><td></td></tr> * <tr><td>dimensions</td><td>8</td><td></td></tr> * <tr><td>direct</td><td>1</td><td></td></tr> * <tr><td>groups</td><td>20</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>standard</td><td>7</td><td></td></tr> * </table> */ public static final int layout_optimizationLevel=0x7f030161; /** * <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>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * <tr><td>snapMargins</td><td>20</td><td></td></tr> * </table> */ public static final int layout_scrollFlags=0x7f030162; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f030163; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int liftOnScroll=0x7f030164; /** * <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), and * mm (millimeters). */ public static final int lineHeight=0x7f030165; /** * <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), and * mm (millimeters). */ public static final int lineSpacing=0x7f030166; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f030167; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceIndicatorMultipleAnimated=0x7f030168; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceIndicatorSingleAnimated=0x7f030169; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f03016a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listItemLayout=0x7f03016b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listLayout=0x7f03016c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f03016d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f03016e; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemHeight=0x7f03016f; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemHeightLarge=0x7f030170; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemHeightSmall=0x7f030171; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemPaddingEnd=0x7f030172; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemPaddingLeft=0x7f030173; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemPaddingRight=0x7f030174; /** * <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), and * mm (millimeters). */ public static final int listPreferredItemPaddingStart=0x7f030175; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int logo=0x7f030176; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f030177; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int materialButtonStyle=0x7f030178; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int materialCardViewStyle=0x7f030179; /** * <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), and * mm (millimeters). */ public static final int maxActionInlineWidth=0x7f03017a; /** * <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), and * mm (millimeters). */ public static final int maxButtonHeight=0x7f03017b; /** * <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), and * mm (millimeters). */ public static final int maxImageSize=0x7f03017c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f03017d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int menu=0x7f03017e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f03017f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f030180; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationIcon=0x7f030181; /** * <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>listMode</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>tabMode</td><td>2</td><td></td></tr> * </table> */ public static final int navigationMode=0x7f030182; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationViewStyle=0x7f030183; /** * <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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int numericModifiers=0x7f030184; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f030185; /** * <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), and * mm (millimeters). */ public static final int paddingBottomNoButtons=0x7f030186; /** * <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), and * mm (millimeters). */ public static final int paddingEnd=0x7f030187; /** * <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), and * mm (millimeters). */ public static final int paddingStart=0x7f030188; /** * <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), and * mm (millimeters). */ public static final int paddingTopNoTitle=0x7f030189; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelBackground=0x7f03018a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f03018b; /** * <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), and * mm (millimeters). */ public static final int panelMenuListWidth=0x7f03018c; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int passwordToggleContentDescription=0x7f03018d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f03018e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int passwordToggleEnabled=0x7f03018f; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int passwordToggleTint=0x7f030190; /** * <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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int passwordToggleTintMode=0x7f030191; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupMenuStyle=0x7f030192; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupTheme=0x7f030193; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupWindowStyle=0x7f030194; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f030195; /** * <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), and * mm (millimeters). */ public static final int pressedTranslationZ=0x7f030196; /** * <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), and * mm (millimeters). */ public static final int progressBarPadding=0x7f030197; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int progressBarStyle=0x7f030198; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int queryBackground=0x7f030199; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f03019a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int radioButtonStyle=0x7f03019b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyle=0x7f03019c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f03019d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f03019e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int reverseLayout=0x7f03019f; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int rippleColor=0x7f0301a0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int scopeUris=0x7f0301a1; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int scrimAnimationDuration=0x7f0301a2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int scrimBackground=0x7f0301a3; /** * <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), and * mm (millimeters). */ public static final int scrimVisibleHeightTrigger=0x7f0301a4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchHintIcon=0x7f0301a5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchIcon=0x7f0301a6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchViewStyle=0x7f0301a7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int seekBarStyle=0x7f0301a8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackground=0x7f0301a9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f0301aa; /** * <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>always</td><td>2</td><td></td></tr> * <tr><td>collapseActionView</td><td>8</td><td></td></tr> * <tr><td>ifRoom</td><td>1</td><td></td></tr> * <tr><td>never</td><td>0</td><td></td></tr> * <tr><td>withText</td><td>4</td><td></td></tr> * </table> */ public static final int showAsAction=0x7f0301ab; /** * <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>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int showDividers=0x7f0301ac; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int showMotionSpec=0x7f0301ad; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f0301ae; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f0301af; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f0301b0; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int singleLine=0x7f0301b1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int singleSelection=0x7f0301b2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int snackbarButtonStyle=0x7f0301b3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int snackbarStyle=0x7f0301b4; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int spanCount=0x7f0301b5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f0301b6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f0301b7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerStyle=0x7f0301b8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f0301b9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int srcCompat=0x7f0301ba; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int stackFromEnd=0x7f0301bb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f0301bc; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsed=0x7f0301bd; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsible=0x7f0301be; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_liftable=0x7f0301bf; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_lifted=0x7f0301c0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarBackground=0x7f0301c1; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarScrim=0x7f0301c2; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int strokeColor=0x7f0301c3; /** * <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), and * mm (millimeters). */ public static final int strokeWidth=0x7f0301c4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subMenuArrow=0x7f0301c5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int submitBackground=0x7f0301c6; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f0301c7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0301c8; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int subtitleTextColor=0x7f0301c9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f0301ca; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f0301cb; /** * <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), and * mm (millimeters). */ public static final int switchMinWidth=0x7f0301cc; /** * <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), and * mm (millimeters). */ public static final int switchPadding=0x7f0301cd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchStyle=0x7f0301ce; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0301cf; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabBackground=0x7f0301d0; /** * <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), and * mm (millimeters). */ public static final int tabContentStart=0x7f0301d1; /** * <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>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> */ public static final int tabGravity=0x7f0301d2; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabIconTint=0x7f0301d3; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tabIconTintMode=0x7f0301d4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabIndicator=0x7f0301d5; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int tabIndicatorAnimationDuration=0x7f0301d6; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabIndicatorColor=0x7f0301d7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabIndicatorFullWidth=0x7f0301d8; /** * <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>bottom</td><td>0</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>stretch</td><td>3</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int tabIndicatorGravity=0x7f0301d9; /** * <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), and * mm (millimeters). */ public static final int tabIndicatorHeight=0x7f0301da; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabInlineLabel=0x7f0301db; /** * <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), and * mm (millimeters). */ public static final int tabMaxWidth=0x7f0301dc; /** * <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), and * mm (millimeters). */ public static final int tabMinWidth=0x7f0301dd; /** * <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>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> */ public static final int tabMode=0x7f0301de; /** * <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), and * mm (millimeters). */ public static final int tabPadding=0x7f0301df; /** * <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), and * mm (millimeters). */ public static final int tabPaddingBottom=0x7f0301e0; /** * <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), and * mm (millimeters). */ public static final int tabPaddingEnd=0x7f0301e1; /** * <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), and * mm (millimeters). */ public static final int tabPaddingStart=0x7f0301e2; /** * <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), and * mm (millimeters). */ public static final int tabPaddingTop=0x7f0301e3; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabRippleColor=0x7f0301e4; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabSelectedTextColor=0x7f0301e5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabStyle=0x7f0301e6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabTextAppearance=0x7f0301e7; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabTextColor=0x7f0301e8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabUnboundedRipple=0x7f0301e9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int textAllCaps=0x7f0301ea; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceBody1=0x7f0301eb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceBody2=0x7f0301ec; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceButton=0x7f0301ed; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceCaption=0x7f0301ee; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline1=0x7f0301ef; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline2=0x7f0301f0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline3=0x7f0301f1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline4=0x7f0301f2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline5=0x7f0301f3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline6=0x7f0301f4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f0301f5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0301f6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f0301f7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0301f8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceOverline=0x7f0301f9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f0301fa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0301fb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0301fc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f0301fd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSubtitle1=0x7f0301fe; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSubtitle2=0x7f0301ff; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f030200; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f030201; /** * <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), and * mm (millimeters). */ public static final int textEndPadding=0x7f030202; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textInputStyle=0x7f030203; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int textLocale=0x7f030204; /** * <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), and * mm (millimeters). */ public static final int textStartPadding=0x7f030205; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int theme=0x7f030206; /** * <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), and * mm (millimeters). */ public static final int thickness=0x7f030207; /** * <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), and * mm (millimeters). */ public static final int thumbTextPadding=0x7f030208; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int thumbTint=0x7f030209; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int thumbTintMode=0x7f03020a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tickMark=0x7f03020b; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tickMarkTint=0x7f03020c; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tickMarkTintMode=0x7f03020d; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tint=0x7f03020e; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tintMode=0x7f03020f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f030210; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int titleEnabled=0x7f030211; /** * <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), and * mm (millimeters). */ public static final int titleMargin=0x7f030212; /** * <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), and * mm (millimeters). */ public static final int titleMarginBottom=0x7f030213; /** * <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), and * mm (millimeters). */ public static final int titleMarginEnd=0x7f030214; /** * <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), and * mm (millimeters). */ public static final int titleMarginStart=0x7f030215; /** * <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), and * mm (millimeters). */ public static final int titleMarginTop=0x7f030216; /** * <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), and * mm (millimeters). */ public static final int titleMargins=0x7f030217; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextAppearance=0x7f030218; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int titleTextColor=0x7f030219; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextStyle=0x7f03021a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarId=0x7f03021b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f03021c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarStyle=0x7f03021d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f03021e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f03021f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f030220; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int track=0x7f030221; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int trackTint=0x7f030222; /** * <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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int trackTintMode=0x7f030223; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int ttcIndex=0x7f030224; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int useCompatPadding=0x7f030225; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int viewInflaterClass=0x7f030226; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int voiceIcon=0x7f030227; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f030228; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f030229; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f03022a; /** * <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), and * 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. */ public static final int windowFixedHeightMajor=0x7f03022b; /** * <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), and * 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. */ public static final int windowFixedHeightMinor=0x7f03022c; /** * <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), and * 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. */ public static final int windowFixedWidthMajor=0x7f03022d; /** * <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), and * 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. */ public static final int windowFixedWidthMinor=0x7f03022e; /** * <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), and * 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. */ public static final int windowMinWidthMajor=0x7f03022f; /** * <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), and * 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. */ public static final int windowMinWidthMinor=0x7f030230; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f030231; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f040000; public static final int abc_allow_stacked_button_bar=0x7f040001; public static final int abc_config_actionMenuItemAllCaps=0x7f040002; public static final int mtrl_btn_textappearance_all_caps=0x7f040003; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; public static final int abc_background_cache_hint_selector_material_light=0x7f050001; public static final int abc_btn_colored_borderless_text_material=0x7f050002; public static final int abc_btn_colored_text_material=0x7f050003; public static final int abc_color_highlight_material=0x7f050004; public static final int abc_hint_foreground_material_dark=0x7f050005; public static final int abc_hint_foreground_material_light=0x7f050006; public static final int abc_input_method_navigation_guard=0x7f050007; public static final int abc_primary_text_disable_only_material_dark=0x7f050008; public static final int abc_primary_text_disable_only_material_light=0x7f050009; public static final int abc_primary_text_material_dark=0x7f05000a; public static final int abc_primary_text_material_light=0x7f05000b; public static final int abc_search_url_text=0x7f05000c; public static final int abc_search_url_text_normal=0x7f05000d; public static final int abc_search_url_text_pressed=0x7f05000e; public static final int abc_search_url_text_selected=0x7f05000f; public static final int abc_secondary_text_material_dark=0x7f050010; public static final int abc_secondary_text_material_light=0x7f050011; public static final int abc_tint_btn_checkable=0x7f050012; public static final int abc_tint_default=0x7f050013; public static final int abc_tint_edittext=0x7f050014; public static final int abc_tint_seek_thumb=0x7f050015; public static final int abc_tint_spinner=0x7f050016; public static final int abc_tint_switch_track=0x7f050017; public static final int accent_material_dark=0x7f050018; public static final int accent_material_light=0x7f050019; public static final int background_floating_material_dark=0x7f05001a; public static final int background_floating_material_light=0x7f05001b; public static final int background_material_dark=0x7f05001c; public static final int background_material_light=0x7f05001d; public static final int bright_foreground_disabled_material_dark=0x7f05001e; public static final int bright_foreground_disabled_material_light=0x7f05001f; public static final int bright_foreground_inverse_material_dark=0x7f050020; public static final int bright_foreground_inverse_material_light=0x7f050021; public static final int bright_foreground_material_dark=0x7f050022; public static final int bright_foreground_material_light=0x7f050023; public static final int button_material_dark=0x7f050024; public static final int button_material_light=0x7f050025; public static final int cardview_dark_background=0x7f050026; public static final int cardview_light_background=0x7f050027; public static final int cardview_shadow_end_color=0x7f050028; public static final int cardview_shadow_start_color=0x7f050029; public static final int common_google_signin_btn_text_dark=0x7f05002a; public static final int common_google_signin_btn_text_dark_default=0x7f05002b; public static final int common_google_signin_btn_text_dark_disabled=0x7f05002c; public static final int common_google_signin_btn_text_dark_focused=0x7f05002d; public static final int common_google_signin_btn_text_dark_pressed=0x7f05002e; public static final int common_google_signin_btn_text_light=0x7f05002f; public static final int common_google_signin_btn_text_light_default=0x7f050030; public static final int common_google_signin_btn_text_light_disabled=0x7f050031; public static final int common_google_signin_btn_text_light_focused=0x7f050032; public static final int common_google_signin_btn_text_light_pressed=0x7f050033; public static final int common_google_signin_btn_tint=0x7f050034; public static final int design_bottom_navigation_shadow_color=0x7f050035; public static final int design_default_color_primary=0x7f050036; public static final int design_default_color_primary_dark=0x7f050037; public static final int design_error=0x7f050038; public static final int design_fab_shadow_end_color=0x7f050039; public static final int design_fab_shadow_mid_color=0x7f05003a; public static final int design_fab_shadow_start_color=0x7f05003b; public static final int design_fab_stroke_end_inner_color=0x7f05003c; public static final int design_fab_stroke_end_outer_color=0x7f05003d; public static final int design_fab_stroke_top_inner_color=0x7f05003e; public static final int design_fab_stroke_top_outer_color=0x7f05003f; public static final int design_snackbar_background_color=0x7f050040; public static final int design_tint_password_toggle=0x7f050041; public static final int dim_foreground_disabled_material_dark=0x7f050042; public static final int dim_foreground_disabled_material_light=0x7f050043; public static final int dim_foreground_material_dark=0x7f050044; public static final int dim_foreground_material_light=0x7f050045; public static final int error_color_material_dark=0x7f050046; public static final int error_color_material_light=0x7f050047; public static final int foreground_material_dark=0x7f050048; public static final int foreground_material_light=0x7f050049; public static final int highlighted_text_material_dark=0x7f05004a; public static final int highlighted_text_material_light=0x7f05004b; public static final int material_blue_grey_800=0x7f05004c; public static final int material_blue_grey_900=0x7f05004d; public static final int material_blue_grey_950=0x7f05004e; public static final int material_deep_teal_200=0x7f05004f; public static final int material_deep_teal_500=0x7f050050; public static final int material_grey_100=0x7f050051; public static final int material_grey_300=0x7f050052; public static final int material_grey_50=0x7f050053; public static final int material_grey_600=0x7f050054; public static final int material_grey_800=0x7f050055; public static final int material_grey_850=0x7f050056; public static final int material_grey_900=0x7f050057; public static final int mtrl_bottom_nav_colored_item_tint=0x7f050058; public static final int mtrl_bottom_nav_item_tint=0x7f050059; public static final int mtrl_btn_bg_color_disabled=0x7f05005a; public static final int mtrl_btn_bg_color_selector=0x7f05005b; public static final int mtrl_btn_ripple_color=0x7f05005c; public static final int mtrl_btn_stroke_color_selector=0x7f05005d; public static final int mtrl_btn_text_btn_ripple_color=0x7f05005e; public static final int mtrl_btn_text_color_disabled=0x7f05005f; public static final int mtrl_btn_text_color_selector=0x7f050060; public static final int mtrl_btn_transparent_bg_color=0x7f050061; public static final int mtrl_chip_background_color=0x7f050062; public static final int mtrl_chip_close_icon_tint=0x7f050063; public static final int mtrl_chip_ripple_color=0x7f050064; public static final int mtrl_chip_text_color=0x7f050065; public static final int mtrl_fab_ripple_color=0x7f050066; public static final int mtrl_scrim_color=0x7f050067; public static final int mtrl_tabs_colored_ripple_color=0x7f050068; public static final int mtrl_tabs_icon_color_selector=0x7f050069; public static final int mtrl_tabs_icon_color_selector_colored=0x7f05006a; public static final int mtrl_tabs_legacy_text_color_selector=0x7f05006b; public static final int mtrl_tabs_ripple_color=0x7f05006c; public static final int mtrl_text_btn_text_color_selector=0x7f05006d; public static final int mtrl_textinput_default_box_stroke_color=0x7f05006e; public static final int mtrl_textinput_disabled_color=0x7f05006f; public static final int mtrl_textinput_filled_box_default_background_color=0x7f050070; public static final int mtrl_textinput_hovered_box_stroke_color=0x7f050071; public static final int notification_action_color_filter=0x7f050072; public static final int notification_icon_bg_color=0x7f050073; public static final int notification_material_background_media_default_color=0x7f050074; public static final int primaryColor=0x7f050075; public static final int primaryDarkColor=0x7f050076; public static final int primaryLightColor=0x7f050077; public static final int primaryTextColor=0x7f050078; public static final int primary_dark_material_dark=0x7f050079; public static final int primary_dark_material_light=0x7f05007a; public static final int primary_material_dark=0x7f05007b; public static final int primary_material_light=0x7f05007c; public static final int primary_text_default_material_dark=0x7f05007d; public static final int primary_text_default_material_light=0x7f05007e; public static final int primary_text_disabled_material_dark=0x7f05007f; public static final int primary_text_disabled_material_light=0x7f050080; public static final int ripple_material_dark=0x7f050081; public static final int ripple_material_light=0x7f050082; public static final int secondary_text_default_material_dark=0x7f050083; public static final int secondary_text_default_material_light=0x7f050084; public static final int secondary_text_disabled_material_dark=0x7f050085; public static final int secondary_text_disabled_material_light=0x7f050086; public static final int switch_thumb_disabled_material_dark=0x7f050087; public static final int switch_thumb_disabled_material_light=0x7f050088; public static final int switch_thumb_material_dark=0x7f050089; public static final int switch_thumb_material_light=0x7f05008a; public static final int switch_thumb_normal_material_dark=0x7f05008b; public static final int switch_thumb_normal_material_light=0x7f05008c; public static final int tooltip_background_dark=0x7f05008d; public static final int tooltip_background_light=0x7f05008e; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f060000; public static final int abc_action_bar_content_inset_with_nav=0x7f060001; public static final int abc_action_bar_default_height_material=0x7f060002; public static final int abc_action_bar_default_padding_end_material=0x7f060003; public static final int abc_action_bar_default_padding_start_material=0x7f060004; public static final int abc_action_bar_elevation_material=0x7f060005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; public static final int abc_action_bar_stacked_max_height=0x7f060009; public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b; public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c; public static final int abc_action_button_min_height_material=0x7f06000d; public static final int abc_action_button_min_width_material=0x7f06000e; public static final int abc_action_button_min_width_overflow_material=0x7f06000f; public static final int abc_alert_dialog_button_bar_height=0x7f060010; public static final int abc_alert_dialog_button_dimen=0x7f060011; public static final int abc_button_inset_horizontal_material=0x7f060012; public static final int abc_button_inset_vertical_material=0x7f060013; public static final int abc_button_padding_horizontal_material=0x7f060014; public static final int abc_button_padding_vertical_material=0x7f060015; public static final int abc_cascading_menus_min_smallest_width=0x7f060016; public static final int abc_config_prefDialogWidth=0x7f060017; public static final int abc_control_corner_material=0x7f060018; public static final int abc_control_inset_material=0x7f060019; public static final int abc_control_padding_material=0x7f06001a; public static final int abc_dialog_corner_radius_material=0x7f06001b; public static final int abc_dialog_fixed_height_major=0x7f06001c; public static final int abc_dialog_fixed_height_minor=0x7f06001d; public static final int abc_dialog_fixed_width_major=0x7f06001e; public static final int abc_dialog_fixed_width_minor=0x7f06001f; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020; public static final int abc_dialog_list_padding_top_no_title=0x7f060021; public static final int abc_dialog_min_width_major=0x7f060022; public static final int abc_dialog_min_width_minor=0x7f060023; public static final int abc_dialog_padding_material=0x7f060024; public static final int abc_dialog_padding_top_material=0x7f060025; public static final int abc_dialog_title_divider_material=0x7f060026; public static final int abc_disabled_alpha_material_dark=0x7f060027; public static final int abc_disabled_alpha_material_light=0x7f060028; public static final int abc_dropdownitem_icon_width=0x7f060029; public static final int abc_dropdownitem_text_padding_left=0x7f06002a; public static final int abc_dropdownitem_text_padding_right=0x7f06002b; public static final int abc_edit_text_inset_bottom_material=0x7f06002c; public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; public static final int abc_edit_text_inset_top_material=0x7f06002e; public static final int abc_floating_window_z=0x7f06002f; public static final int abc_list_item_height_large_material=0x7f060030; public static final int abc_list_item_height_material=0x7f060031; public static final int abc_list_item_height_small_material=0x7f060032; public static final int abc_list_item_padding_horizontal_material=0x7f060033; public static final int abc_panel_menu_list_width=0x7f060034; public static final int abc_progress_bar_height_material=0x7f060035; public static final int abc_search_view_preferred_height=0x7f060036; public static final int abc_search_view_preferred_width=0x7f060037; public static final int abc_seekbar_track_background_height_material=0x7f060038; public static final int abc_seekbar_track_progress_height_material=0x7f060039; public static final int abc_select_dialog_padding_start_material=0x7f06003a; public static final int abc_switch_padding=0x7f06003b; public static final int abc_text_size_body_1_material=0x7f06003c; public static final int abc_text_size_body_2_material=0x7f06003d; public static final int abc_text_size_button_material=0x7f06003e; public static final int abc_text_size_caption_material=0x7f06003f; public static final int abc_text_size_display_1_material=0x7f060040; public static final int abc_text_size_display_2_material=0x7f060041; public static final int abc_text_size_display_3_material=0x7f060042; public static final int abc_text_size_display_4_material=0x7f060043; public static final int abc_text_size_headline_material=0x7f060044; public static final int abc_text_size_large_material=0x7f060045; public static final int abc_text_size_medium_material=0x7f060046; public static final int abc_text_size_menu_header_material=0x7f060047; public static final int abc_text_size_menu_material=0x7f060048; public static final int abc_text_size_small_material=0x7f060049; public static final int abc_text_size_subhead_material=0x7f06004a; public static final int abc_text_size_subtitle_material_toolbar=0x7f06004b; public static final int abc_text_size_title_material=0x7f06004c; public static final int abc_text_size_title_material_toolbar=0x7f06004d; public static final int cardview_compat_inset_shadow=0x7f06004e; public static final int cardview_default_elevation=0x7f06004f; public static final int cardview_default_radius=0x7f060050; public static final int compat_button_inset_horizontal_material=0x7f060051; public static final int compat_button_inset_vertical_material=0x7f060052; public static final int compat_button_padding_horizontal_material=0x7f060053; public static final int compat_button_padding_vertical_material=0x7f060054; public static final int compat_control_corner_material=0x7f060055; public static final int compat_notification_large_icon_max_height=0x7f060056; public static final int compat_notification_large_icon_max_width=0x7f060057; public static final int design_appbar_elevation=0x7f060058; public static final int design_bottom_navigation_active_item_max_width=0x7f060059; public static final int design_bottom_navigation_active_item_min_width=0x7f06005a; public static final int design_bottom_navigation_active_text_size=0x7f06005b; public static final int design_bottom_navigation_elevation=0x7f06005c; public static final int design_bottom_navigation_height=0x7f06005d; public static final int design_bottom_navigation_icon_size=0x7f06005e; public static final int design_bottom_navigation_item_max_width=0x7f06005f; public static final int design_bottom_navigation_item_min_width=0x7f060060; public static final int design_bottom_navigation_margin=0x7f060061; public static final int design_bottom_navigation_shadow_height=0x7f060062; public static final int design_bottom_navigation_text_size=0x7f060063; public static final int design_bottom_sheet_modal_elevation=0x7f060064; public static final int design_bottom_sheet_peek_height_min=0x7f060065; public static final int design_fab_border_width=0x7f060066; public static final int design_fab_elevation=0x7f060067; public static final int design_fab_image_size=0x7f060068; public static final int design_fab_size_mini=0x7f060069; public static final int design_fab_size_normal=0x7f06006a; public static final int design_fab_translation_z_hovered_focused=0x7f06006b; public static final int design_fab_translation_z_pressed=0x7f06006c; public static final int design_navigation_elevation=0x7f06006d; public static final int design_navigation_icon_padding=0x7f06006e; public static final int design_navigation_icon_size=0x7f06006f; public static final int design_navigation_item_horizontal_padding=0x7f060070; public static final int design_navigation_item_icon_padding=0x7f060071; public static final int design_navigation_max_width=0x7f060072; public static final int design_navigation_padding_bottom=0x7f060073; public static final int design_navigation_separator_vertical_padding=0x7f060074; public static final int design_snackbar_action_inline_max_width=0x7f060075; public static final int design_snackbar_background_corner_radius=0x7f060076; public static final int design_snackbar_elevation=0x7f060077; public static final int design_snackbar_extra_spacing_horizontal=0x7f060078; public static final int design_snackbar_max_width=0x7f060079; public static final int design_snackbar_min_width=0x7f06007a; public static final int design_snackbar_padding_horizontal=0x7f06007b; public static final int design_snackbar_padding_vertical=0x7f06007c; public static final int design_snackbar_padding_vertical_2lines=0x7f06007d; public static final int design_snackbar_text_size=0x7f06007e; public static final int design_tab_max_width=0x7f06007f; public static final int design_tab_scrollable_min_width=0x7f060080; public static final int design_tab_text_size=0x7f060081; public static final int design_tab_text_size_2line=0x7f060082; public static final int design_textinput_caption_translate_y=0x7f060083; public static final int disabled_alpha_material_dark=0x7f060084; public static final int disabled_alpha_material_light=0x7f060085; public static final int fastscroll_default_thickness=0x7f060086; public static final int fastscroll_margin=0x7f060087; public static final int fastscroll_minimum_range=0x7f060088; public static final int highlight_alpha_material_colored=0x7f060089; public static final int highlight_alpha_material_dark=0x7f06008a; public static final int highlight_alpha_material_light=0x7f06008b; public static final int hint_alpha_material_dark=0x7f06008c; public static final int hint_alpha_material_light=0x7f06008d; public static final int hint_pressed_alpha_material_dark=0x7f06008e; public static final int hint_pressed_alpha_material_light=0x7f06008f; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f060090; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f060091; public static final int item_touch_helper_swipe_escape_velocity=0x7f060092; public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060093; public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060094; public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060095; public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060096; public static final int mtrl_bottomappbar_height=0x7f060097; public static final int mtrl_btn_corner_radius=0x7f060098; public static final int mtrl_btn_dialog_btn_min_width=0x7f060099; public static final int mtrl_btn_disabled_elevation=0x7f06009a; public static final int mtrl_btn_disabled_z=0x7f06009b; public static final int mtrl_btn_elevation=0x7f06009c; public static final int mtrl_btn_focused_z=0x7f06009d; public static final int mtrl_btn_hovered_z=0x7f06009e; public static final int mtrl_btn_icon_btn_padding_left=0x7f06009f; public static final int mtrl_btn_icon_padding=0x7f0600a0; public static final int mtrl_btn_inset=0x7f0600a1; public static final int mtrl_btn_letter_spacing=0x7f0600a2; public static final int mtrl_btn_padding_bottom=0x7f0600a3; public static final int mtrl_btn_padding_left=0x7f0600a4; public static final int mtrl_btn_padding_right=0x7f0600a5; public static final int mtrl_btn_padding_top=0x7f0600a6; public static final int mtrl_btn_pressed_z=0x7f0600a7; public static final int mtrl_btn_stroke_size=0x7f0600a8; public static final int mtrl_btn_text_btn_icon_padding=0x7f0600a9; public static final int mtrl_btn_text_btn_padding_left=0x7f0600aa; public static final int mtrl_btn_text_btn_padding_right=0x7f0600ab; public static final int mtrl_btn_text_size=0x7f0600ac; public static final int mtrl_btn_z=0x7f0600ad; public static final int mtrl_card_elevation=0x7f0600ae; public static final int mtrl_card_spacing=0x7f0600af; public static final int mtrl_chip_pressed_translation_z=0x7f0600b0; public static final int mtrl_chip_text_size=0x7f0600b1; public static final int mtrl_fab_elevation=0x7f0600b2; public static final int mtrl_fab_translation_z_hovered_focused=0x7f0600b3; public static final int mtrl_fab_translation_z_pressed=0x7f0600b4; public static final int mtrl_navigation_elevation=0x7f0600b5; public static final int mtrl_navigation_item_horizontal_padding=0x7f0600b6; public static final int mtrl_navigation_item_icon_padding=0x7f0600b7; public static final int mtrl_snackbar_background_corner_radius=0x7f0600b8; public static final int mtrl_snackbar_margin=0x7f0600b9; public static final int mtrl_textinput_box_bottom_offset=0x7f0600ba; public static final int mtrl_textinput_box_corner_radius_medium=0x7f0600bb; public static final int mtrl_textinput_box_corner_radius_small=0x7f0600bc; public static final int mtrl_textinput_box_label_cutout_padding=0x7f0600bd; public static final int mtrl_textinput_box_padding_end=0x7f0600be; public static final int mtrl_textinput_box_stroke_width_default=0x7f0600bf; public static final int mtrl_textinput_box_stroke_width_focused=0x7f0600c0; public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0600c1; public static final int mtrl_toolbar_default_height=0x7f0600c2; public static final int notification_action_icon_size=0x7f0600c3; public static final int notification_action_text_size=0x7f0600c4; public static final int notification_big_circle_margin=0x7f0600c5; public static final int notification_content_margin_start=0x7f0600c6; public static final int notification_large_icon_height=0x7f0600c7; public static final int notification_large_icon_width=0x7f0600c8; public static final int notification_main_column_padding_top=0x7f0600c9; public static final int notification_media_narrow_margin=0x7f0600ca; public static final int notification_right_icon_size=0x7f0600cb; public static final int notification_right_side_padding_top=0x7f0600cc; public static final int notification_small_icon_background_padding=0x7f0600cd; public static final int notification_small_icon_size_as_large=0x7f0600ce; public static final int notification_subtext_size=0x7f0600cf; public static final int notification_top_pad=0x7f0600d0; public static final int notification_top_pad_large_text=0x7f0600d1; public static final int subtitle_corner_radius=0x7f0600d2; public static final int subtitle_outline_width=0x7f0600d3; public static final int subtitle_shadow_offset=0x7f0600d4; public static final int subtitle_shadow_radius=0x7f0600d5; public static final int tooltip_corner_radius=0x7f0600d6; public static final int tooltip_horizontal_padding=0x7f0600d7; public static final int tooltip_margin=0x7f0600d8; public static final int tooltip_precise_anchor_extra_offset=0x7f0600d9; public static final int tooltip_precise_anchor_threshold=0x7f0600da; public static final int tooltip_vertical_padding=0x7f0600db; public static final int tooltip_y_offset_non_touch=0x7f0600dc; public static final int tooltip_y_offset_touch=0x7f0600dd; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f070007; public static final int abc_action_bar_item_background_material=0x7f070008; public static final int abc_btn_borderless_material=0x7f070009; public static final int abc_btn_check_material=0x7f07000a; public static final int abc_btn_check_material_anim=0x7f07000b; public static final int abc_btn_check_to_on_mtrl_000=0x7f07000c; public static final int abc_btn_check_to_on_mtrl_015=0x7f07000d; public static final int abc_btn_colored_material=0x7f07000e; public static final int abc_btn_default_mtrl_shape=0x7f07000f; public static final int abc_btn_radio_material=0x7f070010; public static final int abc_btn_radio_material_anim=0x7f070011; public static final int abc_btn_radio_to_on_mtrl_000=0x7f070012; public static final int abc_btn_radio_to_on_mtrl_015=0x7f070013; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070014; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070015; public static final int abc_cab_background_internal_bg=0x7f070016; public static final int abc_cab_background_top_material=0x7f070017; public static final int abc_cab_background_top_mtrl_alpha=0x7f070018; public static final int abc_control_background_material=0x7f070019; public static final int abc_dialog_material_background=0x7f07001a; public static final int abc_edit_text_material=0x7f07001b; public static final int abc_ic_ab_back_material=0x7f07001c; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001d; public static final int abc_ic_clear_material=0x7f07001e; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001f; public static final int abc_ic_go_search_api_material=0x7f070020; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f070021; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f070022; public static final int abc_ic_menu_overflow_material=0x7f070023; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070024; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070025; public static final int abc_ic_menu_share_mtrl_alpha=0x7f070026; public static final int abc_ic_search_api_material=0x7f070027; public static final int abc_ic_star_black_16dp=0x7f070028; public static final int abc_ic_star_black_36dp=0x7f070029; public static final int abc_ic_star_black_48dp=0x7f07002a; public static final int abc_ic_star_half_black_16dp=0x7f07002b; public static final int abc_ic_star_half_black_36dp=0x7f07002c; public static final int abc_ic_star_half_black_48dp=0x7f07002d; public static final int abc_ic_voice_search_api_material=0x7f07002e; public static final int abc_item_background_holo_dark=0x7f07002f; public static final int abc_item_background_holo_light=0x7f070030; public static final int abc_list_divider_material=0x7f070031; public static final int abc_list_divider_mtrl_alpha=0x7f070032; public static final int abc_list_focused_holo=0x7f070033; public static final int abc_list_longpressed_holo=0x7f070034; public static final int abc_list_pressed_holo_dark=0x7f070035; public static final int abc_list_pressed_holo_light=0x7f070036; public static final int abc_list_selector_background_transition_holo_dark=0x7f070037; public static final int abc_list_selector_background_transition_holo_light=0x7f070038; public static final int abc_list_selector_disabled_holo_dark=0x7f070039; public static final int abc_list_selector_disabled_holo_light=0x7f07003a; public static final int abc_list_selector_holo_dark=0x7f07003b; public static final int abc_list_selector_holo_light=0x7f07003c; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003d; public static final int abc_popup_background_mtrl_mult=0x7f07003e; public static final int abc_ratingbar_indicator_material=0x7f07003f; public static final int abc_ratingbar_material=0x7f070040; public static final int abc_ratingbar_small_material=0x7f070041; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f070042; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070043; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070044; public static final int abc_scrubber_primary_mtrl_alpha=0x7f070045; public static final int abc_scrubber_track_mtrl_alpha=0x7f070046; public static final int abc_seekbar_thumb_material=0x7f070047; public static final int abc_seekbar_tick_mark_material=0x7f070048; public static final int abc_seekbar_track_material=0x7f070049; public static final int abc_spinner_mtrl_am_alpha=0x7f07004a; public static final int abc_spinner_textfield_background_material=0x7f07004b; public static final int abc_switch_thumb_material=0x7f07004c; public static final int abc_switch_track_mtrl_alpha=0x7f07004d; public static final int abc_tab_indicator_material=0x7f07004e; public static final int abc_tab_indicator_mtrl_alpha=0x7f07004f; public static final int abc_text_cursor_material=0x7f070050; public static final int abc_text_select_handle_left_mtrl_dark=0x7f070051; public static final int abc_text_select_handle_left_mtrl_light=0x7f070052; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070053; public static final int abc_text_select_handle_middle_mtrl_light=0x7f070054; public static final int abc_text_select_handle_right_mtrl_dark=0x7f070055; public static final int abc_text_select_handle_right_mtrl_light=0x7f070056; public static final int abc_textfield_activated_mtrl_alpha=0x7f070057; public static final int abc_textfield_default_mtrl_alpha=0x7f070058; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070059; public static final int abc_textfield_search_default_mtrl_alpha=0x7f07005a; public static final int abc_textfield_search_material=0x7f07005b; public static final int abc_vector_test=0x7f07005c; public static final int android_pict=0x7f07005d; public static final int avd_hide_password=0x7f07005e; public static final int avd_show_password=0x7f07005f; public static final int bg_receiver=0x7f070060; public static final int bg_sender=0x7f070061; public static final int btn_checkbox_checked_mtrl=0x7f070062; public static final int btn_checkbox_checked_to_unchecked_mtrl_animation=0x7f070063; public static final int btn_checkbox_unchecked_mtrl=0x7f070064; public static final int btn_checkbox_unchecked_to_checked_mtrl_animation=0x7f070065; public static final int btn_radio_off_mtrl=0x7f070066; public static final int btn_radio_off_to_on_mtrl_animation=0x7f070067; public static final int btn_radio_on_mtrl=0x7f070068; public static final int btn_radio_on_to_off_mtrl_animation=0x7f070069; public static final int common_full_open_on_phone=0x7f07006a; public static final int common_google_signin_btn_icon_dark=0x7f07006b; public static final int common_google_signin_btn_icon_dark_focused=0x7f07006c; public static final int common_google_signin_btn_icon_dark_normal=0x7f07006d; public static final int common_google_signin_btn_icon_dark_normal_background=0x7f07006e; public static final int common_google_signin_btn_icon_disabled=0x7f07006f; public static final int common_google_signin_btn_icon_light=0x7f070070; public static final int common_google_signin_btn_icon_light_focused=0x7f070071; public static final int common_google_signin_btn_icon_light_normal=0x7f070072; public static final int common_google_signin_btn_icon_light_normal_background=0x7f070073; public static final int common_google_signin_btn_text_dark=0x7f070074; public static final int common_google_signin_btn_text_dark_focused=0x7f070075; public static final int common_google_signin_btn_text_dark_normal=0x7f070076; public static final int common_google_signin_btn_text_dark_normal_background=0x7f070077; public static final int common_google_signin_btn_text_disabled=0x7f070078; public static final int common_google_signin_btn_text_light=0x7f070079; public static final int common_google_signin_btn_text_light_focused=0x7f07007a; public static final int common_google_signin_btn_text_light_normal=0x7f07007b; public static final int common_google_signin_btn_text_light_normal_background=0x7f07007c; public static final int design_bottom_navigation_item_background=0x7f07007d; public static final int design_fab_background=0x7f07007e; public static final int design_ic_visibility=0x7f07007f; public static final int design_ic_visibility_off=0x7f070080; public static final int design_password_eye=0x7f070081; public static final int design_snackbar_background=0x7f070082; public static final int edittextstyle=0x7f070083; public static final int googleg_disabled_color_18=0x7f070084; public static final int googleg_standard_color_18=0x7f070085; public static final int ic_add=0x7f070086; public static final int ic_add_photo=0x7f070087; public static final int ic_assignment_black_24dp=0x7f070088; public static final int ic_chat_black=0x7f070089; public static final int ic_chat_black_24dp=0x7f07008a; public static final int ic_comment=0x7f07008b; public static final int ic_default_img=0x7f07008c; public static final int ic_default_img_white=0x7f07008d; public static final int ic_edit_white=0x7f07008e; public static final int ic_event_black_24dp=0x7f07008f; public static final int ic_face_default=0x7f070090; public static final int ic_home_black_24dp=0x7f070091; public static final int ic_launcher_background=0x7f070092; public static final int ic_launcher_foreground=0x7f070093; public static final int ic_more=0x7f070094; public static final int ic_mtrl_chip_checked_black=0x7f070095; public static final int ic_mtrl_chip_checked_circle=0x7f070096; public static final int ic_mtrl_chip_close_circle=0x7f070097; public static final int ic_person_black_24dp=0x7f070098; public static final int ic_send=0x7f070099; public static final int ic_upvote=0x7f07009a; public static final int ic_upvote_filled=0x7f07009b; public static final int mtrl_snackbar_background=0x7f07009c; public static final int mtrl_tabs_default_indicator=0x7f07009d; public static final int navigation_empty_icon=0x7f07009e; public static final int notification_action_background=0x7f07009f; public static final int notification_bg=0x7f0700a0; public static final int notification_bg_low=0x7f0700a1; public static final int notification_bg_low_normal=0x7f0700a2; public static final int notification_bg_low_pressed=0x7f0700a3; public static final int notification_bg_normal=0x7f0700a4; public static final int notification_bg_normal_pressed=0x7f0700a5; public static final int notification_icon_background=0x7f0700a6; public static final int notification_template_icon_bg=0x7f0700a7; public static final int notification_template_icon_low_bg=0x7f0700a8; public static final int notification_tile_bg=0x7f0700a9; public static final int notify_panel_notification_icon_bg=0x7f0700aa; public static final int tooltip_frame_dark=0x7f0700ab; public static final int tooltip_frame_light=0x7f0700ac; } public static final class id { public static final int ALT=0x7f080000; public static final int CTRL=0x7f080001; public static final int FUNCTION=0x7f080002; public static final int META=0x7f080003; public static final int SHIFT=0x7f080004; public static final int SYM=0x7f080005; public static final int accessibility_action_clickable_span=0x7f080006; public static final int accessibility_custom_action_0=0x7f080007; public static final int accessibility_custom_action_1=0x7f080008; public static final int accessibility_custom_action_10=0x7f080009; public static final int accessibility_custom_action_11=0x7f08000a; public static final int accessibility_custom_action_12=0x7f08000b; public static final int accessibility_custom_action_13=0x7f08000c; public static final int accessibility_custom_action_14=0x7f08000d; public static final int accessibility_custom_action_15=0x7f08000e; public static final int accessibility_custom_action_16=0x7f08000f; public static final int accessibility_custom_action_17=0x7f080010; public static final int accessibility_custom_action_18=0x7f080011; public static final int accessibility_custom_action_19=0x7f080012; public static final int accessibility_custom_action_2=0x7f080013; public static final int accessibility_custom_action_20=0x7f080014; public static final int accessibility_custom_action_21=0x7f080015; public static final int accessibility_custom_action_22=0x7f080016; public static final int accessibility_custom_action_23=0x7f080017; public static final int accessibility_custom_action_24=0x7f080018; public static final int accessibility_custom_action_25=0x7f080019; public static final int accessibility_custom_action_26=0x7f08001a; public static final int accessibility_custom_action_27=0x7f08001b; public static final int accessibility_custom_action_28=0x7f08001c; public static final int accessibility_custom_action_29=0x7f08001d; public static final int accessibility_custom_action_3=0x7f08001e; public static final int accessibility_custom_action_30=0x7f08001f; public static final int accessibility_custom_action_31=0x7f080020; public static final int accessibility_custom_action_4=0x7f080021; public static final int accessibility_custom_action_5=0x7f080022; public static final int accessibility_custom_action_6=0x7f080023; public static final int accessibility_custom_action_7=0x7f080024; public static final int accessibility_custom_action_8=0x7f080025; public static final int accessibility_custom_action_9=0x7f080026; public static final int action0=0x7f080027; public static final int action_add_post=0x7f080028; public static final int action_bar=0x7f080029; public static final int action_bar_activity_content=0x7f08002a; public static final int action_bar_container=0x7f08002b; public static final int action_bar_root=0x7f08002c; public static final int action_bar_spinner=0x7f08002d; public static final int action_bar_subtitle=0x7f08002e; public static final int action_bar_title=0x7f08002f; public static final int action_container=0x7f080030; public static final int action_context_bar=0x7f080031; public static final int action_divider=0x7f080032; public static final int action_image=0x7f080033; public static final int action_logout=0x7f080034; public static final int action_menu_divider=0x7f080035; public static final int action_menu_presenter=0x7f080036; public static final int action_mode_bar=0x7f080037; public static final int action_mode_bar_stub=0x7f080038; public static final int action_mode_close_button=0x7f080039; public static final int action_search=0x7f08003a; public static final int action_text=0x7f08003b; public static final int actions=0x7f08003c; public static final int activity_chooser_view_content=0x7f08003d; public static final int add=0x7f08003e; public static final int adjust_height=0x7f08003f; public static final int adjust_width=0x7f080040; public static final int alertTitle=0x7f080041; public static final int all=0x7f080042; public static final int always=0x7f080043; public static final int async=0x7f080044; public static final int auto=0x7f080045; public static final int avatarIv=0x7f080046; public static final int barrier=0x7f080047; public static final int beginning=0x7f080048; public static final int blocking=0x7f080049; public static final int bottom=0x7f08004a; public static final int botton_navigation=0x7f08004b; public static final int buttonPanel=0x7f08004c; public static final int cancel_action=0x7f08004d; public static final int center=0x7f08004e; public static final int center_horizontal=0x7f08004f; public static final int center_vertical=0x7f080050; public static final int chains=0x7f080051; public static final int chatLayout=0x7f080052; public static final int chat_recyclerView=0x7f080053; public static final int checkbox=0x7f080054; public static final int checked=0x7f080055; public static final int chronometer=0x7f080056; public static final int clip_horizontal=0x7f080057; public static final int clip_vertical=0x7f080058; public static final int collapseActionView=0x7f080059; public static final int commentBtn=0x7f08005a; public static final int container=0x7f08005b; public static final int content=0x7f08005c; public static final int contentPanel=0x7f08005d; public static final int coordinator=0x7f08005e; public static final int coverIv=0x7f08005f; public static final int custom=0x7f080060; public static final int customPanel=0x7f080061; public static final int dark=0x7f080062; public static final int decor_content_parent=0x7f080063; public static final int default_activity_button=0x7f080064; public static final int design_bottom_sheet=0x7f080065; public static final int design_menu_item_action_area=0x7f080066; public static final int design_menu_item_action_area_stub=0x7f080067; public static final int design_menu_item_text=0x7f080068; public static final int design_navigation_view=0x7f080069; public static final int dialog_button=0x7f08006a; public static final int dimensions=0x7f08006b; public static final int direct=0x7f08006c; public static final int disableHome=0x7f08006d; public static final int edit_query=0x7f08006e; public static final int emailEt=0x7f08006f; public static final int emailTIL=0x7f080070; public static final int emailTv=0x7f080071; public static final int end=0x7f080072; public static final int end_padder=0x7f080073; public static final int enterAlways=0x7f080074; public static final int enterAlwaysCollapsed=0x7f080075; public static final int exitUntilCollapsed=0x7f080076; public static final int expand_activities_button=0x7f080077; public static final int expanded_menu=0x7f080078; public static final int fab=0x7f080079; public static final int fill=0x7f08007a; public static final int fill_horizontal=0x7f08007b; public static final int fill_vertical=0x7f08007c; public static final int filled=0x7f08007d; public static final int fixed=0x7f08007e; public static final int forever=0x7f08007f; public static final int forgot_password=0x7f080080; public static final int fragment_container=0x7f080081; public static final int ghost_view=0x7f080082; public static final int gone=0x7f080083; public static final int googleLoginBtn=0x7f080084; public static final int group_divider=0x7f080085; public static final int groups=0x7f080086; public static final int have_account=0x7f080087; public static final int home=0x7f080088; public static final int homeAsUp=0x7f080089; public static final int icon=0x7f08008a; public static final int icon_group=0x7f08008b; public static final int icon_only=0x7f08008c; public static final int ifRoom=0x7f08008d; public static final int image=0x7f08008e; public static final int info=0x7f08008f; public static final int invisible=0x7f080090; public static final int isSeenTv=0x7f080091; public static final int italic=0x7f080092; public static final int item_touch_helper_previous_elevation=0x7f080093; public static final int labeled=0x7f080094; public static final int largeLabel=0x7f080095; public static final int left=0x7f080096; public static final int light=0x7f080097; public static final int line1=0x7f080098; public static final int line3=0x7f080099; public static final int linearLayout=0x7f08009a; public static final int listMode=0x7f08009b; public static final int list_item=0x7f08009c; public static final int loginBtn=0x7f08009d; public static final int masked=0x7f08009e; public static final int media_actions=0x7f08009f; public static final int message=0x7f0800a0; public static final int messageEt=0x7f0800a1; public static final int messageLayout=0x7f0800a2; public static final int messageTv=0x7f0800a3; public static final int middle=0x7f0800a4; public static final int mini=0x7f0800a5; public static final int moreBtn=0x7f0800a6; public static final int mtrl_child_content_container=0x7f0800a7; public static final int mtrl_internal_children_alpha_tag=0x7f0800a8; public static final int multiply=0x7f0800a9; public static final int nameTv=0x7f0800aa; public static final int nav_home=0x7f0800ab; public static final int nav_messages=0x7f0800ac; public static final int nav_news=0x7f0800ad; public static final int nav_profile=0x7f0800ae; public static final int nav_schedules=0x7f0800af; public static final int navigation_header_container=0x7f0800b0; public static final int never=0x7f0800b1; public static final int none=0x7f0800b2; public static final int normal=0x7f0800b3; public static final int not_have_account=0x7f0800b4; public static final int notification_background=0x7f0800b5; public static final int notification_main_column=0x7f0800b6; public static final int notification_main_column_container=0x7f0800b7; public static final int off=0x7f0800b8; public static final int on=0x7f0800b9; public static final int outline=0x7f0800ba; public static final int pDescEt=0x7f0800bb; public static final int pDescTv=0x7f0800bc; public static final int pImageIv=0x7f0800bd; public static final int pTimeTv=0x7f0800be; public static final int pTitleEt=0x7f0800bf; public static final int pTitleTv=0x7f0800c0; public static final int pUploadBtn=0x7f0800c1; public static final int pUpvoteTv=0x7f0800c2; public static final int packed=0x7f0800c3; public static final int parallax=0x7f0800c4; public static final int parent=0x7f0800c5; public static final int parentPanel=0x7f0800c6; public static final int parent_matrix=0x7f0800c7; public static final int passwordEt=0x7f0800c8; public static final int passwordTIL=0x7f0800c9; public static final int percent=0x7f0800ca; public static final int phoneTv=0x7f0800cb; public static final int pin=0x7f0800cc; public static final int postRecyclerView=0x7f0800cd; public static final int profileIv=0x7f0800ce; public static final int profileLayout=0x7f0800cf; public static final int progress_circular=0x7f0800d0; public static final int progress_horizontal=0x7f0800d1; public static final int radio=0x7f0800d2; public static final int recyclerview_posts=0x7f0800d3; public static final int registerBtn=0x7f0800d4; public static final int right=0x7f0800d5; public static final int right_icon=0x7f0800d6; public static final int right_side=0x7f0800d7; public static final int save_image_matrix=0x7f0800d8; public static final int save_non_transition_alpha=0x7f0800d9; public static final int save_scale_type=0x7f0800da; public static final int screen=0x7f0800db; public static final int scroll=0x7f0800dc; public static final int scrollIndicatorDown=0x7f0800dd; public static final int scrollIndicatorUp=0x7f0800de; public static final int scrollView=0x7f0800df; public static final int scrollable=0x7f0800e0; public static final int search_badge=0x7f0800e1; public static final int search_bar=0x7f0800e2; public static final int search_button=0x7f0800e3; public static final int search_close_btn=0x7f0800e4; public static final int search_edit_frame=0x7f0800e5; public static final int search_go_btn=0x7f0800e6; public static final int search_mag_icon=0x7f0800e7; public static final int search_plate=0x7f0800e8; public static final int search_src_text=0x7f0800e9; public static final int search_voice_btn=0x7f0800ea; public static final int select_dialog_listview=0x7f0800eb; public static final int selected=0x7f0800ec; public static final int sendBtn=0x7f0800ed; public static final int shortcut=0x7f0800ee; public static final int showCustom=0x7f0800ef; public static final int showHome=0x7f0800f0; public static final int showTitle=0x7f0800f1; public static final int smallLabel=0x7f0800f2; public static final int snackbar_action=0x7f0800f3; public static final int snackbar_text=0x7f0800f4; public static final int snap=0x7f0800f5; public static final int snapMargins=0x7f0800f6; public static final int spacer=0x7f0800f7; public static final int split_action_bar=0x7f0800f8; public static final int spread=0x7f0800f9; public static final int spread_inside=0x7f0800fa; public static final int src_atop=0x7f0800fb; public static final int src_in=0x7f0800fc; public static final int src_over=0x7f0800fd; public static final int standard=0x7f0800fe; public static final int start=0x7f0800ff; public static final int status_bar_latest_event_content=0x7f080100; public static final int stretch=0x7f080101; public static final int submenuarrow=0x7f080102; public static final int submit_area=0x7f080103; public static final int tabMode=0x7f080104; public static final int tag_accessibility_actions=0x7f080105; public static final int tag_accessibility_clickable_spans=0x7f080106; public static final int tag_accessibility_heading=0x7f080107; public static final int tag_accessibility_pane_title=0x7f080108; public static final int tag_screen_reader_focusable=0x7f080109; public static final int tag_transition_group=0x7f08010a; public static final int tag_unhandled_key_event_manager=0x7f08010b; public static final int tag_unhandled_key_listeners=0x7f08010c; public static final int text=0x7f08010d; public static final int text2=0x7f08010e; public static final int textSpacerNoButtons=0x7f08010f; public static final int textSpacerNoTitle=0x7f080110; public static final int textStart=0x7f080111; public static final int text_input_password_toggle=0x7f080112; public static final int textinput_counter=0x7f080113; public static final int textinput_error=0x7f080114; public static final int textinput_helper_text=0x7f080115; public static final int time=0x7f080116; public static final int timeTv=0x7f080117; public static final int title=0x7f080118; public static final int titleDividerNoCustom=0x7f080119; public static final int title_template=0x7f08011a; public static final int toolbar=0x7f08011b; public static final int top=0x7f08011c; public static final int topPanel=0x7f08011d; public static final int touch_outside=0x7f08011e; public static final int transition_current_scene=0x7f08011f; public static final int transition_layout_save=0x7f080120; public static final int transition_position=0x7f080121; public static final int transition_scene_layoutid_cache=0x7f080122; public static final int transition_transform=0x7f080123; public static final int uNameTv=0x7f080124; public static final int uPictureIv=0x7f080125; public static final int unchecked=0x7f080126; public static final int uniform=0x7f080127; public static final int unlabeled=0x7f080128; public static final int up=0x7f080129; public static final int upvoteBtn=0x7f08012a; public static final int useLogo=0x7f08012b; public static final int userStatusTv=0x7f08012c; public static final int user_recyclerView=0x7f08012d; public static final int view_offset_helper=0x7f08012e; public static final int visible=0x7f08012f; public static final int wide=0x7f080130; public static final int withText=0x7f080131; public static final int wrap=0x7f080132; public static final int wrap_content=0x7f080133; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f090000; public static final int abc_config_activityShortDur=0x7f090001; public static final int app_bar_elevation_anim_duration=0x7f090002; public static final int bottom_sheet_slide_duration=0x7f090003; public static final int cancel_button_image_alpha=0x7f090004; public static final int config_tooltipAnimTime=0x7f090005; public static final int design_snackbar_text_max_lines=0x7f090006; public static final int design_tab_indicator_anim_duration_ms=0x7f090007; public static final int google_play_services_version=0x7f090008; public static final int hide_password_duration=0x7f090009; public static final int mtrl_btn_anim_delay_ms=0x7f09000a; public static final int mtrl_btn_anim_duration_ms=0x7f09000b; public static final int mtrl_chip_anim_duration=0x7f09000c; public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09000d; public static final int show_password_duration=0x7f09000e; public static final int status_bar_notification_info_maxnum=0x7f09000f; } public static final class interpolator { public static final int btn_checkbox_checked_mtrl_animation_interpolator_0=0x7f0a0000; public static final int btn_checkbox_checked_mtrl_animation_interpolator_1=0x7f0a0001; public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_0=0x7f0a0002; public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_1=0x7f0a0003; public static final int btn_radio_to_off_mtrl_animation_interpolator_0=0x7f0a0004; public static final int btn_radio_to_on_mtrl_animation_interpolator_0=0x7f0a0005; public static final int fast_out_slow_in=0x7f0a0006; public static final int mtrl_fast_out_linear_in=0x7f0a0007; public static final int mtrl_fast_out_slow_in=0x7f0a0008; public static final int mtrl_linear=0x7f0a0009; public static final int mtrl_linear_out_slow_in=0x7f0a000a; } public static final class layout { public static final int abc_action_bar_title_item=0x7f0b0000; public static final int abc_action_bar_up_container=0x7f0b0001; public static final int abc_action_menu_item_layout=0x7f0b0002; public static final int abc_action_menu_layout=0x7f0b0003; public static final int abc_action_mode_bar=0x7f0b0004; public static final int abc_action_mode_close_item_material=0x7f0b0005; public static final int abc_activity_chooser_view=0x7f0b0006; public static final int abc_activity_chooser_view_list_item=0x7f0b0007; public static final int abc_alert_dialog_button_bar_material=0x7f0b0008; public static final int abc_alert_dialog_material=0x7f0b0009; public static final int abc_alert_dialog_title_material=0x7f0b000a; public static final int abc_cascading_menu_item_layout=0x7f0b000b; public static final int abc_dialog_title_material=0x7f0b000c; public static final int abc_expanded_menu_layout=0x7f0b000d; public static final int abc_list_menu_item_checkbox=0x7f0b000e; public static final int abc_list_menu_item_icon=0x7f0b000f; public static final int abc_list_menu_item_layout=0x7f0b0010; public static final int abc_list_menu_item_radio=0x7f0b0011; public static final int abc_popup_menu_header_item_layout=0x7f0b0012; public static final int abc_popup_menu_item_layout=0x7f0b0013; public static final int abc_screen_content_include=0x7f0b0014; public static final int abc_screen_simple=0x7f0b0015; public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016; public static final int abc_screen_toolbar=0x7f0b0017; public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018; public static final int abc_search_view=0x7f0b0019; public static final int abc_select_dialog_material=0x7f0b001a; public static final int abc_tooltip=0x7f0b001b; public static final int activity_add_post=0x7f0b001c; public static final int activity_chat=0x7f0b001d; public static final int activity_dashboard=0x7f0b001e; public static final int activity_main=0x7f0b001f; public static final int activity_register=0x7f0b0020; public static final int activity_test=0x7f0b0021; public static final int activity_user_profile=0x7f0b0022; public static final int custom_dialog=0x7f0b0023; public static final int design_bottom_navigation_item=0x7f0b0024; public static final int design_bottom_sheet_dialog=0x7f0b0025; public static final int design_layout_snackbar=0x7f0b0026; public static final int design_layout_snackbar_include=0x7f0b0027; public static final int design_layout_tab_icon=0x7f0b0028; public static final int design_layout_tab_text=0x7f0b0029; public static final int design_menu_item_action_area=0x7f0b002a; public static final int design_navigation_item=0x7f0b002b; public static final int design_navigation_item_header=0x7f0b002c; public static final int design_navigation_item_separator=0x7f0b002d; public static final int design_navigation_item_subheader=0x7f0b002e; public static final int design_navigation_menu=0x7f0b002f; public static final int design_navigation_menu_item=0x7f0b0030; public static final int design_text_input_password_icon=0x7f0b0031; public static final int fragment_home=0x7f0b0032; public static final int fragment_messages=0x7f0b0033; public static final int fragment_news=0x7f0b0034; public static final int fragment_profile=0x7f0b0035; public static final int fragment_schedules=0x7f0b0036; public static final int mtrl_layout_snackbar=0x7f0b0037; public static final int mtrl_layout_snackbar_include=0x7f0b0038; public static final int notification_action=0x7f0b0039; public static final int notification_action_tombstone=0x7f0b003a; public static final int notification_media_action=0x7f0b003b; public static final int notification_media_cancel_action=0x7f0b003c; public static final int notification_template_big_media=0x7f0b003d; public static final int notification_template_big_media_custom=0x7f0b003e; public static final int notification_template_big_media_narrow=0x7f0b003f; public static final int notification_template_big_media_narrow_custom=0x7f0b0040; public static final int notification_template_custom_big=0x7f0b0041; public static final int notification_template_icon_group=0x7f0b0042; public static final int notification_template_lines_media=0x7f0b0043; public static final int notification_template_media=0x7f0b0044; public static final int notification_template_media_custom=0x7f0b0045; public static final int notification_template_part_chronometer=0x7f0b0046; public static final int notification_template_part_time=0x7f0b0047; public static final int row_chat_left=0x7f0b0048; public static final int row_chat_right=0x7f0b0049; public static final int row_posts=0x7f0b004a; public static final int row_users=0x7f0b004b; public static final int select_dialog_item_material=0x7f0b004c; public static final int select_dialog_multichoice_material=0x7f0b004d; public static final int select_dialog_singlechoice_material=0x7f0b004e; public static final int support_simple_spinner_dropdown_item=0x7f0b004f; } public static final class menu { public static final int bottom_navigation=0x7f0c0000; public static final int menu_main=0x7f0c0001; } public static final class mipmap { public static final int ic_launcher=0x7f0d0000; public static final int ic_launcher_round=0x7f0d0001; } public static final class string { public static final int abc_action_bar_home_description=0x7f0e0000; public static final int abc_action_bar_up_description=0x7f0e0001; public static final int abc_action_menu_overflow_description=0x7f0e0002; public static final int abc_action_mode_done=0x7f0e0003; public static final int abc_activity_chooser_view_see_all=0x7f0e0004; public static final int abc_activitychooserview_choose_application=0x7f0e0005; public static final int abc_capital_off=0x7f0e0006; public static final int abc_capital_on=0x7f0e0007; public static final int abc_menu_alt_shortcut_label=0x7f0e0008; public static final int abc_menu_ctrl_shortcut_label=0x7f0e0009; public static final int abc_menu_delete_shortcut_label=0x7f0e000a; public static final int abc_menu_enter_shortcut_label=0x7f0e000b; public static final int abc_menu_function_shortcut_label=0x7f0e000c; public static final int abc_menu_meta_shortcut_label=0x7f0e000d; public static final int abc_menu_shift_shortcut_label=0x7f0e000e; public static final int abc_menu_space_shortcut_label=0x7f0e000f; public static final int abc_menu_sym_shortcut_label=0x7f0e0010; public static final int abc_prepend_shortcut_label=0x7f0e0011; public static final int abc_search_hint=0x7f0e0012; public static final int abc_searchview_description_clear=0x7f0e0013; public static final int abc_searchview_description_query=0x7f0e0014; public static final int abc_searchview_description_search=0x7f0e0015; public static final int abc_searchview_description_submit=0x7f0e0016; public static final int abc_searchview_description_voice=0x7f0e0017; public static final int abc_shareactionprovider_share_with=0x7f0e0018; public static final int abc_shareactionprovider_share_with_application=0x7f0e0019; public static final int abc_toolbar_collapse_description=0x7f0e001a; public static final int addpost=0x7f0e001b; public static final int app_name=0x7f0e001c; public static final int appbar_scrolling_view_behavior=0x7f0e001d; public static final int bottom_sheet_behavior=0x7f0e001e; public static final int character_counter_content_description=0x7f0e001f; public static final int character_counter_pattern=0x7f0e0020; public static final int com_crashlytics_android_build_id=0x7f0e0021; public static final int common_google_play_services_enable_button=0x7f0e0022; public static final int common_google_play_services_enable_text=0x7f0e0023; public static final int common_google_play_services_enable_title=0x7f0e0024; public static final int common_google_play_services_install_button=0x7f0e0025; public static final int common_google_play_services_install_text=0x7f0e0026; public static final int common_google_play_services_install_title=0x7f0e0027; public static final int common_google_play_services_notification_channel_name=0x7f0e0028; public static final int common_google_play_services_notification_ticker=0x7f0e0029; public static final int common_google_play_services_unknown_issue=0x7f0e002a; public static final int common_google_play_services_unsupported_text=0x7f0e002b; public static final int common_google_play_services_update_button=0x7f0e002c; public static final int common_google_play_services_update_text=0x7f0e002d; public static final int common_google_play_services_update_title=0x7f0e002e; public static final int common_google_play_services_updating_text=0x7f0e002f; public static final int common_google_play_services_wear_update_text=0x7f0e0030; public static final int common_open_on_phone=0x7f0e0031; public static final int common_signin_button_text=0x7f0e0032; public static final int common_signin_button_text_long=0x7f0e0033; public static final int default_web_client_id=0x7f0e0034; public static final int fab_transformation_scrim_behavior=0x7f0e0035; public static final int fab_transformation_sheet_behavior=0x7f0e0036; public static final int fcm_fallback_notification_channel_label=0x7f0e0037; public static final int firebase_database_url=0x7f0e0038; public static final int forgot_password=0x7f0e0039; public static final int gcm_defaultSenderId=0x7f0e003a; public static final int google_api_key=0x7f0e003b; public static final int google_app_id=0x7f0e003c; public static final int google_crash_reporting_api_key=0x7f0e003d; public static final int google_storage_bucket=0x7f0e003e; public static final int have_account=0x7f0e003f; public static final int hide_bottom_view_on_scroll_behavior=0x7f0e0040; public static final int login_btn=0x7f0e0041; public static final int logout=0x7f0e0042; public static final int mtrl_chip_close_icon_content_description=0x7f0e0043; public static final int not_have_account=0x7f0e0044; public static final int password_toggle_content_description=0x7f0e0045; public static final int path_password_eye=0x7f0e0046; public static final int path_password_eye_mask_strike_through=0x7f0e0047; public static final int path_password_eye_mask_visible=0x7f0e0048; public static final int path_password_strike_through=0x7f0e0049; public static final int project_id=0x7f0e004a; public static final int register_btn=0x7f0e004b; public static final int search=0x7f0e004c; public static final int search_menu_title=0x7f0e004d; public static final int status_bar_notification_info_overflow=0x7f0e004e; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0f0000; public static final int AlertDialog_AppCompat_Light=0x7f0f0001; public static final int Animation_AppCompat_Dialog=0x7f0f0002; public static final int Animation_AppCompat_DropDownUp=0x7f0f0003; public static final int Animation_AppCompat_Tooltip=0x7f0f0004; public static final int Animation_Design_BottomSheetDialog=0x7f0f0005; public static final int AppTheme=0x7f0f0006; public static final int AppTheme_AppBarOverlay=0x7f0f0007; public static final int AppTheme_PopupOverlay=0x7f0f0008; public static final int AppThemeNo=0x7f0f0009; public static final int Base_AlertDialog_AppCompat=0x7f0f000a; public static final int Base_AlertDialog_AppCompat_Light=0x7f0f000b; public static final int Base_Animation_AppCompat_Dialog=0x7f0f000c; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0f000d; public static final int Base_Animation_AppCompat_Tooltip=0x7f0f000e; public static final int Base_CardView=0x7f0f000f; public static final int Base_DialogWindowTitle_AppCompat=0x7f0f0010; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0f0011; public static final int Base_TextAppearance_AppCompat=0x7f0f0012; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0f0013; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0f0014; public static final int Base_TextAppearance_AppCompat_Button=0x7f0f0015; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0f0016; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0f0017; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0f0018; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0f0019; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0f001a; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0f001b; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0f001c; public static final int Base_TextAppearance_AppCompat_Large=0x7f0f001d; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0f001e; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0f001f; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0f0020; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0f0021; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0f0022; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0f0023; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0f0024; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0f0025; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0f0026; public static final int Base_TextAppearance_AppCompat_Small=0x7f0f0027; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0f0028; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0f0029; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0f002a; public static final int Base_TextAppearance_AppCompat_Title=0x7f0f002b; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0f002c; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0f002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0f002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0f002f; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0f0030; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0f0031; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0f0032; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0f0033; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0f0034; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0f0035; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0f0036; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0f0037; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0f0038; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0f0039; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0f003a; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0f003b; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0f003c; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0f003d; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0f003e; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0f003f; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0f0040; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0f0041; public static final int Base_Theme_AppCompat=0x7f0f0042; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0f0043; public static final int Base_Theme_AppCompat_Dialog=0x7f0f0044; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0f0045; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0f0046; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0f0047; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0f0048; public static final int Base_Theme_AppCompat_Light=0x7f0f0049; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0f004a; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0f004b; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0f004c; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0f004d; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0f004e; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0f004f; public static final int Base_Theme_MaterialComponents=0x7f0f0050; public static final int Base_Theme_MaterialComponents_Bridge=0x7f0f0051; public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f0f0052; public static final int Base_Theme_MaterialComponents_Dialog=0x7f0f0053; public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f0f0054; public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f0f0055; public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f0f0056; public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f0f0057; public static final int Base_Theme_MaterialComponents_Light=0x7f0f0058; public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f0f0059; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f0f005a; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0f005b; public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f0f005c; public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f0f005d; public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f0f005e; public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0f005f; public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0f0060; public static final int Base_ThemeOverlay_AppCompat=0x7f0f0061; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0f0062; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0f0063; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0f0064; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0f0065; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0f0066; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0f0067; public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f0f0068; public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0f0069; public static final int Base_V14_Theme_MaterialComponents=0x7f0f006a; public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f0f006b; public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f0f006c; public static final int Base_V14_Theme_MaterialComponents_Light=0x7f0f006d; public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f0f006e; public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0f006f; public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f0f0070; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f0f0071; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0f0072; public static final int Base_V21_Theme_AppCompat=0x7f0f0073; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0f0074; public static final int Base_V21_Theme_AppCompat_Light=0x7f0f0075; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0f0076; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0f0077; public static final int Base_V22_Theme_AppCompat=0x7f0f0078; public static final int Base_V22_Theme_AppCompat_Light=0x7f0f0079; public static final int Base_V23_Theme_AppCompat=0x7f0f007a; public static final int Base_V23_Theme_AppCompat_Light=0x7f0f007b; public static final int Base_V26_Theme_AppCompat=0x7f0f007c; public static final int Base_V26_Theme_AppCompat_Light=0x7f0f007d; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0f007e; public static final int Base_V28_Theme_AppCompat=0x7f0f007f; public static final int Base_V28_Theme_AppCompat_Light=0x7f0f0080; public static final int Base_V7_Theme_AppCompat=0x7f0f0081; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0f0082; public static final int Base_V7_Theme_AppCompat_Light=0x7f0f0083; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0f0084; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0f0085; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0f0086; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0f0087; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0f0088; public static final int Base_Widget_AppCompat_ActionBar=0x7f0f0089; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0f008a; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0f008b; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0f008c; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0f008d; public static final int Base_Widget_AppCompat_ActionButton=0x7f0f008e; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0f008f; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0f0090; public static final int Base_Widget_AppCompat_ActionMode=0x7f0f0091; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0f0092; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0f0093; public static final int Base_Widget_AppCompat_Button=0x7f0f0094; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0f0095; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0f0096; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0f0097; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0f0098; public static final int Base_Widget_AppCompat_Button_Small=0x7f0f0099; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0f009a; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0f009b; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0f009c; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0f009d; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0f009e; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0f009f; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0f00a0; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0f00a1; public static final int Base_Widget_AppCompat_EditText=0x7f0f00a2; public static final int Base_Widget_AppCompat_ImageButton=0x7f0f00a3; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0f00a4; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0f00a5; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0f00a6; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0f00a7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0f00a8; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0f00a9; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0f00aa; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0f00ab; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0f00ac; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0f00ad; public static final int Base_Widget_AppCompat_ListView=0x7f0f00ae; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0f00af; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0f00b0; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0f00b1; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0f00b2; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0f00b3; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0f00b4; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0f00b5; public static final int Base_Widget_AppCompat_RatingBar=0x7f0f00b6; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0f00b7; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0f00b8; public static final int Base_Widget_AppCompat_SearchView=0x7f0f00b9; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0f00ba; public static final int Base_Widget_AppCompat_SeekBar=0x7f0f00bb; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0f00bc; public static final int Base_Widget_AppCompat_Spinner=0x7f0f00bd; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0f00be; public static final int Base_Widget_AppCompat_TextView=0x7f0f00bf; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0f00c0; public static final int Base_Widget_AppCompat_Toolbar=0x7f0f00c1; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0f00c2; public static final int Base_Widget_Design_TabLayout=0x7f0f00c3; public static final int Base_Widget_MaterialComponents_Chip=0x7f0f00c4; public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f0f00c5; public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f0f00c6; public static final int CardView=0x7f0f00c7; public static final int CardView_Dark=0x7f0f00c8; public static final int CardView_Light=0x7f0f00c9; public static final int Platform_AppCompat=0x7f0f00ca; public static final int Platform_AppCompat_Light=0x7f0f00cb; public static final int Platform_MaterialComponents=0x7f0f00cc; public static final int Platform_MaterialComponents_Dialog=0x7f0f00cd; public static final int Platform_MaterialComponents_Light=0x7f0f00ce; public static final int Platform_MaterialComponents_Light_Dialog=0x7f0f00cf; public static final int Platform_ThemeOverlay_AppCompat=0x7f0f00d0; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0f00d1; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0f00d2; public static final int Platform_V21_AppCompat=0x7f0f00d3; public static final int Platform_V21_AppCompat_Light=0x7f0f00d4; public static final int Platform_V25_AppCompat=0x7f0f00d5; public static final int Platform_V25_AppCompat_Light=0x7f0f00d6; public static final int Platform_Widget_AppCompat_Spinner=0x7f0f00d7; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0f00d8; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0f00d9; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0f00da; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0f00db; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0f00dc; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0f00dd; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0f00de; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0f00df; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0f00e0; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0f00e1; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0f00e2; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0f00e3; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0f00e4; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0f00e5; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0f00e6; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0f00e7; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0f00e8; public static final int TextAppearance_AppCompat=0x7f0f00e9; public static final int TextAppearance_AppCompat_Body1=0x7f0f00ea; public static final int TextAppearance_AppCompat_Body2=0x7f0f00eb; public static final int TextAppearance_AppCompat_Button=0x7f0f00ec; public static final int TextAppearance_AppCompat_Caption=0x7f0f00ed; public static final int TextAppearance_AppCompat_Display1=0x7f0f00ee; public static final int TextAppearance_AppCompat_Display2=0x7f0f00ef; public static final int TextAppearance_AppCompat_Display3=0x7f0f00f0; public static final int TextAppearance_AppCompat_Display4=0x7f0f00f1; public static final int TextAppearance_AppCompat_Headline=0x7f0f00f2; public static final int TextAppearance_AppCompat_Inverse=0x7f0f00f3; public static final int TextAppearance_AppCompat_Large=0x7f0f00f4; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0f00f5; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0f00f6; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0f00f7; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0f00f8; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0f00f9; public static final int TextAppearance_AppCompat_Medium=0x7f0f00fa; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0f00fb; public static final int TextAppearance_AppCompat_Menu=0x7f0f00fc; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0f00fd; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0f00fe; public static final int TextAppearance_AppCompat_Small=0x7f0f00ff; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0f0100; public static final int TextAppearance_AppCompat_Subhead=0x7f0f0101; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0f0102; public static final int TextAppearance_AppCompat_Title=0x7f0f0103; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0f0104; public static final int TextAppearance_AppCompat_Tooltip=0x7f0f0105; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0f0106; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0f0107; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0f0108; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0f0109; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0f010a; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0f010b; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0f010c; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0f010d; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0f010e; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0f010f; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0f0110; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0f0111; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0f0112; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0f0113; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0f0114; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0f0115; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0f0116; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0f0117; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0f0118; public static final int TextAppearance_Compat_Notification=0x7f0f0119; public static final int TextAppearance_Compat_Notification_Info=0x7f0f011a; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0f011b; public static final int TextAppearance_Compat_Notification_Line2=0x7f0f011c; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0f011d; public static final int TextAppearance_Compat_Notification_Media=0x7f0f011e; public static final int TextAppearance_Compat_Notification_Time=0x7f0f011f; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0f0120; public static final int TextAppearance_Compat_Notification_Title=0x7f0f0121; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0f0122; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0f0123; public static final int TextAppearance_Design_Counter=0x7f0f0124; public static final int TextAppearance_Design_Counter_Overflow=0x7f0f0125; public static final int TextAppearance_Design_Error=0x7f0f0126; public static final int TextAppearance_Design_HelperText=0x7f0f0127; public static final int TextAppearance_Design_Hint=0x7f0f0128; public static final int TextAppearance_Design_Snackbar_Message=0x7f0f0129; public static final int TextAppearance_Design_Tab=0x7f0f012a; public static final int TextAppearance_MaterialComponents_Body1=0x7f0f012b; public static final int TextAppearance_MaterialComponents_Body2=0x7f0f012c; public static final int TextAppearance_MaterialComponents_Button=0x7f0f012d; public static final int TextAppearance_MaterialComponents_Caption=0x7f0f012e; public static final int TextAppearance_MaterialComponents_Chip=0x7f0f012f; public static final int TextAppearance_MaterialComponents_Headline1=0x7f0f0130; public static final int TextAppearance_MaterialComponents_Headline2=0x7f0f0131; public static final int TextAppearance_MaterialComponents_Headline3=0x7f0f0132; public static final int TextAppearance_MaterialComponents_Headline4=0x7f0f0133; public static final int TextAppearance_MaterialComponents_Headline5=0x7f0f0134; public static final int TextAppearance_MaterialComponents_Headline6=0x7f0f0135; public static final int TextAppearance_MaterialComponents_Overline=0x7f0f0136; public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f0f0137; public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f0f0138; public static final int TextAppearance_MaterialComponents_Tab=0x7f0f0139; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0f013a; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0f013b; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0f013c; public static final int Theme_AppCompat=0x7f0f013d; public static final int Theme_AppCompat_CompactMenu=0x7f0f013e; public static final int Theme_AppCompat_DayNight=0x7f0f013f; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0f0140; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0f0141; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0f0142; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0f0143; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0f0144; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0f0145; public static final int Theme_AppCompat_Dialog=0x7f0f0146; public static final int Theme_AppCompat_Dialog_Alert=0x7f0f0147; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0f0148; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0f0149; public static final int Theme_AppCompat_Light=0x7f0f014a; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0f014b; public static final int Theme_AppCompat_Light_Dialog=0x7f0f014c; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0f014d; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0f014e; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0f014f; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0f0150; public static final int Theme_AppCompat_NoActionBar=0x7f0f0151; public static final int Theme_Design=0x7f0f0152; public static final int Theme_Design_BottomSheetDialog=0x7f0f0153; public static final int Theme_Design_Light=0x7f0f0154; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0f0155; public static final int Theme_Design_Light_NoActionBar=0x7f0f0156; public static final int Theme_Design_NoActionBar=0x7f0f0157; public static final int Theme_MaterialComponents=0x7f0f0158; public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0f0159; public static final int Theme_MaterialComponents_Bridge=0x7f0f015a; public static final int Theme_MaterialComponents_CompactMenu=0x7f0f015b; public static final int Theme_MaterialComponents_Dialog=0x7f0f015c; public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0f015d; public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0f015e; public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0f015f; public static final int Theme_MaterialComponents_Light=0x7f0f0160; public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0f0161; public static final int Theme_MaterialComponents_Light_Bridge=0x7f0f0162; public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0f0163; public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0f0164; public static final int Theme_MaterialComponents_Light_Dialog=0x7f0f0165; public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0f0166; public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0f0167; public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0f0168; public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0f0169; public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0f016a; public static final int Theme_MaterialComponents_NoActionBar=0x7f0f016b; public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0f016c; public static final int ThemeOverlay_AppCompat=0x7f0f016d; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0f016e; public static final int ThemeOverlay_AppCompat_Dark=0x7f0f016f; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0f0170; public static final int ThemeOverlay_AppCompat_DayNight=0x7f0f0171; public static final int ThemeOverlay_AppCompat_DayNight_ActionBar=0x7f0f0172; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0f0173; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0f0174; public static final int ThemeOverlay_AppCompat_Light=0x7f0f0175; public static final int ThemeOverlay_MaterialComponents=0x7f0f0176; public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0f0177; public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0f0178; public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0f0179; public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0f017a; public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0f017b; public static final int ThemeOverlay_MaterialComponents_Light=0x7f0f017c; public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0f017d; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0f017e; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0f017f; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0f0180; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0f0181; public static final int Widget_AppCompat_ActionBar=0x7f0f0182; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0f0183; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0f0184; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0f0185; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0f0186; public static final int Widget_AppCompat_ActionButton=0x7f0f0187; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0f0188; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0f0189; public static final int Widget_AppCompat_ActionMode=0x7f0f018a; public static final int Widget_AppCompat_ActivityChooserView=0x7f0f018b; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0f018c; public static final int Widget_AppCompat_Button=0x7f0f018d; public static final int Widget_AppCompat_Button_Borderless=0x7f0f018e; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0f018f; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0f0190; public static final int Widget_AppCompat_Button_Colored=0x7f0f0191; public static final int Widget_AppCompat_Button_Small=0x7f0f0192; public static final int Widget_AppCompat_ButtonBar=0x7f0f0193; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0f0194; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0f0195; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0f0196; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0f0197; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0f0198; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0f0199; public static final int Widget_AppCompat_EditText=0x7f0f019a; public static final int Widget_AppCompat_ImageButton=0x7f0f019b; public static final int Widget_AppCompat_Light_ActionBar=0x7f0f019c; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0f019d; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0f019e; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0f019f; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0f01a0; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0f01a1; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0f01a2; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0f01a3; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0f01a4; public static final int Widget_AppCompat_Light_ActionButton=0x7f0f01a5; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0f01a6; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0f01a7; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0f01a8; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0f01a9; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0f01aa; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0f01ab; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0f01ac; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0f01ad; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0f01ae; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0f01af; public static final int Widget_AppCompat_Light_SearchView=0x7f0f01b0; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0f01b1; public static final int Widget_AppCompat_ListMenuView=0x7f0f01b2; public static final int Widget_AppCompat_ListPopupWindow=0x7f0f01b3; public static final int Widget_AppCompat_ListView=0x7f0f01b4; public static final int Widget_AppCompat_ListView_DropDown=0x7f0f01b5; public static final int Widget_AppCompat_ListView_Menu=0x7f0f01b6; public static final int Widget_AppCompat_PopupMenu=0x7f0f01b7; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0f01b8; public static final int Widget_AppCompat_PopupWindow=0x7f0f01b9; public static final int Widget_AppCompat_ProgressBar=0x7f0f01ba; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0f01bb; public static final int Widget_AppCompat_RatingBar=0x7f0f01bc; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0f01bd; public static final int Widget_AppCompat_RatingBar_Small=0x7f0f01be; public static final int Widget_AppCompat_SearchView=0x7f0f01bf; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0f01c0; public static final int Widget_AppCompat_SeekBar=0x7f0f01c1; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0f01c2; public static final int Widget_AppCompat_Spinner=0x7f0f01c3; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0f01c4; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0f01c5; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0f01c6; public static final int Widget_AppCompat_TextView=0x7f0f01c7; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0f01c8; public static final int Widget_AppCompat_Toolbar=0x7f0f01c9; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0f01ca; public static final int Widget_Compat_NotificationActionContainer=0x7f0f01cb; public static final int Widget_Compat_NotificationActionText=0x7f0f01cc; public static final int Widget_Design_AppBarLayout=0x7f0f01cd; public static final int Widget_Design_BottomNavigationView=0x7f0f01ce; public static final int Widget_Design_BottomSheet_Modal=0x7f0f01cf; public static final int Widget_Design_CollapsingToolbar=0x7f0f01d0; public static final int Widget_Design_FloatingActionButton=0x7f0f01d1; public static final int Widget_Design_NavigationView=0x7f0f01d2; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0f01d3; public static final int Widget_Design_Snackbar=0x7f0f01d4; public static final int Widget_Design_TabLayout=0x7f0f01d5; public static final int Widget_Design_TextInputLayout=0x7f0f01d6; public static final int Widget_MaterialComponents_BottomAppBar=0x7f0f01d7; public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0f01d8; public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0f01d9; public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0f01da; public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0f01db; public static final int Widget_MaterialComponents_Button=0x7f0f01dc; public static final int Widget_MaterialComponents_Button_Icon=0x7f0f01dd; public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0f01de; public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0f01df; public static final int Widget_MaterialComponents_Button_TextButton=0x7f0f01e0; public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0f01e1; public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0f01e2; public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0f01e3; public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0f01e4; public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0f01e5; public static final int Widget_MaterialComponents_CardView=0x7f0f01e6; public static final int Widget_MaterialComponents_Chip_Action=0x7f0f01e7; public static final int Widget_MaterialComponents_Chip_Choice=0x7f0f01e8; public static final int Widget_MaterialComponents_Chip_Entry=0x7f0f01e9; public static final int Widget_MaterialComponents_Chip_Filter=0x7f0f01ea; public static final int Widget_MaterialComponents_ChipGroup=0x7f0f01eb; public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0f01ec; public static final int Widget_MaterialComponents_NavigationView=0x7f0f01ed; public static final int Widget_MaterialComponents_Snackbar=0x7f0f01ee; public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0f01ef; public static final int Widget_MaterialComponents_TabLayout=0x7f0f01f0; public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0f01f1; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0f01f2; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0f01f3; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0f01f4; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0f01f5; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0f01f6; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0f01f7; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0f01f8; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0f01f9; public static final int Widget_MaterialComponents_Toolbar=0x7f0f01fa; public static final int Widget_Support_CoordinatorLayout=0x7f0f01fb; } 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 com.hdpolover.ybbproject:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.hdpolover.ybbproject:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.hdpolover.ybbproject:backgroundStacked}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.hdpolover.ybbproject:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.hdpolover.ybbproject:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.hdpolover.ybbproject:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.hdpolover.ybbproject:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.hdpolover.ybbproject:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.hdpolover.ybbproject:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.hdpolover.ybbproject:customNavigationLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.hdpolover.ybbproject:displayOptions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_divider com.hdpolover.ybbproject:divider}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_elevation com.hdpolover.ybbproject:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_height com.hdpolover.ybbproject:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.hdpolover.ybbproject:hideOnContentScroll}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.hdpolover.ybbproject:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.hdpolover.ybbproject:homeLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_icon com.hdpolover.ybbproject:icon}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.hdpolover.ybbproject:indeterminateProgressStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.hdpolover.ybbproject:itemPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_logo com.hdpolover.ybbproject:logo}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.hdpolover.ybbproject:navigationMode}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.hdpolover.ybbproject:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.hdpolover.ybbproject:progressBarPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.hdpolover.ybbproject:progressBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.hdpolover.ybbproject:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.hdpolover.ybbproject:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_title com.hdpolover.ybbproject:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.hdpolover.ybbproject: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={ 0x7f030031, 0x7f030032, 0x7f030033, 0x7f0300a3, 0x7f0300a4, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300b6, 0x7f0300bb, 0x7f0300bc, 0x7f0300cf, 0x7f0300fa, 0x7f0300ff, 0x7f030104, 0x7f030105, 0x7f030107, 0x7f030113, 0x7f03011d, 0x7f030176, 0x7f030182, 0x7f030193, 0x7f030197, 0x7f030198, 0x7f0301c7, 0x7f0301ca, 0x7f030210, 0x7f03021a }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#background} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:background */ public static final int ActionBar_background=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetEnd} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetEndWithActions} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetLeft} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetRight} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetStart} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetStartWithNavigation} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#customNavigationLayout} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#divider} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:divider */ public static final int ActionBar_divider=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#elevation} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:elevation */ public static final int ActionBar_elevation=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#height} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:height */ public static final int ActionBar_height=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hideOnContentScroll} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#homeAsUpIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#homeLayout} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#icon} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:icon */ public static final int ActionBar_icon=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#indeterminateProgressStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemPadding} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#logo} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:logo */ public static final int ActionBar_logo=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>listMode</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>tabMode</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#popupTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#progressBarPadding} * attribute's value can be found in the {@link #ActionBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#progressBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subtitle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:subtitle */ public static final int ActionBar_subtitle=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subtitleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#title} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:title */ public static final int ActionBar_title=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * 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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final 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. * * <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), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth=0; 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 com.hdpolover.ybbproject:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.hdpolover.ybbproject:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.hdpolover.ybbproject:closeItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_height com.hdpolover.ybbproject:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.hdpolover.ybbproject:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.hdpolover.ybbproject: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={ 0x7f030031, 0x7f030032, 0x7f03008c, 0x7f0300fa, 0x7f0301ca, 0x7f03021a }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#background} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:background */ public static final int ActionMode_background=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeItemLayout} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#height} * attribute's value can be found in the {@link #ActionMode} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:height */ public static final int ActionMode_height=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subtitleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:titleTextStyle */ public static final int ActionMode_titleTextStyle=5; /** * 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 com.hdpolover.ybbproject:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.hdpolover.ybbproject:initialActivityCount}</code></td><td></td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f0300d5, 0x7f030114 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandActivityOverflowButtonDrawable} * attribute's value can be found in the {@link #ActivityChooserView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#initialActivityCount} * attribute's value can be found in the {@link #ActivityChooserView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount=1; /** * 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_buttonIconDimen com.hdpolover.ybbproject:buttonIconDimen}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.hdpolover.ybbproject:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.hdpolover.ybbproject:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.hdpolover.ybbproject:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.hdpolover.ybbproject:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.hdpolover.ybbproject:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.hdpolover.ybbproject:singleChoiceItemLayout}</code></td><td></td></tr> * </table> * @see #AlertDialog_android_layout * @see #AlertDialog_buttonIconDimen * @see #AlertDialog_buttonPanelSideLayout * @see #AlertDialog_listItemLayout * @see #AlertDialog_listLayout * @see #AlertDialog_multiChoiceItemLayout * @see #AlertDialog_showTitle * @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog={ 0x010100f2, 0x7f030055, 0x7f030056, 0x7f03016b, 0x7f03016c, 0x7f03017f, 0x7f0301af, 0x7f0301b0 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int AlertDialog_android_layout=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonIconDimen} * attribute's value can be found in the {@link #AlertDialog} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:buttonIconDimen */ public static final int AlertDialog_buttonIconDimen=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonPanelSideLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listItemLayout */ public static final int AlertDialog_listItemLayout=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listLayout */ public static final int AlertDialog_listLayout=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#multiChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#showTitle} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:showTitle */ public static final int AlertDialog_showTitle=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#singleChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=7; /** * Attributes that can be used with a AnimatedStateListDrawableCompat. * <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 #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableCompat_android_dither * @see #AnimatedStateListDrawableCompat_android_visible * @see #AnimatedStateListDrawableCompat_android_variablePadding * @see #AnimatedStateListDrawableCompat_android_constantSize * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration */ public static final int[] AnimatedStateListDrawableCompat={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p>This symbol is the offset where the {@link android.R.attr#dither} * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int AnimatedStateListDrawableCompat_android_dither=0; /** * <p>This symbol is the offset where the {@link android.R.attr#visible} * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int AnimatedStateListDrawableCompat_android_visible=1; /** * <p>This symbol is the offset where the {@link android.R.attr#variablePadding} * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; /** * <p>This symbol is the offset where the {@link android.R.attr#constantSize} * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int AnimatedStateListDrawableCompat_android_constantSize=3; /** * <p>This symbol is the offset where the {@link android.R.attr#enterFadeDuration} * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; /** * <p>This symbol is the offset where the {@link android.R.attr#exitFadeDuration} * attribute's value can be found in the {@link #AnimatedStateListDrawableCompat} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; /** * Attributes that can be used with a AnimatedStateListDrawableItem. * <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 #AnimatedStateListDrawableItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableItem_android_id * @see #AnimatedStateListDrawableItem_android_drawable */ public static final int[] AnimatedStateListDrawableItem={ 0x010100d0, 0x01010199 }; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #AnimatedStateListDrawableItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int AnimatedStateListDrawableItem_android_id=0; /** * <p>This symbol is the offset where the {@link android.R.attr#drawable} * attribute's value can be found in the {@link #AnimatedStateListDrawableItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableItem_android_drawable=1; /** * Attributes that can be used with a AnimatedStateListDrawableTransition. * <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 #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableTransition_android_drawable * @see #AnimatedStateListDrawableTransition_android_toId * @see #AnimatedStateListDrawableTransition_android_fromId * @see #AnimatedStateListDrawableTransition_android_reversible */ public static final int[] AnimatedStateListDrawableTransition={ 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; /** * <p>This symbol is the offset where the {@link android.R.attr#drawable} * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableTransition_android_drawable=0; /** * <p>This symbol is the offset where the {@link android.R.attr#toId} * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:toId */ public static final int AnimatedStateListDrawableTransition_android_toId=1; /** * <p>This symbol is the offset where the {@link android.R.attr#fromId} * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:fromId */ public static final int AnimatedStateListDrawableTransition_android_fromId=2; /** * <p>This symbol is the offset where the {@link android.R.attr#reversible} * attribute's value can be found in the {@link #AnimatedStateListDrawableTransition} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:reversible */ public static final int AnimatedStateListDrawableTransition_android_reversible=3; /** * 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_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_elevation com.hdpolover.ybbproject:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_expanded com.hdpolover.ybbproject:expanded}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_liftOnScroll com.hdpolover.ybbproject:liftOnScroll}</code></td><td></td></tr> * </table> * @see #AppBarLayout_android_background * @see #AppBarLayout_android_touchscreenBlocksFocus * @see #AppBarLayout_android_keyboardNavigationCluster * @see #AppBarLayout_elevation * @see #AppBarLayout_expanded * @see #AppBarLayout_liftOnScroll */ public static final int[] AppBarLayout={ 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300cf, 0x7f0300d6, 0x7f030164 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:background */ public static final int AppBarLayout_android_background=0; /** * <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus=1; /** * <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#elevation} * attribute's value can be found in the {@link #AppBarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:elevation */ public static final int AppBarLayout_elevation=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expanded} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:expanded */ public static final int AppBarLayout_expanded=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#liftOnScroll} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:liftOnScroll */ public static final int AppBarLayout_liftOnScroll=5; /** * 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 com.hdpolover.ybbproject:state_collapsed}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.hdpolover.ybbproject:state_collapsible}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_liftable com.hdpolover.ybbproject:state_liftable}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_lifted com.hdpolover.ybbproject:state_lifted}</code></td><td></td></tr> * </table> * @see #AppBarLayoutStates_state_collapsed * @see #AppBarLayoutStates_state_collapsible * @see #AppBarLayoutStates_state_liftable * @see #AppBarLayoutStates_state_lifted */ public static final int[] AppBarLayoutStates={ 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#state_collapsed} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#state_collapsible} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#state_liftable} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:state_liftable */ public static final int AppBarLayoutStates_state_liftable=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#state_lifted} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:state_lifted */ public static final int AppBarLayoutStates_state_lifted=3; /** * 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 com.hdpolover.ybbproject:layout_scrollFlags}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.hdpolover.ybbproject:layout_scrollInterpolator}</code></td><td></td></tr> * </table> * @see #AppBarLayout_Layout_layout_scrollFlags * @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout={ 0x7f030162, 0x7f030163 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * <tr><td>snapMargins</td><td>20</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_scrollInterpolator} * attribute's value can be found in the {@link #AppBarLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:layout_scrollInterpolator */ public static final 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 com.hdpolover.ybbproject:srcCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.hdpolover.ybbproject:tint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.hdpolover.ybbproject: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, 0x7f0301ba, 0x7f03020e, 0x7f03020f }; /** * <p>This symbol is the offset where the {@link android.R.attr#src} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:src */ public static final int AppCompatImageView_android_src=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#srcCompat} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tint} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <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 com.hdpolover.ybbproject:tint */ public static final int AppCompatImageView_tint=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:tintMode */ public static final 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 com.hdpolover.ybbproject:tickMark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.hdpolover.ybbproject:tickMarkTint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.hdpolover.ybbproject: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, 0x7f03020b, 0x7f03020c, 0x7f03020d }; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tickMark} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tickMarkTint} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <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 com.hdpolover.ybbproject:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:tickMarkTintMode */ public static final 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_textAppearance android:textAppearance}</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_drawableBottom android:drawableBottom}</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_drawableEnd android:drawableEnd}</code></td><td></td></tr> * </table> * @see #AppCompatTextHelper_android_textAppearance * @see #AppCompatTextHelper_android_drawableTop * @see #AppCompatTextHelper_android_drawableBottom * @see #AppCompatTextHelper_android_drawableLeft * @see #AppCompatTextHelper_android_drawableRight * @see #AppCompatTextHelper_android_drawableStart * @see #AppCompatTextHelper_android_drawableEnd */ public static final int[] AppCompatTextHelper={ 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableTop} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop=1; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom=2; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:drawableLeft */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:drawableRight */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart=5; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd=6; /** * 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 com.hdpolover.ybbproject:autoSizeMaxTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.hdpolover.ybbproject:autoSizeMinTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.hdpolover.ybbproject:autoSizePresetSizes}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.hdpolover.ybbproject:autoSizeStepGranularity}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.hdpolover.ybbproject:autoSizeTextType}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableBottomCompat com.hdpolover.ybbproject:drawableBottomCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableEndCompat com.hdpolover.ybbproject:drawableEndCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableLeftCompat com.hdpolover.ybbproject:drawableLeftCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableRightCompat com.hdpolover.ybbproject:drawableRightCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableStartCompat com.hdpolover.ybbproject:drawableStartCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableTint com.hdpolover.ybbproject:drawableTint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableTintMode com.hdpolover.ybbproject:drawableTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_drawableTopCompat com.hdpolover.ybbproject:drawableTopCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight com.hdpolover.ybbproject:firstBaselineToTopHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.hdpolover.ybbproject:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_fontVariationSettings com.hdpolover.ybbproject:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight com.hdpolover.ybbproject:lastBaselineToBottomHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_lineHeight com.hdpolover.ybbproject:lineHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.hdpolover.ybbproject:textAllCaps}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_textLocale com.hdpolover.ybbproject:textLocale}</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_drawableBottomCompat * @see #AppCompatTextView_drawableEndCompat * @see #AppCompatTextView_drawableLeftCompat * @see #AppCompatTextView_drawableRightCompat * @see #AppCompatTextView_drawableStartCompat * @see #AppCompatTextView_drawableTint * @see #AppCompatTextView_drawableTintMode * @see #AppCompatTextView_drawableTopCompat * @see #AppCompatTextView_firstBaselineToTopHeight * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_fontVariationSettings * @see #AppCompatTextView_lastBaselineToBottomHeight * @see #AppCompatTextView_lineHeight * @see #AppCompatTextView_textAllCaps * @see #AppCompatTextView_textLocale */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300e9, 0x7f0300ec, 0x7f0300f4, 0x7f030125, 0x7f030165, 0x7f0301ea, 0x7f030204 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#autoSizeMaxTextSize} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#autoSizeMinTextSize} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#autoSizePresetSizes} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#autoSizeStepGranularity} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>none</td><td>0</td><td></td></tr> * <tr><td>uniform</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableBottomCompat} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:drawableBottomCompat */ public static final int AppCompatTextView_drawableBottomCompat=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableEndCompat} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:drawableEndCompat */ public static final int AppCompatTextView_drawableEndCompat=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableLeftCompat} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:drawableLeftCompat */ public static final int AppCompatTextView_drawableLeftCompat=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableRightCompat} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:drawableRightCompat */ public static final int AppCompatTextView_drawableRightCompat=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableStartCompat} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:drawableStartCompat */ public static final int AppCompatTextView_drawableStartCompat=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableTint} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <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 com.hdpolover.ybbproject:drawableTint */ public static final int AppCompatTextView_drawableTint=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableTintMode} * 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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:drawableTintMode */ public static final int AppCompatTextView_drawableTintMode=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableTopCompat} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:drawableTopCompat */ public static final int AppCompatTextView_drawableTopCompat=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#firstBaselineToTopHeight} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:firstBaselineToTopHeight */ public static final int AppCompatTextView_firstBaselineToTopHeight=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontFamily} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontFamily */ public static final int AppCompatTextView_fontFamily=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontVariationSettings */ public static final int AppCompatTextView_fontVariationSettings=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#lastBaselineToBottomHeight} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:lastBaselineToBottomHeight */ public static final int AppCompatTextView_lastBaselineToBottomHeight=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#lineHeight} * attribute's value can be found in the {@link #AppCompatTextView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:lineHeight */ public static final int AppCompatTextView_lineHeight=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:textAllCaps */ public static final int AppCompatTextView_textAllCaps=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textLocale} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:textLocale */ public static final int AppCompatTextView_textLocale=20; /** * 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_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.hdpolover.ybbproject:actionBarDivider}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.hdpolover.ybbproject:actionBarItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.hdpolover.ybbproject:actionBarPopupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.hdpolover.ybbproject:actionBarSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.hdpolover.ybbproject:actionBarSplitStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.hdpolover.ybbproject:actionBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.hdpolover.ybbproject:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.hdpolover.ybbproject:actionBarTabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.hdpolover.ybbproject:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.hdpolover.ybbproject:actionBarTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.hdpolover.ybbproject:actionBarWidgetTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.hdpolover.ybbproject:actionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.hdpolover.ybbproject:actionDropDownStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.hdpolover.ybbproject:actionMenuTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.hdpolover.ybbproject:actionMenuTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.hdpolover.ybbproject:actionModeBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.hdpolover.ybbproject:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.hdpolover.ybbproject:actionModeCloseDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.hdpolover.ybbproject:actionModeCopyDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.hdpolover.ybbproject:actionModeCutDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.hdpolover.ybbproject:actionModeFindDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.hdpolover.ybbproject:actionModePasteDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.hdpolover.ybbproject:actionModePopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.hdpolover.ybbproject:actionModeSelectAllDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.hdpolover.ybbproject:actionModeShareDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.hdpolover.ybbproject:actionModeSplitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.hdpolover.ybbproject:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.hdpolover.ybbproject:actionModeWebSearchDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.hdpolover.ybbproject:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.hdpolover.ybbproject:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.hdpolover.ybbproject:activityChooserViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.hdpolover.ybbproject:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.hdpolover.ybbproject:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.hdpolover.ybbproject:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.hdpolover.ybbproject:alertDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.hdpolover.ybbproject:autoCompleteTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.hdpolover.ybbproject:borderlessButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.hdpolover.ybbproject:buttonBarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.hdpolover.ybbproject:buttonBarNegativeButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.hdpolover.ybbproject:buttonBarNeutralButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.hdpolover.ybbproject:buttonBarPositiveButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.hdpolover.ybbproject:buttonBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.hdpolover.ybbproject:buttonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.hdpolover.ybbproject:buttonStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.hdpolover.ybbproject:checkboxStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.hdpolover.ybbproject:checkedTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.hdpolover.ybbproject:colorAccent}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.hdpolover.ybbproject:colorBackgroundFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.hdpolover.ybbproject:colorButtonNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.hdpolover.ybbproject:colorControlActivated}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.hdpolover.ybbproject:colorControlHighlight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.hdpolover.ybbproject:colorControlNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.hdpolover.ybbproject:colorError}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.hdpolover.ybbproject:colorPrimary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.hdpolover.ybbproject:colorPrimaryDark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.hdpolover.ybbproject:colorSwitchThumbNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.hdpolover.ybbproject:controlBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius com.hdpolover.ybbproject:dialogCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.hdpolover.ybbproject:dialogPreferredPadding}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.hdpolover.ybbproject:dialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.hdpolover.ybbproject:dividerHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.hdpolover.ybbproject:dividerVertical}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.hdpolover.ybbproject:dropDownListViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.hdpolover.ybbproject:dropdownListPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.hdpolover.ybbproject:editTextBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.hdpolover.ybbproject:editTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.hdpolover.ybbproject:editTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.hdpolover.ybbproject:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.hdpolover.ybbproject:imageButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.hdpolover.ybbproject:listChoiceBackgroundIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceIndicatorMultipleAnimated com.hdpolover.ybbproject:listChoiceIndicatorMultipleAnimated}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceIndicatorSingleAnimated com.hdpolover.ybbproject:listChoiceIndicatorSingleAnimated}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.hdpolover.ybbproject:listDividerAlertDialog}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.hdpolover.ybbproject:listMenuViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.hdpolover.ybbproject:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.hdpolover.ybbproject:listPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.hdpolover.ybbproject:listPreferredItemHeightLarge}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.hdpolover.ybbproject:listPreferredItemHeightSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingEnd com.hdpolover.ybbproject:listPreferredItemPaddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.hdpolover.ybbproject:listPreferredItemPaddingLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.hdpolover.ybbproject:listPreferredItemPaddingRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingStart com.hdpolover.ybbproject:listPreferredItemPaddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.hdpolover.ybbproject:panelBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.hdpolover.ybbproject:panelMenuListTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.hdpolover.ybbproject:panelMenuListWidth}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.hdpolover.ybbproject:popupMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.hdpolover.ybbproject:popupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.hdpolover.ybbproject:radioButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.hdpolover.ybbproject:ratingBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.hdpolover.ybbproject:ratingBarStyleIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.hdpolover.ybbproject:ratingBarStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.hdpolover.ybbproject:searchViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.hdpolover.ybbproject:seekBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.hdpolover.ybbproject:selectableItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.hdpolover.ybbproject:selectableItemBackgroundBorderless}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.hdpolover.ybbproject:spinnerDropDownItemStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.hdpolover.ybbproject:spinnerStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.hdpolover.ybbproject:switchStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.hdpolover.ybbproject:textAppearanceLargePopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.hdpolover.ybbproject:textAppearanceListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.hdpolover.ybbproject:textAppearanceListItemSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.hdpolover.ybbproject:textAppearanceListItemSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.hdpolover.ybbproject:textAppearancePopupMenuHeader}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.hdpolover.ybbproject:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.hdpolover.ybbproject:textAppearanceSearchResultTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.hdpolover.ybbproject:textAppearanceSmallPopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.hdpolover.ybbproject:textColorAlertDialogListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.hdpolover.ybbproject:textColorSearchUrl}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.hdpolover.ybbproject:toolbarNavigationButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.hdpolover.ybbproject:toolbarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.hdpolover.ybbproject:tooltipForegroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.hdpolover.ybbproject:tooltipFrameBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.hdpolover.ybbproject:viewInflaterClass}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.hdpolover.ybbproject:windowActionBar}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.hdpolover.ybbproject:windowActionBarOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.hdpolover.ybbproject:windowActionModeOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.hdpolover.ybbproject:windowFixedHeightMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.hdpolover.ybbproject:windowFixedHeightMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.hdpolover.ybbproject:windowFixedWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.hdpolover.ybbproject:windowFixedWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.hdpolover.ybbproject:windowMinWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.hdpolover.ybbproject:windowMinWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.hdpolover.ybbproject:windowNoTitle}</code></td><td></td></tr> * </table> * @see #AppCompatTheme_android_windowIsFloating * @see #AppCompatTheme_android_windowAnimationStyle * @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_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_dialogCornerRadius * @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_listChoiceIndicatorMultipleAnimated * @see #AppCompatTheme_listChoiceIndicatorSingleAnimated * @see #AppCompatTheme_listDividerAlertDialog * @see #AppCompatTheme_listMenuViewStyle * @see #AppCompatTheme_listPopupWindowStyle * @see #AppCompatTheme_listPreferredItemHeight * @see #AppCompatTheme_listPreferredItemHeightLarge * @see #AppCompatTheme_listPreferredItemHeightSmall * @see #AppCompatTheme_listPreferredItemPaddingEnd * @see #AppCompatTheme_listPreferredItemPaddingLeft * @see #AppCompatTheme_listPreferredItemPaddingRight * @see #AppCompatTheme_listPreferredItemPaddingStart * @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_viewInflaterClass * @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, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f030040, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030052, 0x7f030058, 0x7f030059, 0x7f03006c, 0x7f030071, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009d, 0x7f0300af, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bd, 0x7f0300bf, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f030104, 0x7f030112, 0x7f030167, 0x7f030168, 0x7f030169, 0x7f03016a, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030171, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f030192, 0x7f030194, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301b7, 0x7f0301b8, 0x7f0301ce, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f030200, 0x7f030201, 0x7f03021c, 0x7f03021d, 0x7f03021e, 0x7f03021f, 0x7f030226, 0x7f030228, 0x7f030229, 0x7f03022a, 0x7f03022b, 0x7f03022c, 0x7f03022d, 0x7f03022e, 0x7f03022f, 0x7f030230, 0x7f030231 }; /** * <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating=0; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarDivider} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarItemBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarPopupTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * mm (millimeters). * <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>wrap_content</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarSplitStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarTabBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarTabStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarTabTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionBarWidgetTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionDropDownStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionMenuTextAppearance} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeCloseButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeCloseDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeCopyDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeCutDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeFindDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModePasteDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModePopupWindowStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeSelectAllDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeShareDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeSplitBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionModeWebSearchDrawable} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionOverflowButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionOverflowMenuStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#activityChooserViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#alertDialogButtonGroupStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#alertDialogCenterButtons} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#alertDialogStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#alertDialogTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#autoCompleteTextViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#borderlessButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonBarButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonBarNegativeButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonBarNeutralButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonBarPositiveButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonStyleSmall} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#checkboxStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#checkedTextViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorAccent} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorBackgroundFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorButtonNormal} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorControlActivated} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorControlHighlight} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorControlNormal} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorPrimary} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorPrimaryDark} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorSwitchThumbNormal} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <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 com.hdpolover.ybbproject:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#controlBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dialogCornerRadius} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:dialogCornerRadius */ public static final int AppCompatTheme_dialogCornerRadius=59; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dialogPreferredPadding} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=60; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dialogTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:dialogTheme */ public static final int AppCompatTheme_dialogTheme=61; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dividerHorizontal} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=62; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dividerVertical} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:dividerVertical */ public static final int AppCompatTheme_dividerVertical=63; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dropDownListViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=64; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dropdownListPreferredItemHeight} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#editTextBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:editTextBackground */ public static final int AppCompatTheme_editTextBackground=66; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:editTextColor */ public static final int AppCompatTheme_editTextColor=67; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#editTextStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:editTextStyle */ public static final int AppCompatTheme_editTextStyle=68; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#homeAsUpIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=69; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#imageButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=70; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listChoiceBackgroundIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listChoiceIndicatorMultipleAnimated} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listChoiceIndicatorMultipleAnimated */ public static final int AppCompatTheme_listChoiceIndicatorMultipleAnimated=72; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listChoiceIndicatorSingleAnimated} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listChoiceIndicatorSingleAnimated */ public static final int AppCompatTheme_listChoiceIndicatorSingleAnimated=73; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listDividerAlertDialog} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=74; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listMenuViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=75; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPopupWindowStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=76; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemHeight} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=77; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemHeightLarge} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=78; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemHeightSmall} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=79; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemPaddingEnd} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemPaddingEnd */ public static final int AppCompatTheme_listPreferredItemPaddingEnd=80; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemPaddingLeft} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=81; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemPaddingRight} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=82; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#listPreferredItemPaddingStart} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:listPreferredItemPaddingStart */ public static final int AppCompatTheme_listPreferredItemPaddingStart=83; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#panelBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:panelBackground */ public static final int AppCompatTheme_panelBackground=84; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#panelMenuListTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=85; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#panelMenuListWidth} * 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=86; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#popupMenuStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=87; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#popupWindowStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=88; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#radioButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=89; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#ratingBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=90; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#ratingBarStyleIndicator} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=91; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#ratingBarStyleSmall} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=92; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#searchViewStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=93; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#seekBarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=94; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#selectableItemBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=95; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#selectableItemBackgroundBorderless} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=96; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#spinnerDropDownItemStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=97; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#spinnerStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=98; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#switchStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:switchStyle */ public static final int AppCompatTheme_switchStyle=99; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceLargePopupMenu} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=100; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceListItem} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=101; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceListItemSecondary} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=102; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceListItemSmall} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=103; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearancePopupMenuHeader} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=104; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceSearchResultSubtitle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=105; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceSearchResultTitle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=106; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceSmallPopupMenu} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=107; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=108; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=109; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#toolbarNavigationButtonStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=110; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#toolbarStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=111; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=112; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tooltipFrameBackground} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=113; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#viewInflaterClass} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:viewInflaterClass */ public static final int AppCompatTheme_viewInflaterClass=114; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#windowActionBar} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:windowActionBar */ public static final int AppCompatTheme_windowActionBar=115; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#windowActionBarOverlay} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=116; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#windowActionModeOverlay} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=117; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * 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. * * @attr name com.hdpolover.ybbproject:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=118; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * 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. * * @attr name com.hdpolover.ybbproject:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=119; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * 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. * * @attr name com.hdpolover.ybbproject:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=120; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * 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. * * @attr name com.hdpolover.ybbproject:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=121; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * 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. * * @attr name com.hdpolover.ybbproject:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=122; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * 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. * * @attr name com.hdpolover.ybbproject:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=123; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#windowNoTitle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=124; /** * Attributes that can be used with a BottomAppBar. * <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 #BottomAppBar_backgroundTint com.hdpolover.ybbproject:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabAlignmentMode com.hdpolover.ybbproject:fabAlignmentMode}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleMargin com.hdpolover.ybbproject:fabCradleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleRoundedCornerRadius com.hdpolover.ybbproject:fabCradleRoundedCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleVerticalOffset com.hdpolover.ybbproject:fabCradleVerticalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_hideOnScroll com.hdpolover.ybbproject:hideOnScroll}</code></td><td></td></tr> * </table> * @see #BottomAppBar_backgroundTint * @see #BottomAppBar_fabAlignmentMode * @see #BottomAppBar_fabCradleMargin * @see #BottomAppBar_fabCradleRoundedCornerRadius * @see #BottomAppBar_fabCradleVerticalOffset * @see #BottomAppBar_hideOnScroll */ public static final int[] BottomAppBar={ 0x7f030034, 0x7f0300de, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f030100 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#backgroundTint} * attribute's value can be found in the {@link #BottomAppBar} array. * * <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 com.hdpolover.ybbproject:backgroundTint */ public static final int BottomAppBar_backgroundTint=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fabAlignmentMode} * attribute's value can be found in the {@link #BottomAppBar} 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>center</td><td>0</td><td></td></tr> * <tr><td>end</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:fabAlignmentMode */ public static final int BottomAppBar_fabAlignmentMode=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fabCradleMargin} * attribute's value can be found in the {@link #BottomAppBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:fabCradleMargin */ public static final int BottomAppBar_fabCradleMargin=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fabCradleRoundedCornerRadius} * attribute's value can be found in the {@link #BottomAppBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:fabCradleRoundedCornerRadius */ public static final int BottomAppBar_fabCradleRoundedCornerRadius=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fabCradleVerticalOffset} * attribute's value can be found in the {@link #BottomAppBar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:fabCradleVerticalOffset */ public static final int BottomAppBar_fabCradleVerticalOffset=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hideOnScroll} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:hideOnScroll */ public static final int BottomAppBar_hideOnScroll=5; /** * 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 com.hdpolover.ybbproject:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemBackground com.hdpolover.ybbproject:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemHorizontalTranslationEnabled com.hdpolover.ybbproject:itemHorizontalTranslationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconSize com.hdpolover.ybbproject:itemIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconTint com.hdpolover.ybbproject:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceActive com.hdpolover.ybbproject:itemTextAppearanceActive}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceInactive com.hdpolover.ybbproject:itemTextAppearanceInactive}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextColor com.hdpolover.ybbproject:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_labelVisibilityMode com.hdpolover.ybbproject:labelVisibilityMode}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_menu com.hdpolover.ybbproject:menu}</code></td><td></td></tr> * </table> * @see #BottomNavigationView_elevation * @see #BottomNavigationView_itemBackground * @see #BottomNavigationView_itemHorizontalTranslationEnabled * @see #BottomNavigationView_itemIconSize * @see #BottomNavigationView_itemIconTint * @see #BottomNavigationView_itemTextAppearanceActive * @see #BottomNavigationView_itemTextAppearanceInactive * @see #BottomNavigationView_itemTextColor * @see #BottomNavigationView_labelVisibilityMode * @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView={ 0x7f0300cf, 0x7f030117, 0x7f030119, 0x7f03011b, 0x7f03011c, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030124, 0x7f03017e }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#elevation} * attribute's value can be found in the {@link #BottomNavigationView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:elevation */ public static final int BottomNavigationView_elevation=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemBackground} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:itemBackground */ public static final int BottomNavigationView_itemBackground=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemHorizontalTranslationEnabled} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:itemHorizontalTranslationEnabled */ public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemIconSize} * attribute's value can be found in the {@link #BottomNavigationView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:itemIconSize */ public static final int BottomNavigationView_itemIconSize=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemIconTint} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <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 com.hdpolover.ybbproject:itemIconTint */ public static final int BottomNavigationView_itemIconTint=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemTextAppearanceActive} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:itemTextAppearanceActive */ public static final int BottomNavigationView_itemTextAppearanceActive=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemTextAppearanceInactive} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:itemTextAppearanceInactive */ public static final int BottomNavigationView_itemTextAppearanceInactive=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemTextColor} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <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 com.hdpolover.ybbproject:itemTextColor */ public static final int BottomNavigationView_itemTextColor=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#labelVisibilityMode} * attribute's value can be found in the {@link #BottomNavigationView} 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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>labeled</td><td>1</td><td></td></tr> * <tr><td>selected</td><td>0</td><td></td></tr> * <tr><td>unlabeled</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:labelVisibilityMode */ public static final int BottomNavigationView_labelVisibilityMode=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#menu} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:menu */ public static final int BottomNavigationView_menu=9; /** * 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_fitToContents com.hdpolover.ybbproject:behavior_fitToContents}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.hdpolover.ybbproject:behavior_hideable}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.hdpolover.ybbproject:behavior_peekHeight}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.hdpolover.ybbproject:behavior_skipCollapsed}</code></td><td></td></tr> * </table> * @see #BottomSheetBehavior_Layout_behavior_fitToContents * @see #BottomSheetBehavior_Layout_behavior_hideable * @see #BottomSheetBehavior_Layout_behavior_peekHeight * @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout={ 0x7f03003a, 0x7f03003b, 0x7f03003d, 0x7f03003e }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#behavior_fitToContents} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:behavior_fitToContents */ public static final int BottomSheetBehavior_Layout_behavior_fitToContents=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#behavior_hideable} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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), and * mm (millimeters). * <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>auto</td><td>ffffffff</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#behavior_skipCollapsed} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=3; /** * 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 com.hdpolover.ybbproject:allowStacking}</code></td><td></td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f030026 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#allowStacking} * attribute's value can be found in the {@link #ButtonBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:allowStacking */ public static final 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_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardBackgroundColor com.hdpolover.ybbproject:cardBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardCornerRadius com.hdpolover.ybbproject:cardCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardElevation com.hdpolover.ybbproject:cardElevation}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardMaxElevation com.hdpolover.ybbproject:cardMaxElevation}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.hdpolover.ybbproject:cardPreventCornerOverlap}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardUseCompatPadding com.hdpolover.ybbproject:cardUseCompatPadding}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_contentPadding com.hdpolover.ybbproject:contentPadding}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_contentPaddingBottom com.hdpolover.ybbproject:contentPaddingBottom}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_contentPaddingLeft com.hdpolover.ybbproject:contentPaddingLeft}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_contentPaddingRight com.hdpolover.ybbproject:contentPaddingRight}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_contentPaddingTop com.hdpolover.ybbproject:contentPaddingTop}</code></td><td></td></tr> * </table> * @see #CardView_android_minWidth * @see #CardView_android_minHeight * @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, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad }; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name android:minWidth */ public static final int CardView_android_minWidth=0; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name android:minHeight */ public static final int CardView_android_minHeight=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cardBackgroundColor} * attribute's value can be found in the {@link #CardView} array. * * <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 com.hdpolover.ybbproject:cardBackgroundColor */ public static final int CardView_cardBackgroundColor=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cardCornerRadius} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:cardCornerRadius */ public static final int CardView_cardCornerRadius=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cardElevation} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:cardElevation */ public static final int CardView_cardElevation=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cardMaxElevation} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:cardMaxElevation */ public static final int CardView_cardMaxElevation=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cardPreventCornerOverlap} * attribute's value can be found in the {@link #CardView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cardUseCompatPadding} * attribute's value can be found in the {@link #CardView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentPadding} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentPadding */ public static final int CardView_contentPadding=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentPaddingBottom} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentPaddingBottom */ public static final int CardView_contentPaddingBottom=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentPaddingLeft} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentPaddingLeft */ public static final int CardView_contentPaddingLeft=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentPaddingRight} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentPaddingRight */ public static final int CardView_contentPaddingRight=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentPaddingTop} * attribute's value can be found in the {@link #CardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentPaddingTop */ public static final int CardView_contentPaddingTop=12; /** * Attributes that can be used with a Chip. * <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 #Chip_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_ellipsize android:ellipsize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_text android:text}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIcon com.hdpolover.ybbproject:checkedIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIconEnabled com.hdpolover.ybbproject:checkedIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIconVisible com.hdpolover.ybbproject:checkedIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipBackgroundColor com.hdpolover.ybbproject:chipBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipCornerRadius com.hdpolover.ybbproject:chipCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipEndPadding com.hdpolover.ybbproject:chipEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIcon com.hdpolover.ybbproject:chipIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconEnabled com.hdpolover.ybbproject:chipIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconSize com.hdpolover.ybbproject:chipIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconTint com.hdpolover.ybbproject:chipIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconVisible com.hdpolover.ybbproject:chipIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipMinHeight com.hdpolover.ybbproject:chipMinHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStartPadding com.hdpolover.ybbproject:chipStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStrokeColor com.hdpolover.ybbproject:chipStrokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStrokeWidth com.hdpolover.ybbproject:chipStrokeWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIcon com.hdpolover.ybbproject:closeIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconEnabled com.hdpolover.ybbproject:closeIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconEndPadding com.hdpolover.ybbproject:closeIconEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconSize com.hdpolover.ybbproject:closeIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconStartPadding com.hdpolover.ybbproject:closeIconStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconTint com.hdpolover.ybbproject:closeIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconVisible com.hdpolover.ybbproject:closeIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_hideMotionSpec com.hdpolover.ybbproject:hideMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_iconEndPadding com.hdpolover.ybbproject:iconEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_iconStartPadding com.hdpolover.ybbproject:iconStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_rippleColor com.hdpolover.ybbproject:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_showMotionSpec com.hdpolover.ybbproject:showMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_textEndPadding com.hdpolover.ybbproject:textEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_textStartPadding com.hdpolover.ybbproject:textStartPadding}</code></td><td></td></tr> * </table> * @see #Chip_android_textAppearance * @see #Chip_android_ellipsize * @see #Chip_android_maxWidth * @see #Chip_android_text * @see #Chip_android_checkable * @see #Chip_checkedIcon * @see #Chip_checkedIconEnabled * @see #Chip_checkedIconVisible * @see #Chip_chipBackgroundColor * @see #Chip_chipCornerRadius * @see #Chip_chipEndPadding * @see #Chip_chipIcon * @see #Chip_chipIconEnabled * @see #Chip_chipIconSize * @see #Chip_chipIconTint * @see #Chip_chipIconVisible * @see #Chip_chipMinHeight * @see #Chip_chipStartPadding * @see #Chip_chipStrokeColor * @see #Chip_chipStrokeWidth * @see #Chip_closeIcon * @see #Chip_closeIconEnabled * @see #Chip_closeIconEndPadding * @see #Chip_closeIconSize * @see #Chip_closeIconStartPadding * @see #Chip_closeIconTint * @see #Chip_closeIconVisible * @see #Chip_hideMotionSpec * @see #Chip_iconEndPadding * @see #Chip_iconStartPadding * @see #Chip_rippleColor * @see #Chip_showMotionSpec * @see #Chip_textEndPadding * @see #Chip_textStartPadding */ public static final int[] Chip={ 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f03006e, 0x7f03006f, 0x7f030070, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030076, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f030080, 0x7f030081, 0x7f030082, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f0300fe, 0x7f030108, 0x7f03010c, 0x7f0301a0, 0x7f0301ad, 0x7f030202, 0x7f030205 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int Chip_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#ellipsize} * attribute's value can be found in the {@link #Chip} 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>end</td><td>3</td><td></td></tr> * <tr><td>marquee</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>start</td><td>1</td><td></td></tr> * </table> * * @attr name android:ellipsize */ public static final int Chip_android_ellipsize=1; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int Chip_android_maxWidth=2; /** * <p>This symbol is the offset where the {@link android.R.attr#text} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:text */ public static final int Chip_android_text=3; /** * <p>This symbol is the offset where the {@link android.R.attr#checkable} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int Chip_android_checkable=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#checkedIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:checkedIcon */ public static final int Chip_checkedIcon=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#checkedIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:checkedIconEnabled */ public static final int Chip_checkedIconEnabled=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#checkedIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:checkedIconVisible */ public static final int Chip_checkedIconVisible=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipBackgroundColor} * attribute's value can be found in the {@link #Chip} array. * * <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 com.hdpolover.ybbproject:chipBackgroundColor */ public static final int Chip_chipBackgroundColor=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipCornerRadius} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipCornerRadius */ public static final int Chip_chipCornerRadius=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipEndPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipEndPadding */ public static final int Chip_chipEndPadding=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:chipIcon */ public static final int Chip_chipIcon=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:chipIconEnabled */ public static final int Chip_chipIconEnabled=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipIconSize} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipIconSize */ public static final int Chip_chipIconSize=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipIconTint} * attribute's value can be found in the {@link #Chip} array. * * <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 com.hdpolover.ybbproject:chipIconTint */ public static final int Chip_chipIconTint=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:chipIconVisible */ public static final int Chip_chipIconVisible=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipMinHeight} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipMinHeight */ public static final int Chip_chipMinHeight=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipStartPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipStartPadding */ public static final int Chip_chipStartPadding=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipStrokeColor} * attribute's value can be found in the {@link #Chip} array. * * <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 com.hdpolover.ybbproject:chipStrokeColor */ public static final int Chip_chipStrokeColor=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipStrokeWidth} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipStrokeWidth */ public static final int Chip_chipStrokeWidth=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:closeIcon */ public static final int Chip_closeIcon=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:closeIconEnabled */ public static final int Chip_closeIconEnabled=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIconEndPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:closeIconEndPadding */ public static final int Chip_closeIconEndPadding=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIconSize} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:closeIconSize */ public static final int Chip_closeIconSize=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIconStartPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:closeIconStartPadding */ public static final int Chip_closeIconStartPadding=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIconTint} * attribute's value can be found in the {@link #Chip} array. * * <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 com.hdpolover.ybbproject:closeIconTint */ public static final int Chip_closeIconTint=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:closeIconVisible */ public static final int Chip_closeIconVisible=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hideMotionSpec} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:hideMotionSpec */ public static final int Chip_hideMotionSpec=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconEndPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:iconEndPadding */ public static final int Chip_iconEndPadding=28; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconStartPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:iconStartPadding */ public static final int Chip_iconStartPadding=29; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#rippleColor} * attribute's value can be found in the {@link #Chip} array. * * <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 com.hdpolover.ybbproject:rippleColor */ public static final int Chip_rippleColor=30; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#showMotionSpec} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:showMotionSpec */ public static final int Chip_showMotionSpec=31; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textEndPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:textEndPadding */ public static final int Chip_textEndPadding=32; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textStartPadding} * attribute's value can be found in the {@link #Chip} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:textStartPadding */ public static final int Chip_textStartPadding=33; /** * Attributes that can be used with a ChipGroup. * <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 #ChipGroup_checkedChip com.hdpolover.ybbproject:checkedChip}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacing com.hdpolover.ybbproject:chipSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacingHorizontal com.hdpolover.ybbproject:chipSpacingHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacingVertical com.hdpolover.ybbproject:chipSpacingVertical}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_singleLine com.hdpolover.ybbproject:singleLine}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_singleSelection com.hdpolover.ybbproject:singleSelection}</code></td><td></td></tr> * </table> * @see #ChipGroup_checkedChip * @see #ChipGroup_chipSpacing * @see #ChipGroup_chipSpacingHorizontal * @see #ChipGroup_chipSpacingVertical * @see #ChipGroup_singleLine * @see #ChipGroup_singleSelection */ public static final int[] ChipGroup={ 0x7f03006d, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f0301b1, 0x7f0301b2 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#checkedChip} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:checkedChip */ public static final int ChipGroup_checkedChip=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipSpacing} * attribute's value can be found in the {@link #ChipGroup} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipSpacing */ public static final int ChipGroup_chipSpacing=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipSpacingHorizontal} * attribute's value can be found in the {@link #ChipGroup} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipSpacingHorizontal */ public static final int ChipGroup_chipSpacingHorizontal=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipSpacingVertical} * attribute's value can be found in the {@link #ChipGroup} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:chipSpacingVertical */ public static final int ChipGroup_chipSpacingVertical=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#singleLine} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:singleLine */ public static final int ChipGroup_singleLine=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#singleSelection} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:singleSelection */ public static final int ChipGroup_singleSelection=5; /** * Attributes that can be used with a CircularImageView. * <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 #CircularImageView_c_background_color com.hdpolover.ybbproject:c_background_color}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_border com.hdpolover.ybbproject:c_border}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_border_color com.hdpolover.ybbproject:c_border_color}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_border_width com.hdpolover.ybbproject:c_border_width}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_shadow com.hdpolover.ybbproject:c_shadow}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_shadow_color com.hdpolover.ybbproject:c_shadow_color}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_shadow_gravity com.hdpolover.ybbproject:c_shadow_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #CircularImageView_c_shadow_radius com.hdpolover.ybbproject:c_shadow_radius}</code></td><td></td></tr> * </table> * @see #CircularImageView_c_background_color * @see #CircularImageView_c_border * @see #CircularImageView_c_border_color * @see #CircularImageView_c_border_width * @see #CircularImageView_c_shadow * @see #CircularImageView_c_shadow_color * @see #CircularImageView_c_shadow_gravity * @see #CircularImageView_c_shadow_radius */ public static final int[] CircularImageView={ 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_background_color} * attribute's value can be found in the {@link #CircularImageView} array. * * <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 com.hdpolover.ybbproject:c_background_color */ public static final int CircularImageView_c_background_color=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_border} * attribute's value can be found in the {@link #CircularImageView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:c_border */ public static final int CircularImageView_c_border=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_border_color} * attribute's value can be found in the {@link #CircularImageView} array. * * <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 com.hdpolover.ybbproject:c_border_color */ public static final int CircularImageView_c_border_color=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_border_width} * attribute's value can be found in the {@link #CircularImageView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:c_border_width */ public static final int CircularImageView_c_border_width=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_shadow} * attribute's value can be found in the {@link #CircularImageView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:c_shadow */ public static final int CircularImageView_c_shadow=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_shadow_color} * attribute's value can be found in the {@link #CircularImageView} array. * * <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 com.hdpolover.ybbproject:c_shadow_color */ public static final int CircularImageView_c_shadow_color=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_shadow_gravity} * attribute's value can be found in the {@link #CircularImageView} 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>bottom</td><td>3</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>end</td><td>5</td><td></td></tr> * <tr><td>start</td><td>4</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:c_shadow_gravity */ public static final int CircularImageView_c_shadow_gravity=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#c_shadow_radius} * attribute's value can be found in the {@link #CircularImageView} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:c_shadow_radius */ public static final int CircularImageView_c_shadow_radius=7; /** * 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 com.hdpolover.ybbproject:collapsedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.hdpolover.ybbproject:collapsedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.hdpolover.ybbproject:contentScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.hdpolover.ybbproject:expandedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.hdpolover.ybbproject:expandedTitleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.hdpolover.ybbproject:expandedTitleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.hdpolover.ybbproject:expandedTitleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.hdpolover.ybbproject:expandedTitleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.hdpolover.ybbproject:expandedTitleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.hdpolover.ybbproject:expandedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.hdpolover.ybbproject:scrimAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.hdpolover.ybbproject:scrimVisibleHeightTrigger}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.hdpolover.ybbproject:statusBarScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_title com.hdpolover.ybbproject:title}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.hdpolover.ybbproject:titleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.hdpolover.ybbproject: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={ 0x7f03008f, 0x7f030090, 0x7f0300ae, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0301a2, 0x7f0301a4, 0x7f0301c2, 0x7f030210, 0x7f030211, 0x7f03021b }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#collapsedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <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 com.hdpolover.ybbproject:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandedTitleMargin} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandedTitleMarginBottom} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandedTitleMarginEnd} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandedTitleMarginStart} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandedTitleMarginTop} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#expandedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#scrimAnimationDuration} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#scrimVisibleHeightTrigger} * attribute's value can be found in the {@link #CollapsingToolbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#statusBarScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <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 com.hdpolover.ybbproject:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#title} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:title */ public static final int CollapsingToolbarLayout_title=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleEnabled} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#toolbarId} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId=15; /** * 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 com.hdpolover.ybbproject:layout_collapseMode}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.hdpolover.ybbproject:layout_collapseParallaxMultiplier}</code></td><td></td></tr> * </table> * @see #CollapsingToolbarLayout_Layout_layout_collapseMode * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout={ 0x7f03012b, 0x7f03012c }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_collapseParallaxMultiplier} * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_collapseParallaxMultiplier */ public static final 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_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_alpha com.hdpolover.ybbproject:alpha}</code></td><td></td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f030027 }; /** * <p>This symbol is the offset where the {@link android.R.attr#color} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <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:color */ public static final int ColorStateListItem_android_color=0; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ColorStateListItem_android_alpha=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:alpha */ public static final int ColorStateListItem_alpha=2; /** * 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_buttonCompat com.hdpolover.ybbproject:buttonCompat}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTint com.hdpolover.ybbproject:buttonTint}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.hdpolover.ybbproject:buttonTintMode}</code></td><td></td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonCompat * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f030053, 0x7f03005a, 0x7f03005b }; /** * <p>This symbol is the offset where the {@link android.R.attr#button} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:button */ public static final int CompoundButton_android_button=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonCompat} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:buttonCompat */ public static final int CompoundButton_buttonCompat=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonTint} * attribute's value can be found in the {@link #CompoundButton} array. * * <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 com.hdpolover.ybbproject:buttonTint */ public static final int CompoundButton_buttonTint=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:buttonTintMode */ public static final int CompoundButton_buttonTintMode=3; /** * Attributes that can be used with a ConstraintLayout_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 #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.hdpolover.ybbproject:barrierAllowsGoneWidgets}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_barrierDirection com.hdpolover.ybbproject:barrierDirection}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_chainUseRtl com.hdpolover.ybbproject:chainUseRtl}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.hdpolover.ybbproject:constraintSet}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraint_referenced_ids com.hdpolover.ybbproject:constraint_referenced_ids}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedHeight com.hdpolover.ybbproject:layout_constrainedHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedWidth com.hdpolover.ybbproject:layout_constrainedWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.hdpolover.ybbproject:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.hdpolover.ybbproject:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.hdpolover.ybbproject:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.hdpolover.ybbproject:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.hdpolover.ybbproject:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircle com.hdpolover.ybbproject:layout_constraintCircle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.hdpolover.ybbproject:layout_constraintCircleAngle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.hdpolover.ybbproject:layout_constraintCircleRadius}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.hdpolover.ybbproject:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.hdpolover.ybbproject:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.hdpolover.ybbproject:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.hdpolover.ybbproject:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.hdpolover.ybbproject:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.hdpolover.ybbproject:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.hdpolover.ybbproject:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.hdpolover.ybbproject:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.hdpolover.ybbproject:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.hdpolover.ybbproject:layout_constraintHeight_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.hdpolover.ybbproject:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.hdpolover.ybbproject:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.hdpolover.ybbproject:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.hdpolover.ybbproject:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.hdpolover.ybbproject:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.hdpolover.ybbproject:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.hdpolover.ybbproject:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.hdpolover.ybbproject:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.hdpolover.ybbproject:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.hdpolover.ybbproject:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.hdpolover.ybbproject:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.hdpolover.ybbproject:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.hdpolover.ybbproject:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.hdpolover.ybbproject:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.hdpolover.ybbproject:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.hdpolover.ybbproject:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.hdpolover.ybbproject:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.hdpolover.ybbproject:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.hdpolover.ybbproject:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.hdpolover.ybbproject:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.hdpolover.ybbproject:layout_constraintWidth_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.hdpolover.ybbproject:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.hdpolover.ybbproject:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.hdpolover.ybbproject:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.hdpolover.ybbproject:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.hdpolover.ybbproject:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.hdpolover.ybbproject:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.hdpolover.ybbproject:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.hdpolover.ybbproject:layout_goneMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.hdpolover.ybbproject:layout_optimizationLevel}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_Layout_android_orientation * @see #ConstraintLayout_Layout_android_maxWidth * @see #ConstraintLayout_Layout_android_maxHeight * @see #ConstraintLayout_Layout_android_minWidth * @see #ConstraintLayout_Layout_android_minHeight * @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets * @see #ConstraintLayout_Layout_barrierDirection * @see #ConstraintLayout_Layout_chainUseRtl * @see #ConstraintLayout_Layout_constraintSet * @see #ConstraintLayout_Layout_constraint_referenced_ids * @see #ConstraintLayout_Layout_layout_constrainedHeight * @see #ConstraintLayout_Layout_layout_constrainedWidth * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf * @see #ConstraintLayout_Layout_layout_constraintBottom_creator * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf * @see #ConstraintLayout_Layout_layout_constraintCircle * @see #ConstraintLayout_Layout_layout_constraintCircleAngle * @see #ConstraintLayout_Layout_layout_constraintCircleRadius * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf * @see #ConstraintLayout_Layout_layout_constraintGuide_begin * @see #ConstraintLayout_Layout_layout_constraintGuide_end * @see #ConstraintLayout_Layout_layout_constraintGuide_percent * @see #ConstraintLayout_Layout_layout_constraintHeight_default * @see #ConstraintLayout_Layout_layout_constraintHeight_max * @see #ConstraintLayout_Layout_layout_constraintHeight_min * @see #ConstraintLayout_Layout_layout_constraintHeight_percent * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight * @see #ConstraintLayout_Layout_layout_constraintLeft_creator * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf * @see #ConstraintLayout_Layout_layout_constraintRight_creator * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf * @see #ConstraintLayout_Layout_layout_constraintTop_creator * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf * @see #ConstraintLayout_Layout_layout_constraintVertical_bias * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle * @see #ConstraintLayout_Layout_layout_constraintVertical_weight * @see #ConstraintLayout_Layout_layout_constraintWidth_default * @see #ConstraintLayout_Layout_layout_constraintWidth_max * @see #ConstraintLayout_Layout_layout_constraintWidth_min * @see #ConstraintLayout_Layout_layout_constraintWidth_percent * @see #ConstraintLayout_Layout_layout_editor_absoluteX * @see #ConstraintLayout_Layout_layout_editor_absoluteY * @see #ConstraintLayout_Layout_layout_goneMarginBottom * @see #ConstraintLayout_Layout_layout_goneMarginEnd * @see #ConstraintLayout_Layout_layout_goneMarginLeft * @see #ConstraintLayout_Layout_layout_goneMarginRight * @see #ConstraintLayout_Layout_layout_goneMarginStart * @see #ConstraintLayout_Layout_layout_goneMarginTop * @see #ConstraintLayout_Layout_layout_optimizationLevel */ public static final int[] ConstraintLayout_Layout={ 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f030037, 0x7f030038, 0x7f03006b, 0x7f03009f, 0x7f0300a0, 0x7f03012d, 0x7f03012e, 0x7f03012f, 0x7f030130, 0x7f030131, 0x7f030132, 0x7f030133, 0x7f030134, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f030161 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintLayout_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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int ConstraintLayout_Layout_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int ConstraintLayout_Layout_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link android.R.attr#maxHeight} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:maxHeight */ public static final int ConstraintLayout_Layout_android_maxHeight=2; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ConstraintLayout_Layout_android_minWidth=3; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name android:minHeight */ public static final int ConstraintLayout_Layout_android_minHeight=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#barrierAllowsGoneWidgets} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:barrierAllowsGoneWidgets */ public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#barrierDirection} * attribute's value can be found in the {@link #ConstraintLayout_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>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:barrierDirection */ public static final int ConstraintLayout_Layout_barrierDirection=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chainUseRtl} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:chainUseRtl */ public static final int ConstraintLayout_Layout_chainUseRtl=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#constraintSet} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#constraint_referenced_ids} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:constraint_referenced_ids */ public static final int ConstraintLayout_Layout_constraint_referenced_ids=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constrainedHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:layout_constrainedHeight */ public static final int ConstraintLayout_Layout_layout_constrainedHeight=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constrainedWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:layout_constrainedWidth */ public static final int ConstraintLayout_Layout_layout_constrainedWidth=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintCircle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:layout_constraintCircle */ public static final int ConstraintLayout_Layout_layout_constraintCircle=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintCircleAngle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintCircleAngle */ public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintCircleRadius} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_constraintCircleRadius */ public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintLayout_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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_percent */ public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintLayout_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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_percent */ public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight=56; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart=57; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintLayout_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop=58; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_optimizationLevel} * attribute's value can be found in the {@link #ConstraintLayout_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>barrier</td><td>2</td><td></td></tr> * <tr><td>chains</td><td>4</td><td></td></tr> * <tr><td>dimensions</td><td>8</td><td></td></tr> * <tr><td>direct</td><td>1</td><td></td></tr> * <tr><td>groups</td><td>20</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>standard</td><td>7</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_optimizationLevel */ public static final int ConstraintLayout_Layout_layout_optimizationLevel=59; /** * Attributes that can be used with a ConstraintLayout_placeholder. * <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 #ConstraintLayout_placeholder_content com.hdpolover.ybbproject:content}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_placeholder_emptyVisibility com.hdpolover.ybbproject:emptyVisibility}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_placeholder_content * @see #ConstraintLayout_placeholder_emptyVisibility */ public static final int[] ConstraintLayout_placeholder={ 0x7f0300a1, 0x7f0300d0 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#content} * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:content */ public static final int ConstraintLayout_placeholder_content=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#emptyVisibility} * attribute's value can be found in the {@link #ConstraintLayout_placeholder} 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>gone</td><td>0</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:emptyVisibility */ public static final int ConstraintLayout_placeholder_emptyVisibility=1; /** * Attributes that can be used with a ConstraintSet. * <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 #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_maxHeight android:maxHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotation android:rotation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_barrierAllowsGoneWidgets com.hdpolover.ybbproject:barrierAllowsGoneWidgets}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_barrierDirection com.hdpolover.ybbproject:barrierDirection}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_chainUseRtl com.hdpolover.ybbproject:chainUseRtl}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_constraint_referenced_ids com.hdpolover.ybbproject:constraint_referenced_ids}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constrainedHeight com.hdpolover.ybbproject:layout_constrainedHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constrainedWidth com.hdpolover.ybbproject:layout_constrainedWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.hdpolover.ybbproject:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.hdpolover.ybbproject:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.hdpolover.ybbproject:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.hdpolover.ybbproject:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.hdpolover.ybbproject:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircle com.hdpolover.ybbproject:layout_constraintCircle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircleAngle com.hdpolover.ybbproject:layout_constraintCircleAngle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircleRadius com.hdpolover.ybbproject:layout_constraintCircleRadius}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.hdpolover.ybbproject:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.hdpolover.ybbproject:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.hdpolover.ybbproject:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.hdpolover.ybbproject:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.hdpolover.ybbproject:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.hdpolover.ybbproject:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.hdpolover.ybbproject:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.hdpolover.ybbproject:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.hdpolover.ybbproject:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_percent com.hdpolover.ybbproject:layout_constraintHeight_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.hdpolover.ybbproject:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.hdpolover.ybbproject:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.hdpolover.ybbproject:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.hdpolover.ybbproject:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.hdpolover.ybbproject:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.hdpolover.ybbproject:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.hdpolover.ybbproject:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.hdpolover.ybbproject:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.hdpolover.ybbproject:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.hdpolover.ybbproject:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.hdpolover.ybbproject:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.hdpolover.ybbproject:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.hdpolover.ybbproject:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.hdpolover.ybbproject:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.hdpolover.ybbproject:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.hdpolover.ybbproject:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.hdpolover.ybbproject:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.hdpolover.ybbproject:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.hdpolover.ybbproject:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.hdpolover.ybbproject:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_percent com.hdpolover.ybbproject:layout_constraintWidth_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.hdpolover.ybbproject:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.hdpolover.ybbproject:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.hdpolover.ybbproject:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.hdpolover.ybbproject:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.hdpolover.ybbproject:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.hdpolover.ybbproject:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.hdpolover.ybbproject:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.hdpolover.ybbproject:layout_goneMarginTop}</code></td><td></td></tr> * </table> * @see #ConstraintSet_android_orientation * @see #ConstraintSet_android_id * @see #ConstraintSet_android_visibility * @see #ConstraintSet_android_layout_width * @see #ConstraintSet_android_layout_height * @see #ConstraintSet_android_layout_marginLeft * @see #ConstraintSet_android_layout_marginTop * @see #ConstraintSet_android_layout_marginRight * @see #ConstraintSet_android_layout_marginBottom * @see #ConstraintSet_android_maxWidth * @see #ConstraintSet_android_maxHeight * @see #ConstraintSet_android_minWidth * @see #ConstraintSet_android_minHeight * @see #ConstraintSet_android_alpha * @see #ConstraintSet_android_transformPivotX * @see #ConstraintSet_android_transformPivotY * @see #ConstraintSet_android_translationX * @see #ConstraintSet_android_translationY * @see #ConstraintSet_android_scaleX * @see #ConstraintSet_android_scaleY * @see #ConstraintSet_android_rotation * @see #ConstraintSet_android_rotationX * @see #ConstraintSet_android_rotationY * @see #ConstraintSet_android_layout_marginStart * @see #ConstraintSet_android_layout_marginEnd * @see #ConstraintSet_android_translationZ * @see #ConstraintSet_android_elevation * @see #ConstraintSet_barrierAllowsGoneWidgets * @see #ConstraintSet_barrierDirection * @see #ConstraintSet_chainUseRtl * @see #ConstraintSet_constraint_referenced_ids * @see #ConstraintSet_layout_constrainedHeight * @see #ConstraintSet_layout_constrainedWidth * @see #ConstraintSet_layout_constraintBaseline_creator * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf * @see #ConstraintSet_layout_constraintBottom_creator * @see #ConstraintSet_layout_constraintBottom_toBottomOf * @see #ConstraintSet_layout_constraintBottom_toTopOf * @see #ConstraintSet_layout_constraintCircle * @see #ConstraintSet_layout_constraintCircleAngle * @see #ConstraintSet_layout_constraintCircleRadius * @see #ConstraintSet_layout_constraintDimensionRatio * @see #ConstraintSet_layout_constraintEnd_toEndOf * @see #ConstraintSet_layout_constraintEnd_toStartOf * @see #ConstraintSet_layout_constraintGuide_begin * @see #ConstraintSet_layout_constraintGuide_end * @see #ConstraintSet_layout_constraintGuide_percent * @see #ConstraintSet_layout_constraintHeight_default * @see #ConstraintSet_layout_constraintHeight_max * @see #ConstraintSet_layout_constraintHeight_min * @see #ConstraintSet_layout_constraintHeight_percent * @see #ConstraintSet_layout_constraintHorizontal_bias * @see #ConstraintSet_layout_constraintHorizontal_chainStyle * @see #ConstraintSet_layout_constraintHorizontal_weight * @see #ConstraintSet_layout_constraintLeft_creator * @see #ConstraintSet_layout_constraintLeft_toLeftOf * @see #ConstraintSet_layout_constraintLeft_toRightOf * @see #ConstraintSet_layout_constraintRight_creator * @see #ConstraintSet_layout_constraintRight_toLeftOf * @see #ConstraintSet_layout_constraintRight_toRightOf * @see #ConstraintSet_layout_constraintStart_toEndOf * @see #ConstraintSet_layout_constraintStart_toStartOf * @see #ConstraintSet_layout_constraintTop_creator * @see #ConstraintSet_layout_constraintTop_toBottomOf * @see #ConstraintSet_layout_constraintTop_toTopOf * @see #ConstraintSet_layout_constraintVertical_bias * @see #ConstraintSet_layout_constraintVertical_chainStyle * @see #ConstraintSet_layout_constraintVertical_weight * @see #ConstraintSet_layout_constraintWidth_default * @see #ConstraintSet_layout_constraintWidth_max * @see #ConstraintSet_layout_constraintWidth_min * @see #ConstraintSet_layout_constraintWidth_percent * @see #ConstraintSet_layout_editor_absoluteX * @see #ConstraintSet_layout_editor_absoluteY * @see #ConstraintSet_layout_goneMarginBottom * @see #ConstraintSet_layout_goneMarginEnd * @see #ConstraintSet_layout_goneMarginLeft * @see #ConstraintSet_layout_goneMarginRight * @see #ConstraintSet_layout_goneMarginStart * @see #ConstraintSet_layout_goneMarginTop */ public static final int[] ConstraintSet={ 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030037, 0x7f030038, 0x7f03006b, 0x7f0300a0, 0x7f03012d, 0x7f03012e, 0x7f03012f, 0x7f030130, 0x7f030131, 0x7f030132, 0x7f030133, 0x7f030134, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintSet} 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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int ConstraintSet_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ConstraintSet_android_id=1; /** * <p>This symbol is the offset where the {@link android.R.attr#visibility} * attribute's value can be found in the {@link #ConstraintSet} 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>gone</td><td>2</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * <tr><td>visible</td><td>0</td><td></td></tr> * </table> * * @attr name android:visibility */ public static final int ConstraintSet_android_visibility=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int ConstraintSet_android_layout_width=3; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int ConstraintSet_android_layout_height=4; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginLeft */ public static final int ConstraintSet_android_layout_marginLeft=5; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginTop */ public static final int ConstraintSet_android_layout_marginTop=6; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginRight */ public static final int ConstraintSet_android_layout_marginRight=7; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginBottom */ public static final int ConstraintSet_android_layout_marginBottom=8; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int ConstraintSet_android_maxWidth=9; /** * <p>This symbol is the offset where the {@link android.R.attr#maxHeight} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:maxHeight */ public static final int ConstraintSet_android_maxHeight=10; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ConstraintSet_android_minWidth=11; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:minHeight */ public static final int ConstraintSet_android_minHeight=12; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ConstraintSet_android_alpha=13; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotX} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:transformPivotX */ public static final int ConstraintSet_android_transformPivotX=14; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotY} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:transformPivotY */ public static final int ConstraintSet_android_transformPivotY=15; /** * <p>This symbol is the offset where the {@link android.R.attr#translationX} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:translationX */ public static final int ConstraintSet_android_translationX=16; /** * <p>This symbol is the offset where the {@link android.R.attr#translationY} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:translationY */ public static final int ConstraintSet_android_translationY=17; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleX */ public static final int ConstraintSet_android_scaleX=18; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleY */ public static final int ConstraintSet_android_scaleY=19; /** * <p>This symbol is the offset where the {@link android.R.attr#rotation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotation */ public static final int ConstraintSet_android_rotation=20; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationX */ public static final int ConstraintSet_android_rotationX=21; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationY */ public static final int ConstraintSet_android_rotationY=22; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginStart */ public static final int ConstraintSet_android_layout_marginStart=23; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:layout_marginEnd */ public static final int ConstraintSet_android_layout_marginEnd=24; /** * <p>This symbol is the offset where the {@link android.R.attr#translationZ} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:translationZ */ public static final int ConstraintSet_android_translationZ=25; /** * <p>This symbol is the offset where the {@link android.R.attr#elevation} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name android:elevation */ public static final int ConstraintSet_android_elevation=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#barrierAllowsGoneWidgets} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:barrierAllowsGoneWidgets */ public static final int ConstraintSet_barrierAllowsGoneWidgets=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#barrierDirection} * attribute's value can be found in the {@link #ConstraintSet} 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>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:barrierDirection */ public static final int ConstraintSet_barrierDirection=28; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chainUseRtl} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:chainUseRtl */ public static final int ConstraintSet_chainUseRtl=29; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#constraint_referenced_ids} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:constraint_referenced_ids */ public static final int ConstraintSet_constraint_referenced_ids=30; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constrainedHeight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:layout_constrainedHeight */ public static final int ConstraintSet_layout_constrainedHeight=31; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constrainedWidth} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:layout_constrainedWidth */ public static final int ConstraintSet_layout_constrainedWidth=32; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator=33; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=34; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator=35; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf=36; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf=37; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintCircle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:layout_constraintCircle */ public static final int ConstraintSet_layout_constraintCircle=38; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintCircleAngle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintCircleAngle */ public static final int ConstraintSet_layout_constraintCircleAngle=39; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintCircleRadius} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_constraintCircleRadius */ public static final int ConstraintSet_layout_constraintCircleRadius=40; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio=41; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf=42; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf=43; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin=44; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end=45; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent=46; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintSet} 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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default=47; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max=48; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min=49; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHeight_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintHeight_percent */ public static final int ConstraintSet_layout_constraintHeight_percent=50; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias=51; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} 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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=52; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight=53; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator=54; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf=55; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf=56; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator=57; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf=58; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf=59; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf=60; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf=61; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator=62; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf=63; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf=64; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias=65; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} 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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle=66; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight=67; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintSet} 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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default=68; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max=69; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * <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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min=70; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_constraintWidth_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:layout_constraintWidth_percent */ public static final int ConstraintSet_layout_constraintWidth_percent=71; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX=72; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY=73; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom=74; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd=75; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft=76; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight=77; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart=78; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintSet} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop=79; /** * 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 com.hdpolover.ybbproject:keylines}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.hdpolover.ybbproject:statusBarBackground}</code></td><td></td></tr> * </table> * @see #CoordinatorLayout_keylines * @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout={ 0x7f030123, 0x7f0301c1 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#keylines} * attribute's value can be found in the {@link #CoordinatorLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:keylines */ public static final int CoordinatorLayout_keylines=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#statusBarBackground} * attribute's value can be found in the {@link #CoordinatorLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 com.hdpolover.ybbproject:statusBarBackground */ public static final 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 com.hdpolover.ybbproject:layout_anchor}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.hdpolover.ybbproject:layout_anchorGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.hdpolover.ybbproject:layout_behavior}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.hdpolover.ybbproject:layout_dodgeInsetEdges}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.hdpolover.ybbproject:layout_insetEdge}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.hdpolover.ybbproject: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, 0x7f030128, 0x7f030129, 0x7f03012a, 0x7f030156, 0x7f03015f, 0x7f030160 }; /** * <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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_anchor} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_behavior} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>all</td><td>77</td><td></td></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>bottom</td><td>50</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout_keyline} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline=6; /** * 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 com.hdpolover.ybbproject:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.hdpolover.ybbproject:bottomSheetStyle}</code></td><td></td></tr> * </table> * @see #DesignTheme_bottomSheetDialogTheme * @see #DesignTheme_bottomSheetStyle */ public static final int[] DesignTheme={ 0x7f030043, 0x7f030044 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#bottomSheetDialogTheme} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#bottomSheetStyle} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle=1; /** * 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 com.hdpolover.ybbproject:arrowHeadLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.hdpolover.ybbproject:arrowShaftLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.hdpolover.ybbproject:barLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.hdpolover.ybbproject:color}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.hdpolover.ybbproject:drawableSize}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.hdpolover.ybbproject:gapBetweenBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.hdpolover.ybbproject:spinBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.hdpolover.ybbproject: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={ 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030091, 0x7f0300c4, 0x7f0300f7, 0x7f0301b6, 0x7f030207 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#arrowHeadLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#arrowShaftLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#barLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#color} * attribute's value can be found in the {@link #DrawerArrowToggle} array. * * <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 com.hdpolover.ybbproject:color */ public static final int DrawerArrowToggle_color=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#drawableSize} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#gapBetweenBars} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#spinBars} * attribute's value can be found in the {@link #DrawerArrowToggle} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#thickness} * attribute's value can be found in the {@link #DrawerArrowToggle} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:thickness */ public static final 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 com.hdpolover.ybbproject:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.hdpolover.ybbproject:backgroundTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_borderWidth com.hdpolover.ybbproject:borderWidth}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_elevation com.hdpolover.ybbproject:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_fabCustomSize com.hdpolover.ybbproject:fabCustomSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_fabSize com.hdpolover.ybbproject:fabSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_hideMotionSpec com.hdpolover.ybbproject:hideMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_hoveredFocusedTranslationZ com.hdpolover.ybbproject:hoveredFocusedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_maxImageSize com.hdpolover.ybbproject:maxImageSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.hdpolover.ybbproject:pressedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_rippleColor com.hdpolover.ybbproject:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_showMotionSpec com.hdpolover.ybbproject:showMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.hdpolover.ybbproject:useCompatPadding}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_backgroundTint * @see #FloatingActionButton_backgroundTintMode * @see #FloatingActionButton_borderWidth * @see #FloatingActionButton_elevation * @see #FloatingActionButton_fabCustomSize * @see #FloatingActionButton_fabSize * @see #FloatingActionButton_hideMotionSpec * @see #FloatingActionButton_hoveredFocusedTranslationZ * @see #FloatingActionButton_maxImageSize * @see #FloatingActionButton_pressedTranslationZ * @see #FloatingActionButton_rippleColor * @see #FloatingActionButton_showMotionSpec * @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton={ 0x7f030034, 0x7f030035, 0x7f03003f, 0x7f0300cf, 0x7f0300e2, 0x7f0300e3, 0x7f0300fe, 0x7f030106, 0x7f03017c, 0x7f030196, 0x7f0301a0, 0x7f0301ad, 0x7f030225 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#backgroundTint} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <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 com.hdpolover.ybbproject:backgroundTint */ public static final int FloatingActionButton_backgroundTint=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#borderWidth} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:borderWidth */ public static final int FloatingActionButton_borderWidth=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#elevation} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:elevation */ public static final int FloatingActionButton_elevation=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fabCustomSize} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:fabCustomSize */ public static final int FloatingActionButton_fabCustomSize=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:fabSize */ public static final int FloatingActionButton_fabSize=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hideMotionSpec} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:hideMotionSpec */ public static final int FloatingActionButton_hideMotionSpec=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hoveredFocusedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:hoveredFocusedTranslationZ */ public static final int FloatingActionButton_hoveredFocusedTranslationZ=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#maxImageSize} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:maxImageSize */ public static final int FloatingActionButton_maxImageSize=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#pressedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#rippleColor} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <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 com.hdpolover.ybbproject:rippleColor */ public static final int FloatingActionButton_rippleColor=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#showMotionSpec} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:showMotionSpec */ public static final int FloatingActionButton_showMotionSpec=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#useCompatPadding} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding=12; /** * 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 com.hdpolover.ybbproject:behavior_autoHide}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout={ 0x7f030039 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#behavior_autoHide} * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; /** * Attributes that can be used with a FlowLayout. * <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 #FlowLayout_itemSpacing com.hdpolover.ybbproject:itemSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #FlowLayout_lineSpacing com.hdpolover.ybbproject:lineSpacing}</code></td><td></td></tr> * </table> * @see #FlowLayout_itemSpacing * @see #FlowLayout_lineSpacing */ public static final int[] FlowLayout={ 0x7f03011e, 0x7f030166 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemSpacing} * attribute's value can be found in the {@link #FlowLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:itemSpacing */ public static final int FlowLayout_itemSpacing=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#lineSpacing} * attribute's value can be found in the {@link #FlowLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:lineSpacing */ public static final int FlowLayout_lineSpacing=1; /** * 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 com.hdpolover.ybbproject:fontProviderAuthority}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.hdpolover.ybbproject:fontProviderCerts}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.hdpolover.ybbproject:fontProviderFetchStrategy}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.hdpolover.ybbproject:fontProviderFetchTimeout}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.hdpolover.ybbproject:fontProviderPackage}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.hdpolover.ybbproject: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={ 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontProviderAuthority} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontProviderCerts} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>async</td><td>1</td><td></td></tr> * <tr><td>blocking</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>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>forever</td><td>ffffffff</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontProviderPackage} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontProviderQuery} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * 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_fontWeight android:fontWeight}</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_ttcIndex android:ttcIndex}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_font com.hdpolover.ybbproject:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.hdpolover.ybbproject:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontVariationSettings com.hdpolover.ybbproject:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.hdpolover.ybbproject:fontWeight}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_ttcIndex com.hdpolover.ybbproject:ttcIndex}</code></td><td></td></tr> * </table> * @see #FontFamilyFont_android_font * @see #FontFamilyFont_android_fontWeight * @see #FontFamilyFont_android_fontStyle * @see #FontFamilyFont_android_ttcIndex * @see #FontFamilyFont_android_fontVariationSettings * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontVariationSettings * @see #FontFamilyFont_fontWeight * @see #FontFamilyFont_ttcIndex */ public static final int[] FontFamilyFont={ 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0300eb, 0x7f0300f3, 0x7f0300f4, 0x7f0300f5, 0x7f030224 }; /** * <p>This symbol is the offset where the {@link android.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:font */ public static final int FontFamilyFont_android_font=0; /** * <p>This symbol is the offset where the {@link android.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight=1; /** * <p>This symbol is the offset where the {@link android.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>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#ttcIndex} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:ttcIndex */ public static final int FontFamilyFont_android_ttcIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontVariationSettings */ public static final int FontFamilyFont_android_fontVariationSettings=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:font */ public static final int FontFamilyFont_font=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:fontStyle */ public static final int FontFamilyFont_fontStyle=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontVariationSettings */ public static final int FontFamilyFont_fontVariationSettings=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:fontWeight */ public static final int FontFamilyFont_fontWeight=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#ttcIndex} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:ttcIndex */ public static final int FontFamilyFont_ttcIndex=9; /** * 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 com.hdpolover.ybbproject: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, 0x7f0300f6 }; /** * <p>This symbol is the offset where the {@link android.R.attr#foreground} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:foreground */ public static final 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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#foregroundInsidePadding} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding=2; /** * Attributes that can be used with a GradientColor. * <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 #GradientColor_android_startColor android:startColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td></td></tr> * </table> * @see #GradientColor_android_startColor * @see #GradientColor_android_endColor * @see #GradientColor_android_type * @see #GradientColor_android_centerX * @see #GradientColor_android_centerY * @see #GradientColor_android_gradientRadius * @see #GradientColor_android_tileMode * @see #GradientColor_android_centerColor * @see #GradientColor_android_startX * @see #GradientColor_android_startY * @see #GradientColor_android_endX * @see #GradientColor_android_endY */ public static final int[] GradientColor={ 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; /** * <p>This symbol is the offset where the {@link android.R.attr#startColor} * attribute's value can be found in the {@link #GradientColor} array. * * <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:startColor */ public static final int GradientColor_android_startColor=0; /** * <p>This symbol is the offset where the {@link android.R.attr#endColor} * attribute's value can be found in the {@link #GradientColor} array. * * <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:endColor */ public static final int GradientColor_android_endColor=1; /** * <p>This symbol is the offset where the {@link android.R.attr#type} * attribute's value can be found in the {@link #GradientColor} 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>linear</td><td>0</td><td></td></tr> * <tr><td>radial</td><td>1</td><td></td></tr> * <tr><td>sweep</td><td>2</td><td></td></tr> * </table> * * @attr name android:type */ public static final int GradientColor_android_type=2; /** * <p>This symbol is the offset where the {@link android.R.attr#centerX} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * <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. * * @attr name android:centerX */ public static final int GradientColor_android_centerX=3; /** * <p>This symbol is the offset where the {@link android.R.attr#centerY} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * <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. * * @attr name android:centerY */ public static final int GradientColor_android_centerY=4; /** * <p>This symbol is the offset where the {@link android.R.attr#gradientRadius} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * <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), and * 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. * * @attr name android:gradientRadius */ public static final int GradientColor_android_gradientRadius=5; /** * <p>This symbol is the offset where the {@link android.R.attr#tileMode} * attribute's value can be found in the {@link #GradientColor} 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>clamp</td><td>0</td><td></td></tr> * <tr><td>disabled</td><td>ffffffff</td><td></td></tr> * <tr><td>mirror</td><td>2</td><td></td></tr> * <tr><td>repeat</td><td>1</td><td></td></tr> * </table> * * @attr name android:tileMode */ public static final int GradientColor_android_tileMode=6; /** * <p>This symbol is the offset where the {@link android.R.attr#centerColor} * attribute's value can be found in the {@link #GradientColor} array. * * <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:centerColor */ public static final int GradientColor_android_centerColor=7; /** * <p>This symbol is the offset where the {@link android.R.attr#startX} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startX */ public static final int GradientColor_android_startX=8; /** * <p>This symbol is the offset where the {@link android.R.attr#startY} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startY */ public static final int GradientColor_android_startY=9; /** * <p>This symbol is the offset where the {@link android.R.attr#endX} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endX */ public static final int GradientColor_android_endX=10; /** * <p>This symbol is the offset where the {@link android.R.attr#endY} * attribute's value can be found in the {@link #GradientColor} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endY */ public static final int GradientColor_android_endY=11; /** * Attributes that can be used with a GradientColorItem. * <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 #GradientColorItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td></td></tr> * </table> * @see #GradientColorItem_android_color * @see #GradientColorItem_android_offset */ public static final int[] GradientColorItem={ 0x010101a5, 0x01010514 }; /** * <p>This symbol is the offset where the {@link android.R.attr#color} * attribute's value can be found in the {@link #GradientColorItem} array. * * <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:color */ public static final int GradientColorItem_android_color=0; /** * <p>This symbol is the offset where the {@link android.R.attr#offset} * attribute's value can be found in the {@link #GradientColorItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:offset */ public static final int GradientColorItem_android_offset=1; /** * Attributes that can be used with a LinearConstraintLayout. * <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 #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr> * </table> * @see #LinearConstraintLayout_android_orientation */ public static final int[] LinearConstraintLayout={ 0x010100c4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #LinearConstraintLayout} 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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearConstraintLayout_android_orientation=0; /** * 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_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_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_weightSum android:weightSum}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_divider com.hdpolover.ybbproject:divider}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.hdpolover.ybbproject:dividerPadding}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.hdpolover.ybbproject:measureWithLargestChild}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.hdpolover.ybbproject:showDividers}</code></td><td></td></tr> * </table> * @see #LinearLayoutCompat_android_gravity * @see #LinearLayoutCompat_android_orientation * @see #LinearLayoutCompat_android_baselineAligned * @see #LinearLayoutCompat_android_baselineAlignedChildIndex * @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, 0x7f0300bc, 0x7f0300be, 0x7f03017d, 0x7f0301ac }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * 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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final 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. * * <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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation=1; /** * <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:baselineAligned */ public static final 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. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#weightSum} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#divider} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#dividerPadding} * attribute's value can be found in the {@link #LinearLayoutCompat} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#measureWithLargestChild} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * 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_width android:layout_width}</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> * </table> * @see #LinearLayoutCompat_Layout_android_layout_gravity * @see #LinearLayoutCompat_Layout_android_layout_width * @see #LinearLayoutCompat_Layout_android_layout_height * @see #LinearLayoutCompat_Layout_android_layout_weight */ 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. * * <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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; /** * <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. * * <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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width=1; /** * <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. * * <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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final 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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight=3; /** * 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. * * <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), and * mm (millimeters). * * @attr name android:dropDownHorizontalOffset */ public static final 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. * * <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), and * mm (millimeters). * * @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset=1; /** * Attributes that can be used with a LoadingImageView. * <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 #LoadingImageView_circleCrop com.hdpolover.ybbproject:circleCrop}</code></td><td></td></tr> * <tr><td><code>{@link #LoadingImageView_imageAspectRatio com.hdpolover.ybbproject:imageAspectRatio}</code></td><td></td></tr> * <tr><td><code>{@link #LoadingImageView_imageAspectRatioAdjust com.hdpolover.ybbproject:imageAspectRatioAdjust}</code></td><td></td></tr> * </table> * @see #LoadingImageView_circleCrop * @see #LoadingImageView_imageAspectRatio * @see #LoadingImageView_imageAspectRatioAdjust */ public static final int[] LoadingImageView={ 0x7f030084, 0x7f030110, 0x7f030111 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#circleCrop} * attribute's value can be found in the {@link #LoadingImageView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:circleCrop */ public static final int LoadingImageView_circleCrop=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#imageAspectRatio} * attribute's value can be found in the {@link #LoadingImageView} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.hdpolover.ybbproject:imageAspectRatio */ public static final int LoadingImageView_imageAspectRatio=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#imageAspectRatioAdjust} * attribute's value can be found in the {@link #LoadingImageView} 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>adjust_height</td><td>2</td><td></td></tr> * <tr><td>adjust_width</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:imageAspectRatioAdjust */ public static final int LoadingImageView_imageAspectRatioAdjust=2; /** * Attributes that can be used with a MaterialButton. * <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 #MaterialButton_android_insetLeft android:insetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetRight android:insetRight}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetTop android:insetTop}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetBottom android:insetBottom}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_backgroundTint com.hdpolover.ybbproject:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_backgroundTintMode com.hdpolover.ybbproject:backgroundTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_cornerRadius com.hdpolover.ybbproject:cornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_icon com.hdpolover.ybbproject:icon}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconGravity com.hdpolover.ybbproject:iconGravity}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconPadding com.hdpolover.ybbproject:iconPadding}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconSize com.hdpolover.ybbproject:iconSize}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconTint com.hdpolover.ybbproject:iconTint}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconTintMode com.hdpolover.ybbproject:iconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_rippleColor com.hdpolover.ybbproject:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_strokeColor com.hdpolover.ybbproject:strokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_strokeWidth com.hdpolover.ybbproject:strokeWidth}</code></td><td></td></tr> * </table> * @see #MaterialButton_android_insetLeft * @see #MaterialButton_android_insetRight * @see #MaterialButton_android_insetTop * @see #MaterialButton_android_insetBottom * @see #MaterialButton_backgroundTint * @see #MaterialButton_backgroundTintMode * @see #MaterialButton_cornerRadius * @see #MaterialButton_icon * @see #MaterialButton_iconGravity * @see #MaterialButton_iconPadding * @see #MaterialButton_iconSize * @see #MaterialButton_iconTint * @see #MaterialButton_iconTintMode * @see #MaterialButton_rippleColor * @see #MaterialButton_strokeColor * @see #MaterialButton_strokeWidth */ public static final int[] MaterialButton={ 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030034, 0x7f030035, 0x7f0300b1, 0x7f030107, 0x7f030109, 0x7f03010a, 0x7f03010b, 0x7f03010d, 0x7f03010e, 0x7f0301a0, 0x7f0301c3, 0x7f0301c4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#insetLeft} * attribute's value can be found in the {@link #MaterialButton} 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), and * 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. * * @attr name android:insetLeft */ public static final int MaterialButton_android_insetLeft=0; /** * <p>This symbol is the offset where the {@link android.R.attr#insetRight} * attribute's value can be found in the {@link #MaterialButton} 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), and * 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. * * @attr name android:insetRight */ public static final int MaterialButton_android_insetRight=1; /** * <p>This symbol is the offset where the {@link android.R.attr#insetTop} * attribute's value can be found in the {@link #MaterialButton} 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), and * 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. * * @attr name android:insetTop */ public static final int MaterialButton_android_insetTop=2; /** * <p>This symbol is the offset where the {@link android.R.attr#insetBottom} * attribute's value can be found in the {@link #MaterialButton} 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), and * 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. * * @attr name android:insetBottom */ public static final int MaterialButton_android_insetBottom=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#backgroundTint} * attribute's value can be found in the {@link #MaterialButton} array. * * <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 com.hdpolover.ybbproject:backgroundTint */ public static final int MaterialButton_backgroundTint=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#backgroundTintMode} * attribute's value can be found in the {@link #MaterialButton} 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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:backgroundTintMode */ public static final int MaterialButton_backgroundTintMode=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#cornerRadius} * attribute's value can be found in the {@link #MaterialButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:cornerRadius */ public static final int MaterialButton_cornerRadius=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#icon} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:icon */ public static final int MaterialButton_icon=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconGravity} * attribute's value can be found in the {@link #MaterialButton} 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>start</td><td>1</td><td></td></tr> * <tr><td>textStart</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:iconGravity */ public static final int MaterialButton_iconGravity=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconPadding} * attribute's value can be found in the {@link #MaterialButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:iconPadding */ public static final int MaterialButton_iconPadding=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconSize} * attribute's value can be found in the {@link #MaterialButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:iconSize */ public static final int MaterialButton_iconSize=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconTint} * attribute's value can be found in the {@link #MaterialButton} array. * * <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 com.hdpolover.ybbproject:iconTint */ public static final int MaterialButton_iconTint=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconTintMode} * attribute's value can be found in the {@link #MaterialButton} 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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:iconTintMode */ public static final int MaterialButton_iconTintMode=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#rippleColor} * attribute's value can be found in the {@link #MaterialButton} array. * * <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 com.hdpolover.ybbproject:rippleColor */ public static final int MaterialButton_rippleColor=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#strokeColor} * attribute's value can be found in the {@link #MaterialButton} array. * * <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 com.hdpolover.ybbproject:strokeColor */ public static final int MaterialButton_strokeColor=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#strokeWidth} * attribute's value can be found in the {@link #MaterialButton} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:strokeWidth */ public static final int MaterialButton_strokeWidth=15; /** * Attributes that can be used with a MaterialCardView. * <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 #MaterialCardView_strokeColor com.hdpolover.ybbproject:strokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialCardView_strokeWidth com.hdpolover.ybbproject:strokeWidth}</code></td><td></td></tr> * </table> * @see #MaterialCardView_strokeColor * @see #MaterialCardView_strokeWidth */ public static final int[] MaterialCardView={ 0x7f0301c3, 0x7f0301c4 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#strokeColor} * attribute's value can be found in the {@link #MaterialCardView} array. * * <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 com.hdpolover.ybbproject:strokeColor */ public static final int MaterialCardView_strokeColor=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#strokeWidth} * attribute's value can be found in the {@link #MaterialCardView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:strokeWidth */ public static final int MaterialCardView_strokeWidth=1; /** * Attributes that can be used with a MaterialComponentsTheme. * <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 #MaterialComponentsTheme_bottomSheetDialogTheme com.hdpolover.ybbproject:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetStyle com.hdpolover.ybbproject:bottomSheetStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipGroupStyle com.hdpolover.ybbproject:chipGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipStandaloneStyle com.hdpolover.ybbproject:chipStandaloneStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipStyle com.hdpolover.ybbproject:chipStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorAccent com.hdpolover.ybbproject:colorAccent}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorBackgroundFloating com.hdpolover.ybbproject:colorBackgroundFloating}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorPrimary com.hdpolover.ybbproject:colorPrimary}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorPrimaryDark com.hdpolover.ybbproject:colorPrimaryDark}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorSecondary com.hdpolover.ybbproject:colorSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_editTextStyle com.hdpolover.ybbproject:editTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_floatingActionButtonStyle com.hdpolover.ybbproject:floatingActionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_materialButtonStyle com.hdpolover.ybbproject:materialButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_materialCardViewStyle com.hdpolover.ybbproject:materialCardViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_navigationViewStyle com.hdpolover.ybbproject:navigationViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_scrimBackground com.hdpolover.ybbproject:scrimBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_snackbarButtonStyle com.hdpolover.ybbproject:snackbarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_tabStyle com.hdpolover.ybbproject:tabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody1 com.hdpolover.ybbproject:textAppearanceBody1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody2 com.hdpolover.ybbproject:textAppearanceBody2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceButton com.hdpolover.ybbproject:textAppearanceButton}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceCaption com.hdpolover.ybbproject:textAppearanceCaption}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline1 com.hdpolover.ybbproject:textAppearanceHeadline1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline2 com.hdpolover.ybbproject:textAppearanceHeadline2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline3 com.hdpolover.ybbproject:textAppearanceHeadline3}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline4 com.hdpolover.ybbproject:textAppearanceHeadline4}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline5 com.hdpolover.ybbproject:textAppearanceHeadline5}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline6 com.hdpolover.ybbproject:textAppearanceHeadline6}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceOverline com.hdpolover.ybbproject:textAppearanceOverline}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle1 com.hdpolover.ybbproject:textAppearanceSubtitle1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle2 com.hdpolover.ybbproject:textAppearanceSubtitle2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textInputStyle com.hdpolover.ybbproject:textInputStyle}</code></td><td></td></tr> * </table> * @see #MaterialComponentsTheme_bottomSheetDialogTheme * @see #MaterialComponentsTheme_bottomSheetStyle * @see #MaterialComponentsTheme_chipGroupStyle * @see #MaterialComponentsTheme_chipStandaloneStyle * @see #MaterialComponentsTheme_chipStyle * @see #MaterialComponentsTheme_colorAccent * @see #MaterialComponentsTheme_colorBackgroundFloating * @see #MaterialComponentsTheme_colorPrimary * @see #MaterialComponentsTheme_colorPrimaryDark * @see #MaterialComponentsTheme_colorSecondary * @see #MaterialComponentsTheme_editTextStyle * @see #MaterialComponentsTheme_floatingActionButtonStyle * @see #MaterialComponentsTheme_materialButtonStyle * @see #MaterialComponentsTheme_materialCardViewStyle * @see #MaterialComponentsTheme_navigationViewStyle * @see #MaterialComponentsTheme_scrimBackground * @see #MaterialComponentsTheme_snackbarButtonStyle * @see #MaterialComponentsTheme_tabStyle * @see #MaterialComponentsTheme_textAppearanceBody1 * @see #MaterialComponentsTheme_textAppearanceBody2 * @see #MaterialComponentsTheme_textAppearanceButton * @see #MaterialComponentsTheme_textAppearanceCaption * @see #MaterialComponentsTheme_textAppearanceHeadline1 * @see #MaterialComponentsTheme_textAppearanceHeadline2 * @see #MaterialComponentsTheme_textAppearanceHeadline3 * @see #MaterialComponentsTheme_textAppearanceHeadline4 * @see #MaterialComponentsTheme_textAppearanceHeadline5 * @see #MaterialComponentsTheme_textAppearanceHeadline6 * @see #MaterialComponentsTheme_textAppearanceOverline * @see #MaterialComponentsTheme_textAppearanceSubtitle1 * @see #MaterialComponentsTheme_textAppearanceSubtitle2 * @see #MaterialComponentsTheme_textInputStyle */ public static final int[] MaterialComponentsTheme={ 0x7f030043, 0x7f030044, 0x7f030075, 0x7f03007f, 0x7f030083, 0x7f030092, 0x7f030093, 0x7f030099, 0x7f03009a, 0x7f03009c, 0x7f0300ce, 0x7f0300ea, 0x7f030178, 0x7f030179, 0x7f030183, 0x7f0301a3, 0x7f0301b3, 0x7f0301e6, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f9, 0x7f0301fe, 0x7f0301ff, 0x7f030203 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#bottomSheetDialogTheme} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:bottomSheetDialogTheme */ public static final int MaterialComponentsTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#bottomSheetStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:bottomSheetStyle */ public static final int MaterialComponentsTheme_bottomSheetStyle=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipGroupStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:chipGroupStyle */ public static final int MaterialComponentsTheme_chipGroupStyle=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipStandaloneStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:chipStandaloneStyle */ public static final int MaterialComponentsTheme_chipStandaloneStyle=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#chipStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:chipStyle */ public static final int MaterialComponentsTheme_chipStyle=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorAccent} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <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 com.hdpolover.ybbproject:colorAccent */ public static final int MaterialComponentsTheme_colorAccent=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorBackgroundFloating} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <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 com.hdpolover.ybbproject:colorBackgroundFloating */ public static final int MaterialComponentsTheme_colorBackgroundFloating=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorPrimary} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <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 com.hdpolover.ybbproject:colorPrimary */ public static final int MaterialComponentsTheme_colorPrimary=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorPrimaryDark} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <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 com.hdpolover.ybbproject:colorPrimaryDark */ public static final int MaterialComponentsTheme_colorPrimaryDark=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorSecondary} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <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 com.hdpolover.ybbproject:colorSecondary */ public static final int MaterialComponentsTheme_colorSecondary=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#editTextStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:editTextStyle */ public static final int MaterialComponentsTheme_editTextStyle=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#floatingActionButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</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>". * <p>May be a floating point value, such as "<code>1.2</code>". * <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), and * 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. * * @attr name com.hdpolover.ybbproject:floatingActionButtonStyle */ public static final int MaterialComponentsTheme_floatingActionButtonStyle=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#materialButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:materialButtonStyle */ public static final int MaterialComponentsTheme_materialButtonStyle=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#materialCardViewStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:materialCardViewStyle */ public static final int MaterialComponentsTheme_materialCardViewStyle=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#navigationViewStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:navigationViewStyle */ public static final int MaterialComponentsTheme_navigationViewStyle=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#scrimBackground} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 com.hdpolover.ybbproject:scrimBackground */ public static final int MaterialComponentsTheme_scrimBackground=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#snackbarButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:snackbarButtonStyle */ public static final int MaterialComponentsTheme_snackbarButtonStyle=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:tabStyle */ public static final int MaterialComponentsTheme_tabStyle=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceBody1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceBody1 */ public static final int MaterialComponentsTheme_textAppearanceBody1=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceBody2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceBody2 */ public static final int MaterialComponentsTheme_textAppearanceBody2=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceButton} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceButton */ public static final int MaterialComponentsTheme_textAppearanceButton=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceCaption} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceCaption */ public static final int MaterialComponentsTheme_textAppearanceCaption=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceHeadline1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceHeadline1 */ public static final int MaterialComponentsTheme_textAppearanceHeadline1=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceHeadline2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceHeadline2 */ public static final int MaterialComponentsTheme_textAppearanceHeadline2=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceHeadline3} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceHeadline3 */ public static final int MaterialComponentsTheme_textAppearanceHeadline3=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceHeadline4} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceHeadline4 */ public static final int MaterialComponentsTheme_textAppearanceHeadline4=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceHeadline5} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceHeadline5 */ public static final int MaterialComponentsTheme_textAppearanceHeadline5=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceHeadline6} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceHeadline6 */ public static final int MaterialComponentsTheme_textAppearanceHeadline6=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceOverline} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceOverline */ public static final int MaterialComponentsTheme_textAppearanceOverline=28; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceSubtitle1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceSubtitle1 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle1=29; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textAppearanceSubtitle2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textAppearanceSubtitle2 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle2=30; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textInputStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:textInputStyle */ public static final int MaterialComponentsTheme_textInputStyle=31; /** * 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_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_visible android:visible}</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_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> * </table> * @see #MenuGroup_android_enabled * @see #MenuGroup_android_id * @see #MenuGroup_android_visible * @see #MenuGroup_android_menuCategory * @see #MenuGroup_android_orderInCategory * @see #MenuGroup_android_checkableBehavior */ public static final int[] MenuGroup={ 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** * <p>This symbol is the offset where the {@link android.R.attr#enabled} * attribute's value can be found in the {@link #MenuGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuGroup_android_id=1; /** * <p>This symbol is the offset where the {@link android.R.attr#visible} * attribute's value can be found in the {@link #MenuGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuGroup_android_visible=2; /** * <p>This symbol is the offset where the {@link android.R.attr#menuCategory} * attribute's value can be found in the {@link #MenuGroup} 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>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final 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. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory=4; /** * <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} * attribute's value can be found in the {@link #MenuGroup} 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>all</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>single</td><td>2</td><td></td></tr> * </table> * * @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior=5; /** * 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_android_icon android:icon}</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_id android:id}</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_visible android:visible}</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_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_alphabeticShortcut android:alphabeticShortcut}</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_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionLayout com.hdpolover.ybbproject:actionLayout}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.hdpolover.ybbproject:actionProviderClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.hdpolover.ybbproject:actionViewClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.hdpolover.ybbproject:alphabeticModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.hdpolover.ybbproject:contentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.hdpolover.ybbproject:iconTint}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.hdpolover.ybbproject:iconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.hdpolover.ybbproject:numericModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.hdpolover.ybbproject:showAsAction}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.hdpolover.ybbproject:tooltipText}</code></td><td></td></tr> * </table> * @see #MenuItem_android_icon * @see #MenuItem_android_enabled * @see #MenuItem_android_id * @see #MenuItem_android_checked * @see #MenuItem_android_visible * @see #MenuItem_android_menuCategory * @see #MenuItem_android_orderInCategory * @see #MenuItem_android_title * @see #MenuItem_android_titleCondensed * @see #MenuItem_android_alphabeticShortcut * @see #MenuItem_android_numericShortcut * @see #MenuItem_android_checkable * @see #MenuItem_android_onClick * @see #MenuItem_actionLayout * @see #MenuItem_actionProviderClass * @see #MenuItem_actionViewClass * @see #MenuItem_alphabeticModifiers * @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, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f0300a2, 0x7f03010d, 0x7f03010e, 0x7f030184, 0x7f0301ab, 0x7f030220 }; /** * <p>This symbol is the offset where the {@link android.R.attr#icon} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int MenuItem_android_icon=0; /** * <p>This symbol is the offset where the {@link android.R.attr#enabled} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuItem_android_enabled=1; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuItem_android_id=2; /** * <p>This symbol is the offset where the {@link android.R.attr#checked} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checked */ public static final int MenuItem_android_checked=3; /** * <p>This symbol is the offset where the {@link android.R.attr#visible} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuItem_android_visible=4; /** * <p>This symbol is the offset where the {@link android.R.attr#menuCategory} * 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>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory=5; /** * <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final 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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:title */ public static final 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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed=8; /** * <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut=9; /** * <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut=10; /** * <p>This symbol is the offset where the {@link android.R.attr#checkable} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int MenuItem_android_checkable=11; /** * <p>This symbol is the offset where the {@link android.R.attr#onClick} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:onClick */ public static final int MenuItem_android_onClick=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionLayout} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionProviderClass} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#actionViewClass} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentDescription} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconTint} * attribute's value can be found in the {@link #MenuItem} array. * * <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 com.hdpolover.ybbproject:iconTint */ public static final int MenuItem_iconTint=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>always</td><td>2</td><td></td></tr> * <tr><td>collapseActionView</td><td>8</td><td></td></tr> * <tr><td>ifRoom</td><td>1</td><td></td></tr> * <tr><td>never</td><td>0</td><td></td></tr> * <tr><td>withText</td><td>4</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tooltipText} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:tooltipText */ public static final int MenuItem_tooltipText=22; /** * 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_windowAnimationStyle android:windowAnimationStyle}</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_horizontalDivider android:horizontalDivider}</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_headerBackground android:headerBackground}</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_preserveIconSpacing com.hdpolover.ybbproject:preserveIconSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.hdpolover.ybbproject:subMenuArrow}</code></td><td></td></tr> * </table> * @see #MenuView_android_windowAnimationStyle * @see #MenuView_android_itemTextAppearance * @see #MenuView_android_horizontalDivider * @see #MenuView_android_verticalDivider * @see #MenuView_android_headerBackground * @see #MenuView_android_itemBackground * @see #MenuView_android_itemIconDisabledAlpha * @see #MenuView_preserveIconSpacing * @see #MenuView_subMenuArrow */ public static final int[] MenuView={ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030195, 0x7f0301c5 }; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle=0; /** * <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance=1; /** * <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider=2; /** * <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider=3; /** * <p>This symbol is the offset where the {@link android.R.attr#headerBackground} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:headerBackground */ public static final int MenuView_android_headerBackground=4; /** * <p>This symbol is the offset where the {@link android.R.attr#itemBackground} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:itemBackground */ public static final 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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#preserveIconSpacing} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subMenuArrow} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:subMenuArrow */ public static final 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 com.hdpolover.ybbproject:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_headerLayout com.hdpolover.ybbproject:headerLayout}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemBackground com.hdpolover.ybbproject:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemHorizontalPadding com.hdpolover.ybbproject:itemHorizontalPadding}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconPadding com.hdpolover.ybbproject:itemIconPadding}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconTint com.hdpolover.ybbproject:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextAppearance com.hdpolover.ybbproject:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextColor com.hdpolover.ybbproject:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_menu com.hdpolover.ybbproject: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_itemHorizontalPadding * @see #NavigationView_itemIconPadding * @see #NavigationView_itemIconTint * @see #NavigationView_itemTextAppearance * @see #NavigationView_itemTextColor * @see #NavigationView_menu */ public static final int[] NavigationView={ 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300cf, 0x7f0300f9, 0x7f030117, 0x7f030118, 0x7f03011a, 0x7f03011c, 0x7f03011f, 0x7f030122, 0x7f03017e }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:background */ public static final 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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:fitsSystemWindows */ public static final 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. * * <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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#elevation} * attribute's value can be found in the {@link #NavigationView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:elevation */ public static final int NavigationView_elevation=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#headerLayout} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:headerLayout */ public static final int NavigationView_headerLayout=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemBackground} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:itemBackground */ public static final int NavigationView_itemBackground=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemHorizontalPadding} * attribute's value can be found in the {@link #NavigationView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:itemHorizontalPadding */ public static final int NavigationView_itemHorizontalPadding=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemIconPadding} * attribute's value can be found in the {@link #NavigationView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:itemIconPadding */ public static final int NavigationView_itemIconPadding=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemIconTint} * attribute's value can be found in the {@link #NavigationView} array. * * <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 com.hdpolover.ybbproject:itemIconTint */ public static final int NavigationView_itemIconTint=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemTextAppearance} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:itemTextAppearance */ public static final int NavigationView_itemTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#itemTextColor} * attribute's value can be found in the {@link #NavigationView} array. * * <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 com.hdpolover.ybbproject:itemTextColor */ public static final int NavigationView_itemTextColor=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#menu} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:menu */ public static final int NavigationView_menu=11; /** * 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_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_overlapAnchor com.hdpolover.ybbproject:overlapAnchor}</code></td><td></td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f030185 }; /** * <p>This symbol is the offset where the {@link android.R.attr#popupBackground} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:popupBackground */ public static final int PopupWindow_android_popupBackground=0; /** * <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#overlapAnchor} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:overlapAnchor */ public static final 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 com.hdpolover.ybbproject:state_above_anchor}</code></td><td></td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f0301bc }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#state_above_anchor} * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:state_above_anchor */ public static final 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 com.hdpolover.ybbproject:paddingBottomNoButtons}</code></td><td></td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.hdpolover.ybbproject:paddingTopNoTitle}</code></td><td></td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f030186, 0x7f030189 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#paddingBottomNoButtons} * attribute's value can be found in the {@link #RecycleListView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#paddingTopNoTitle} * attribute's value can be found in the {@link #RecycleListView} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:paddingTopNoTitle */ public static final 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_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.hdpolover.ybbproject:fastScrollEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.hdpolover.ybbproject:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.hdpolover.ybbproject:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.hdpolover.ybbproject:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.hdpolover.ybbproject:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_layoutManager com.hdpolover.ybbproject:layoutManager}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_reverseLayout com.hdpolover.ybbproject:reverseLayout}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_spanCount com.hdpolover.ybbproject:spanCount}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_stackFromEnd com.hdpolover.ybbproject:stackFromEnd}</code></td><td></td></tr> * </table> * @see #RecyclerView_android_orientation * @see #RecyclerView_android_descendantFocusability * @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, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f030127, 0x7f03019f, 0x7f0301b5, 0x7f0301bb }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #RecyclerView} 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>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int RecyclerView_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} * attribute's value can be found in the {@link #RecyclerView} 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>afterDescendants</td><td>1</td><td></td></tr> * <tr><td>beforeDescendants</td><td>0</td><td></td></tr> * <tr><td>blocksDescendants</td><td>2</td><td></td></tr> * </table> * * @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fastScrollEnabled} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fastScrollHorizontalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fastScrollHorizontalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fastScrollVerticalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fastScrollVerticalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layoutManager} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:layoutManager */ public static final int RecyclerView_layoutManager=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#reverseLayout} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:reverseLayout */ public static final int RecyclerView_reverseLayout=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#spanCount} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:spanCount */ public static final int RecyclerView_spanCount=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#stackFromEnd} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:stackFromEnd */ public static final int RecyclerView_stackFromEnd=10; /** * 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 com.hdpolover.ybbproject:insetForeground}</code></td><td></td></tr> * </table> * @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout={ 0x7f030115 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 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 com.hdpolover.ybbproject:insetForeground */ public static final 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 com.hdpolover.ybbproject:behavior_overlapTop}</code></td><td></td></tr> * </table> * @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout={ 0x7f03003c }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#behavior_overlapTop} * attribute's value can be found in the {@link #ScrollingViewBehavior_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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:behavior_overlapTop */ public static final 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_maxWidth android:maxWidth}</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_imeOptions android:imeOptions}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_closeIcon com.hdpolover.ybbproject:closeIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.hdpolover.ybbproject:commitIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.hdpolover.ybbproject:defaultQueryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_goIcon com.hdpolover.ybbproject:goIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.hdpolover.ybbproject:iconifiedByDefault}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_layout com.hdpolover.ybbproject:layout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.hdpolover.ybbproject:queryBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryHint com.hdpolover.ybbproject:queryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.hdpolover.ybbproject:searchHintIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.hdpolover.ybbproject:searchIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.hdpolover.ybbproject:submitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.hdpolover.ybbproject:suggestionRowLayout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.hdpolover.ybbproject:voiceIcon}</code></td><td></td></tr> * </table> * @see #SearchView_android_focusable * @see #SearchView_android_maxWidth * @see #SearchView_android_inputType * @see #SearchView_android_imeOptions * @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, 0x7f030085, 0x7f03009e, 0x7f0300b7, 0x7f0300f8, 0x7f03010f, 0x7f030126, 0x7f030199, 0x7f03019a, 0x7f0301a5, 0x7f0301a6, 0x7f0301c6, 0x7f0301cb, 0x7f030227 }; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <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>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int SearchView_android_focusable=0; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #SearchView} 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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SearchView_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link android.R.attr#inputType} * attribute's value can be found in the {@link #SearchView} 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>date</td><td>14</td><td></td></tr> * <tr><td>datetime</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>number</td><td>2</td><td></td></tr> * <tr><td>numberDecimal</td><td>2002</td><td></td></tr> * <tr><td>numberPassword</td><td>12</td><td></td></tr> * <tr><td>numberSigned</td><td>1002</td><td></td></tr> * <tr><td>phone</td><td>3</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * <tr><td>textAutoComplete</td><td>10001</td><td></td></tr> * <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr> * <tr><td>textCapCharacters</td><td>1001</td><td></td></tr> * <tr><td>textCapSentences</td><td>4001</td><td></td></tr> * <tr><td>textCapWords</td><td>2001</td><td></td></tr> * <tr><td>textEmailAddress</td><td>21</td><td></td></tr> * <tr><td>textEmailSubject</td><td>31</td><td></td></tr> * <tr><td>textFilter</td><td>b1</td><td></td></tr> * <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr> * <tr><td>textLongMessage</td><td>51</td><td></td></tr> * <tr><td>textMultiLine</td><td>20001</td><td></td></tr> * <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr> * <tr><td>textPassword</td><td>81</td><td></td></tr> * <tr><td>textPersonName</td><td>61</td><td></td></tr> * <tr><td>textPhonetic</td><td>c1</td><td></td></tr> * <tr><td>textPostalAddress</td><td>71</td><td></td></tr> * <tr><td>textShortMessage</td><td>41</td><td></td></tr> * <tr><td>textUri</td><td>11</td><td></td></tr> * <tr><td>textVisiblePassword</td><td>91</td><td></td></tr> * <tr><td>textWebEditText</td><td>a1</td><td></td></tr> * <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr> * <tr><td>textWebPassword</td><td>e1</td><td></td></tr> * <tr><td>time</td><td>24</td><td></td></tr> * </table> * * @attr name android:inputType */ public static final int SearchView_android_inputType=2; /** * <p>This symbol is the offset where the {@link android.R.attr#imeOptions} * attribute's value can be found in the {@link #SearchView} 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>actionDone</td><td>6</td><td></td></tr> * <tr><td>actionGo</td><td>2</td><td></td></tr> * <tr><td>actionNext</td><td>5</td><td></td></tr> * <tr><td>actionNone</td><td>1</td><td></td></tr> * <tr><td>actionPrevious</td><td>7</td><td></td></tr> * <tr><td>actionSearch</td><td>3</td><td></td></tr> * <tr><td>actionSend</td><td>4</td><td></td></tr> * <tr><td>actionUnspecified</td><td>0</td><td></td></tr> * <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr> * <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr> * <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr> * <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr> * <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr> * <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr> * <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr> * <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:imeOptions */ public static final int SearchView_android_imeOptions=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#closeIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#commitIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#defaultQueryHint} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#goIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:goIcon */ public static final int SearchView_goIcon=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#iconifiedByDefault} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#layout} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:layout */ public static final int SearchView_layout=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#queryBackground} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#queryHint} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:queryHint */ public static final int SearchView_queryHint=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#searchHintIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#searchIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#submitBackground} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#suggestionRowLayout} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#voiceIcon} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * Attributes that can be used with a SignInButton. * <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 #SignInButton_buttonSize com.hdpolover.ybbproject:buttonSize}</code></td><td></td></tr> * <tr><td><code>{@link #SignInButton_colorScheme com.hdpolover.ybbproject:colorScheme}</code></td><td></td></tr> * <tr><td><code>{@link #SignInButton_scopeUris com.hdpolover.ybbproject:scopeUris}</code></td><td></td></tr> * </table> * @see #SignInButton_buttonSize * @see #SignInButton_colorScheme * @see #SignInButton_scopeUris */ public static final int[] SignInButton={ 0x7f030057, 0x7f03009b, 0x7f0301a1 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#buttonSize} * attribute's value can be found in the {@link #SignInButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>icon_only</td><td>2</td><td></td></tr> * <tr><td>standard</td><td>0</td><td></td></tr> * <tr><td>wide</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:buttonSize */ public static final int SignInButton_buttonSize=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#colorScheme} * attribute's value can be found in the {@link #SignInButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <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>auto</td><td>2</td><td></td></tr> * <tr><td>dark</td><td>0</td><td></td></tr> * <tr><td>light</td><td>1</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:colorScheme */ public static final int SignInButton_colorScheme=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#scopeUris} * attribute's value can be found in the {@link #SignInButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:scopeUris */ public static final int SignInButton_scopeUris=2; /** * Attributes that can be used with a Snackbar. * <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 #Snackbar_snackbarButtonStyle com.hdpolover.ybbproject:snackbarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #Snackbar_snackbarStyle com.hdpolover.ybbproject:snackbarStyle}</code></td><td></td></tr> * </table> * @see #Snackbar_snackbarButtonStyle * @see #Snackbar_snackbarStyle */ public static final int[] Snackbar={ 0x7f0301b3, 0x7f0301b4 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#snackbarButtonStyle} * attribute's value can be found in the {@link #Snackbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:snackbarButtonStyle */ public static final int Snackbar_snackbarButtonStyle=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#snackbarStyle} * attribute's value can be found in the {@link #Snackbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:snackbarStyle */ public static final int Snackbar_snackbarStyle=1; /** * 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 com.hdpolover.ybbproject:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.hdpolover.ybbproject:maxActionInlineWidth}</code></td><td></td></tr> * </table> * @see #SnackbarLayout_android_maxWidth * @see #SnackbarLayout_elevation * @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout={ 0x0101011f, 0x7f0300cf, 0x7f03017a }; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #SnackbarLayout} 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), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#elevation} * attribute's value can be found in the {@link #SnackbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:elevation */ public static final int SnackbarLayout_elevation=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#maxActionInlineWidth} * attribute's value can be found in the {@link #SnackbarLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:maxActionInlineWidth */ public static final 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_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_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_popupTheme com.hdpolover.ybbproject:popupTheme}</code></td><td></td></tr> * </table> * @see #Spinner_android_entries * @see #Spinner_android_popupBackground * @see #Spinner_android_prompt * @see #Spinner_android_dropDownWidth * @see #Spinner_popupTheme */ public static final int[] Spinner={ 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030193 }; /** * <p>This symbol is the offset where the {@link android.R.attr#entries} * attribute's value can be found in the {@link #Spinner} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:entries */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:popupBackground */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:prompt */ public static final int Spinner_android_prompt=2; /** * <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} * attribute's value can be found in the {@link #Spinner} 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), and * mm (millimeters). * <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>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#popupTheme} * attribute's value can be found in the {@link #Spinner} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:popupTheme */ public static final int Spinner_popupTheme=4; /** * Attributes that can be used with a StateListDrawable. * <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 #StateListDrawable_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #StateListDrawable_android_dither * @see #StateListDrawable_android_visible * @see #StateListDrawable_android_variablePadding * @see #StateListDrawable_android_constantSize * @see #StateListDrawable_android_enterFadeDuration * @see #StateListDrawable_android_exitFadeDuration */ public static final int[] StateListDrawable={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p>This symbol is the offset where the {@link android.R.attr#dither} * attribute's value can be found in the {@link #StateListDrawable} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int StateListDrawable_android_dither=0; /** * <p>This symbol is the offset where the {@link android.R.attr#visible} * attribute's value can be found in the {@link #StateListDrawable} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int StateListDrawable_android_visible=1; /** * <p>This symbol is the offset where the {@link android.R.attr#variablePadding} * attribute's value can be found in the {@link #StateListDrawable} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int StateListDrawable_android_variablePadding=2; /** * <p>This symbol is the offset where the {@link android.R.attr#constantSize} * attribute's value can be found in the {@link #StateListDrawable} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int StateListDrawable_android_constantSize=3; /** * <p>This symbol is the offset where the {@link android.R.attr#enterFadeDuration} * attribute's value can be found in the {@link #StateListDrawable} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int StateListDrawable_android_enterFadeDuration=4; /** * <p>This symbol is the offset where the {@link android.R.attr#exitFadeDuration} * attribute's value can be found in the {@link #StateListDrawable} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int StateListDrawable_android_exitFadeDuration=5; /** * Attributes that can be used with a StateListDrawableItem. * <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 #StateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #StateListDrawableItem_android_drawable */ public static final int[] StateListDrawableItem={ 0x01010199 }; /** * <p>This symbol is the offset where the {@link android.R.attr#drawable} * attribute's value can be found in the {@link #StateListDrawableItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int StateListDrawableItem_android_drawable=0; /** * 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_textOn android:textOn}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</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 com.hdpolover.ybbproject:showText}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.hdpolover.ybbproject:splitTrack}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.hdpolover.ybbproject:switchMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.hdpolover.ybbproject:switchPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.hdpolover.ybbproject:switchTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.hdpolover.ybbproject:thumbTextPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.hdpolover.ybbproject:thumbTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.hdpolover.ybbproject:thumbTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_track com.hdpolover.ybbproject:track}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.hdpolover.ybbproject:trackTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.hdpolover.ybbproject:trackTintMode}</code></td><td></td></tr> * </table> * @see #SwitchCompat_android_textOn * @see #SwitchCompat_android_textOff * @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, 0x7f0301ae, 0x7f0301b9, 0x7f0301cc, 0x7f0301cd, 0x7f0301cf, 0x7f030208, 0x7f030209, 0x7f03020a, 0x7f030221, 0x7f030222, 0x7f030223 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textOn} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOn */ public static final int SwitchCompat_android_textOn=0; /** * <p>This symbol is the offset where the {@link android.R.attr#textOff} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOff */ public static final int SwitchCompat_android_textOff=1; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int SwitchCompat_android_thumb=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#showText} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:showText */ public static final int SwitchCompat_showText=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#splitTrack} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#switchMinWidth} * attribute's value can be found in the {@link #SwitchCompat} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#switchPadding} * attribute's value can be found in the {@link #SwitchCompat} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#switchTextAppearance} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#thumbTextPadding} * attribute's value can be found in the {@link #SwitchCompat} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#thumbTint} * attribute's value can be found in the {@link #SwitchCompat} array. * * <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 com.hdpolover.ybbproject:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#track} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:track */ public static final int SwitchCompat_track=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#trackTint} * attribute's value can be found in the {@link #SwitchCompat} array. * * <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 com.hdpolover.ybbproject:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final 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. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:text */ public static final 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 com.hdpolover.ybbproject:tabBackground}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabContentStart com.hdpolover.ybbproject:tabContentStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabGravity com.hdpolover.ybbproject:tabGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIconTint com.hdpolover.ybbproject:tabIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIconTintMode com.hdpolover.ybbproject:tabIconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicator com.hdpolover.ybbproject:tabIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorAnimationDuration com.hdpolover.ybbproject:tabIndicatorAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorColor com.hdpolover.ybbproject:tabIndicatorColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorFullWidth com.hdpolover.ybbproject:tabIndicatorFullWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorGravity com.hdpolover.ybbproject:tabIndicatorGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.hdpolover.ybbproject:tabIndicatorHeight}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabInlineLabel com.hdpolover.ybbproject:tabInlineLabel}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMaxWidth com.hdpolover.ybbproject:tabMaxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMinWidth com.hdpolover.ybbproject:tabMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMode com.hdpolover.ybbproject:tabMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPadding com.hdpolover.ybbproject:tabPadding}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingBottom com.hdpolover.ybbproject:tabPaddingBottom}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingEnd com.hdpolover.ybbproject:tabPaddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingStart com.hdpolover.ybbproject:tabPaddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingTop com.hdpolover.ybbproject:tabPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabRippleColor com.hdpolover.ybbproject:tabRippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.hdpolover.ybbproject:tabSelectedTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextAppearance com.hdpolover.ybbproject:tabTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextColor com.hdpolover.ybbproject:tabTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabUnboundedRipple com.hdpolover.ybbproject:tabUnboundedRipple}</code></td><td></td></tr> * </table> * @see #TabLayout_tabBackground * @see #TabLayout_tabContentStart * @see #TabLayout_tabGravity * @see #TabLayout_tabIconTint * @see #TabLayout_tabIconTintMode * @see #TabLayout_tabIndicator * @see #TabLayout_tabIndicatorAnimationDuration * @see #TabLayout_tabIndicatorColor * @see #TabLayout_tabIndicatorFullWidth * @see #TabLayout_tabIndicatorGravity * @see #TabLayout_tabIndicatorHeight * @see #TabLayout_tabInlineLabel * @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_tabRippleColor * @see #TabLayout_tabSelectedTextColor * @see #TabLayout_tabTextAppearance * @see #TabLayout_tabTextColor * @see #TabLayout_tabUnboundedRipple */ public static final int[] TabLayout={ 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9 }; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabBackground} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:tabBackground */ public static final int TabLayout_tabBackground=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabContentStart} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabContentStart */ public static final int TabLayout_tabContentStart=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:tabGravity */ public static final int TabLayout_tabGravity=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIconTint} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.hdpolover.ybbproject:tabIconTint */ public static final int TabLayout_tabIconTint=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIconTintMode} * 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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:tabIconTintMode */ public static final int TabLayout_tabIconTintMode=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIndicator} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:tabIndicator */ public static final int TabLayout_tabIndicator=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIndicatorAnimationDuration} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:tabIndicatorAnimationDuration */ public static final int TabLayout_tabIndicatorAnimationDuration=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIndicatorColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.hdpolover.ybbproject:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIndicatorFullWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:tabIndicatorFullWidth */ public static final int TabLayout_tabIndicatorFullWidth=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIndicatorGravity} * 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>bottom</td><td>0</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>stretch</td><td>3</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:tabIndicatorGravity */ public static final int TabLayout_tabIndicatorGravity=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabIndicatorHeight} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabInlineLabel} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:tabInlineLabel */ public static final int TabLayout_tabInlineLabel=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabMaxWidth} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabMaxWidth */ public static final int TabLayout_tabMaxWidth=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabMinWidth} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabMinWidth */ public static final int TabLayout_tabMinWidth=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:tabMode */ public static final int TabLayout_tabMode=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabPadding} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabPadding */ public static final int TabLayout_tabPadding=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabPaddingBottom} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabPaddingEnd} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabPaddingStart} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabPaddingStart */ public static final int TabLayout_tabPaddingStart=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabPaddingTop} * attribute's value can be found in the {@link #TabLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:tabPaddingTop */ public static final int TabLayout_tabPaddingTop=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabRippleColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.hdpolover.ybbproject:tabRippleColor */ public static final int TabLayout_tabRippleColor=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabSelectedTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.hdpolover.ybbproject:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabTextAppearance} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:tabTextAppearance */ public static final int TabLayout_tabTextAppearance=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <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 com.hdpolover.ybbproject:tabTextColor */ public static final int TabLayout_tabTextColor=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#tabUnboundedRipple} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:tabUnboundedRipple */ public static final int TabLayout_tabUnboundedRipple=24; /** * 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_textSize android:textSize}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</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_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_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_fontFamily android:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textFontWeight android:textFontWeight}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontFamily com.hdpolover.ybbproject:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontVariationSettings com.hdpolover.ybbproject:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.hdpolover.ybbproject:textAllCaps}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_textLocale com.hdpolover.ybbproject:textLocale}</code></td><td></td></tr> * </table> * @see #TextAppearance_android_textSize * @see #TextAppearance_android_typeface * @see #TextAppearance_android_textStyle * @see #TextAppearance_android_textColor * @see #TextAppearance_android_textColorHint * @see #TextAppearance_android_textColorLink * @see #TextAppearance_android_shadowColor * @see #TextAppearance_android_shadowDx * @see #TextAppearance_android_shadowDy * @see #TextAppearance_android_shadowRadius * @see #TextAppearance_android_fontFamily * @see #TextAppearance_android_textFontWeight * @see #TextAppearance_fontFamily * @see #TextAppearance_fontVariationSettings * @see #TextAppearance_textAllCaps * @see #TextAppearance_textLocale */ public static final int[] TextAppearance={ 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f0300ec, 0x7f0300f4, 0x7f0301ea, 0x7f030204 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textSize} * attribute's value can be found in the {@link #TextAppearance} 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), and * mm (millimeters). * * @attr name android:textSize */ public static final int TextAppearance_android_textSize=0; /** * <p>This symbol is the offset where the {@link android.R.attr#typeface} * attribute's value can be found in the {@link #TextAppearance} 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>monospace</td><td>3</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>sans</td><td>1</td><td></td></tr> * <tr><td>serif</td><td>2</td><td></td></tr> * </table> * * @attr name android:typeface */ public static final int TextAppearance_android_typeface=1; /** * <p>This symbol is the offset where the {@link android.R.attr#textStyle} * attribute's value can be found in the {@link #TextAppearance} 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>bold</td><td>1</td><td></td></tr> * <tr><td>italic</td><td>2</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:textStyle */ public static final int TextAppearance_android_textStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#textColor} * 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 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:textColor */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:textColorHint */ public static final 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:textColorLink */ public static final int TextAppearance_android_textColorLink=5; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <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:shadowColor */ public static final 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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDx */ public static final 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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDy */ public static final 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. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius=9; /** * <p>This symbol is the offset where the {@link android.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily=10; /** * <p>This symbol is the offset where the {@link android.R.attr#textFontWeight} * 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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</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>". * <p>May be a floating point value, such as "<code>1.2</code>". * <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), and * 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. * * @attr name android:textFontWeight */ public static final int TextAppearance_android_textFontWeight=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontFamily */ public static final int TextAppearance_fontFamily=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:fontVariationSettings */ public static final int TextAppearance_fontVariationSettings=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:textAllCaps */ public static final int TextAppearance_textAllCaps=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#textLocale} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:textLocale */ public static final int TextAppearance_textLocale=15; /** * 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_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxBackgroundColor com.hdpolover.ybbproject:boxBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxBackgroundMode com.hdpolover.ybbproject:boxBackgroundMode}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCollapsedPaddingTop com.hdpolover.ybbproject:boxCollapsedPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomEnd com.hdpolover.ybbproject:boxCornerRadiusBottomEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomStart com.hdpolover.ybbproject:boxCornerRadiusBottomStart}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopEnd com.hdpolover.ybbproject:boxCornerRadiusTopEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopStart com.hdpolover.ybbproject:boxCornerRadiusTopStart}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxStrokeColor com.hdpolover.ybbproject:boxStrokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxStrokeWidth com.hdpolover.ybbproject:boxStrokeWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterEnabled com.hdpolover.ybbproject:counterEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterMaxLength com.hdpolover.ybbproject:counterMaxLength}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.hdpolover.ybbproject:counterOverflowTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.hdpolover.ybbproject:counterTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorEnabled com.hdpolover.ybbproject:errorEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.hdpolover.ybbproject:errorTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperText com.hdpolover.ybbproject:helperText}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperTextEnabled com.hdpolover.ybbproject:helperTextEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperTextTextAppearance com.hdpolover.ybbproject:helperTextTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.hdpolover.ybbproject:hintAnimationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintEnabled com.hdpolover.ybbproject:hintEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.hdpolover.ybbproject:hintTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.hdpolover.ybbproject:passwordToggleContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.hdpolover.ybbproject:passwordToggleDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.hdpolover.ybbproject:passwordToggleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.hdpolover.ybbproject:passwordToggleTint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.hdpolover.ybbproject:passwordToggleTintMode}</code></td><td></td></tr> * </table> * @see #TextInputLayout_android_textColorHint * @see #TextInputLayout_android_hint * @see #TextInputLayout_boxBackgroundColor * @see #TextInputLayout_boxBackgroundMode * @see #TextInputLayout_boxCollapsedPaddingTop * @see #TextInputLayout_boxCornerRadiusBottomEnd * @see #TextInputLayout_boxCornerRadiusBottomStart * @see #TextInputLayout_boxCornerRadiusTopEnd * @see #TextInputLayout_boxCornerRadiusTopStart * @see #TextInputLayout_boxStrokeColor * @see #TextInputLayout_boxStrokeWidth * @see #TextInputLayout_counterEnabled * @see #TextInputLayout_counterMaxLength * @see #TextInputLayout_counterOverflowTextAppearance * @see #TextInputLayout_counterTextAppearance * @see #TextInputLayout_errorEnabled * @see #TextInputLayout_errorTextAppearance * @see #TextInputLayout_helperText * @see #TextInputLayout_helperTextEnabled * @see #TextInputLayout_helperTextTextAppearance * @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, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300d3, 0x7f0300d4, 0x7f0300fb, 0x7f0300fc, 0x7f0300fd, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:textColorHint */ public static final int TextInputLayout_android_textColorHint=0; /** * <p>This symbol is the offset where the {@link android.R.attr#hint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:hint */ public static final int TextInputLayout_android_hint=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxBackgroundColor} * attribute's value can be found in the {@link #TextInputLayout} array. * * <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 com.hdpolover.ybbproject:boxBackgroundColor */ public static final int TextInputLayout_boxBackgroundColor=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxBackgroundMode} * 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>filled</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>outline</td><td>2</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:boxBackgroundMode */ public static final int TextInputLayout_boxBackgroundMode=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxCollapsedPaddingTop} * attribute's value can be found in the {@link #TextInputLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:boxCollapsedPaddingTop */ public static final int TextInputLayout_boxCollapsedPaddingTop=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxCornerRadiusBottomEnd} * attribute's value can be found in the {@link #TextInputLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:boxCornerRadiusBottomEnd */ public static final int TextInputLayout_boxCornerRadiusBottomEnd=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxCornerRadiusBottomStart} * attribute's value can be found in the {@link #TextInputLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:boxCornerRadiusBottomStart */ public static final int TextInputLayout_boxCornerRadiusBottomStart=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxCornerRadiusTopEnd} * attribute's value can be found in the {@link #TextInputLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:boxCornerRadiusTopEnd */ public static final int TextInputLayout_boxCornerRadiusTopEnd=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxCornerRadiusTopStart} * attribute's value can be found in the {@link #TextInputLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:boxCornerRadiusTopStart */ public static final int TextInputLayout_boxCornerRadiusTopStart=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxStrokeColor} * attribute's value can be found in the {@link #TextInputLayout} array. * * <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 com.hdpolover.ybbproject:boxStrokeColor */ public static final int TextInputLayout_boxStrokeColor=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#boxStrokeWidth} * attribute's value can be found in the {@link #TextInputLayout} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:boxStrokeWidth */ public static final int TextInputLayout_boxStrokeWidth=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#counterEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:counterEnabled */ public static final int TextInputLayout_counterEnabled=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#counterMaxLength} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.hdpolover.ybbproject:counterMaxLength */ public static final int TextInputLayout_counterMaxLength=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#counterOverflowTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#counterTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#errorEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:errorEnabled */ public static final int TextInputLayout_errorEnabled=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#errorTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#helperText} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:helperText */ public static final int TextInputLayout_helperText=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#helperTextEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:helperTextEnabled */ public static final int TextInputLayout_helperTextEnabled=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#helperTextTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:helperTextTextAppearance */ public static final int TextInputLayout_helperTextTextAppearance=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hintAnimationEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hintEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:hintEnabled */ public static final int TextInputLayout_hintEnabled=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#hintTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#passwordToggleContentDescription} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#passwordToggleDrawable} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#passwordToggleEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#passwordToggleTint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <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 com.hdpolover.ybbproject:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode=27; /** * Attributes that can be used with a ThemeEnforcement. * <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 #ThemeEnforcement_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #ThemeEnforcement_enforceMaterialTheme com.hdpolover.ybbproject:enforceMaterialTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ThemeEnforcement_enforceTextAppearance com.hdpolover.ybbproject:enforceTextAppearance}</code></td><td></td></tr> * </table> * @see #ThemeEnforcement_android_textAppearance * @see #ThemeEnforcement_enforceMaterialTheme * @see #ThemeEnforcement_enforceTextAppearance */ public static final int[] ThemeEnforcement={ 0x01010034, 0x7f0300d1, 0x7f0300d2 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int ThemeEnforcement_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#enforceMaterialTheme} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:enforceMaterialTheme */ public static final int ThemeEnforcement_enforceMaterialTheme=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#enforceTextAppearance} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.hdpolover.ybbproject:enforceTextAppearance */ public static final int ThemeEnforcement_enforceTextAppearance=2; /** * 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 com.hdpolover.ybbproject:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.hdpolover.ybbproject:collapseContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.hdpolover.ybbproject:collapseIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.hdpolover.ybbproject:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.hdpolover.ybbproject:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.hdpolover.ybbproject:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.hdpolover.ybbproject:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.hdpolover.ybbproject:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.hdpolover.ybbproject:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logo com.hdpolover.ybbproject:logo}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.hdpolover.ybbproject:logoDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.hdpolover.ybbproject:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_menu com.hdpolover.ybbproject:menu}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.hdpolover.ybbproject:navigationContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.hdpolover.ybbproject:navigationIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.hdpolover.ybbproject:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.hdpolover.ybbproject:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.hdpolover.ybbproject:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.hdpolover.ybbproject:subtitleTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_title com.hdpolover.ybbproject:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.hdpolover.ybbproject:titleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.hdpolover.ybbproject:titleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.hdpolover.ybbproject:titleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.hdpolover.ybbproject:titleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.hdpolover.ybbproject:titleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.hdpolover.ybbproject:titleMargins}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.hdpolover.ybbproject:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.hdpolover.ybbproject: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_menu * @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, 0x7f030054, 0x7f03008d, 0x7f03008e, 0x7f0300a3, 0x7f0300a4, 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f030176, 0x7f030177, 0x7f03017b, 0x7f03017e, 0x7f030180, 0x7f030181, 0x7f030193, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f030210, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216, 0x7f030217, 0x7f030218, 0x7f030219 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * 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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final 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. * * <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), and * mm (millimeters). * * @attr name android:minHeight */ public static final int Toolbar_android_minHeight=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#collapseContentDescription} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#collapseIcon} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetEnd} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetEndWithActions} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetLeft} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetRight} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetStart} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#contentInsetStartWithNavigation} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#logo} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:logo */ public static final int Toolbar_logo=11; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#logoDescription} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#maxButtonHeight} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#menu} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:menu */ public static final int Toolbar_menu=14; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#navigationContentDescription} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=15; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#navigationIcon} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:navigationIcon */ public static final int Toolbar_navigationIcon=16; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#popupTheme} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:popupTheme */ public static final int Toolbar_popupTheme=17; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subtitle} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:subtitle */ public static final int Toolbar_subtitle=18; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subtitleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=19; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#subtitleTextColor} * attribute's value can be found in the {@link #Toolbar} array. * * <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 com.hdpolover.ybbproject:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=20; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#title} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.hdpolover.ybbproject:title */ public static final int Toolbar_title=21; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleMargin} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:titleMargin */ public static final int Toolbar_titleMargin=22; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleMarginBottom} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=23; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleMarginEnd} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=24; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleMarginStart} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:titleMarginStart */ public static final int Toolbar_titleMarginStart=25; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleMarginTop} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:titleMarginTop */ public static final int Toolbar_titleMarginTop=26; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleMargins} * attribute's value can be found in the {@link #Toolbar} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:titleMargins */ public static final int Toolbar_titleMargins=27; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=28; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#titleTextColor} * attribute's value can be found in the {@link #Toolbar} array. * * <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 com.hdpolover.ybbproject:titleTextColor */ public static final int Toolbar_titleTextColor=29; /** * 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_theme android:theme}</code></td><td></td></tr> * <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingEnd com.hdpolover.ybbproject:paddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingStart com.hdpolover.ybbproject:paddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #View_theme com.hdpolover.ybbproject:theme}</code></td><td></td></tr> * </table> * @see #View_android_theme * @see #View_android_focusable * @see #View_paddingEnd * @see #View_paddingStart * @see #View_theme */ public static final int[] View={ 0x01010000, 0x010100da, 0x7f030187, 0x7f030188, 0x7f030206 }; /** * <p>This symbol is the offset where the {@link android.R.attr#theme} * attribute's value can be found in the {@link #View} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:theme */ public static final int View_android_theme=0; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #View} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <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>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int View_android_focusable=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#paddingEnd} * attribute's value can be found in the {@link #View} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:paddingEnd */ public static final int View_paddingEnd=2; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#paddingStart} * attribute's value can be found in the {@link #View} 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), and * mm (millimeters). * * @attr name com.hdpolover.ybbproject:paddingStart */ public static final int View_paddingStart=3; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#theme} * attribute's value can be found in the {@link #View} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.hdpolover.ybbproject:theme */ public static final 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 com.hdpolover.ybbproject:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.hdpolover.ybbproject:backgroundTintMode}</code></td><td></td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f030034, 0x7f030035 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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:background */ public static final int ViewBackgroundHelper_android_background=0; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.R.attr#backgroundTint} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <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 com.hdpolover.ybbproject:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p>This symbol is the offset where the {@link com.hdpolover.ybbproject.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>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.hdpolover.ybbproject:backgroundTintMode */ public static final 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_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> * </table> * @see #ViewStubCompat_android_id * @see #ViewStubCompat_android_layout * @see #ViewStubCompat_android_inflatedId */ 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. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ViewStubCompat_android_id=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int ViewStubCompat_android_layout=1; /** * <p>This symbol is the offset where the {@link android.R.attr#inflatedId} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId=2; } }
[ "hendrapolover@gmail.com" ]
hendrapolover@gmail.com
784df3ab6e6210a080a84127a24bd2e41f90d53b
098ace17e6d4b74d8c7d1c9069a8ffc1f967f496
/app/src/androidTest/java/com/example/elizabethwhitebaker/choipainapp17032017/EpisodeA2Test2.java
009c75c62552351c97b4d8624a38e2d4b50f7a8e
[]
no_license
efrwhite/ChoiCancerPainApp
690bc8be3cf7159904ec01b3f1f8babf70898040
0eac6f943f83bc7a68804be7814361bac52f072d
refs/heads/master
2021-01-17T23:29:49.698478
2018-10-16T19:33:18
2018-10-16T19:33:18
84,223,624
1
0
null
null
null
null
UTF-8
Java
false
false
2,237
java
package com.example.elizabethwhitebaker.choipainapp17032017; import android.app.Activity; import android.app.Instrumentation; import android.support.test.espresso.Espresso; import android.support.test.rule.ActivityTestRule; import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import static android.support.test.InstrumentationRegistry.getInstrumentation; import static android.support.test.espresso.action.ViewActions.click; import static android.support.test.espresso.assertion.ViewAssertions.matches; import static android.support.test.espresso.matcher.ViewMatchers.withId; import static android.support.test.espresso.matcher.ViewMatchers.withSpinnerText; import static org.hamcrest.Matchers.anything; import static org.hamcrest.Matchers.containsString; import static org.junit.Assert.*; public class EpisodeA2Test2 { @Rule public ActivityTestRule<EpisodeA2> EpisodeA2TestRule = new ActivityTestRule<EpisodeA2>(EpisodeA2.class); private EpisodeA2 mActivity = null; Instrumentation.ActivityMonitor monitor1 = getInstrumentation().addMonitor(EpisodeA5.class.getName(),null,false); public int val = 50; public String check = "Chemotherapy"; @Before public void setUp() throws Exception { mActivity = EpisodeA2TestRule.getActivity(); } @Test public void testUserInputScenerio() { assertNotNull(mActivity.findViewById(R.id.textView23E2)); //Espresso.onView(EpisodeA1.PainLevel).check(matches(withText("30"))); //Espresso.onView((withId(R.id.spinner3E1))).perform(click()); //spinner to go to A3 instead of A5 Espresso.onView(withId(R.id.spinner)).perform(click()); Espresso.onData(anything()).atPosition(1).perform(click()); Espresso.onView(withId(R.id.spinner)).check(matches(withSpinnerText(containsString(check)))); //click button Espresso.onView(withId(R.id.button5E2)).perform(click()); Activity mActivity2 = getInstrumentation().waitForMonitorWithTimeout(monitor1,5000); assertNotNull(mActivity2); mActivity2.finish(); } @After public void tearDown() throws Exception { mActivity=null; } }
[ "swanandn1993@gmail.com" ]
swanandn1993@gmail.com
a67249390e33fb40458c0d194fe358138d63d8a5
52175baf228e4bca1b010698ff2a97fefaebb1d7
/cloudalibaba-consumer-nacos-order84/src/main/java/com/wj/springcloud/OrderNacosMain84.java
fd50cb8291c8ccd2d0521c1e18b02faedb3617d6
[]
no_license
qwerasdzxc123/cloud2020
6e537a2572e58c9ab1685fd1b7ba8ab9987aac8a
870fbcead14a47181c903ac8f8b2f888727e0892
refs/heads/master
2023-07-15T02:43:35.032500
2021-09-05T05:15:38
2021-09-05T05:15:38
403,221,512
0
0
null
null
null
null
UTF-8
Java
false
false
567
java
package com.wj.springcloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.openfeign.EnableFeignClients; /** * @author: WangJin * @description * @date: 2021/9/3 18:25 */ @EnableDiscoveryClient @SpringBootApplication @EnableFeignClients public class OrderNacosMain84 { public static void main(String[] args) { SpringApplication.run(OrderNacosMain84.class, args); } }
[ "WangJin@qq.com" ]
WangJin@qq.com
b4097a91e66fb4454ef76e535b59faf52b6e10d3
7bf74628e4b91404f2eb6d2bbfd986c2d326d044
/src/modulo-09 - java/CadastroDeFilmes/src/main/java/br/com/cwi/cadastrodefilmes/entity/Classificacao.java
b341ccbc112ed52f47a50562fca86410b80810c2
[]
no_license
RodrigoScheuer/crescer-2016-2
98fb426874a7e15e8b43457790513bb9b8f6f59d
15a3a7543d58ef445fd934120dae9d9bbf800c5f
refs/heads/master
2021-01-12T12:52:28.765963
2016-12-15T13:56:11
2016-12-15T13:56:11
69,388,908
0
0
null
2016-09-27T18:57:23
2016-09-27T18:57:22
null
UTF-8
Java
false
false
1,572
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 br.com.cwi.cadastrodefilmes.entity; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import static javax.persistence.GenerationType.SEQUENCE; import javax.persistence.Id; import javax.persistence.SequenceGenerator; import javax.persistence.Table; /** * * @author Rodrigo */ @Entity @Table(name = "Classificacao") public class Classificacao implements Serializable{ @Id @GeneratedValue(strategy = SEQUENCE, generator = "SEQ_CLASSIFICACAO") @SequenceGenerator(name = "SEQ_CLASSIFICACAO", sequenceName = "SEQ_CLASSIFICACAO", allocationSize = 1) @Basic(optional = false) @Column(name = "ID_CLASSIFICACAO") private Long idClassificacao; @Basic(optional = false) @Column(name = "DESCRICAO") private String descricao; @Column(name = "IDADE") private String idade; public Long getId() { return idClassificacao; } public void setId(Long id) { this.idClassificacao = id; } public String getDescricao() { return descricao; } public void setDescricao(String descricao) { this.descricao = descricao; } public String getIdade() { return idade; } public void setIdade(String idade) { this.idade = idade; } }
[ "rodrigo.scheuer@cwi.com.br" ]
rodrigo.scheuer@cwi.com.br
51b9b5875e71cec4d89d74bd1b5869b1eff641c2
e21086258a2ec71d7a0e695f1813eb9094d047de
/src/main/java/ru/vaszol/exam/web/printResult.java
7809eb5f76874d5bf6b2ac9b89492bc3e656ea95
[]
no_license
vaszol/ExamForPDD
3b1b3c3010a5c0b4ffccb540603195f9c994598c
dc6086ae44cd5c80e8e00192c905f11c0bc6b1aa
refs/heads/master
2021-01-10T02:08:57.274740
2015-10-07T20:32:02
2015-10-07T20:32:02
43,801,904
0
0
null
null
null
null
UTF-8
Java
false
false
1,251
java
package ru.vaszol.exam.web; import java.io.IOException; import java.util.HashMap; import javax.servlet.ServletConfig; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class printResult extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public printResult() { super(); // TODO Auto-generated constructor stub } /** * @see Servlet#init(ServletConfig) */ public void init(ServletConfig config) throws ServletException { // TODO Auto-generated method stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub } }
[ "vaszol@mail.ru" ]
vaszol@mail.ru
10a22cd120ff2103fe990e2c25943ba359e60edb
e6fa3964d7f41ae579cb1c93546e4a76c30cd914
/taobao-sdk-java-auto_1479188381469-20210114-source/DingTalk/com/dingtalk/api/response/CorpMessageCorpconversationSendmockResponse.java
5fb1025d4eb904feb707aef1b2cf051a9f4d9507
[]
no_license
devops-utils/dingtalk-sdk-java
14c4eb565dc605e6a7469ea0a00416567278846d
6381d0a22fdc948cba20fa0fc88c5818742177b7
refs/heads/master
2023-02-17T04:46:14.429121
2021-01-14T03:41:39
2021-01-14T03:41:39
329,497,955
0
0
null
null
null
null
UTF-8
Java
false
false
621
java
package com.dingtalk.api.response; import com.taobao.api.internal.mapping.ApiField; import com.taobao.api.TaobaoResponse; /** * TOP DingTalk-API: dingtalk.corp.message.corpconversation.sendmock response. * * @author top auto create * @since 1.0, null */ public class CorpMessageCorpconversationSendmockResponse extends TaobaoResponse { private static final long serialVersionUID = 3322569243433879716L; /** * 返回结果 */ @ApiField("result") private String result; public void setResult(String result) { this.result = result; } public String getResult( ) { return this.result; } }
[ "zhangchunsheng423@gmail.com" ]
zhangchunsheng423@gmail.com
0e435c549b9e27f274c24b2a71396822948045ce
77fb9eb8a0d8fbe53072d3c31f341961b10f7108
/src/main/java/com/websystique/springmvc/dao/CommentDao.java
2f55c48fc223c59f8b2107188c0888712336af2c
[]
no_license
UfimtsevArtem/Spring4MVCApacheTiles3Example
f1179952d38951aacb7f721f13ea9dbbf51df634
f79e76fc22286acd1cc26d89b6fe0d2782ed26dc
refs/heads/master
2021-01-21T03:34:01.143708
2017-09-24T23:33:29
2017-09-24T23:33:29
101,896,360
0
0
null
null
null
null
UTF-8
Java
false
false
544
java
package com.websystique.springmvc.dao; import com.websystique.springmvc.domain.Comment; import java.sql.SQLException; import java.util.Collection; /** * Created by ufimtsev on 29.08.2017. */ public interface CommentDao { void addComment(Comment comment) throws SQLException; void updateComment(Long comment_id, Comment comment) throws SQLException; Comment getCommentById(Long comment_id) throws SQLException; Collection getAllComments() throws SQLException; void deleteComment(Comment comment) throws SQLException; }
[ "ufimtsauartem@gmail.com" ]
ufimtsauartem@gmail.com
dcc2d74102a0146e10ee63122dcf4ff74406542e
e420f9a7bd7970712e66613bda585ed4bd884e19
/src/com/xpple/im/view/MyRelativeLayout.java
5155d52387bee07ddbc7df0d769703f142c76d8d
[ "Apache-2.0" ]
permissive
nEdAy/XPPLE_IM
de00ea82fb6f00e4e1743631a66253931456c439
091d971da97ffa78290fe2edaf997f3b8aa8f2fb
refs/heads/master
2021-01-12T12:29:07.079581
2016-11-01T07:59:44
2016-11-01T07:59:44
72,513,348
6
0
null
null
null
null
UTF-8
Java
false
false
1,132
java
package com.xpple.im.view; import android.annotation.SuppressLint; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import android.widget.RelativeLayout; import com.xpple.im.view.DragLayout.Status; public class MyRelativeLayout extends RelativeLayout { private DragLayout dl; public MyRelativeLayout(Context context) { super(context); } public MyRelativeLayout(Context context, AttributeSet attrs) { super(context, attrs); } public MyRelativeLayout(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public void setDragLayout(DragLayout dl) { this.dl = dl; } @Override public boolean onInterceptTouchEvent(MotionEvent event) { if (dl.getStatus() != Status.Close) { return true; } return super.onInterceptTouchEvent(event); } @SuppressLint("ClickableViewAccessibility") @Override public boolean onTouchEvent(MotionEvent event) { if (dl.getStatus() != Status.Close) { if (event.getAction() == MotionEvent.ACTION_UP) { dl.close(); } return true; } return super.onTouchEvent(event); } }
[ "neday@bk.ru" ]
neday@bk.ru
1591e261c088a35f83ad51fcef21568d3e3d1d1f
317700ea008680dd1b9c540aa0d697078faec300
/dalieJava/src/string/UpperOrLowerCaseAString.java
cbd8e195acb489bfd6ac551977744f31ed80fbd2
[]
no_license
dalie01/entwicklung
4edd6358dc5dd5c35d54e9b6796b4154e3f2759b
2fd1e83fd6558ecb600185463c60b724a0bfe3c7
refs/heads/master
2023-07-04T07:46:42.262391
2023-04-29T14:59:12
2023-04-29T14:59:12
162,731,108
0
0
null
2022-09-18T14:38:37
2018-12-21T15:44:25
JavaScript
UTF-8
Java
false
false
682
java
/* * @author DV0101 on 15.01.2010 um 07:19:45 * UpperOrLowerCaseAString.java * * no Copyright */ package string; /** * <b>Class</b>UpperOrLowerCaseAString :<br>Only for Demonstration.<br> * * @version 1.00 on 15.01.2010 um 07:19:45 * @author dv0101 * <br><br> * Markierten String <br> * von lowercase auf uppercase und umgekehrt schalten. */ public class UpperOrLowerCaseAString { public static void main(String args[]){ String demo = "Hallo World"; System.out.println("String demo = 'Hallo World'\n" + "demo.toUpperCase() -> " + demo.toUpperCase() + "\n" + "demo.toLowerCase() -> " + demo.toLowerCase()); }//main }//class UpperOrLowerCaseAString
[ "dalie@dalieweb.de" ]
dalie@dalieweb.de
dc9967a7348c9fa2f1e14767f380bd0d8f954844
d90d920c5eae9f54a19740e94c60061bcff58702
/src/main/java/io/remedymatch/angebot/controller/AngebotAnfragenIdSucheRequest.java
cd705b76b309b51766c35fbe19fc6ddf037fcfab
[ "Apache-2.0" ]
permissive
remedyMatch/rm-backend
f9cd6a59b06a089a29864173acc2ebcf1ddb4aab
43051344412da8d167c8b60bf9439f3b7be4823d
refs/heads/develop
2021-04-10T13:48:30.688711
2020-06-03T14:33:53
2020-06-03T14:33:53
248,938,527
9
6
Apache-2.0
2020-06-03T14:33:55
2020-03-21T08:49:54
Java
UTF-8
Java
false
false
407
java
package io.remedymatch.angebot.controller; import lombok.*; import javax.validation.constraints.NotNull; import java.util.ArrayList; import java.util.List; import java.util.UUID; @Getter @Setter @NoArgsConstructor @AllArgsConstructor @ToString @EqualsAndHashCode @Builder public class AngebotAnfragenIdSucheRequest { @NotNull @Builder.Default private List<UUID> ids = new ArrayList<>(); }
[ "dominik.horn93@gmail.com" ]
dominik.horn93@gmail.com
ff7bee378070e8201091b624c1396f267606369a
de60951ae0d20eec540c11c2e883f2b97aac7791
/app/src/main/java/katheria/vhp/Activity/AccountActivity.java
e34292591a93d6f343b353e4aca0bb0c697f7c48
[]
no_license
katheria09/NewProject
cf223adeca0b1fae7ee1e11a8e586bd4b8837057
1df9b0c8a4d411e653462f682802718a34197ffd
refs/heads/master
2021-01-22T06:07:16.709902
2017-03-31T01:44:41
2017-03-31T01:44:41
81,737,332
0
1
null
2017-04-01T08:25:09
2017-02-12T15:50:53
Java
UTF-8
Java
false
false
5,168
java
package katheria.vhp.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.support.design.widget.NavigationView; import android.support.v4.view.GravityCompat; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.ActionBarDrawerToggle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.TextView; import android.widget.Toast; import katheria.vhp.Fragment.HomeFragment; import katheria.vhp.Fragment.ProfileFragment; import katheria.vhp.Http.DataParser; import katheria.vhp.Http.HttpCall; import katheria.vhp.Model.Model_userDetails; import katheria.vhp.R; public class AccountActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener { String useremail; Context context = AccountActivity.this; NavigationView navigationView = null; Toolbar toolbar = null; TextView nav_name,nav_email; public static DataParser dp; String Name ,Email; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_account); Bundle bundle =getIntent().getExtras(); useremail=bundle.getString("Email"); Toast.makeText(AccountActivity.this,"Welcome you are logged in using,\n" + useremail,Toast.LENGTH_LONG).show(); new HttpCall().getUserDetails(context, useremail); HomeFragment fragment = new HomeFragment(); android.support.v4.app.FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); fragmentTransaction.replace(R.id.fragment_container,fragment); fragmentTransaction.commit(); toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); ActionBarDrawerToggle toggle = new ActionBarDrawerToggle( this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); drawer.setDrawerListener(toggle); toggle.syncState(); dp=new DataParser(); //Email= dp.getArrayList().get(0).email; //Name = dp.getArrayList().get(0).name; navigationView = (NavigationView) findViewById(R.id.nav_view); navigationView.setNavigationItemSelectedListener(this); View header=navigationView.getHeaderView(0); nav_name = (TextView) header.findViewById(R.id.nav_name); nav_email = (TextView) header.findViewById(R.id.nav_email); // nav_name.setText(dp.getArrayList().get(0).name); // nav_email.setText(Email); } @Override public void onBackPressed() { DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); if (drawer.isDrawerOpen(GravityCompat.START)) { drawer.closeDrawer(GravityCompat.START); } else { super.onBackPressed(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.account, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } @SuppressWarnings("StatementWithEmptyBody") @Override public boolean onNavigationItemSelected(MenuItem item) { // Handle navigation view item clicks here. int id = item.getItemId(); if (id == R.id.home) { HomeFragment fragment = new HomeFragment(); android.support.v4.app.FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); fragmentTransaction.replace(R.id.fragment_container,fragment); fragmentTransaction.commit(); } else if (id == R.id.profile) { ProfileFragment fragment = new ProfileFragment(); android.support.v4.app.FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); fragmentTransaction.replace(R.id.fragment_container,fragment); fragmentTransaction.commit(); } else if (id == R.id.nav_slideshow) { } else if (id == R.id.nav_manage) { } else if (id == R.id.share) { } else if (id == R.id.feedback) { } else if (id == R.id.logout) { } DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); drawer.closeDrawer(GravityCompat.START); return true; } }
[ "shekhar.borntofly@gmail.com" ]
shekhar.borntofly@gmail.com
b3c4bcd869921d345d868407e40fb1a94853d253
2873cfe68b9d00129c31b4087f0b8faf0ba1b49a
/CoolShoppingDemo/app/src/main/java/com/songlin/coolshoppingdemo/ui/activity/RegisterActivity.java
589ee8fa8693b020ead9674a21b2a984b6a1733d
[]
no_license
forestfsl/Android
6a274d7f956c38d40328c8e022c7ea0a0c87e740
c880cee0c342b0b682748d5e203ca98699fc3298
refs/heads/master
2020-03-25T15:31:11.121823
2018-08-07T14:46:23
2018-08-07T14:46:23
143,886,957
0
0
null
null
null
null
UTF-8
Java
false
false
263
java
package com.songlin.coolshoppingdemo.ui.activity; import com.songlin.coolshoppingdemo.ui.base.BaseActivity; /** * Created by songlin on 2018/7/31. */ public class RegisterActivity extends BaseActivity { public static final String INTENT_USER = "user"; }
[ "fengsonglin@healthmall.cn" ]
fengsonglin@healthmall.cn
550a0fd9550fc721ea741eed17ce7034fad844be
769033139d014e03684a7c7ef5b19a42ba6f2ff7
/src/main/java/me/evana/command/commands/commandQuick/QMasteryCommand.java
3ea8f0e3d569c4a0b4c0bc20f31b245893589c27
[]
no_license
evanamay/Iris-Discord-Bot
ecc96319c7df99f677d14863d052c341b3002e67
1b90562019273f63a0bf96542bb6621cc1bc154f
refs/heads/master
2023-04-18T06:38:43.346584
2021-04-26T22:13:07
2021-04-26T22:13:07
343,523,577
0
0
null
null
null
null
UTF-8
Java
false
false
2,553
java
package me.evana.command.commands.commandQuick; import me.evana.command.ICommand; import me.evana.command.commands.CommandContext; import me.evana.command.commands.RiotMain; import me.evana.command.leagueinfo.DataHolder; import net.dv8tion.jda.api.EmbedBuilder; import net.dv8tion.jda.api.entities.TextChannel; import net.rithms.riot.api.RiotApi; import net.rithms.riot.api.endpoints.champion_mastery.dto.ChampionMastery; import net.rithms.riot.constant.Platform; import java.awt.*; import java.text.NumberFormat; import java.util.List; import static me.evana.command.commands.RiotMatch.getSummonerName; public class QMasteryCommand implements ICommand { @Override public void handle(CommandContext ctx) throws Exception { final TextChannel channel = ctx.getChannel(); final List<String> args = ctx.getArgs(); String summonerName = getSummonerName(args,2); String plat = args.get(args.size()-2); if(args.size() != 3 || Integer.parseInt(args.get(args.size()-1)) > 50 || Integer.parseInt(args.get(args.size()-1)) < 1){ channel.sendMessage("Error: Wrong number of arguments").queue(); return; } NumberFormat myFormat = NumberFormat.getInstance(); myFormat.setGroupingUsed(true); final RiotApi riot = RiotMain.getRiotApi(); EmbedBuilder message = new EmbedBuilder(); message.setColor(Color.blue); message.setTitle(summonerName + "Top " + Integer.parseInt(args.get(args.size()-1)) + " Masteries"); List<ChampionMastery> championMasteries = riot.getChampionMasteriesBySummoner (Platform.getPlatformByName("NA"),riot.getSummonerByName(Platform.getPlatformByName(plat),summonerName).getId()); String msg= ""; for(int i = 0; i < Integer.parseInt(args.get(args.size()-1)); i++){ msg+= i+1+". " + DataHolder.getChampById(championMasteries.get(i).getChampionId()).getName() + " > Mastery " + championMasteries.get(i).getChampionLevel() + " (" + myFormat.format(championMasteries.get(i).getChampionPoints()) + " pts)\n"; } message.addField("Top Champion Mastery: ", msg , true); channel.sendMessage(message.build()).queue(); } @Override public String getName() { return "qmastery"; } @Override public String getHelp() { return "Returns champion mastery of X number of champions\n" + "Usage: `<qmastery <summoner name> <region> <list size>`"; } }
[ "evanamay@gmail.com" ]
evanamay@gmail.com
a640bcb2bd78c9eb9c94ab0d2ad30c8e145ab322
2bc2eadc9b0f70d6d1286ef474902466988a880f
/tags/mule-1.4.0/transports/vm/src/main/java/org/mule/providers/vm/VMConnector.java
bb3f376e1fe96bb190bdf8ebd02de584e6742d44
[]
no_license
OrgSmells/codehaus-mule-git
085434a4b7781a5def2b9b4e37396081eaeba394
f8584627c7acb13efdf3276396015439ea6a0721
refs/heads/master
2022-12-24T07:33:30.190368
2020-02-27T19:10:29
2020-02-27T19:10:29
243,593,543
0
0
null
2022-12-15T23:30:00
2020-02-27T18:56:48
null
UTF-8
Java
false
false
7,992
java
/* * $Id$ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the MuleSource MPL * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.providers.vm; import org.mule.MuleManager; import org.mule.config.QueueProfile; import org.mule.config.i18n.Message; import org.mule.config.i18n.Messages; import org.mule.impl.MuleMessage; import org.mule.impl.endpoint.MuleEndpointURI; import org.mule.providers.AbstractConnector; import org.mule.routing.filters.WildcardFilter; import org.mule.transaction.TransactionCoordination; import org.mule.umo.MessagingException; import org.mule.umo.TransactionException; import org.mule.umo.UMOComponent; import org.mule.umo.UMOException; import org.mule.umo.UMOTransaction; import org.mule.umo.endpoint.EndpointException; import org.mule.umo.endpoint.UMOEndpoint; import org.mule.umo.endpoint.UMOEndpointURI; import org.mule.umo.lifecycle.InitialisationException; import org.mule.umo.provider.MessageTypeNotSupportedException; import org.mule.umo.provider.UMOMessageAdapter; import org.mule.umo.provider.UMOMessageReceiver; import org.mule.util.ClassUtils; import org.mule.util.queue.QueueManager; import org.mule.util.queue.QueueSession; import java.util.Iterator; /** * <code>VMConnector</code> is a simple endpoint wrapper to allow a Mule component * to be accessed from an endpoint */ public class VMConnector extends AbstractConnector { private boolean queueEvents = false; private QueueProfile queueProfile; private Class adapterClass = null; private int queueTimeout = 1000; /* * (non-Javadoc) * * @see org.mule.providers.AbstractConnector#create() */ protected void doInitialise() throws InitialisationException { if (queueEvents) { if (queueProfile == null) { queueProfile = MuleManager.getConfiguration().getQueueProfile(); } } try { adapterClass = ClassUtils.loadClass(serviceDescriptor.getMessageAdapter(), getClass()); } catch (ClassNotFoundException e) { throw new InitialisationException(new Message(Messages.FAILED_LOAD_X, "Message Adapter: " + serviceDescriptor.getMessageAdapter()), e); } } protected void doDispose() { // template method } protected void doConnect() throws Exception { // template method } protected void doDisconnect() throws Exception { // template method } protected void doStart() throws UMOException { // template method } protected void doStop() throws UMOException { // template method } /* * (non-Javadoc) * * @see org.mule.umo.provider.UMOConnector#registerListener(org.mule.umo.UMOSession, * org.mule.umo.endpoint.UMOEndpoint) */ public UMOMessageReceiver createReceiver(UMOComponent component, UMOEndpoint endpoint) throws Exception { if (queueEvents) { queueProfile.configureQueue(endpoint.getEndpointURI().getAddress()); } return serviceDescriptor.createMessageReceiver(this, component, endpoint); } /* * (non-Javadoc) * * @see org.mule.umo.provider.UMOConnector#getMessageAdapter(java.lang.Object) */ public UMOMessageAdapter getMessageAdapter(Object message) throws MessagingException { if (message == null) { throw new MessageTypeNotSupportedException(null, adapterClass); } else if (message instanceof MuleMessage) { return ((MuleMessage)message).getAdapter(); } else if (message instanceof UMOMessageAdapter) { return (UMOMessageAdapter)message; } else { throw new MessageTypeNotSupportedException(message, adapterClass); } } /* * (non-Javadoc) * * @see org.mule.umo.provider.UMOConnector#getProtocol() */ public String getProtocol() { return "VM"; } public boolean isQueueEvents() { return queueEvents; } public void setQueueEvents(boolean queueEvents) { this.queueEvents = queueEvents; } public QueueProfile getQueueProfile() { return queueProfile; } public void setQueueProfile(QueueProfile queueProfile) { this.queueProfile = queueProfile; } VMMessageReceiver getReceiver(UMOEndpointURI endpointUri) throws EndpointException { return (VMMessageReceiver)getReceiverByEndpoint(endpointUri); } QueueSession getQueueSession() throws InitialisationException { QueueManager qm = MuleManager.getInstance().getQueueManager(); UMOTransaction tx = TransactionCoordination.getInstance().getTransaction(); if (tx != null) { if (tx.hasResource(qm)) { if (logger.isTraceEnabled()) { logger.trace("Retrieving queue session from current transaction"); } return (QueueSession)tx.getResource(qm); } } if (logger.isTraceEnabled()) { logger.trace("Retrieving new queue session from queue manager"); } QueueSession session = qm.getQueueSession(); if (tx != null) { logger.debug("Binding queue session to current transaction"); try { tx.bindResource(qm, session); } catch (TransactionException e) { throw new RuntimeException("Could not bind queue session to current transaction", e); } } return session; } protected UMOMessageReceiver getReceiverByEndpoint(UMOEndpointURI endpointUri) throws EndpointException { if (logger.isDebugEnabled()) { logger.debug("Looking up vm receiver for address: " + endpointUri.toString()); } UMOMessageReceiver receiver; // If we have an exact match, use it receiver = (UMOMessageReceiver)receivers.get(endpointUri.getAddress()); if (receiver != null) { if (logger.isDebugEnabled()) { logger.debug("Found exact receiver match on endpointUri: " + endpointUri); } return receiver; } // otherwise check each one against a wildcard match for (Iterator iterator = receivers.values().iterator(); iterator.hasNext();) { receiver = (UMOMessageReceiver)iterator.next(); String filterAddress = receiver.getEndpointURI().getAddress(); WildcardFilter filter = new WildcardFilter(filterAddress); if (filter.accept(endpointUri.getAddress())) { receiver.getEndpoint().setEndpointURI(new MuleEndpointURI(endpointUri, filterAddress)); if (logger.isDebugEnabled()) { logger.debug("Found receiver match on endpointUri: " + receiver.getEndpointURI() + " against " + endpointUri); } return receiver; } } if (logger.isDebugEnabled()) { logger.debug("No receiver found for endpointUri: " + endpointUri); } return null; } // @Override public boolean isRemoteSyncEnabled() { return true; } public int getQueueTimeout() { return queueTimeout; } public void setQueueTimeout(int queueTimeout) { this.queueTimeout = queueTimeout; } }
[ "dirk.olmes@bf997673-6b11-0410-b953-e057580c5b09" ]
dirk.olmes@bf997673-6b11-0410-b953-e057580c5b09
6545341805b0b727d201fa5bf3afb6b692605577
726218fea47b14fee05130b91771c0f0fb205122
/src/net/jotwiki/ctrl/AdminFileManager.java
8e36e5e68a8b5c8767d26ef5a3c05b1fbca7f81b
[]
no_license
tcolar/JotWiki
eae382df4fc1e8424284e9121abbeb2762af4022
ed7f763ada00c25083c4a8c39162b91e7779d219
refs/heads/master
2021-01-01T06:33:28.546609
2013-09-06T03:56:16
2013-09-06T03:56:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,857
java
/** ------------------------------------ JOTWiki Thibaut Colar tcolar-wiki AT colar DOT net Licence at http://www.jotwiki.net ------------------------------------ */ package net.jotwiki.ctrl; import java.io.File; import net.jot.web.filebrowser.JOTFileBrowserController; import net.jot.web.filebrowser.JOTFileBrowserHelper; import net.jot.web.filebrowser.JOTFileBrowserSession; import net.jotwiki.WikiPreferences; import net.jotwiki.db.WikiPermission; /** * This is an extension to the standard JOTFileBrowserController * Customize for the Wiki Admin user with extra functionnality * such as browse all files, delete, view all etc... * @author tcolar */ public class AdminFileManager extends JOTFileBrowserController { /** * Provides all the 'Admin' permissions * @return */ public JOTFileBrowserSession createFbSession() { String rootFolder=WikiPreferences.getInstance().getDataFolder(); String startFolder=rootFolder; JOTFileBrowserSession fbSession=new JOTFileBrowserSession(new File(rootFolder), new File(startFolder),JOTFileBrowserHelper.TYPE_BROWSE); fbSession.setTitle("Administrator File Manager"); fbSession.setNbOfUploadFields(5); fbSession.setMaxUploadSize(50000000);//50MB fbSession.setAllowCreateFolders(true); fbSession.setAllowUploadFile(true); fbSession.setAllowDelete(true); fbSession.setAllowDeleteFilledFolders(true); fbSession.setAllowListHiddenFiles(true); fbSession.setAllowPickRootFolder(true); fbSession.setAllowRenaming(true); fbSession.setAllowUpdateFile(true); fbSession.setAllowDownloadFile(true); fbSession.setAllowBrowsing(true); fbSession.setAllowListFiles(true); return fbSession; } public boolean validatePermissions() { return WikiPermission.hasPermission(request, WikiPermission.MANAGE_FILES); } }
[ "devnull@localhost" ]
devnull@localhost
b189fa415a5e64c7ebd0a4e25859ace2139062b8
26eb4fc287acfc753cb8ea9f5eeddee2125efdeb
/SaitejaNulaLab/src/doselectLab5/ValidateAgeEx1.java
f24a5a1ba2e084636336442d9f879168ea392520
[]
no_license
SAITEJANULA/LabAssignmentSaitejaNula
356459e1e0e0d76757ffe8f0bb30cea3a4b6789b
44c809d7dd79c9e7a3fe514284b3ad5bb58f3f9f
refs/heads/main
2023-01-24T02:11:56.093866
2020-11-03T04:56:13
2020-11-03T04:56:13
306,375,046
0
0
null
null
null
null
UTF-8
Java
false
false
1,034
java
package doselectLab5; import java.util.Scanner; /** * * @author Nula Sai Teja * this class is created for Validate the age of a person * and display proper message */ public class ValidateAgeEx1 { /** * logic for checking age */ static void age(int age) throws Age { if (age< 15) { throw new Age("invalid age"); } else { System.out.println("valid age"); } } public static void main(String[] args) throws Age { Scanner sc = new Scanner(System.in);//creating a scanner obj int age = sc.nextInt();//user input try { // Block of code to try age(age); //calling the method for age validation } catch (Age e) { // Block of code to handle errors System.out.println(e.getMessage()); } } } /** * * @author Nula Sai Teja *this is default class for user defined exception */ class Age extends Exception { public Age() { // Call constructor of parent Exception super(); } public Age(String e) { // Call parameter constructor of parent Exception super(e); } }
[ "73275326+SAITEJANULA@users.noreply.github.com" ]
73275326+SAITEJANULA@users.noreply.github.com
9b120acd0b0494688566c61a5a0ab2933c626e1b
4da340a6db0eb1d845fec6aaf6b75a6871987eea
/org.adichatz.generator/src/generator/org/adichatz/generator/xjc/ManagedToolBarType.java
e9b4b5819956cb8b5013a5f35e188ca210185897
[]
no_license
YvesDrumbonnet/Adichatz-RCP-Eclipse
107bbf784407a6167729e9ed82c5546f3f8e3b5d
359c430f6daec55cab93a63d08c669fcd05dea84
refs/heads/master
2023-08-26T02:06:25.194503
2020-04-28T15:49:51
2020-04-28T15:49:51
256,515,394
0
0
null
null
null
null
ISO-8859-1
Java
false
false
3,118
java
// // Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.8-b130911.1802 // Voir <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source. // Généré le : 2020.01.22 à 11:02:17 AM CET // package org.adichatz.generator.xjc; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; /** * <p>Classe Java pour managedToolBarType complex type. * * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * * <pre> * &lt;complexType name="managedToolBarType"> * &lt;complexContent> * &lt;extension base="{}collectionType"> * &lt;choice maxOccurs="unbounded" minOccurs="0"> * &lt;element name="action" type="{}actionType"/> * &lt;element name="menuAction" type="{}menuActionType"/> * &lt;element name="separator" type="{}separatorType"/> * &lt;/choice> * &lt;/extension> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(factoryClass=WrapperFactory.class, factoryMethod="getManagedToolBarType", name = "managedToolBarType", propOrder = { "actionOrMenuActionOrSeparator" }) public class ManagedToolBarType extends CollectionType implements Serializable { private final static long serialVersionUID = 1L; @XmlElements({ @XmlElement(name = "action", type = ActionType.class), @XmlElement(name = "menuAction", type = MenuActionType.class), @XmlElement(name = "separator", type = SeparatorType.class) }) protected List<WidgetType> actionOrMenuActionOrSeparator; /** * Gets the value of the actionOrMenuActionOrSeparator property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the actionOrMenuActionOrSeparator property. * * <p> * For example, to add a new item, do as follows: * <pre> * getActionOrMenuActionOrSeparator().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ActionType } * {@link MenuActionType } * {@link SeparatorType } * * */ public List<WidgetType> getActionOrMenuActionOrSeparator() { if (actionOrMenuActionOrSeparator == null) { actionOrMenuActionOrSeparator = new ArrayList<WidgetType>(); } return this.actionOrMenuActionOrSeparator; } }
[ "yves@adichatz.org" ]
yves@adichatz.org
ed8a62c71bf65710dca8665a12c523cad4f9f9ff
9ccdb72d4e22815ba89da24cd21d427d6649c7eb
/src/com/company/Task3/People.java
518d22a6918c13435fd3c32b3a534cacc084d3cd
[]
no_license
VadimBartoshik/01_Java_Core
3d120abea2e6cdea940a32b5fb61300d650a2209
2e74988e5071a4f1fa2b3a7453a4cb54098aa986
refs/heads/master
2022-04-09T22:16:05.837020
2020-04-01T18:32:56
2020-04-01T18:32:56
250,314,302
0
0
null
null
null
null
UTF-8
Java
false
false
790
java
package com.company.Task3; import java.util.Date; public class People { private String surName; private String name; private int age; public People(){ } public People(String surName, String name, int age) { this.surName = surName; this.name = name; this.age = age; } public void work() { System.out.println("are working"); } public String getSurName() { return surName; } public void setSurName(String surName) { this.surName = surName; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
[ "39944778+DmitriyBartoshik@users.noreply.github.com" ]
39944778+DmitriyBartoshik@users.noreply.github.com
5b97bcb76b7668322276a938bf465599a63a632d
94157054bbf26c7de08728d3be2ba38405771ca8
/app/src/test/java/com/schoolapp/agricath/ExampleUnitTest.java
6ddc360a65efe417001fe7ee598fa773186be7e6
[]
no_license
fterrani/ArcGIS-Agricathon
866330862d42ec36100d4f19f0190bc8f09d7afc
65d1e7023311758707b6630aa5cf8164f38703ed
refs/heads/master
2020-03-17T20:50:55.728072
2018-05-18T15:50:26
2018-05-18T15:50:26
133,931,501
0
0
null
null
null
null
UTF-8
Java
false
false
400
java
package com.schoolapp.agricath; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "fabien.terrani@students.hevs.ch" ]
fabien.terrani@students.hevs.ch
9ee2afe9fb059bddcd3af006cc8d79951ac79cea
16da9cd023d9e52e2ff5e29b15e45a7ed60dd7c3
/src/test/java/com/github/tinosteinort/flda/stringlist/writer/BooleanAttributeWriterTest.java
f708ee6f0f1bb62097bf654871b4c8398b59d7af
[ "Apache-2.0" ]
permissive
tinosteinort/flda-stringlist
db544a259f4a6b797f36fa0444ae3bcd70c3cb33
9e12793f7438b4d6d9cf72d5cdff382ac6ab1453
refs/heads/master
2021-09-15T09:24:45.744057
2018-05-29T19:58:59
2018-05-29T19:58:59
116,057,556
0
0
null
null
null
null
UTF-8
Java
false
false
1,377
java
package com.github.tinosteinort.flda.stringlist.writer; import com.github.tinosteinort.flda.stringlist.StringListAttribute; import org.junit.Test; import java.util.ArrayList; import java.util.List; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; public class BooleanAttributeWriterTest { private final BooleanAttributeWriter writer = new BooleanAttributeWriter(); @Test public void writeTrue() { final List<String> record = new ArrayList<>(1); record.add(null); final StringListAttribute<Boolean> attribute = new StringListAttribute<>(Boolean.class, 0); writer.write(record, attribute, true); assertEquals("true", record.get(0)); } @Test public void writeFalse() { final List<String> record = new ArrayList<>(1); record.add(null); final StringListAttribute<Boolean> attribute = new StringListAttribute<>(Boolean.class, 0); writer.write(record, attribute, false); assertEquals("false", record.get(0)); } @Test public void writeNullValue() { final List<String> record = new ArrayList<>(1); record.add("SomeValue"); final StringListAttribute<Boolean> attribute = new StringListAttribute<>(Boolean.class, 0); writer.write(record, attribute, null); assertNull(record.get(0)); } }
[ "tinosteinort@live.de" ]
tinosteinort@live.de