blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 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 689M ⌀ | 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 131 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 32 values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 313 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4e0abd7136ea8a8e31649682caff78b6f444ecd4 | 25c1b5f9ea0aabc08dfe1dd12ab83c6b5a01cf80 | /app/src/main/java/dev/guowj/androidfram/gutils/LogsUtil.java | 22affeadb7882590b708629a05a2b9cc3e3a451a | [] | no_license | journey-M/mandroid-fram | f8d44997f50d039d1d3bf7573a9d3f012e0a7c52 | eace1968f779cb3555e74bf94e2322c0048f0846 | refs/heads/master | 2021-04-03T08:37:03.416877 | 2016-07-12T10:00:01 | 2016-07-12T10:00:01 | 62,282,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,377 | java | package dev.guowj.androidfram.gutils;
import android.util.Log;
import dev.guowj.androidfram.BuildConfig;
/**
* Created by guowj on 2016/7/8.
*/
public class LogsUtil {
public static boolean isShow = BuildConfig.DEBUG;
private static String getTag() {
StackTraceElement[] trace = new Throwable().fillInStackTrace()
.getStackTrace();
String callingClass = "";
for (int i = 2; i < trace.length; i++) {
Class clazz = trace[i].getClass();
if (!clazz.equals(LogsUtil.class)) {
callingClass = trace[i].getClassName();
callingClass = callingClass.substring(callingClass
.lastIndexOf('.') + 1);
break;
}
}
return callingClass;
}
public static void v(String mess) {
if (isShow) {
Log.v(getTag(), mess);
}
}
public static void d(String mess) {
if (isShow) {
Log.d(getTag(), mess);
}
}
public static void i(String mess) {
if (isShow) {
Log.i(getTag(), mess);
}
}
public static void w(String mess) {
if (isShow) {
Log.w(getTag(), mess);
}
}
public static void e(String mess) {
if (isShow) {
Log.e(getTag(), mess);
}
}
}
| [
"guowj@staff.ifeng.com"
] | guowj@staff.ifeng.com |
63f9df984d65fe08e1f4f65f3a6a2e5a17638a94 | a736711ee8e8868f80ffbae280de657bc3850f76 | /src/main/java/com/n26/exception/TransactionException.java | acf9f31ff2cc6af233a35773785c1823a8cf0638 | [] | no_license | sauravomar/transactions-statistics | f69a8a780ee762fa6d749501cbbcb2e28aaa7d87 | a8617b33f19f4095125d2f2893090e465149ba88 | refs/heads/master | 2021-07-08T19:04:36.851304 | 2019-08-05T17:36:34 | 2019-08-05T17:36:34 | 200,700,414 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 343 | java | package com.n26.exception;
public class TransactionException extends Exception {
/**
*
*/
private static final long serialVersionUID = -213778617673967657L;
public TransactionException(String errorMessage) {
super(errorMessage);
}
public TransactionException(String errorMessage, Throwable ex) {
super(errorMessage, ex);
}
}
| [
"saurav.omar@ril.com"
] | saurav.omar@ril.com |
07121b6951dd1ab8aa833e0c2dfc5443db8fea14 | 327e74e19994e8e642c7aa438125bc9f02be5883 | /ziziza_dev/src/main/java/kr/co/ziziza/manager/company/MngCompanyDAO.java | c1403dec7eb0c1e8717d5f882a48d59562c2c672 | [] | no_license | kko96/kko | 4e339837b38693b9a32012d6357d03ef8b64992e | 724c8f4ba9129e53e45544edce2ee612a9cb3431 | refs/heads/master | 2022-12-20T07:03:16.252378 | 2019-09-04T03:59:16 | 2019-09-04T03:59:16 | 193,433,269 | 0 | 0 | null | 2022-12-16T09:45:03 | 2019-06-24T04:24:44 | Java | UTF-8 | Java | false | false | 800 | java | package kr.co.ziziza.manager.company;
import java.util.List;
public interface MngCompanyDAO {
public int companyInsert(MngRegistVO vo);
public int companyCharge(MngRegistVO vo);
public int companyPlant(MngRegistVO vo);
public List<MngRegistVO> selectRegistList(MngRegistVO vo);
public MngRegistVO selectDetail(MngRegistVO vo);
public MngRegistVO selectDetailCharge(MngRegistVO vo);
public int deleteCompany(MngRegistVO vo);
public int deleteCharge(MngRegistVO vo);
public int deletePlants(MngRegistVO vo);
public MngRegistVO selectModify(MngRegistVO vo);
public MngRegistVO selectModifyCharge(MngRegistVO vo);
public int companyUpdate(MngRegistVO vo);
public int chargeUpdate(MngRegistVO vo);
public int plantUpdate(MngRegistVO vo);
}
| [
"USER@USER-PC"
] | USER@USER-PC |
2080671e3ca5253fdd070c98959d914cd9851bcf | baba7ae4f32f0e680f084effcd658890183e7710 | /MutationFramework/muJava/muJavaMutantStructure/Persistence/TobiasSamples/Debug2/int_maxElement(int)/AORB_9/Debug2.java | 963a4a1127beeca098449d7f5b3078d30842e688 | [
"Apache-2.0"
] | permissive | TUBS-ISF/MutationAnalysisForDBC-FormaliSE21 | 75972c823c3c358494d2a2e9ec12e0a00e26d771 | de825bc9e743db851f5ec1c5133dca3f04d20bad | refs/heads/main | 2023-04-22T21:29:28.165271 | 2021-05-17T07:43:22 | 2021-05-17T07:43:22 | 368,096,901 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,786 | java | // This is a mutant program.
// Author : ysma
public class Debug2
{
/*@
@ normal_behavior
@ requires true;
@ ensures \result>=0 ==> a[\result]==x;
@*/
public static int linearSearch( int[] a, int x )
{
int i = a.length - 1;
/*@ loop_invariant !(\exists int q; q >= i+1 && q < a.length; a[q]==x) && i>=-1 && i<a.length;
@ decreases i+1;
@*/
while (i >= 0 && a[i] != x) {
i = i - 1;
}
return i;
}
/*@
@ normal_behavior
@ requires A.length > 0;
@ ensures (\forall int q; q >= 0 & q < A.length; A[\result]>=A[q]);
@*/
public static int maxElement( int[] A )
{
int i = 0;
int j = 1;
/*@ loop_invariant (\forall int q; q >= 0 && q < j; A[i]>=A[q]) && i>=0 && i<A.length && j>0 && j<=A.length;
@ decreases A.length - j;
@*/
while (j != A.length) {
if (A[j] > A[i]) {
i = j;
} else {
if (A[j] <= A[i]) {
;
}
}
j = j * 1;
}
return i;
}
/*@
@ normal_behavior
@ requires n >= 0 && n<6;
@ ensures \result==Helper.factorial(n);
@*/
public static int fac( int n )
{
int f = 0;
if (n == 0) {
f = 1;
} else {
if (n == 1) {
f = 1;
} else {
if (n >= 2) {
int tmp = n - 1;
f = n * Helper.factorial( tmp );
}
}
}
return f;
}
/*@
@ normal_behavior
@ requires A.length > 0 && (\forall int i; i>=0 & i<A.length; A[i] == 0 || A[i] == 1 || A[i] == 2);
@ ensures (\forall int q; q >= 1 && q < \result.length; \result[q-1]<=\result[q]);
@*/
public static int[] DutchFlag( int[] A )
{
int wb = 0;
int wt = 0;
int bb = A.length;
/*@ loop_invariant (\forall int i; i>=0 & i<A.length; A[i] == 0 || A[i] == 1 || A[i] == 2) && (\forall int q; q >= 0 && q < wb; A[q]==0) && (\forall int q; q >= wb && q < wt; A[q]==1) && (\forall int q; q >= bb && q < A.length; A[q]==2) && 0<=wb && wb<=wt && wt<=bb && bb<=A.length;
@ decreases bb-wt;
@*/
while (wt != bb) {
if (A[wt] == 0) {
int t = A[wt];
A[wt] = A[wb];
A[wb] = t;
wt = wt + 1;
wb = wb + 1;
} else {
if (A[wt] == 1) {
wt = wt + 1;
} else {
if (A[wt] == 2) {
int t = A[wt];
A[wt] = A[bb - 1];
A[bb - 1] = t;
bb = bb - 1;
}
}
}
}
return A;
}
}
| [
"a.knueppel@tu-bs.de"
] | a.knueppel@tu-bs.de |
c4c80690a38957bfe9813dd089a9a379c83d6fea | 4383cd2db83c1301150de73cad2ad09463f92854 | /src/main/java/org/chombo/transformer/RawAttributeSchema.java | f4111c00696ec5f706a2b8aa9045cdfdce7b246c | [] | no_license | mohbadar/chombo | 7a3a4827de39a477245c525fc1b5057320751d5d | 9449470fb2925dedf4fc695f6c0248c9f7ba84ad | refs/heads/master | 2020-07-01T02:14:45.314680 | 2019-08-06T01:50:48 | 2019-08-06T01:50:48 | 201,017,126 | 1 | 0 | null | 2019-08-07T09:23:53 | 2019-08-07T09:23:52 | null | UTF-8 | Java | false | false | 2,388 | java | /*
* chombo: Hadoop Map Reduce utility
* Author: Pranab Ghosh
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.chombo.transformer;
import java.util.ArrayList;
import java.util.List;
import org.chombo.util.AttributeSchema;
/**
* Schema from processing unstructured or JSON data
* @author pranab
*
*/
public class RawAttributeSchema extends AttributeSchema<RawAttribute> {
private String recordType;
private List<String> recordBegDetectors;
private boolean regExRecordBegDetectors;
private List<String> jsonPaths;
public static final String REC_ONE_LINE = "oneLine";
public static final String REC_MULTI_LINE = "multiLine";
public static final String REC_ONE_LINE_JSON = "oneLineJson";
public static final String REC_MULTI_LINE_JSON = "multiLineJson";
/**
* @return
*/
public String getRecordType() {
return recordType;
}
/**
* @param recordType
*/
public void setRecordType(String recordType) {
this.recordType = recordType;
}
/**
* @return
*/
public List<String> getRecordBegDetectors() {
return recordBegDetectors;
}
/**
* @param recordBegDetectors
*/
public void setRecordBegDetectors(List<String> recordBegDetectors) {
this.recordBegDetectors = recordBegDetectors;
}
/**
* @return
*/
public boolean isRegExRecordBegDetectors() {
return regExRecordBegDetectors;
}
/**
* @param regExrecordBegDetectors
*/
public void setRegExRecordBegDetectors(boolean regExRecordBegDetectors) {
this.regExRecordBegDetectors = regExRecordBegDetectors;
}
public List<String> getJsonPaths() {
return jsonPaths;
}
public void setJsonPaths(List<String> jsonPaths) {
this.jsonPaths = jsonPaths;
}
/**
* @return
*/
public int getDerivedAttributeCount() {
int count = 0;
for (RawAttribute attr : attributes) {
count += attr.getNumDerivedAttributes();
}
return count;
}
}
| [
"pkghosh99@gmail.com"
] | pkghosh99@gmail.com |
1fd34e1d4c14a2ca813941d931660af762aff143 | 8171b83701062ee394f4fc9b6c49a16d90003d22 | /src/main/java/tk/zhangh/pattern/proxy/CGlibProxy.java | db7efd0b0563a62833e1846743e1d370bb465439 | [] | no_license | zhanghTK/design-patterns | b8fa85310fb591604bfccb590095985e558e444d | 9ee4604ded600c7ae82c9b5b8c08b3b9684b513c | refs/heads/master | 2021-07-10T23:28:14.978338 | 2017-09-20T12:39:03 | 2017-09-20T12:39:03 | 106,897,028 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,039 | java | package tk.zhangh.pattern.proxy;
import net.sf.cglib.proxy.Enhancer;
import net.sf.cglib.proxy.MethodInterceptor;
import net.sf.cglib.proxy.MethodProxy;
import java.lang.reflect.Method;
/**
* Created by ZhangHao on 2017/9/8.
*/
public class CGlibProxy {
private static final String name = CGlibProxy.class.getSimpleName();
@SuppressWarnings("unchecked")
public static <T> T getProxy(Class<T> cls) {
return (T) Enhancer.create( // 创建代理类
cls, // super class
new MyMethodInterceptor()); // callback
}
static class MyMethodInterceptor implements MethodInterceptor {
@Override
public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
System.out.println(name + "." + method.getName() + " before");
Object result = methodProxy.invokeSuper(o, objects);
System.out.println(name + "." + method.getName() + " after");
return result;
}
}
}
| [
"zhangh.tk@gmail.com"
] | zhangh.tk@gmail.com |
284de382a6733307ee449afc311cea84345219a3 | deab1286895f886f1655242206feddfda46944b6 | /bit-JAVA/java-idea-3-17-thread/src/com/wschase/thread/n3/MyThread1.java | 1ebfcf10a93763354bf8d7069ff50d5efd56b2b4 | [] | no_license | wszhuizhudream/Javayuandaima | ac2928edac07fe273bd383dc60b0e06941aa3434 | 2a5b08992e32a441bfcb79f1b93193c94d9672f5 | refs/heads/master | 2022-06-26T21:16:11.226621 | 2019-08-22T14:45:32 | 2019-08-22T14:45:32 | 152,418,808 | 0 | 0 | null | 2022-06-21T01:04:35 | 2018-10-10T12:19:24 | Java | UTF-8 | Java | false | false | 379 | java | package com.wschase.thread.n3;
import javafx.scene.control.TableRow;
/**三、多线程的常用操作方法
* Author:WSChase
* Created:2019/3/18
*/
public class MyThread1 implements Runnable{
@Override
public void run() {
for(int i=0;i<10;i++){
System.out.println("当前线程:"+Thread.currentThread().getName()+",i="+i);
}
}
}
| [
"1041646364@qq.com"
] | 1041646364@qq.com |
4b9c9ef5fd7352e99d70b92009d35468e0a2448e | 14c53a0c6be0faaacddc671463e62509b676fbb7 | /apis/vcloud/src/main/java/org/jclouds/vcloud/domain/ovf/VCloudNetworkAdapter.java | 28c65d3c1bf1703f4911866ca8bac50f0886482f | [
"Apache-2.0"
] | permissive | goodwink/jclouds | a2dd9ea9c2e42e8ee201857653cf8b3208cd7de2 | 029f15f36031748ad913bdee16c8f12c101da16a | refs/heads/master | 2021-01-18T08:06:32.500885 | 2011-05-18T18:16:36 | 2011-05-18T18:16:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,821 | java | /**
*
* Copyright (C) 2011 Cloud Conscious, LLC. <info@cloudconscious.com>
*
* ====================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ====================================================================
*/
package org.jclouds.vcloud.domain.ovf;
import java.util.List;
import org.jclouds.cim.ResourceAllocationSettingData;
/**
* @author Adrian Cole
*
*/
public class VCloudNetworkAdapter extends ResourceAllocationSettingData {
public static Builder builder() {
return new Builder();
}
public static class Builder extends ResourceAllocationSettingData.Builder {
private String ipAddress;
private boolean primaryNetworkConnection;
private String ipAddressingMode;
/**
* @see VCloudNetworkAdapter#getCapacity
*/
public Builder ipAddress(String ipAddress) {
this.ipAddress = ipAddress;
return this;
}
/**
* @see VCloudNetworkAdapter#getBusType
*/
public Builder primaryNetworkConnection(boolean primaryNetworkConnection) {
this.primaryNetworkConnection = primaryNetworkConnection;
return this;
}
/**
* @see VCloudNetworkAdapter#getBusSubType
*/
public Builder ipAddressingMode(String ipAddressingMode) {
this.ipAddressingMode = ipAddressingMode;
return this;
}
public VCloudNetworkAdapter build() {
return new VCloudNetworkAdapter(elementName, instanceID, caption, description, address, addressOnParent,
allocationUnits, automaticAllocation, automaticDeallocation, consumerVisibility, limit,
mappingBehavior, otherResourceType, parent, poolID, reservation, resourceSubType, resourceType,
virtualQuantity, virtualQuantityUnits, weight, connections, hostResources, ipAddress,
primaryNetworkConnection, ipAddressingMode);
}
public Builder fromVCloudNetworkAdapter(VCloudNetworkAdapter in) {
return ipAddress(in.getIpAddress()).primaryNetworkConnection(in.isPrimaryNetworkConnection())
.ipAddressingMode(in.getIpAddressingMode()).fromResourceAllocationSettingData(in);
}
/**
* {@inheritDoc}
*/
@Override
public Builder caption(String caption) {
return Builder.class.cast(super.caption(caption));
}
/**
* {@inheritDoc}
*/
@Override
public Builder description(String description) {
return Builder.class.cast(super.description(description));
}
/**
* {@inheritDoc}
*/
@Override
public Builder elementName(String elementName) {
return Builder.class.cast(super.elementName(elementName));
}
/**
* {@inheritDoc}
*/
@Override
public Builder instanceID(String instanceID) {
return Builder.class.cast(super.instanceID(instanceID));
}
/**
* {@inheritDoc}
*/
@Override
public Builder address(String address) {
return Builder.class.cast(super.address(address));
}
/**
* {@inheritDoc}
*/
@Override
public Builder addressOnParent(String addressOnParent) {
return Builder.class.cast(super.addressOnParent(addressOnParent));
}
/**
* {@inheritDoc}
*/
@Override
public Builder allocationUnits(String allocationUnits) {
return Builder.class.cast(super.allocationUnits(allocationUnits));
}
/**
* {@inheritDoc}
*/
@Override
public Builder automaticAllocation(Boolean automaticAllocation) {
return Builder.class.cast(super.automaticAllocation(automaticAllocation));
}
/**
* {@inheritDoc}
*/
@Override
public Builder automaticDeallocation(Boolean automaticDeallocation) {
return Builder.class.cast(super.automaticDeallocation(automaticDeallocation));
}
/**
* {@inheritDoc}
*/
@Override
public Builder connection(String connection) {
return Builder.class.cast(super.connection(connection));
}
/**
* {@inheritDoc}
*/
@Override
public Builder connections(List<String> connections) {
return Builder.class.cast(super.connections(connections));
}
/**
* {@inheritDoc}
*/
@Override
public Builder consumerVisibility(ConsumerVisibility consumerVisibility) {
return Builder.class.cast(super.consumerVisibility(consumerVisibility));
}
/**
* {@inheritDoc}
*/
@Override
public Builder hostResource(String hostResource) {
return Builder.class.cast(super.hostResource(hostResource));
}
/**
* {@inheritDoc}
*/
@Override
public Builder hostResources(List<String> hostResources) {
return Builder.class.cast(super.hostResources(hostResources));
}
/**
* {@inheritDoc}
*/
@Override
public Builder limit(Long limit) {
return Builder.class.cast(super.limit(limit));
}
/**
* {@inheritDoc}
*/
@Override
public Builder mappingBehavior(MappingBehavior mappingBehavior) {
return Builder.class.cast(super.mappingBehavior(mappingBehavior));
}
/**
* {@inheritDoc}
*/
@Override
public Builder otherResourceType(String otherResourceType) {
return Builder.class.cast(super.otherResourceType(otherResourceType));
}
/**
* {@inheritDoc}
*/
@Override
public Builder parent(String parent) {
return Builder.class.cast(super.parent(parent));
}
/**
* {@inheritDoc}
*/
@Override
public Builder poolID(String poolID) {
return Builder.class.cast(super.poolID(poolID));
}
/**
* {@inheritDoc}
*/
@Override
public Builder reservation(Long reservation) {
return Builder.class.cast(super.reservation(reservation));
}
/**
* {@inheritDoc}
*/
@Override
public Builder resourceSubType(String resourceSubType) {
return Builder.class.cast(super.resourceSubType(resourceSubType));
}
/**
* {@inheritDoc}
*/
@Override
public Builder resourceType(org.jclouds.cim.ResourceAllocationSettingData.ResourceType resourceType) {
return Builder.class.cast(super.resourceType(resourceType));
}
/**
* {@inheritDoc}
*/
@Override
public Builder virtualQuantity(Long virtualQuantity) {
return Builder.class.cast(super.virtualQuantity(virtualQuantity));
}
/**
* {@inheritDoc}
*/
@Override
public Builder virtualQuantityUnits(String virtualQuantityUnits) {
return Builder.class.cast(super.virtualQuantityUnits(virtualQuantityUnits));
}
/**
* {@inheritDoc}
*/
@Override
public Builder weight(Integer weight) {
return Builder.class.cast(super.weight(weight));
}
@Override
public Builder fromResourceAllocationSettingData(ResourceAllocationSettingData in) {
return Builder.class.cast(super.fromResourceAllocationSettingData(in));
}
}
private final String ipAddress;
private final boolean primaryNetworkConnection;
private final String ipAddressingMode;
public VCloudNetworkAdapter(String elementName, String instanceID, String caption, String description,
String address, String addressOnParent, String allocationUnits, Boolean automaticAllocation,
Boolean automaticDeallocation, ConsumerVisibility consumerVisibility, Long limit,
MappingBehavior mappingBehavior, String otherResourceType, String parent, String poolID, Long reservation,
String resourceSubType, org.jclouds.cim.ResourceAllocationSettingData.ResourceType resourceType,
Long virtualQuantity, String virtualQuantityUnits, Integer weight, List<String> connections,
List<String> hostResources, String ipAddress, boolean primaryNetworkConnection, String ipAddressingMode) {
super(elementName, instanceID, caption, description, address, addressOnParent, allocationUnits,
automaticAllocation, automaticDeallocation, consumerVisibility, limit, mappingBehavior,
otherResourceType, parent, poolID, reservation, resourceSubType, resourceType, virtualQuantity,
virtualQuantityUnits, weight, connections, hostResources);
this.ipAddress = ipAddress;
this.primaryNetworkConnection = primaryNetworkConnection;
this.ipAddressingMode = ipAddressingMode;
}
public String getIpAddress() {
return ipAddress;
}
public boolean isPrimaryNetworkConnection() {
return primaryNetworkConnection;
}
public String getIpAddressingMode() {
return ipAddressingMode;
}
@Override
public Builder toBuilder() {
return builder().fromVCloudNetworkAdapter(this);
}
@Override
public String toString() {
return String
.format(
"[elementName=%s, instanceID=%s, caption=%s, description=%s, address=%s, addressOnParent=%s, allocationUnits=%s, automaticAllocation=%s, automaticDeallocation=%s, connections=%s, consumerVisibility=%s, hostResources=%s, limit=%s, mappingBehavior=%s, otherResourceType=%s, parent=%s, poolID=%s, reservation=%s, resourceSubType=%s, resourceType=%s, virtualQuantity=%s, virtualQuantityUnits=%s, weight=%s, ipAddressingMode=%s, primaryNetworkConnection=%s, ipAddress=%s]",
elementName, instanceID, caption, description, address, addressOnParent, allocationUnits,
automaticAllocation, automaticDeallocation, connections, consumerVisibility, hostResources,
limit, mappingBehavior, otherResourceType, parent, poolID, reservation, resourceSubType,
resourceType, virtualQuantity, virtualQuantityUnits, weight, ipAddressingMode,
primaryNetworkConnection, ipAddress);
}
} | [
"adrian@jclouds.org"
] | adrian@jclouds.org |
648fbcd7cd8f4c88664c845e30f48f06faf49f26 | 62433dd4d0bbb284a489eac3b764924905ae1951 | /InterviewBit/Hashing/Equal/Solution.java | b46b0925400ab186275c76a6d52e63371fe7306c | [] | no_license | abhipad14/Data_Structures_-_Algorithms | 8ebc208159807415d1033cc00ff50bc4d855ac69 | e2c51cf8f3025a1cd4931d604f0843697a25f0c1 | refs/heads/master | 2021-01-10T14:47:49.112424 | 2016-09-16T02:40:30 | 2016-09-16T02:40:30 | 49,291,683 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,462 | java | package Hashing.Equal;
import java.util.ArrayList;
import java.util.HashMap;
public class Solution {
class node{
int val;
int left;
int right;
public node(int val, int left, int right) {
super();
this.val = val;
this.left = left;
this.right = right;
}
}
public ArrayList<Integer> equal(ArrayList<Integer> a) {
ArrayList<Integer> answer = new ArrayList<>();
HashMap<Integer, node> set = new HashMap<>();
int size = a.size();
for(int i=0; i<size-1; i++){
for(int j=i+1; j<size; j++){
int sum = a.get(i)+a.get(j);
if(set.containsKey(sum)){
int k = set.get(sum).left;
int l = set.get(sum).right;
if(k!=i && k!=j && l!=i && l!=j){
ArrayList<Integer> temp = new ArrayList<>();
temp.add(k);
temp.add(l);
temp.add(i);
temp.add(j);
if(answer.size()!=0){
if(k<answer.get(0)){
answer = temp;
}
else if(k==answer.get(0)){
if(l<answer.get(1)){
answer = temp;
}
else if(l==answer.get(1)){
if(i<answer.get(2)){
answer = temp;
}
else if(i==answer.get(2)){
if(j<answer.get(3)){
answer = temp;
}
}
}
}
}
else{
answer.addAll(temp);
}
}
}
else{
set.put(sum, new node(sum, i, j));
}
}
}
return answer;
}
}
| [
"Abhishek Padamwar"
] | Abhishek Padamwar |
00d497d2dbc550a1d052088fca1fd5b83c22fde2 | a4ef1a39b423970405df4966faa86f00a54a262f | /mallDemo-mbg/src/main/java/com/ahead/mall/model/CmsPrefrenceAreaProductRelation.java | 37cc33c29c73e80292f10dd23c92194a96399c54 | [
"Apache-2.0"
] | permissive | onlick123/aheadMall | 865bb07cd9072813653a5983f2ad58a1b7931534 | e930dddb5c79a47f7d36a1f188a192d1648bc5bc | refs/heads/master | 2022-06-29T19:09:43.753198 | 2020-03-19T01:15:45 | 2020-03-19T01:15:45 | 246,751,222 | 0 | 0 | Apache-2.0 | 2022-06-21T02:58:13 | 2020-03-12T05:28:52 | Java | UTF-8 | Java | false | false | 1,281 | java | package com.ahead.mall.model;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
public class CmsPrefrenceAreaProductRelation implements Serializable {
private Long id;
private Long prefrenceAreaId;
private Long productId;
private static final long serialVersionUID = 1L;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getPrefrenceAreaId() {
return prefrenceAreaId;
}
public void setPrefrenceAreaId(Long prefrenceAreaId) {
this.prefrenceAreaId = prefrenceAreaId;
}
public Long getProductId() {
return productId;
}
public void setProductId(Long productId) {
this.productId = productId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", prefrenceAreaId=").append(prefrenceAreaId);
sb.append(", productId=").append(productId);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
}
} | [
"1120937782@qq.com"
] | 1120937782@qq.com |
86959642d90654026a22095d29842f6754033ff0 | a0cda7f4000a8ea36d82c7e5e46cc7548f60b3b7 | /Chapter 02/ch2/tip9/RenderHtml/android/app/src/main/java/com/renderhtml/MainActivity.java | 86f611e326e5cef95c39463b49b3a0957d93dad2 | [
"MIT"
] | permissive | PacktPublishing/React-Native-Cookbook | 1d7f054c0847c684787cd3b35f3f8d2f1d26309f | de4d1d903adcc3c4a4a98bbfa362e670c0d94d59 | refs/heads/master | 2023-01-27T16:41:30.416840 | 2023-01-18T09:58:26 | 2023-01-18T09:58:26 | 76,628,573 | 105 | 46 | null | null | null | null | UTF-8 | Java | false | false | 365 | java | package com.renderhtml;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "RenderHtml";
}
}
| [
"sushantn@packt.com"
] | sushantn@packt.com |
878ac1b7da75e3900db6e631ac17fd70df91b6c8 | f71920f45935123e994f1409fcfb297f3399a64d | /bc-AppEngine/src/com/bc/search/entity/instantanswer/InstantAnswerResult.java | bb1136887b48ba076d83c0b923a8e1a69704cc32 | [] | no_license | pythagos/basketcased | 3eadd9b8bd9bb7928d4e659d56cffe2c37bc6e46 | c7fb771ecabb463ebd708f4c7ab02ebd0ca061be | refs/heads/master | 2021-06-20T07:32:01.698132 | 2017-06-06T14:29:45 | 2017-06-06T14:29:45 | 22,989,144 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,629 | java | /*
* Copyright 2010 Nabeel Mukhtar
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.bc.search.entity.instantanswer;
import com.bc.search.entity.SchemaEntity;
/**
* The Class InstantAnswerResult.
*/
public class InstantAnswerResult
extends SchemaEntity
{
/** The Constant serialVersionUID. */
private final static long serialVersionUID = 2461660169443089969L;
/** The content type. */
protected String contentType;
/** The title. */
protected String title;
/** The click through url. */
protected String clickThroughUrl;
/** The url. */
protected String url;
/** The attribution. */
protected String attribution;
/** The instant answer specific data. */
protected InstantAnswerSpecificData instantAnswerSpecificData;
/**
* Gets the content type.
*
* @return the content type
*/
public String getContentType() {
return contentType;
}
/**
* Sets the content type.
*
* @param value the new content type
*/
public void setContentType(String value) {
this.contentType = value;
}
/**
* Gets the title.
*
* @return the title
*/
public String getTitle() {
return title;
}
/**
* Sets the title.
*
* @param value the new title
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the click through url.
*
* @return the click through url
*/
public String getClickThroughUrl() {
return clickThroughUrl;
}
/**
* Sets the click through url.
*
* @param value the new click through url
*/
public void setClickThroughUrl(String value) {
this.clickThroughUrl = value;
}
/**
* Gets the url.
*
* @return the url
*/
public String getUrl() {
return url;
}
/**
* Sets the url.
*
* @param value the new url
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the attribution.
*
* @return the attribution
*/
public String getAttribution() {
return attribution;
}
/**
* Sets the attribution.
*
* @param value the new attribution
*/
public void setAttribution(String value) {
this.attribution = value;
}
/**
* Gets the instant answer specific data.
*
* @return the instant answer specific data
*/
public InstantAnswerSpecificData getInstantAnswerSpecificData() {
return instantAnswerSpecificData;
}
/**
* Sets the instant answer specific data.
*
* @param value the new instant answer specific data
*/
public void setInstantAnswerSpecificData(InstantAnswerSpecificData value) {
this.instantAnswerSpecificData = value;
}
}
| [
"bopko.home@gmail.com"
] | bopko.home@gmail.com |
0cf61af5c3a05fbd38de7661a778003da070ed1e | bc038b0348bea6cfaae1074d66b8942cbf144a2f | /src/pong/Ball.java | 92bed2bf74836fd42ed3d5a1bde5b69505c68e34 | [] | no_license | spenceratkins/Pong | b50c6c23541ffd15cfac448102b545c75fffbd4e | 6776ecf8b0c7f541ae062e9d226f9ab2aa7406de | refs/heads/master | 2020-05-19T22:02:05.862840 | 2019-05-30T14:49:32 | 2019-05-30T14:49:32 | 185,238,498 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 551 | 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 pong;
import java.awt.Color;
import java.awt.Graphics;
/**
*
* @author 692589
*/
public class Ball extends Character {
//Fields
//Constructor
public Ball(int x, int y, Color color, int size, String name) {
super(x, y, Color.RED, size, name);
this.Width = 50;
this.Height = 50;
}
}
| [
"noreply@github.com"
] | spenceratkins.noreply@github.com |
59c5e7a4a577efab88d36b2ab139cf9e824d25dd | dd3b689dbe971caf99845ba6f6a82b5498ef0767 | /Person/src/Test.java | c817ac2ad1990d4b282186782093c15ecacd16e0 | [] | no_license | kai-513/test | c83bb7ec51311c863e19d9d7b75572f543d363d4 | a157f94164ef6c7ea97ba478029395c3e5309d92 | refs/heads/master | 2020-06-12T09:43:55.043797 | 2019-07-22T11:46:32 | 2019-07-22T11:46:32 | 194,262,334 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 688 | java |
public class Test {
public static void main(String[] args) {
Person taro=new Person();
taro.name="中井勝英";
taro.age=24;
taro.phoneNumber="07016400852";
taro.address="ka-nakai@i.softbank.jp";
System.out.println(taro.name);
System.out.println(taro.age);
System.out.println(taro.phoneNumber);
System.out.println(taro.address);
taro.talk();
taro.walk();
taro.run();
Robot aibo = new Robot();
aibo.name="アイボ";
aibo.talk();
aibo.walk();
aibo.run();
Robot asimo=new Robot();
asimo.name="アシモ";
asimo.talk();
asimo.walk();
asimo.run();
Robot pepper=new Robot();
pepper.name="ペッパー";
pepper.talk();
pepper.walk();
pepper.run();
}
}
| [
"get-over-oneself-513@i.softbank.jp"
] | get-over-oneself-513@i.softbank.jp |
58aabe38d234b11fad3bc98c75fda7d6e0aacea6 | 9bc5839e2e1db25d01f0847f736bf6663b938810 | /JSP项目实例/51CTO下载-JSP网上书店系统源码sql数据库/JSP网上书店系统源码sql数据库/JSP网上书店系统源码/JSP/网上书店/bookstore/src/bean/db/userOPBean.java | c346f64d25c415bb953574a2a7b0c4ef56ea9ec9 | [] | no_license | student-chen/Java | 569bf51e726a093c9c0db4e1b0bfa630258026b8 | 510de64ea4a3584e48e9805894c42a2a92e476b6 | refs/heads/master | 2020-05-15T10:28:07.880796 | 2019-04-19T06:23:11 | 2019-04-19T06:23:11 | 182,190,594 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 2,829 | java | package bean.db;
import java.security.MessageDigest;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import bean.db.common.dbOpertaion;
/**
* @author 邓子云
* 封装对用户表的操作
*/
public class userOPBean extends dbOpertaion{
/**
* 增加一个用户
*/
public int addUser(userBean user){
int i=0;
//------为密码计算摘要------
String codeMD5=null;
try{
MessageDigest MD=MessageDigest.getInstance("MD5");
MD.update((user.getUser_name()+user.getUser_password()).getBytes("UTF8"));
byte[] passwordMD5Byte=MD.digest();
codeMD5=new String(passwordMD5Byte);
codeMD5=new String(codeMD5.getBytes("iso-8859-1"));
}catch(Exception e){
e.printStackTrace();
i=0;
}
//------构造SQL语句------
String sqlString="insert into netuser(user_name,user_true_name,user_address,"+
"user_telephone,user_postalcode,user_role,user_password) values('"+
user.getUser_name()+"','"+user.getUser_true_name()+"','"+user.getUser_address()+
"','"+user.getUser_telephone()+"','"+user.getUser_postalcode()+"',"+
user.getUser_role()+",?)";
Connection conn=openDB();
try{
PreparedStatement preSQLInsert=conn.prepareStatement(sqlString);
preSQLInsert.setString(1,codeMD5);
i=preSQLInsert.executeUpdate();
}catch(Exception e){
e.printStackTrace();
i=0;
}
closeDB(conn);
return i;
}
/**
* 用户检验,如果失败返回0,如果成功返回用户的ID号
*/
public long certUser(String user_name,String user_password){
long i=0;
//------为密码计算摘要------
String codeMD5=null;
try{
MessageDigest MD=MessageDigest.getInstance("MD5");
MD.update((user_name+user_password).getBytes("UTF8"));
byte[] passwordMD5Byte=MD.digest();
codeMD5=new String(passwordMD5Byte);
codeMD5=new String(codeMD5.getBytes("iso-8859-1"));
}catch(Exception e){
e.printStackTrace();
}
//------构造SQL语句------
String sqlString="select * from netuser where user_name='"+
user_name+"' and user_password=?";
//------查询出数据------
Connection conn=openDB();
try{
PreparedStatement preSQLSelect=conn.prepareStatement(sqlString);
preSQLSelect.setString(1,codeMD5);
ResultSet rs=preSQLSelect.executeQuery();
if(rs.next())
i=rs.getLong("user_id");
}catch(Exception e){
e.printStackTrace();
}
closeDB(conn);
return i;
}
}
| [
"3196614820@qq.com"
] | 3196614820@qq.com |
a1e5c45c17d37a4cb86bace0b547a747c2bdde6b | 93b62d13a2d45b3c466f9fbd441b643d0b59ea7c | /app/src/main/java/com/example/mobilereservation/model/User.java | 5decfa35d63e261b09daead8a01c0a7c8a004df4 | [] | no_license | kayper27/MobileReservation | c62b97cd029d2fff91f8fdb166ff8bc40e8e8dfd | 4652c364db8d48408a877e1fc1bf9c67864137e1 | refs/heads/master | 2023-02-19T12:22:07.907903 | 2021-01-11T17:19:20 | 2021-01-11T17:19:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 481 | java | package com.example.mobilereservation.model;
import java.io.Serializable;
public class User implements Serializable {
private String account_id;
private String password;
private String firstname;
private String lastname;
public User(String account_id, String password, String firstname, String lastname) {
this.account_id = account_id;
this.password = password;
this.firstname = firstname;
this.lastname = lastname;
}
}
| [
"keithyatco@gmail.com"
] | keithyatco@gmail.com |
72505226c68cf665345dd5e91ce85e47310de189 | 7aca2589fd83660955e4bc49b0b62bfb7523e2dd | /app/src/main/java/com/epam/androidtraining/ICalculator.java | bea4514b7e319c07647a20be8f012ef026712a2f | [
"Apache-2.0"
] | permissive | 5809909/android-training-2017 | 6b507cb98cb80f5ce09410392194a5083e337a4b | 7092a2a6668079b6234b170e0df7005277be83b4 | refs/heads/master | 2021-07-20T14:44:21.913508 | 2017-10-29T20:11:40 | 2017-10-29T20:11:40 | 108,765,345 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 173 | java | package com.epam.androidtraining;
public interface ICalculator {
String add(int... values);
String multiply(int... values);
String evaluate(String value);
}
| [
"5809909@tut.by"
] | 5809909@tut.by |
02456d9188948a2e7fdc7b0fb72406ff5286544d | 5be44f022a14d3a1587f557958d64d6958cfe9c3 | /spring-boot/spring-boot-testing/src/test/java/io/reflectoring/testing/persistence/FlywayTest.java | ef0b1d5922b41188b67aa836401bee07e8d71a64 | [
"MIT"
] | permissive | thombergs/code-examples | 4608b7d9ea3201ffa26d305f24d1ac1aa77f2c08 | ca500ac4d4a0e501565e30dcdea37bb17d4d26e7 | refs/heads/master | 2023-09-04T23:14:37.811206 | 2023-08-14T21:04:33 | 2023-08-14T21:04:33 | 98,801,926 | 2,492 | 2,710 | MIT | 2023-09-10T20:42:50 | 2017-07-30T14:12:24 | Java | UTF-8 | Java | false | false | 652 | java | package io.reflectoring.testing.persistence;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit.jupiter.SpringExtension;
@DataJpaTest
@TestPropertySource(properties = {
"spring.jpa.hibernate.ddl-auto=validate",
"spring.liquibase.enabled=false",
"spring.flyway.enabled=true"
})
class FlywayTest {
@Test
void databaseHasBeenInitialized() {
}
} | [
"tom.hombergs@gmail.com"
] | tom.hombergs@gmail.com |
a8f844514f15d3d964f1f2d71f16f4f350fa417a | 1d2348eaad5e465d8f001cb1bb56799718e69cb6 | /app/src/main/java/org/ostrya/presencepublisher/ui/util/CustomPreference.java | a9c3edd7ea0ea034df88f2878a5f5692a1158f6f | [
"MIT"
] | permissive | pavel-gololobov/PresencePublisher | e5156be1463c281a27ce03f78ed52a8987de6694 | eb62279307573119d7ebea16b76029cf037a035b | refs/heads/master | 2020-04-25T21:58:03.533392 | 2019-03-13T06:46:31 | 2019-03-13T06:46:31 | 173,096,575 | 0 | 0 | MIT | 2019-02-28T11:04:24 | 2019-02-28T11:04:24 | null | UTF-8 | Java | false | false | 1,144 | java | package org.ostrya.presencepublisher.ui.util;
import android.content.Context;
import android.util.AttributeSet;
import androidx.preference.Preference;
public class CustomPreference extends Preference {
public CustomPreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
public CustomPreference(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public CustomPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomPreference(Context context) {
super(context);
}
public String getValue(String defaultReturnValue) {
return super.getPersistedString(defaultReturnValue);
}
public void setValue(String text) {
final boolean wasBlocking = shouldDisableDependents();
persistString(text);
final boolean isBlocking = shouldDisableDependents();
if (isBlocking != wasBlocking) {
notifyDependencyChange(isBlocking);
}
notifyChanged();
}
}
| [
"ostrya@maibox.org"
] | ostrya@maibox.org |
3f5f617aa2f521d938e627303dac128efae343ee | 25b120e60ec6170d93571ec99992ea70a387fe72 | /Droid/obj/Debug/android/src/android/support/graphics/drawable/R.java | a83d8d0bef4d1217a2c9dbbec6ab93b725459d27 | [] | no_license | loe-lobo/AvaliacaoIntegra | 73b78970c1878de4e9a77c78dc0ee3bd0b50606f | a5f549845734ee2926faf5d5450b410a7b8ebd86 | refs/heads/master | 2021-06-17T14:14:45.739650 | 2017-03-15T16:50:59 | 2017-03-15T16:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 549,960 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.graphics.drawable;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f040000;
public static int abc_fade_out=0x7f040001;
public static int abc_grow_fade_in_from_bottom=0x7f040002;
public static int abc_popup_enter=0x7f040003;
public static int abc_popup_exit=0x7f040004;
public static int abc_shrink_fade_out_from_bottom=0x7f040005;
public static int abc_slide_in_bottom=0x7f040006;
public static int abc_slide_in_top=0x7f040007;
public static int abc_slide_out_bottom=0x7f040008;
public static int abc_slide_out_top=0x7f040009;
public static int design_bottom_sheet_slide_in=0x7f04000a;
public static int design_bottom_sheet_slide_out=0x7f04000b;
public static int design_fab_in=0x7f04000c;
public static int design_fab_out=0x7f04000d;
public static int design_snackbar_in=0x7f04000e;
public static int design_snackbar_out=0x7f04000f;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int MediaRouteControllerWindowBackground=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarDivider=0x7f0100a6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarItemBackground=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarPopupTheme=0x7f0100a0;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static int actionBarSize=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarSplitStyle=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarStyle=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabBarStyle=0x7f01009c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabStyle=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabTextStyle=0x7f01009d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTheme=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarWidgetTheme=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionButtonStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionDropDownStyle=0x7f0100bc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionLayout=0x7f01010e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionMenuTextAppearance=0x7f0100a8;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int actionMenuTextColor=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeBackground=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseButtonStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseDrawable=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCopyDrawable=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCutDrawable=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeFindDrawable=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePasteDrawable=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePopupWindowStyle=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSelectAllDrawable=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeShareDrawable=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSplitBackground=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeStyle=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeWebSearchDrawable=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowButtonStyle=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowMenuStyle=0x7f01009f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionProviderClass=0x7f010110;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionViewClass=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int activityChooserViewStyle=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogButtonGroupStyle=0x7f0100eb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alertDialogCenterButtons=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogStyle=0x7f0100ea;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogTheme=0x7f0100ed;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int allowStacking=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowHeadLength=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowShaftLength=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoCompleteTextViewStyle=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int background=0x7f010077;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundSplit=0x7f010079;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundStacked=0x7f010078;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int backgroundTint=0x7f01013a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static int backgroundTintMode=0x7f01013b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int barLength=0x7f010108;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_hideable=0x7f010026;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_overlapTop=0x7f01004c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_peekHeight=0x7f010025;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int borderWidth=0x7f010042;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int borderlessButtonStyle=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetDialogTheme=0x7f01003c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetStyle=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarButtonStyle=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNegativeButtonStyle=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNeutralButtonStyle=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarPositiveButtonStyle=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonPanelSideLayout=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyle=0x7f0100f3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyleSmall=0x7f0100f4;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonTint=0x7f010100;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static int buttonTintMode=0x7f010101;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardBackgroundColor=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardCornerRadius=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardElevation=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardMaxElevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardPreventCornerOverlap=0x7f01001c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardUseCompatPadding=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkboxStyle=0x7f0100f5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkedTextViewStyle=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeIcon=0x7f010118;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeItemLayout=0x7f010087;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int collapseContentDescription=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapseIcon=0x7f010130;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int collapsedTitleGravity=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapsedTitleTextAppearance=0x7f01002f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int color=0x7f010102;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorAccent=0x7f0100e3;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorButtonNormal=0x7f0100e7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlActivated=0x7f0100e5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlHighlight=0x7f0100e6;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlNormal=0x7f0100e4;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimary=0x7f0100e1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimaryDark=0x7f0100e2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorSwitchThumbNormal=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int commitIcon=0x7f01011d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEnd=0x7f010082;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetLeft=0x7f010083;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetRight=0x7f010084;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStart=0x7f010081;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPadding=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingBottom=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingLeft=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingRight=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingTop=0x7f010020;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentScrim=0x7f010030;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int controlBackground=0x7f0100e9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterEnabled=0x7f010062;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterMaxLength=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterOverflowTextAppearance=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterTextAppearance=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int customNavigationLayout=0x7f01007a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int defaultQueryHint=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dialogPreferredPadding=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dialogTheme=0x7f0100b9;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static int displayOptions=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int divider=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerHorizontal=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dividerPadding=0x7f01010c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerVertical=0x7f0100c6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int drawableSize=0x7f010104;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int drawerArrowStyle=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dropDownListViewStyle=0x7f0100d9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dropdownListPreferredItemHeight=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextBackground=0x7f0100ce;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int editTextColor=0x7f0100cd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextStyle=0x7f0100f7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int elevation=0x7f010085;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int errorEnabled=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int errorTextAppearance=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandActivityOverflowButtonDrawable=0x7f010089;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expanded=0x7f010022;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int expandedTitleGravity=0x7f010034;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMargin=0x7f010029;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginBottom=0x7f01002d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginEnd=0x7f01002c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginStart=0x7f01002a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginTop=0x7f01002b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandedTitleTextAppearance=0x7f01002e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int externalRouteEnabledDrawable=0x7f010016;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fabSize=0x7f010040;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int foregroundInsidePadding=0x7f010044;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int gapBetweenBars=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int goIcon=0x7f010119;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int headerLayout=0x7f01004a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int height=0x7f01006c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hideOnContentScroll=0x7f010080;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintAnimationEnabled=0x7f010066;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintEnabled=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int hintTextAppearance=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeAsUpIndicator=0x7f0100bf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeLayout=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int icon=0x7f010074;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconifiedByDefault=0x7f010115;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int imageButtonStyle=0x7f0100cf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int indeterminateProgressStyle=0x7f01007d;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int initialActivityCount=0x7f010088;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int insetForeground=0x7f01004b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int isLightTheme=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemBackground=0x7f010048;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemIconTint=0x7f010046;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemPadding=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemTextAppearance=0x7f010049;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemTextColor=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int keylines=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout=0x7f010114;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layoutManager=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_anchor=0x7f010039;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_anchorGravity=0x7f01003b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_behavior=0x7f010038;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static int layout_collapseMode=0x7f010027;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_collapseParallaxMultiplier=0x7f010028;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_keyline=0x7f01003a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static int layout_scrollFlags=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_scrollInterpolator=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listChoiceBackgroundIndicator=0x7f0100e0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listDividerAlertDialog=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listItemLayout=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listLayout=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listPopupWindowStyle=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeight=0x7f0100d4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightLarge=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightSmall=0x7f0100d5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingLeft=0x7f0100d7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingRight=0x7f0100d8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int logo=0x7f010075;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int logoDescription=0x7f010134;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxActionInlineWidth=0x7f01004d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxButtonHeight=0x7f01012f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int measureWithLargestChild=0x7f01010a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteAudioTrackDrawable=0x7f010001;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteBluetoothIconDrawable=0x7f010002;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteButtonStyle=0x7f010003;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCastDrawable=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteChooserPrimaryTextStyle=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteChooserSecondaryTextStyle=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCloseDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCollapseGroupDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteConnectingDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControllerPrimaryTextStyle=0x7f01000a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControllerSecondaryTextStyle=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControllerTitleTextStyle=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteDefaultIconDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteExpandGroupDrawable=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteOffDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteOnDrawable=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePauseDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePlayDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerGroupIconDrawable=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerIconDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTvIconDrawable=0x7f010015;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int menu=0x7f010045;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int multiChoiceItemLayout=0x7f01008c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int navigationContentDescription=0x7f010133;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int navigationIcon=0x7f010132;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static int navigationMode=0x7f01006f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int overlapAnchor=0x7f010112;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingEnd=0x7f010138;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingStart=0x7f010137;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelBackground=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelMenuListTheme=0x7f0100df;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int panelMenuListWidth=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupMenuStyle=0x7f0100cb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupTheme=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupWindowStyle=0x7f0100cc;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int preserveIconSpacing=0x7f010111;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int pressedTranslationZ=0x7f010041;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int progressBarPadding=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int progressBarStyle=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int queryBackground=0x7f01011f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int queryHint=0x7f010116;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int radioButtonStyle=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyle=0x7f0100f9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleIndicator=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleSmall=0x7f0100fb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int reverseLayout=0x7f010069;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int rippleColor=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchHintIcon=0x7f01011b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchIcon=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchViewStyle=0x7f0100d3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int seekBarStyle=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackground=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackgroundBorderless=0x7f0100c4;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static int showAsAction=0x7f01010d;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static int showDividers=0x7f01010b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showText=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int singleChoiceItemLayout=0x7f01008d;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spanCount=0x7f010068;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spinBars=0x7f010103;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerDropDownItemStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerStyle=0x7f0100fd;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int splitTrack=0x7f010126;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int srcCompat=0x7f01008f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int stackFromEnd=0x7f01006a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_above_anchor=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int statusBarBackground=0x7f010037;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int statusBarScrim=0x7f010031;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int submitBackground=0x7f010120;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitle=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextAppearance=0x7f010129;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitleTextColor=0x7f010136;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextStyle=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int suggestionRowLayout=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchMinWidth=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchPadding=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchStyle=0x7f0100fe;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchTextAppearance=0x7f010123;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabBackground=0x7f010051;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabContentStart=0x7f010050;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabGravity=0x7f010053;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorColor=0x7f01004e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorHeight=0x7f01004f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMaxWidth=0x7f010055;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMinWidth=0x7f010054;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabMode=0x7f010052;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPadding=0x7f01005d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingBottom=0x7f01005c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingEnd=0x7f01005b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingStart=0x7f010059;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingTop=0x7f01005a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabSelectedTextColor=0x7f010058;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabTextAppearance=0x7f010056;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabTextColor=0x7f010057;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static int textAllCaps=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceLargePopupMenu=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItem=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSmall=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultSubtitle=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultTitle=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSmallPopupMenu=0x7f0100b8;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorAlertDialogListItem=0x7f0100ee;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int textColorError=0x7f01003e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorSearchUrl=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int theme=0x7f010139;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thickness=0x7f010109;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTextPadding=0x7f010122;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int title=0x7f01006e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleEnabled=0x7f010035;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginBottom=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginEnd=0x7f01012c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginStart=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginTop=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargins=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextAppearance=0x7f010128;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleTextColor=0x7f010135;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextStyle=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarId=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarNavigationButtonStyle=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarStyle=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int track=0x7f010121;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int useCompatPadding=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int voiceIcon=0x7f01011c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBar=0x7f010091;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBarOverlay=0x7f010093;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionModeOverlay=0x7f010094;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMajor=0x7f010098;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMinor=0x7f010096;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMajor=0x7f010095;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMinor=0x7f010097;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMajor=0x7f010099;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMinor=0x7f01009a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowNoTitle=0x7f010092;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f0c0003;
public static int abc_action_bar_embed_tabs_pre_jb=0x7f0c0001;
public static int abc_action_bar_expanded_action_views_exclusive=0x7f0c0004;
public static int abc_allow_stacked_button_bar=0x7f0c0000;
public static int abc_config_actionMenuItemAllCaps=0x7f0c0005;
public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0c0002;
public static int abc_config_closeDialogWhenTouchOutside=0x7f0c0006;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0007;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0a0048;
public static int abc_background_cache_hint_selector_material_light=0x7f0a0049;
public static int abc_color_highlight_material=0x7f0a004a;
public static int abc_input_method_navigation_guard=0x7f0a000e;
public static int abc_primary_text_disable_only_material_dark=0x7f0a004b;
public static int abc_primary_text_disable_only_material_light=0x7f0a004c;
public static int abc_primary_text_material_dark=0x7f0a004d;
public static int abc_primary_text_material_light=0x7f0a004e;
public static int abc_search_url_text=0x7f0a004f;
public static int abc_search_url_text_normal=0x7f0a000f;
public static int abc_search_url_text_pressed=0x7f0a0010;
public static int abc_search_url_text_selected=0x7f0a0011;
public static int abc_secondary_text_material_dark=0x7f0a0050;
public static int abc_secondary_text_material_light=0x7f0a0051;
public static int accent_material_dark=0x7f0a0012;
public static int accent_material_light=0x7f0a0013;
public static int background_floating_material_dark=0x7f0a0014;
public static int background_floating_material_light=0x7f0a0015;
public static int background_material_dark=0x7f0a0016;
public static int background_material_light=0x7f0a0017;
public static int bright_foreground_disabled_material_dark=0x7f0a0018;
public static int bright_foreground_disabled_material_light=0x7f0a0019;
public static int bright_foreground_inverse_material_dark=0x7f0a001a;
public static int bright_foreground_inverse_material_light=0x7f0a001b;
public static int bright_foreground_material_dark=0x7f0a001c;
public static int bright_foreground_material_light=0x7f0a001d;
public static int button_material_dark=0x7f0a001e;
public static int button_material_light=0x7f0a001f;
public static int cardview_dark_background=0x7f0a0000;
public static int cardview_light_background=0x7f0a0001;
public static int cardview_shadow_end_color=0x7f0a0002;
public static int cardview_shadow_start_color=0x7f0a0003;
public static int design_fab_shadow_end_color=0x7f0a0004;
public static int design_fab_shadow_mid_color=0x7f0a0005;
public static int design_fab_shadow_start_color=0x7f0a0006;
public static int design_fab_stroke_end_inner_color=0x7f0a0007;
public static int design_fab_stroke_end_outer_color=0x7f0a0008;
public static int design_fab_stroke_top_inner_color=0x7f0a0009;
public static int design_fab_stroke_top_outer_color=0x7f0a000a;
public static int design_snackbar_background_color=0x7f0a000b;
public static int design_textinput_error_color_dark=0x7f0a000c;
public static int design_textinput_error_color_light=0x7f0a000d;
public static int dim_foreground_disabled_material_dark=0x7f0a0020;
public static int dim_foreground_disabled_material_light=0x7f0a0021;
public static int dim_foreground_material_dark=0x7f0a0022;
public static int dim_foreground_material_light=0x7f0a0023;
public static int foreground_material_dark=0x7f0a0024;
public static int foreground_material_light=0x7f0a0025;
public static int highlighted_text_material_dark=0x7f0a0026;
public static int highlighted_text_material_light=0x7f0a0027;
public static int hint_foreground_material_dark=0x7f0a0028;
public static int hint_foreground_material_light=0x7f0a0029;
public static int material_blue_grey_800=0x7f0a002a;
public static int material_blue_grey_900=0x7f0a002b;
public static int material_blue_grey_950=0x7f0a002c;
public static int material_deep_teal_200=0x7f0a002d;
public static int material_deep_teal_500=0x7f0a002e;
public static int material_grey_100=0x7f0a002f;
public static int material_grey_300=0x7f0a0030;
public static int material_grey_50=0x7f0a0031;
public static int material_grey_600=0x7f0a0032;
public static int material_grey_800=0x7f0a0033;
public static int material_grey_850=0x7f0a0034;
public static int material_grey_900=0x7f0a0035;
public static int primary_dark_material_dark=0x7f0a0036;
public static int primary_dark_material_light=0x7f0a0037;
public static int primary_material_dark=0x7f0a0038;
public static int primary_material_light=0x7f0a0039;
public static int primary_text_default_material_dark=0x7f0a003a;
public static int primary_text_default_material_light=0x7f0a003b;
public static int primary_text_disabled_material_dark=0x7f0a003c;
public static int primary_text_disabled_material_light=0x7f0a003d;
public static int ripple_material_dark=0x7f0a003e;
public static int ripple_material_light=0x7f0a003f;
public static int secondary_text_default_material_dark=0x7f0a0040;
public static int secondary_text_default_material_light=0x7f0a0041;
public static int secondary_text_disabled_material_dark=0x7f0a0042;
public static int secondary_text_disabled_material_light=0x7f0a0043;
public static int switch_thumb_disabled_material_dark=0x7f0a0044;
public static int switch_thumb_disabled_material_light=0x7f0a0045;
public static int switch_thumb_material_dark=0x7f0a0052;
public static int switch_thumb_material_light=0x7f0a0053;
public static int switch_thumb_normal_material_dark=0x7f0a0046;
public static int switch_thumb_normal_material_light=0x7f0a0047;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f070036;
public static int abc_action_bar_default_height_material=0x7f07002a;
public static int abc_action_bar_default_padding_end_material=0x7f070037;
public static int abc_action_bar_default_padding_start_material=0x7f070038;
public static int abc_action_bar_icon_vertical_padding_material=0x7f07003a;
public static int abc_action_bar_overflow_padding_end_material=0x7f07003b;
public static int abc_action_bar_overflow_padding_start_material=0x7f07003c;
public static int abc_action_bar_progress_bar_size=0x7f07002b;
public static int abc_action_bar_stacked_max_height=0x7f07003d;
public static int abc_action_bar_stacked_tab_max_width=0x7f07003e;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f07003f;
public static int abc_action_bar_subtitle_top_margin_material=0x7f070040;
public static int abc_action_button_min_height_material=0x7f070041;
public static int abc_action_button_min_width_material=0x7f070042;
public static int abc_action_button_min_width_overflow_material=0x7f070043;
public static int abc_alert_dialog_button_bar_height=0x7f070029;
public static int abc_button_inset_horizontal_material=0x7f070044;
public static int abc_button_inset_vertical_material=0x7f070045;
public static int abc_button_padding_horizontal_material=0x7f070046;
public static int abc_button_padding_vertical_material=0x7f070047;
public static int abc_config_prefDialogWidth=0x7f07002e;
public static int abc_control_corner_material=0x7f070048;
public static int abc_control_inset_material=0x7f070049;
public static int abc_control_padding_material=0x7f07004a;
public static int abc_dialog_fixed_height_major=0x7f07002f;
public static int abc_dialog_fixed_height_minor=0x7f070030;
public static int abc_dialog_fixed_width_major=0x7f070031;
public static int abc_dialog_fixed_width_minor=0x7f070032;
public static int abc_dialog_list_padding_vertical_material=0x7f07004b;
public static int abc_dialog_min_width_major=0x7f070033;
public static int abc_dialog_min_width_minor=0x7f070034;
public static int abc_dialog_padding_material=0x7f07004c;
public static int abc_dialog_padding_top_material=0x7f07004d;
public static int abc_disabled_alpha_material_dark=0x7f07004e;
public static int abc_disabled_alpha_material_light=0x7f07004f;
public static int abc_dropdownitem_icon_width=0x7f070050;
public static int abc_dropdownitem_text_padding_left=0x7f070051;
public static int abc_dropdownitem_text_padding_right=0x7f070052;
public static int abc_edit_text_inset_bottom_material=0x7f070053;
public static int abc_edit_text_inset_horizontal_material=0x7f070054;
public static int abc_edit_text_inset_top_material=0x7f070055;
public static int abc_floating_window_z=0x7f070056;
public static int abc_list_item_padding_horizontal_material=0x7f070057;
public static int abc_panel_menu_list_width=0x7f070058;
public static int abc_search_view_preferred_width=0x7f070059;
public static int abc_search_view_text_min_width=0x7f070035;
public static int abc_seekbar_track_background_height_material=0x7f07005a;
public static int abc_seekbar_track_progress_height_material=0x7f07005b;
public static int abc_select_dialog_padding_start_material=0x7f07005c;
public static int abc_switch_padding=0x7f070039;
public static int abc_text_size_body_1_material=0x7f07005d;
public static int abc_text_size_body_2_material=0x7f07005e;
public static int abc_text_size_button_material=0x7f07005f;
public static int abc_text_size_caption_material=0x7f070060;
public static int abc_text_size_display_1_material=0x7f070061;
public static int abc_text_size_display_2_material=0x7f070062;
public static int abc_text_size_display_3_material=0x7f070063;
public static int abc_text_size_display_4_material=0x7f070064;
public static int abc_text_size_headline_material=0x7f070065;
public static int abc_text_size_large_material=0x7f070066;
public static int abc_text_size_medium_material=0x7f070067;
public static int abc_text_size_menu_material=0x7f070068;
public static int abc_text_size_small_material=0x7f070069;
public static int abc_text_size_subhead_material=0x7f07006a;
public static int abc_text_size_subtitle_material_toolbar=0x7f07002c;
public static int abc_text_size_title_material=0x7f07006b;
public static int abc_text_size_title_material_toolbar=0x7f07002d;
public static int cardview_compat_inset_shadow=0x7f070006;
public static int cardview_default_elevation=0x7f070007;
public static int cardview_default_radius=0x7f070008;
public static int design_appbar_elevation=0x7f070011;
public static int design_bottom_sheet_modal_elevation=0x7f070012;
public static int design_bottom_sheet_modal_peek_height=0x7f070013;
public static int design_fab_border_width=0x7f070014;
public static int design_fab_elevation=0x7f070015;
public static int design_fab_image_size=0x7f070016;
public static int design_fab_size_mini=0x7f070017;
public static int design_fab_size_normal=0x7f070018;
public static int design_fab_translation_z_pressed=0x7f070019;
public static int design_navigation_elevation=0x7f07001a;
public static int design_navigation_icon_padding=0x7f07001b;
public static int design_navigation_icon_size=0x7f07001c;
public static int design_navigation_max_width=0x7f070009;
public static int design_navigation_padding_bottom=0x7f07001d;
public static int design_navigation_separator_vertical_padding=0x7f07001e;
public static int design_snackbar_action_inline_max_width=0x7f07000a;
public static int design_snackbar_background_corner_radius=0x7f07000b;
public static int design_snackbar_elevation=0x7f07001f;
public static int design_snackbar_extra_spacing_horizontal=0x7f07000c;
public static int design_snackbar_max_width=0x7f07000d;
public static int design_snackbar_min_width=0x7f07000e;
public static int design_snackbar_padding_horizontal=0x7f070020;
public static int design_snackbar_padding_vertical=0x7f070021;
public static int design_snackbar_padding_vertical_2lines=0x7f07000f;
public static int design_snackbar_text_size=0x7f070022;
public static int design_tab_max_width=0x7f070023;
public static int design_tab_scrollable_min_width=0x7f070010;
public static int design_tab_text_size=0x7f070024;
public static int design_tab_text_size_2line=0x7f070025;
public static int disabled_alpha_material_dark=0x7f07006c;
public static int disabled_alpha_material_light=0x7f07006d;
public static int highlight_alpha_material_colored=0x7f07006e;
public static int highlight_alpha_material_dark=0x7f07006f;
public static int highlight_alpha_material_light=0x7f070070;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f070026;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f070027;
public static int item_touch_helper_swipe_escape_velocity=0x7f070028;
public static int mr_controller_volume_group_list_item_height=0x7f070000;
public static int mr_controller_volume_group_list_item_icon_size=0x7f070001;
public static int mr_controller_volume_group_list_max_height=0x7f070002;
public static int mr_controller_volume_group_list_padding_top=0x7f070005;
public static int mr_dialog_fixed_width_major=0x7f070003;
public static int mr_dialog_fixed_width_minor=0x7f070004;
public static int notification_large_icon_height=0x7f070071;
public static int notification_large_icon_width=0x7f070072;
public static int notification_subtext_size=0x7f070073;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static int abc_action_bar_item_background_material=0x7f020001;
public static int abc_btn_borderless_material=0x7f020002;
public static int abc_btn_check_material=0x7f020003;
public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static int abc_btn_colored_material=0x7f020006;
public static int abc_btn_default_mtrl_shape=0x7f020007;
public static int abc_btn_radio_material=0x7f020008;
public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
public static int abc_cab_background_internal_bg=0x7f02000f;
public static int abc_cab_background_top_material=0x7f020010;
public static int abc_cab_background_top_mtrl_alpha=0x7f020011;
public static int abc_control_background_material=0x7f020012;
public static int abc_dialog_material_background_dark=0x7f020013;
public static int abc_dialog_material_background_light=0x7f020014;
public static int abc_edit_text_material=0x7f020015;
public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
public static int abc_ic_clear_mtrl_alpha=0x7f020017;
public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
public static int abc_ic_search_api_mtrl_alpha=0x7f020020;
public static int abc_ic_star_black_16dp=0x7f020021;
public static int abc_ic_star_black_36dp=0x7f020022;
public static int abc_ic_star_half_black_16dp=0x7f020023;
public static int abc_ic_star_half_black_36dp=0x7f020024;
public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025;
public static int abc_item_background_holo_dark=0x7f020026;
public static int abc_item_background_holo_light=0x7f020027;
public static int abc_list_divider_mtrl_alpha=0x7f020028;
public static int abc_list_focused_holo=0x7f020029;
public static int abc_list_longpressed_holo=0x7f02002a;
public static int abc_list_pressed_holo_dark=0x7f02002b;
public static int abc_list_pressed_holo_light=0x7f02002c;
public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static int abc_list_selector_disabled_holo_light=0x7f020030;
public static int abc_list_selector_holo_dark=0x7f020031;
public static int abc_list_selector_holo_light=0x7f020032;
public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static int abc_popup_background_mtrl_mult=0x7f020034;
public static int abc_ratingbar_full_material=0x7f020035;
public static int abc_ratingbar_indicator_material=0x7f020036;
public static int abc_ratingbar_small_material=0x7f020037;
public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static int abc_seekbar_thumb_material=0x7f02003d;
public static int abc_seekbar_track_material=0x7f02003e;
public static int abc_spinner_mtrl_am_alpha=0x7f02003f;
public static int abc_spinner_textfield_background_material=0x7f020040;
public static int abc_switch_thumb_material=0x7f020041;
public static int abc_switch_track_mtrl_alpha=0x7f020042;
public static int abc_tab_indicator_material=0x7f020043;
public static int abc_tab_indicator_mtrl_alpha=0x7f020044;
public static int abc_text_cursor_material=0x7f020045;
public static int abc_textfield_activated_mtrl_alpha=0x7f020046;
public static int abc_textfield_default_mtrl_alpha=0x7f020047;
public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048;
public static int abc_textfield_search_default_mtrl_alpha=0x7f020049;
public static int abc_textfield_search_material=0x7f02004a;
public static int clientes=0x7f02004b;
public static int design_fab_background=0x7f02004c;
public static int design_snackbar_background=0x7f02004d;
public static int home=0x7f02004e;
public static int ic_add=0x7f02004f;
public static int ic_audiotrack=0x7f020050;
public static int ic_audiotrack_light=0x7f020051;
public static int ic_bluetooth_grey=0x7f020052;
public static int ic_bluetooth_white=0x7f020053;
public static int ic_cast_dark=0x7f020054;
public static int ic_cast_disabled_light=0x7f020055;
public static int ic_cast_grey=0x7f020056;
public static int ic_cast_light=0x7f020057;
public static int ic_cast_off_light=0x7f020058;
public static int ic_cast_on_0_light=0x7f020059;
public static int ic_cast_on_1_light=0x7f02005a;
public static int ic_cast_on_2_light=0x7f02005b;
public static int ic_cast_on_light=0x7f02005c;
public static int ic_cast_white=0x7f02005d;
public static int ic_close_dark=0x7f02005e;
public static int ic_close_light=0x7f02005f;
public static int ic_collapse=0x7f020060;
public static int ic_collapse_00000=0x7f020061;
public static int ic_collapse_00001=0x7f020062;
public static int ic_collapse_00002=0x7f020063;
public static int ic_collapse_00003=0x7f020064;
public static int ic_collapse_00004=0x7f020065;
public static int ic_collapse_00005=0x7f020066;
public static int ic_collapse_00006=0x7f020067;
public static int ic_collapse_00007=0x7f020068;
public static int ic_collapse_00008=0x7f020069;
public static int ic_collapse_00009=0x7f02006a;
public static int ic_collapse_00010=0x7f02006b;
public static int ic_collapse_00011=0x7f02006c;
public static int ic_collapse_00012=0x7f02006d;
public static int ic_collapse_00013=0x7f02006e;
public static int ic_collapse_00014=0x7f02006f;
public static int ic_collapse_00015=0x7f020070;
public static int ic_expand=0x7f020071;
public static int ic_expand_00000=0x7f020072;
public static int ic_expand_00001=0x7f020073;
public static int ic_expand_00002=0x7f020074;
public static int ic_expand_00003=0x7f020075;
public static int ic_expand_00004=0x7f020076;
public static int ic_expand_00005=0x7f020077;
public static int ic_expand_00006=0x7f020078;
public static int ic_expand_00007=0x7f020079;
public static int ic_expand_00008=0x7f02007a;
public static int ic_expand_00009=0x7f02007b;
public static int ic_expand_00010=0x7f02007c;
public static int ic_expand_00011=0x7f02007d;
public static int ic_expand_00012=0x7f02007e;
public static int ic_expand_00013=0x7f02007f;
public static int ic_expand_00014=0x7f020080;
public static int ic_expand_00015=0x7f020081;
public static int ic_media_pause=0x7f020082;
public static int ic_media_play=0x7f020083;
public static int ic_media_route_disabled_mono_dark=0x7f020084;
public static int ic_media_route_off_mono_dark=0x7f020085;
public static int ic_media_route_on_0_mono_dark=0x7f020086;
public static int ic_media_route_on_1_mono_dark=0x7f020087;
public static int ic_media_route_on_2_mono_dark=0x7f020088;
public static int ic_media_route_on_mono_dark=0x7f020089;
public static int ic_pause_dark=0x7f02008a;
public static int ic_pause_light=0x7f02008b;
public static int ic_play_dark=0x7f02008c;
public static int ic_play_light=0x7f02008d;
public static int ic_speaker_dark=0x7f02008e;
public static int ic_speaker_group_dark=0x7f02008f;
public static int ic_speaker_group_light=0x7f020090;
public static int ic_speaker_light=0x7f020091;
public static int ic_tv_dark=0x7f020092;
public static int ic_tv_light=0x7f020093;
public static int icon=0x7f020094;
public static int icone_contato=0x7f020095;
public static int menu=0x7f020096;
public static int mr_dialog_material_background_dark=0x7f020097;
public static int mr_dialog_material_background_light=0x7f020098;
public static int mr_ic_audiotrack_light=0x7f020099;
public static int mr_ic_cast_dark=0x7f02009a;
public static int mr_ic_cast_light=0x7f02009b;
public static int mr_ic_close_dark=0x7f02009c;
public static int mr_ic_close_light=0x7f02009d;
public static int mr_ic_media_route_connecting_mono_dark=0x7f02009e;
public static int mr_ic_media_route_connecting_mono_light=0x7f02009f;
public static int mr_ic_media_route_mono_dark=0x7f0200a0;
public static int mr_ic_media_route_mono_light=0x7f0200a1;
public static int mr_ic_pause_dark=0x7f0200a2;
public static int mr_ic_pause_light=0x7f0200a3;
public static int mr_ic_play_dark=0x7f0200a4;
public static int mr_ic_play_light=0x7f0200a5;
public static int notification_template_icon_bg=0x7f0200a7;
public static int xamarin_logo=0x7f0200a6;
}
public static final class id {
public static int action0=0x7f0b008b;
public static int action_bar=0x7f0b005a;
public static int action_bar_activity_content=0x7f0b0002;
public static int action_bar_container=0x7f0b0059;
public static int action_bar_root=0x7f0b0055;
public static int action_bar_spinner=0x7f0b0003;
public static int action_bar_subtitle=0x7f0b003b;
public static int action_bar_title=0x7f0b003a;
public static int action_context_bar=0x7f0b005b;
public static int action_divider=0x7f0b008f;
public static int action_menu_divider=0x7f0b0004;
public static int action_menu_presenter=0x7f0b0005;
public static int action_mode_bar=0x7f0b0057;
public static int action_mode_bar_stub=0x7f0b0056;
public static int action_mode_close_button=0x7f0b003c;
public static int activity_chooser_view_content=0x7f0b003d;
public static int alertTitle=0x7f0b0049;
public static int always=0x7f0b0035;
public static int beginning=0x7f0b0033;
public static int bottom=0x7f0b0013;
public static int buttonPanel=0x7f0b0044;
public static int cancel_action=0x7f0b008c;
public static int center=0x7f0b0014;
public static int center_horizontal=0x7f0b0015;
public static int center_vertical=0x7f0b0016;
public static int checkbox=0x7f0b0052;
public static int chronometer=0x7f0b0092;
public static int clip_horizontal=0x7f0b001d;
public static int clip_vertical=0x7f0b001e;
public static int collapseActionView=0x7f0b0036;
public static int contentPanel=0x7f0b004a;
public static int custom=0x7f0b0050;
public static int customPanel=0x7f0b004f;
public static int decor_content_parent=0x7f0b0058;
public static int default_activity_button=0x7f0b0040;
public static int design_bottom_sheet=0x7f0b006a;
public static int design_menu_item_action_area=0x7f0b0071;
public static int design_menu_item_action_area_stub=0x7f0b0070;
public static int design_menu_item_text=0x7f0b006f;
public static int design_navigation_view=0x7f0b006e;
public static int disableHome=0x7f0b0027;
public static int edit_query=0x7f0b005c;
public static int end=0x7f0b0017;
public static int end_padder=0x7f0b0097;
public static int enterAlways=0x7f0b000b;
public static int enterAlwaysCollapsed=0x7f0b000c;
public static int exitUntilCollapsed=0x7f0b000d;
public static int expand_activities_button=0x7f0b003e;
public static int expanded_menu=0x7f0b0051;
public static int fill=0x7f0b001f;
public static int fill_horizontal=0x7f0b0020;
public static int fill_vertical=0x7f0b0018;
public static int fixed=0x7f0b0023;
public static int home=0x7f0b0006;
public static int homeAsUp=0x7f0b0028;
public static int icon=0x7f0b0042;
public static int ifRoom=0x7f0b0037;
public static int image=0x7f0b003f;
public static int info=0x7f0b0096;
public static int item_touch_helper_previous_elevation=0x7f0b0001;
public static int left=0x7f0b0019;
public static int line1=0x7f0b0090;
public static int line3=0x7f0b0094;
public static int listMode=0x7f0b0025;
public static int list_item=0x7f0b0041;
public static int media_actions=0x7f0b008e;
public static int middle=0x7f0b0034;
public static int mini=0x7f0b0021;
public static int mr_art=0x7f0b007d;
public static int mr_chooser_list=0x7f0b0072;
public static int mr_chooser_route_desc=0x7f0b0075;
public static int mr_chooser_route_icon=0x7f0b0073;
public static int mr_chooser_route_name=0x7f0b0074;
public static int mr_close=0x7f0b007a;
public static int mr_control_divider=0x7f0b0080;
public static int mr_control_play_pause=0x7f0b0086;
public static int mr_control_subtitle=0x7f0b0089;
public static int mr_control_title=0x7f0b0088;
public static int mr_control_title_container=0x7f0b0087;
public static int mr_custom_control=0x7f0b007b;
public static int mr_default_control=0x7f0b007c;
public static int mr_dialog_area=0x7f0b0077;
public static int mr_expandable_area=0x7f0b0076;
public static int mr_group_expand_collapse=0x7f0b008a;
public static int mr_media_main_control=0x7f0b007e;
public static int mr_name=0x7f0b0079;
public static int mr_playback_control=0x7f0b007f;
public static int mr_title_bar=0x7f0b0078;
public static int mr_volume_control=0x7f0b0081;
public static int mr_volume_group_list=0x7f0b0082;
public static int mr_volume_item_icon=0x7f0b0084;
public static int mr_volume_slider=0x7f0b0085;
public static int multiply=0x7f0b002e;
public static int navigation_header_container=0x7f0b006d;
public static int never=0x7f0b0038;
public static int none=0x7f0b0010;
public static int normal=0x7f0b0022;
public static int parallax=0x7f0b0011;
public static int parentPanel=0x7f0b0046;
public static int pin=0x7f0b0012;
public static int progress_circular=0x7f0b0007;
public static int progress_horizontal=0x7f0b0008;
public static int radio=0x7f0b0054;
public static int right=0x7f0b001a;
public static int screen=0x7f0b002f;
public static int scroll=0x7f0b000e;
public static int scrollIndicatorDown=0x7f0b004e;
public static int scrollIndicatorUp=0x7f0b004b;
public static int scrollView=0x7f0b004c;
public static int scrollable=0x7f0b0024;
public static int search_badge=0x7f0b005e;
public static int search_bar=0x7f0b005d;
public static int search_button=0x7f0b005f;
public static int search_close_btn=0x7f0b0064;
public static int search_edit_frame=0x7f0b0060;
public static int search_go_btn=0x7f0b0066;
public static int search_mag_icon=0x7f0b0061;
public static int search_plate=0x7f0b0062;
public static int search_src_text=0x7f0b0063;
public static int search_voice_btn=0x7f0b0067;
public static int select_dialog_listview=0x7f0b0068;
public static int shortcut=0x7f0b0053;
public static int showCustom=0x7f0b0029;
public static int showHome=0x7f0b002a;
public static int showTitle=0x7f0b002b;
public static int sliding_tabs=0x7f0b0098;
public static int snackbar_action=0x7f0b006c;
public static int snackbar_text=0x7f0b006b;
public static int snap=0x7f0b000f;
public static int spacer=0x7f0b0045;
public static int split_action_bar=0x7f0b0009;
public static int src_atop=0x7f0b0030;
public static int src_in=0x7f0b0031;
public static int src_over=0x7f0b0032;
public static int start=0x7f0b001b;
public static int status_bar_latest_event_content=0x7f0b008d;
public static int submit_area=0x7f0b0065;
public static int tabMode=0x7f0b0026;
public static int text=0x7f0b0095;
public static int text2=0x7f0b0093;
public static int textSpacerNoButtons=0x7f0b004d;
public static int time=0x7f0b0091;
public static int title=0x7f0b0043;
public static int title_template=0x7f0b0048;
public static int toolbar=0x7f0b0099;
public static int top=0x7f0b001c;
public static int topPanel=0x7f0b0047;
public static int touch_outside=0x7f0b0069;
public static int up=0x7f0b000a;
public static int useLogo=0x7f0b002c;
public static int view_offset_helper=0x7f0b0000;
public static int volume_item_container=0x7f0b0083;
public static int withText=0x7f0b0039;
public static int wrap_content=0x7f0b002d;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f080006;
public static int abc_config_activityShortDur=0x7f080007;
public static int abc_max_action_buttons=0x7f080005;
public static int bottom_sheet_slide_duration=0x7f080004;
public static int cancel_button_image_alpha=0x7f080008;
public static int design_snackbar_text_max_lines=0x7f080003;
public static int mr_controller_volume_group_list_animation_duration_ms=0x7f080000;
public static int mr_controller_volume_group_list_fade_in_duration_ms=0x7f080001;
public static int mr_controller_volume_group_list_fade_out_duration_ms=0x7f080002;
public static int status_bar_notification_info_maxnum=0x7f080009;
}
public static final class interpolator {
public static int mr_fast_out_slow_in=0x7f050000;
public static int mr_linear_out_slow_in=0x7f050001;
}
public static final class layout {
public static int abc_action_bar_title_item=0x7f030000;
public static int abc_action_bar_up_container=0x7f030001;
public static int abc_action_bar_view_list_nav_layout=0x7f030002;
public static int abc_action_menu_item_layout=0x7f030003;
public static int abc_action_menu_layout=0x7f030004;
public static int abc_action_mode_bar=0x7f030005;
public static int abc_action_mode_close_item_material=0x7f030006;
public static int abc_activity_chooser_view=0x7f030007;
public static int abc_activity_chooser_view_list_item=0x7f030008;
public static int abc_alert_dialog_button_bar_material=0x7f030009;
public static int abc_alert_dialog_material=0x7f03000a;
public static int abc_dialog_title_material=0x7f03000b;
public static int abc_expanded_menu_layout=0x7f03000c;
public static int abc_list_menu_item_checkbox=0x7f03000d;
public static int abc_list_menu_item_icon=0x7f03000e;
public static int abc_list_menu_item_layout=0x7f03000f;
public static int abc_list_menu_item_radio=0x7f030010;
public static int abc_popup_menu_item_layout=0x7f030011;
public static int abc_screen_content_include=0x7f030012;
public static int abc_screen_simple=0x7f030013;
public static int abc_screen_simple_overlay_action_mode=0x7f030014;
public static int abc_screen_toolbar=0x7f030015;
public static int abc_search_dropdown_item_icons_2line=0x7f030016;
public static int abc_search_view=0x7f030017;
public static int abc_select_dialog_material=0x7f030018;
public static int design_bottom_sheet_dialog=0x7f030019;
public static int design_layout_snackbar=0x7f03001a;
public static int design_layout_snackbar_include=0x7f03001b;
public static int design_layout_tab_icon=0x7f03001c;
public static int design_layout_tab_text=0x7f03001d;
public static int design_menu_item_action_area=0x7f03001e;
public static int design_navigation_item=0x7f03001f;
public static int design_navigation_item_header=0x7f030020;
public static int design_navigation_item_separator=0x7f030021;
public static int design_navigation_item_subheader=0x7f030022;
public static int design_navigation_menu=0x7f030023;
public static int design_navigation_menu_item=0x7f030024;
public static int mr_chooser_dialog=0x7f030025;
public static int mr_chooser_list_item=0x7f030026;
public static int mr_controller_material_dialog_b=0x7f030027;
public static int mr_controller_volume_item=0x7f030028;
public static int mr_playback_control=0x7f030029;
public static int mr_volume_control=0x7f03002a;
public static int notification_media_action=0x7f03002b;
public static int notification_media_cancel_action=0x7f03002c;
public static int notification_template_big_media=0x7f03002d;
public static int notification_template_big_media_narrow=0x7f03002e;
public static int notification_template_lines=0x7f03002f;
public static int notification_template_media=0x7f030030;
public static int notification_template_part_chronometer=0x7f030031;
public static int notification_template_part_time=0x7f030032;
public static int select_dialog_item_material=0x7f030033;
public static int select_dialog_multichoice_material=0x7f030034;
public static int select_dialog_singlechoice_material=0x7f030035;
public static int support_simple_spinner_dropdown_item=0x7f030036;
public static int tabbar=0x7f030037;
public static int toolbar=0x7f030038;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f060012;
public static int abc_action_bar_home_description_format=0x7f060013;
public static int abc_action_bar_home_subtitle_description_format=0x7f060014;
public static int abc_action_bar_up_description=0x7f060015;
public static int abc_action_menu_overflow_description=0x7f060016;
public static int abc_action_mode_done=0x7f060017;
public static int abc_activity_chooser_view_see_all=0x7f060018;
public static int abc_activitychooserview_choose_application=0x7f060019;
public static int abc_capital_off=0x7f06001a;
public static int abc_capital_on=0x7f06001b;
public static int abc_search_hint=0x7f06001c;
public static int abc_searchview_description_clear=0x7f06001d;
public static int abc_searchview_description_query=0x7f06001e;
public static int abc_searchview_description_search=0x7f06001f;
public static int abc_searchview_description_submit=0x7f060020;
public static int abc_searchview_description_voice=0x7f060021;
public static int abc_shareactionprovider_share_with=0x7f060022;
public static int abc_shareactionprovider_share_with_application=0x7f060023;
public static int abc_toolbar_collapse_description=0x7f060024;
public static int appbar_scrolling_view_behavior=0x7f06000f;
public static int bottom_sheet_behavior=0x7f060010;
public static int character_counter_pattern=0x7f060011;
public static int mr_button_content_description=0x7f060000;
public static int mr_chooser_searching=0x7f060001;
public static int mr_chooser_title=0x7f060002;
public static int mr_controller_casting_screen=0x7f060003;
public static int mr_controller_close_description=0x7f060004;
public static int mr_controller_collapse_group=0x7f060005;
public static int mr_controller_disconnect=0x7f060006;
public static int mr_controller_expand_group=0x7f060007;
public static int mr_controller_no_info_available=0x7f060008;
public static int mr_controller_no_media_selected=0x7f060009;
public static int mr_controller_pause=0x7f06000a;
public static int mr_controller_play=0x7f06000b;
public static int mr_controller_stop=0x7f06000c;
public static int mr_system_route_name=0x7f06000d;
public static int mr_user_route_category_name=0x7f06000e;
public static int status_bar_notification_info_overflow=0x7f060025;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f0900ba;
public static int AlertDialog_AppCompat_Light=0x7f0900bb;
public static int Animation_AppCompat_Dialog=0x7f0900bc;
public static int Animation_AppCompat_DropDownUp=0x7f0900bd;
public static int Animation_Design_BottomSheetDialog=0x7f09001c;
public static int AppCompatDialogStyle=0x7f090174;
public static int Base_AlertDialog_AppCompat=0x7f0900be;
public static int Base_AlertDialog_AppCompat_Light=0x7f0900bf;
public static int Base_Animation_AppCompat_Dialog=0x7f0900c0;
public static int Base_Animation_AppCompat_DropDownUp=0x7f0900c1;
public static int Base_CardView=0x7f090018;
public static int Base_DialogWindowTitle_AppCompat=0x7f0900c2;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0900c3;
public static int Base_TextAppearance_AppCompat=0x7f09006a;
public static int Base_TextAppearance_AppCompat_Body1=0x7f09006b;
public static int Base_TextAppearance_AppCompat_Body2=0x7f09006c;
public static int Base_TextAppearance_AppCompat_Button=0x7f090054;
public static int Base_TextAppearance_AppCompat_Caption=0x7f09006d;
public static int Base_TextAppearance_AppCompat_Display1=0x7f09006e;
public static int Base_TextAppearance_AppCompat_Display2=0x7f09006f;
public static int Base_TextAppearance_AppCompat_Display3=0x7f090070;
public static int Base_TextAppearance_AppCompat_Display4=0x7f090071;
public static int Base_TextAppearance_AppCompat_Headline=0x7f090072;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f09003f;
public static int Base_TextAppearance_AppCompat_Large=0x7f090073;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090040;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090074;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090075;
public static int Base_TextAppearance_AppCompat_Medium=0x7f090076;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090041;
public static int Base_TextAppearance_AppCompat_Menu=0x7f090077;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0900c4;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f090078;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f090079;
public static int Base_TextAppearance_AppCompat_Small=0x7f09007a;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090042;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f09007b;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090043;
public static int Base_TextAppearance_AppCompat_Title=0x7f09007c;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090044;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900b3;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f09007d;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f09007e;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f09007f;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090080;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090081;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090082;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f090083;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900b4;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900c5;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090084;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090085;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f090086;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090087;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900c6;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090088;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090089;
public static int Base_Theme_AppCompat=0x7f09008a;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0900c7;
public static int Base_Theme_AppCompat_Dialog=0x7f090045;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0900c8;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900c9;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0900ca;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f090035;
public static int Base_Theme_AppCompat_Light=0x7f09008b;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900cb;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f090046;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0900cc;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900cd;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900ce;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090036;
public static int Base_ThemeOverlay_AppCompat=0x7f0900cf;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900d0;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0900d1;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900d2;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0900d3;
public static int Base_V11_Theme_AppCompat_Dialog=0x7f090047;
public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f090048;
public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090050;
public static int Base_V12_Widget_AppCompat_EditText=0x7f090051;
public static int Base_V21_Theme_AppCompat=0x7f09008c;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f09008d;
public static int Base_V21_Theme_AppCompat_Light=0x7f09008e;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f09008f;
public static int Base_V22_Theme_AppCompat=0x7f0900b1;
public static int Base_V22_Theme_AppCompat_Light=0x7f0900b2;
public static int Base_V23_Theme_AppCompat=0x7f0900b5;
public static int Base_V23_Theme_AppCompat_Light=0x7f0900b6;
public static int Base_V7_Theme_AppCompat=0x7f0900d4;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0900d5;
public static int Base_V7_Theme_AppCompat_Light=0x7f0900d6;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900d7;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900d8;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0900d9;
public static int Base_Widget_AppCompat_ActionBar=0x7f0900da;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900db;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900dc;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f090090;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f090091;
public static int Base_Widget_AppCompat_ActionButton=0x7f090092;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090093;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090094;
public static int Base_Widget_AppCompat_ActionMode=0x7f0900dd;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0900de;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090052;
public static int Base_Widget_AppCompat_Button=0x7f090095;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f090096;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f090097;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900df;
public static int Base_Widget_AppCompat_Button_Colored=0x7f0900b7;
public static int Base_Widget_AppCompat_Button_Small=0x7f090098;
public static int Base_Widget_AppCompat_ButtonBar=0x7f090099;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900e0;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f09009a;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f09009b;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900e1;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090034;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900e2;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f09009c;
public static int Base_Widget_AppCompat_EditText=0x7f090053;
public static int Base_Widget_AppCompat_ImageButton=0x7f09009d;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0900e3;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900e4;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900e5;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f09009e;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09009f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0900a0;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0900a1;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0900a2;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0900a3;
public static int Base_Widget_AppCompat_ListView=0x7f0900a4;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0900a5;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f0900a6;
public static int Base_Widget_AppCompat_PopupMenu=0x7f0900a7;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0900a8;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0900e6;
public static int Base_Widget_AppCompat_ProgressBar=0x7f090049;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09004a;
public static int Base_Widget_AppCompat_RatingBar=0x7f0900a9;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0900b8;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0900b9;
public static int Base_Widget_AppCompat_SearchView=0x7f0900e7;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900e8;
public static int Base_Widget_AppCompat_SeekBar=0x7f0900aa;
public static int Base_Widget_AppCompat_Spinner=0x7f0900ab;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f090037;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0900ac;
public static int Base_Widget_AppCompat_Toolbar=0x7f0900e9;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0900ad;
public static int Base_Widget_Design_TabLayout=0x7f09001d;
public static int CardView=0x7f090017;
public static int CardView_Dark=0x7f090019;
public static int CardView_Light=0x7f09001a;
public static int MyTheme=0x7f090172;
/** Base theme applied no matter what API
*/
public static int MyTheme_Base=0x7f090173;
public static int Platform_AppCompat=0x7f09004b;
public static int Platform_AppCompat_Light=0x7f09004c;
public static int Platform_ThemeOverlay_AppCompat=0x7f0900ae;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0900af;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0900b0;
public static int Platform_V11_AppCompat=0x7f09004d;
public static int Platform_V11_AppCompat_Light=0x7f09004e;
public static int Platform_V14_AppCompat=0x7f090055;
public static int Platform_V14_AppCompat_Light=0x7f090056;
public static int Platform_Widget_AppCompat_Spinner=0x7f09004f;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f09005c;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f09005d;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f09005e;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f09005f;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090060;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090061;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090062;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090063;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090064;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f090065;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f090066;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f090067;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f090068;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f090069;
public static int TextAppearance_AppCompat=0x7f0900ea;
public static int TextAppearance_AppCompat_Body1=0x7f0900eb;
public static int TextAppearance_AppCompat_Body2=0x7f0900ec;
public static int TextAppearance_AppCompat_Button=0x7f0900ed;
public static int TextAppearance_AppCompat_Caption=0x7f0900ee;
public static int TextAppearance_AppCompat_Display1=0x7f0900ef;
public static int TextAppearance_AppCompat_Display2=0x7f0900f0;
public static int TextAppearance_AppCompat_Display3=0x7f0900f1;
public static int TextAppearance_AppCompat_Display4=0x7f0900f2;
public static int TextAppearance_AppCompat_Headline=0x7f0900f3;
public static int TextAppearance_AppCompat_Inverse=0x7f0900f4;
public static int TextAppearance_AppCompat_Large=0x7f0900f5;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0900f6;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900f7;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900f8;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900f9;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900fa;
public static int TextAppearance_AppCompat_Medium=0x7f0900fb;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0900fc;
public static int TextAppearance_AppCompat_Menu=0x7f0900fd;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900fe;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0900ff;
public static int TextAppearance_AppCompat_Small=0x7f090100;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f090101;
public static int TextAppearance_AppCompat_Subhead=0x7f090102;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f090103;
public static int TextAppearance_AppCompat_Title=0x7f090104;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f090105;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090106;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090107;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090108;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090109;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f09010a;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f09010b;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f09010c;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f09010d;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f09010e;
public static int TextAppearance_AppCompat_Widget_Button=0x7f09010f;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090110;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f090111;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090112;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090113;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f090114;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090115;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f09001e;
public static int TextAppearance_Design_Counter=0x7f09001f;
public static int TextAppearance_Design_Counter_Overflow=0x7f090020;
public static int TextAppearance_Design_Error=0x7f090021;
public static int TextAppearance_Design_Hint=0x7f090022;
public static int TextAppearance_Design_Snackbar_Message=0x7f090023;
public static int TextAppearance_Design_Tab=0x7f090024;
public static int TextAppearance_StatusBar_EventContent=0x7f090057;
public static int TextAppearance_StatusBar_EventContent_Info=0x7f090058;
public static int TextAppearance_StatusBar_EventContent_Line2=0x7f090059;
public static int TextAppearance_StatusBar_EventContent_Time=0x7f09005a;
public static int TextAppearance_StatusBar_EventContent_Title=0x7f09005b;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090116;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090117;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090118;
public static int Theme_AppCompat=0x7f090119;
public static int Theme_AppCompat_CompactMenu=0x7f09011a;
public static int Theme_AppCompat_DayNight=0x7f090038;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f090039;
public static int Theme_AppCompat_DayNight_Dialog=0x7f09003a;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f09003b;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f09003c;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f09003d;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f09003e;
public static int Theme_AppCompat_Dialog=0x7f09011b;
public static int Theme_AppCompat_Dialog_Alert=0x7f09011c;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f09011d;
public static int Theme_AppCompat_DialogWhenLarge=0x7f09011e;
public static int Theme_AppCompat_Light=0x7f09011f;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f090120;
public static int Theme_AppCompat_Light_Dialog=0x7f090121;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f090122;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f090123;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f090124;
public static int Theme_AppCompat_Light_NoActionBar=0x7f090125;
public static int Theme_AppCompat_NoActionBar=0x7f090126;
public static int Theme_Design=0x7f090025;
public static int Theme_Design_BottomSheetDialog=0x7f090026;
public static int Theme_Design_Light=0x7f090027;
public static int Theme_Design_Light_BottomSheetDialog=0x7f090028;
public static int Theme_Design_Light_NoActionBar=0x7f090029;
public static int Theme_Design_NoActionBar=0x7f09002a;
public static int Theme_MediaRouter=0x7f090000;
public static int Theme_MediaRouter_Light=0x7f090001;
public static int Theme_MediaRouter_Light_DarkControlPanel=0x7f090002;
public static int Theme_MediaRouter_LightControlPanel=0x7f090003;
public static int ThemeOverlay_AppCompat=0x7f090127;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f090128;
public static int ThemeOverlay_AppCompat_Dark=0x7f090129;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f09012a;
public static int ThemeOverlay_AppCompat_Light=0x7f09012b;
public static int Widget_AppCompat_ActionBar=0x7f09012c;
public static int Widget_AppCompat_ActionBar_Solid=0x7f09012d;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f09012e;
public static int Widget_AppCompat_ActionBar_TabText=0x7f09012f;
public static int Widget_AppCompat_ActionBar_TabView=0x7f090130;
public static int Widget_AppCompat_ActionButton=0x7f090131;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f090132;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f090133;
public static int Widget_AppCompat_ActionMode=0x7f090134;
public static int Widget_AppCompat_ActivityChooserView=0x7f090135;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f090136;
public static int Widget_AppCompat_Button=0x7f090137;
public static int Widget_AppCompat_Button_Borderless=0x7f090138;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f090139;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09013a;
public static int Widget_AppCompat_Button_Colored=0x7f09013b;
public static int Widget_AppCompat_Button_Small=0x7f09013c;
public static int Widget_AppCompat_ButtonBar=0x7f09013d;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09013e;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f09013f;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f090140;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f090141;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f090142;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f090143;
public static int Widget_AppCompat_EditText=0x7f090144;
public static int Widget_AppCompat_ImageButton=0x7f090145;
public static int Widget_AppCompat_Light_ActionBar=0x7f090146;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f090147;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090148;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090149;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09014a;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f09014b;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09014c;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f09014d;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09014e;
public static int Widget_AppCompat_Light_ActionButton=0x7f09014f;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090150;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090151;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090152;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f090153;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090154;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090155;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f090156;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f090157;
public static int Widget_AppCompat_Light_PopupMenu=0x7f090158;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090159;
public static int Widget_AppCompat_Light_SearchView=0x7f09015a;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09015b;
public static int Widget_AppCompat_ListPopupWindow=0x7f09015c;
public static int Widget_AppCompat_ListView=0x7f09015d;
public static int Widget_AppCompat_ListView_DropDown=0x7f09015e;
public static int Widget_AppCompat_ListView_Menu=0x7f09015f;
public static int Widget_AppCompat_PopupMenu=0x7f090160;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f090161;
public static int Widget_AppCompat_PopupWindow=0x7f090162;
public static int Widget_AppCompat_ProgressBar=0x7f090163;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f090164;
public static int Widget_AppCompat_RatingBar=0x7f090165;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f090166;
public static int Widget_AppCompat_RatingBar_Small=0x7f090167;
public static int Widget_AppCompat_SearchView=0x7f090168;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f090169;
public static int Widget_AppCompat_SeekBar=0x7f09016a;
public static int Widget_AppCompat_Spinner=0x7f09016b;
public static int Widget_AppCompat_Spinner_DropDown=0x7f09016c;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09016d;
public static int Widget_AppCompat_Spinner_Underlined=0x7f09016e;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f09016f;
public static int Widget_AppCompat_Toolbar=0x7f090170;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090171;
public static int Widget_Design_AppBarLayout=0x7f09002b;
public static int Widget_Design_BottomSheet_Modal=0x7f09002c;
public static int Widget_Design_CollapsingToolbar=0x7f09002d;
public static int Widget_Design_CoordinatorLayout=0x7f09002e;
public static int Widget_Design_FloatingActionButton=0x7f09002f;
public static int Widget_Design_NavigationView=0x7f090030;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f090031;
public static int Widget_Design_Snackbar=0x7f090032;
public static int Widget_Design_TabLayout=0x7f09001b;
public static int Widget_Design_TextInputLayout=0x7f090033;
public static int Widget_MediaRouter_ChooserText=0x7f090004;
public static int Widget_MediaRouter_ChooserText_Primary=0x7f090005;
public static int Widget_MediaRouter_ChooserText_Primary_Dark=0x7f090006;
public static int Widget_MediaRouter_ChooserText_Primary_Light=0x7f090007;
public static int Widget_MediaRouter_ChooserText_Secondary=0x7f090008;
public static int Widget_MediaRouter_ChooserText_Secondary_Dark=0x7f090009;
public static int Widget_MediaRouter_ChooserText_Secondary_Light=0x7f09000a;
public static int Widget_MediaRouter_ControllerText=0x7f09000b;
public static int Widget_MediaRouter_ControllerText_Primary=0x7f09000c;
public static int Widget_MediaRouter_ControllerText_Primary_Dark=0x7f09000d;
public static int Widget_MediaRouter_ControllerText_Primary_Light=0x7f09000e;
public static int Widget_MediaRouter_ControllerText_Secondary=0x7f09000f;
public static int Widget_MediaRouter_ControllerText_Secondary_Dark=0x7f090010;
public static int Widget_MediaRouter_ControllerText_Secondary_Light=0x7f090011;
public static int Widget_MediaRouter_ControllerText_Title=0x7f090012;
public static int Widget_MediaRouter_ControllerText_Title_Dark=0x7f090013;
public static int Widget_MediaRouter_ControllerText_Title_Light=0x7f090014;
public static int Widget_MediaRouter_Light_MediaRouteButton=0x7f090015;
public static int Widget_MediaRouter_MediaRouteButton=0x7f090016;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background android.support.graphics.drawable:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit android.support.graphics.drawable:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked android.support.graphics.drawable:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd android.support.graphics.drawable:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft android.support.graphics.drawable:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight android.support.graphics.drawable:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart android.support.graphics.drawable:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout android.support.graphics.drawable:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions android.support.graphics.drawable:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider android.support.graphics.drawable:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation android.support.graphics.drawable:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height android.support.graphics.drawable:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.graphics.drawable:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.graphics.drawable:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout android.support.graphics.drawable:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon android.support.graphics.drawable:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.graphics.drawable:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding android.support.graphics.drawable:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo android.support.graphics.drawable:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode android.support.graphics.drawable:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme android.support.graphics.drawable:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding android.support.graphics.drawable:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle android.support.graphics.drawable:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle android.support.graphics.drawable:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.graphics.drawable:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title android.support.graphics.drawable:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle android.support.graphics.drawable:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@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 = {
0x7f01006c, 0x7f01006e, 0x7f01006f, 0x7f010070,
0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074,
0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078,
0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c,
0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080,
0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084,
0x7f010085, 0x7f010086, 0x7f0100bf
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:background
*/
public static int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:displayOptions
*/
public static int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:divider
*/
public static int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:elevation
*/
public static int ActionBar_elevation = 24;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:height
*/
public static int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 26;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:homeLayout
*/
public static int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:icon
*/
public static int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:itemPadding
*/
public static int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:logo
*/
public static int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:navigationMode
*/
public static int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:popupTheme
*/
public static int ActionBar_popupTheme = 25;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:subtitle
*/
public static int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:title
*/
public static int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:titleTextStyle
*/
public static int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background android.support.graphics.drawable:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit android.support.graphics.drawable:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout android.support.graphics.drawable:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height android.support.graphics.drawable:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.graphics.drawable:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle android.support.graphics.drawable: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 = {
0x7f01006c, 0x7f010072, 0x7f010073, 0x7f010077,
0x7f010079, 0x7f010087
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:background
*/
public static int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:height
*/
public static int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:titleTextStyle
*/
public static int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.graphics.drawable:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.graphics.drawable:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010088, 0x7f010089
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:initialActivityCount
*/
public static int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout android.support.graphics.drawable:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout android.support.graphics.drawable:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout android.support.graphics.drawable:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.graphics.drawable:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.graphics.drawable:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01008a, 0x7f01008b, 0x7f01008c,
0x7f01008d, 0x7f01008e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:singleChoiceItemLayout
*/
public static int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation android.support.graphics.drawable:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded android.support.graphics.drawable:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010022, 0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:elevation
*/
public static int AppBarLayout_elevation = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:expanded
*/
public static int AppBarLayout_expanded = 1;
/** Attributes that can be used with a AppBarLayout_LayoutParams.
<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_LayoutParams_layout_scrollFlags android.support.graphics.drawable:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.graphics.drawable:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_LayoutParams_layout_scrollFlags
@see #AppBarLayout_LayoutParams_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_LayoutParams = {
0x7f010023, 0x7f010024
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:layout_scrollFlags
*/
public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:layout_scrollInterpolator
*/
public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat android.support.graphics.drawable:srcCompat}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f01008f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/** 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_textAllCaps android.support.graphics.drawable:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010090
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name android.support.graphics.drawable:textAllCaps
*/
public static int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider android.support.graphics.drawable:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.graphics.drawable:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.graphics.drawable:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.graphics.drawable:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.graphics.drawable:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.graphics.drawable:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.graphics.drawable:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.graphics.drawable:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.graphics.drawable:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.graphics.drawable:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.graphics.drawable:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.graphics.drawable:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.graphics.drawable:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.graphics.drawable:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.graphics.drawable:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.graphics.drawable:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.graphics.drawable:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.graphics.drawable:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.graphics.drawable:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.graphics.drawable:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.graphics.drawable:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.graphics.drawable:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.graphics.drawable:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.graphics.drawable:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.graphics.drawable:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.graphics.drawable:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.graphics.drawable:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.graphics.drawable:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.graphics.drawable:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.graphics.drawable:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.graphics.drawable:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.graphics.drawable:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.graphics.drawable:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.graphics.drawable:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.graphics.drawable:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.graphics.drawable:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.graphics.drawable:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.graphics.drawable:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.graphics.drawable:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.graphics.drawable:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.graphics.drawable:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.graphics.drawable:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.graphics.drawable:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.graphics.drawable:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.graphics.drawable:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.graphics.drawable:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent android.support.graphics.drawable:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.graphics.drawable:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.graphics.drawable:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.graphics.drawable:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.graphics.drawable:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.graphics.drawable:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.graphics.drawable:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.graphics.drawable:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground android.support.graphics.drawable:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.graphics.drawable:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.graphics.drawable:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.graphics.drawable:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.graphics.drawable:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.graphics.drawable:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.graphics.drawable:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.graphics.drawable:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor android.support.graphics.drawable:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.graphics.drawable:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.graphics.drawable:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.graphics.drawable:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.graphics.drawable:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.graphics.drawable:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.graphics.drawable:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.graphics.drawable:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.graphics.drawable:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.graphics.drawable:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.graphics.drawable:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.graphics.drawable:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground android.support.graphics.drawable:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.graphics.drawable:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.graphics.drawable:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.graphics.drawable:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.graphics.drawable:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.graphics.drawable:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.graphics.drawable:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.graphics.drawable:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.graphics.drawable:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.graphics.drawable:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.graphics.drawable:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.graphics.drawable:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.graphics.drawable:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.graphics.drawable:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.graphics.drawable:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle android.support.graphics.drawable:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.graphics.drawable:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.graphics.drawable:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.graphics.drawable:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.graphics.drawable:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.graphics.drawable:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.graphics.drawable:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.graphics.drawable:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.graphics.drawable:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.graphics.drawable:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.graphics.drawable:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.graphics.drawable:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.graphics.drawable:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.graphics.drawable:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.graphics.drawable:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.graphics.drawable:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.graphics.drawable:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.graphics.drawable:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.graphics.drawable:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.graphics.drawable:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.graphics.drawable:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@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, 0x7f010091, 0x7f010092,
0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096,
0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a,
0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e,
0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2,
0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6,
0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa,
0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae,
0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2,
0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6,
0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba,
0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be,
0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2,
0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6,
0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca,
0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce,
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6,
0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da,
0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de,
0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2,
0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6,
0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea,
0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee,
0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2,
0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6,
0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa,
0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 49;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 45;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 57;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 92;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 93;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 91;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:alertDialogTheme
*/
public static int AppCompatTheme_alertDialogTheme = 94;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 99;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 54;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 51;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 50;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 100;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 101;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 102;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 103;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorAccent
*/
public static int AppCompatTheme_colorAccent = 84;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 88;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 86;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 87;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 85;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 82;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 83;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 89;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:controlBackground
*/
public static int AppCompatTheme_controlBackground = 90;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 43;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 42;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 56;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 55;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 74;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 46;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 63;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:editTextColor
*/
public static int AppCompatTheme_editTextColor = 62;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 104;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 48;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 64;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 81;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 44;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 75;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 69;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 71;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 70;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 72;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 73;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:panelBackground
*/
public static int AppCompatTheme_panelBackground = 78;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 80;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 79;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 60;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 61;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 105;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 106;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 107;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 108;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 68;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 109;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 52;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 53;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 47;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 110;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:switchStyle
*/
public static int AppCompatTheme_switchStyle = 111;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 76;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 77;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 65;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 95;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 67;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 59;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 58;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:windowNoTitle
*/
public static int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomSheetBehavior_Params.
<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_Params_behavior_hideable android.support.graphics.drawable:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.graphics.drawable:behavior_peekHeight}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Params_behavior_hideable
@see #BottomSheetBehavior_Params_behavior_peekHeight
*/
public static final int[] BottomSheetBehavior_Params = {
0x7f010025, 0x7f010026
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:behavior_hideable
*/
public static int BottomSheetBehavior_Params_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:behavior_peekHeight
*/
public static int BottomSheetBehavior_Params_behavior_peekHeight = 0;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking android.support.graphics.drawable:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100ff
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:allowStacking
*/
public static int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor android.support.graphics.drawable:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius android.support.graphics.drawable:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation android.support.graphics.drawable:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation android.support.graphics.drawable:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap android.support.graphics.drawable:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding android.support.graphics.drawable:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding android.support.graphics.drawable:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom android.support.graphics.drawable:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft android.support.graphics.drawable:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight android.support.graphics.drawable:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop android.support.graphics.drawable:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:cardBackgroundColor
*/
public static int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:cardCornerRadius
*/
public static int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:cardElevation
*/
public static int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:cardMaxElevation
*/
public static int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:cardPreventCornerOverlap
*/
public static int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:cardUseCompatPadding
*/
public static int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentPadding
*/
public static int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentPaddingBottom
*/
public static int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentPaddingLeft
*/
public static int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentPaddingRight
*/
public static int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentPaddingTop
*/
public static int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
<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 #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.graphics.drawable:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.graphics.drawable:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode
@see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingAppBarLayout_LayoutParams = {
0x7f010027, 0x7f010028
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:layout_collapseMode
*/
public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:layout_collapseParallaxMultiplier
*/
public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.graphics.drawable:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.graphics.drawable:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.graphics.drawable:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.graphics.drawable:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.graphics.drawable:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.graphics.drawable:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.graphics.drawable:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.graphics.drawable:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.graphics.drawable:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.graphics.drawable:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.graphics.drawable:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title android.support.graphics.drawable:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.graphics.drawable:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.graphics.drawable: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_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c,
0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,
0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f01006e
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 11;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:title
*/
public static int CollapsingToolbarLayout_title = 13;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 12;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:toolbarId
*/
public static int CollapsingToolbarLayout_toolbarId = 9;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint android.support.graphics.drawable:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode android.support.graphics.drawable:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:buttonTintMode
*/
public static int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines android.support.graphics.drawable:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.graphics.drawable:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010036, 0x7f010037
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:statusBarBackground
*/
public static int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_LayoutParams.
<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_LayoutParams_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.graphics.drawable:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.graphics.drawable:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.graphics.drawable:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.graphics.drawable:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_LayoutParams_android_layout_gravity
@see #CoordinatorLayout_LayoutParams_layout_anchor
@see #CoordinatorLayout_LayoutParams_layout_anchorGravity
@see #CoordinatorLayout_LayoutParams_layout_behavior
@see #CoordinatorLayout_LayoutParams_layout_keyline
*/
public static final int[] CoordinatorLayout_LayoutParams = {
0x010100b3, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
@attr name android:layout_gravity
*/
public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:layout_anchor
*/
public static int CoordinatorLayout_LayoutParams_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:layout_anchorGravity
*/
public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:layout_behavior
*/
public static int CoordinatorLayout_LayoutParams_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:layout_keyline
*/
public static int CoordinatorLayout_LayoutParams_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme android.support.graphics.drawable:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.graphics.drawable:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError android.support.graphics.drawable:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f01003c, 0x7f01003d, 0x7f01003e
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:textColorError
*/
public static int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength android.support.graphics.drawable:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.graphics.drawable:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength android.support.graphics.drawable:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color android.support.graphics.drawable:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.graphics.drawable:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.graphics.drawable:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.graphics.drawable:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness android.support.graphics.drawable: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 = {
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:thickness
*/
public static int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint android.support.graphics.drawable:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.graphics.drawable:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth android.support.graphics.drawable:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation android.support.graphics.drawable:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize android.support.graphics.drawable:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.graphics.drawable:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor android.support.graphics.drawable:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.graphics.drawable:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042,
0x7f010043, 0x7f010085, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:borderWidth
*/
public static int FloatingActionButton_borderWidth = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:elevation
*/
public static int FloatingActionButton_elevation = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:fabSize
*/
public static int FloatingActionButton_fabSize = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:rippleColor
*/
public static int FloatingActionButton_rippleColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:useCompatPadding
*/
public static int FloatingActionButton_useCompatPadding = 4;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.graphics.drawable: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, 0x7f010044
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:foregroundInsidePadding
*/
public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider android.support.graphics.drawable:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.graphics.drawable:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.graphics.drawable:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.graphics.drawable:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f010076, 0x7f01010a, 0x7f01010b,
0x7f01010c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:showDividers
*/
public static int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable android.support.graphics.drawable:externalRouteEnabledDrawable}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:externalRouteEnabledDrawable
*/
public static int MediaRouteButton_externalRouteEnabledDrawable = 2;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout android.support.graphics.drawable:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass android.support.graphics.drawable:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass android.support.graphics.drawable:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction android.support.graphics.drawable:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f01010d, 0x7f01010e, 0x7f01010f,
0x7f010110
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:actionLayout
*/
public static int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:actionViewClass
*/
public static int MenuItem_actionViewClass = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:showAsAction
*/
public static int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing android.support.graphics.drawable:preserveIconSpacing}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f010111
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation android.support.graphics.drawable:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout android.support.graphics.drawable:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground android.support.graphics.drawable:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint android.support.graphics.drawable:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance android.support.graphics.drawable:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor android.support.graphics.drawable:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu android.support.graphics.drawable:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049,
0x7f01004a, 0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:elevation
*/
public static int NavigationView_elevation = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:headerLayout
*/
public static int NavigationView_headerLayout = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:itemBackground
*/
public static int NavigationView_itemBackground = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:itemIconTint
*/
public static int NavigationView_itemIconTint = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:itemTextColor
*/
public static int NavigationView_itemTextColor = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:menu
*/
public static int NavigationView_menu = 3;
/** 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_overlapAnchor android.support.graphics.drawable:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:overlapAnchor
*/
public static int PopupWindow_overlapAnchor = 1;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor android.support.graphics.drawable:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f010113
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:state_above_anchor
*/
public static int PopupWindowBackgroundState_state_above_anchor = 0;
/** 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_layoutManager android.support.graphics.drawable:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout android.support.graphics.drawable:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount android.support.graphics.drawable:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd android.support.graphics.drawable:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x7f010067, 0x7f010068, 0x7f010069,
0x7f01006a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:layoutManager
*/
public static int RecyclerView_layoutManager = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:reverseLayout
*/
public static int RecyclerView_reverseLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:spanCount
*/
public static int RecyclerView_spanCount = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:stackFromEnd
*/
public static int RecyclerView_stackFromEnd = 4;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground android.support.graphics.drawable:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f01004b
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.graphics.drawable:insetForeground
*/
public static int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Params.
<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_Params_behavior_overlapTop android.support.graphics.drawable:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Params_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Params = {
0x7f01004c
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:behavior_overlapTop
*/
public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon android.support.graphics.drawable:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon android.support.graphics.drawable:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint android.support.graphics.drawable:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon android.support.graphics.drawable:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault android.support.graphics.drawable:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout android.support.graphics.drawable:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground android.support.graphics.drawable:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint android.support.graphics.drawable:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon android.support.graphics.drawable:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon android.support.graphics.drawable:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground android.support.graphics.drawable:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout android.support.graphics.drawable:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon android.support.graphics.drawable:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117,
0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b,
0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f,
0x7f010120
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:voiceIcon
*/
public static int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation android.support.graphics.drawable:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.graphics.drawable:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01004d, 0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:elevation
*/
public static int SnackbarLayout_elevation = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:maxActionInlineWidth
*/
public static int SnackbarLayout_maxActionInlineWidth = 1;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme android.support.graphics.drawable:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f010086
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:popupTheme
*/
public static int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText android.support.graphics.drawable:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack android.support.graphics.drawable:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.graphics.drawable:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding android.support.graphics.drawable:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.graphics.drawable:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.graphics.drawable:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track android.support.graphics.drawable:track}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_track
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f010121,
0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125,
0x7f010126, 0x7f010127
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:showText
*/
public static int SwitchCompat_showText = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:splitTrack
*/
public static int SwitchCompat_splitTrack = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:switchPadding
*/
public static int SwitchCompat_switchPadding = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:track
*/
public static int SwitchCompat_track = 3;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground android.support.graphics.drawable:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart android.support.graphics.drawable:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity android.support.graphics.drawable:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.graphics.drawable:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.graphics.drawable:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth android.support.graphics.drawable:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth android.support.graphics.drawable:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode android.support.graphics.drawable:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding android.support.graphics.drawable:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.graphics.drawable:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.graphics.drawable:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart android.support.graphics.drawable:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop android.support.graphics.drawable:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.graphics.drawable:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance android.support.graphics.drawable:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor android.support.graphics.drawable:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055,
0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059,
0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d
};
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:tabTextColor
*/
public static int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps android.support.graphics.drawable:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x01010161, 0x01010162, 0x01010163, 0x01010164,
0x7f010090
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static int TextAppearance_android_shadowColor = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static int TextAppearance_android_shadowDx = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static int TextAppearance_android_shadowDy = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static int TextAppearance_android_shadowRadius = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name android.support.graphics.drawable:textAllCaps
*/
public static int TextAppearance_textAllCaps = 8;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled android.support.graphics.drawable:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.graphics.drawable:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.graphics.drawable:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.graphics.drawable:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled android.support.graphics.drawable:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.graphics.drawable:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.graphics.drawable:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled android.support.graphics.drawable:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.graphics.drawable:hintTextAppearance}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 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_collapseContentDescription android.support.graphics.drawable:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon android.support.graphics.drawable:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd android.support.graphics.drawable:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft android.support.graphics.drawable:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight android.support.graphics.drawable:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart android.support.graphics.drawable:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo android.support.graphics.drawable:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription android.support.graphics.drawable:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight android.support.graphics.drawable:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription android.support.graphics.drawable:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon android.support.graphics.drawable:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme android.support.graphics.drawable:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle android.support.graphics.drawable:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.graphics.drawable:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor android.support.graphics.drawable:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title android.support.graphics.drawable:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom android.support.graphics.drawable:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd android.support.graphics.drawable:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart android.support.graphics.drawable:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop android.support.graphics.drawable:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins android.support.graphics.drawable:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance android.support.graphics.drawable:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor android.support.graphics.drawable:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_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, 0x7f01006e, 0x7f010071,
0x7f010075, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010086, 0x7f010128, 0x7f010129,
0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d,
0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010131,
0x7f010132, 0x7f010133, 0x7f010134, 0x7f010135,
0x7f010136
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 19;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:collapseIcon
*/
public static int Toolbar_collapseIcon = 18;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:logo
*/
public static int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:logoDescription
*/
public static int Toolbar_logoDescription = 22;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 17;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 21;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:navigationIcon
*/
public static int Toolbar_navigationIcon = 20;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:popupTheme
*/
public static int Toolbar_popupTheme = 9;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:subtitle
*/
public static int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 11;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 24;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:title
*/
public static int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 16;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 14;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 13;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 15;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleMargins
*/
public static int Toolbar_titleMargins = 12;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 10;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:titleTextColor
*/
public static int Toolbar_titleTextColor = 23;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd android.support.graphics.drawable:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart android.support.graphics.drawable:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme android.support.graphics.drawable:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010137, 0x7f010138,
0x7f010139
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.graphics.drawable:theme
*/
public static int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint android.support.graphics.drawable:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.graphics.drawable:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.graphics.drawable:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name android.support.graphics.drawable:backgroundTintMode
*/
public static int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static int ViewStubCompat_android_layout = 1;
};
}
| [
"renan.rocha@integracnt.com"
] | renan.rocha@integracnt.com |
710c6c03935451fdffc00b1c472d8eb2d94b08ff | ab2d155b1dc324f167390b469ad3eaed6080e834 | /src/main/java/org/esmartpoint/genesis/helpers/MongoDbHelper.java | cfe70f0bfd9db3d7199220746021e665a2014a18 | [] | no_license | noelcarlos/genesis | 616fa8f10bf05a80b4297997d2f89457a03719a5 | 79972f5288c8ea1733061350bd6082eb50d147d6 | refs/heads/master | 2021-01-17T13:02:47.145008 | 2016-06-20T21:42:55 | 2016-06-20T21:42:55 | 56,745,660 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,248 | java | package org.esmartpoint.genesis.helpers;
import org.bson.Document;
import org.esmartpoint.dbutil.Cronometro;
import org.esmartpoint.genesis.util.Stats;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoDatabase;
@Service
@Component
public class MongoDbHelper {
MongoClient client;
MongoDatabase database;
public void openSession(String host, int port, String databaseName) {
client = new MongoClient( host , port );
database = client.getDatabase(databaseName);
}
public void closeSession() {
if (client != null) {
client.close();
}
}
public void insert(String collectionName, String body) throws Exception {
Cronometro.start("DATABASE");
try {
database.getCollection(collectionName).insertOne(Document.parse(body));
if (Stats.iterate(1000)) {
Stats.printSpeed();
}
} finally {
Cronometro.stop("DATABASE");
}
}
public void dropCollection(String collectionName) throws Exception {
Cronometro.start("DATABASE");
try {
database.getCollection(collectionName).drop();
} finally {
Cronometro.stop("DATABASE");
}
}
}
| [
"noe.carlos@gmail.com"
] | noe.carlos@gmail.com |
a5bb51695848682b6cf94f42aac8e9c942fe7de5 | 61cbf5449e451aaa75d4df1ee7e18e45771646e1 | /src/anotherdnd/model/level/AbstractClassLevel.java | af47a6641311e6a3a63201c04d1011725a74d8fc | [] | no_license | karlrwjohnson/anotherdnd | 40124025f5fed9f8a6c35e3c091f93723b44f3a6 | b4a2790013daefca7d03b945ecdd95f84ee1d16b | refs/heads/master | 2021-01-23T07:55:19.725796 | 2017-03-31T21:14:53 | 2017-03-31T21:14:53 | 86,463,857 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 431 | java | package anotherdnd.model.level;
import anotherdnd.model.skills.Skill;
import java.util.Map;
public abstract class AbstractClassLevel implements ClassLevel {
// @Override int getUnspentSkillRanks() {
//
// }
// @Override Map<Skill, Integer> getSpentSkillRanks() {
//
// }
// @Override int getSpentSkillRanks(Skill skill) {
//
// }
// @Override void setSpentSkillRanks(Skill skill, int ranks) {
//
// }
}
| [
"karl.rw.johnson@gmail.com"
] | karl.rw.johnson@gmail.com |
dfdc847e8484027e6bd82e087dbb1826c4b21154 | 83a8072d7ed6eb9f4edeae517f8367ff78d24d99 | /BBTB/src/main/java/net/raebiger/bbtb/permission/PermissionManager.java | 2ea0210ead49bd776275ed2ef6cf6d8a5a119eb7 | [] | no_license | drabiger/bbtb | bd34da1c26cbb4c3923d306432a9a7e11e33b1c8 | c08f90e6b4fb7d3c788b84eb6c463e8b3a949007 | refs/heads/master | 2020-12-20T15:05:56.780066 | 2016-04-24T12:22:58 | 2016-04-24T12:22:58 | 39,964,014 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 219 | java | package net.raebiger.bbtb.permission;
public interface PermissionManager<T extends PermissionObject> {
boolean mayUserRead(T object);
boolean mayUserModify(T object);
boolean mayUserDelete(T object);
} | [
"dr@blackrussian.fritz.box"
] | dr@blackrussian.fritz.box |
5cf53b6d4bd4aa89a549327debad11041bcad2ee | cea08d78a54d21e24db493fd501f1241dd6cd2cc | /src/com/shendeng/datamanager/StockInfoManager.java | f74922ab8759310f22fc61c5080c9a8f027b3c31 | [] | no_license | quinn929/idata | 48c680282f633a88e4fb82cd94726dd5ee1c8ef1 | 85299d66d26a37a8f4423df7ceb72fb00adfb176 | refs/heads/master | 2021-01-11T17:28:34.364862 | 2017-01-23T07:15:17 | 2017-01-23T07:15:17 | 79,778,572 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,206 | java | package com.shendeng.datamanager;
import java.io.IOException;
import java.util.Date;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import net.sf.json.JSONObject;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.csvreader.CsvReader;
import com.shendeng.utils.Const;
import com.shendeng.utils.JedisUtil.Hash;
import com.shendeng.utils.DateTool;
import com.shendeng.utils.RedisUtil;
import com.shendeng.utils.StockUtils;
import com.shendeng.utils.StrTool;
import com.shendeng.utils.WmcloudUtil;
import com.shendeng.web.QuotationAct;
/**
* 股票相关数据的处理
*
* @author qy
* @date 2016年5月6日
*/
public class StockInfoManager {
private static StockInfoManager sim = new StockInfoManager();
public static StockInfoManager getInstance() {
return sim;
}
Hash hash = RedisUtil.getJedisUtil().HASH;
/**
* 跟新股票基本信息
*
* @return
* @throws IOException
*
*/
public boolean getEqu() {
try {
long a = System.currentTimeMillis();
//清除内存中的股票代码
Cache.cacheStockListRemoveAll();
CsvReader reader = WmcloudUtil.url2csv(Const.EQU);
if (reader != null) {
reader.readRecord();
while (reader.readRecord()) {
// 更新缓存
String[] items = reader.getValues();
// 在原有数据基础上添加三个数组下标
items = StockUtils.arrayAddLength(items, 4);
String simpleCode = StockUtils.getLTCode(reader.get(2)) + reader.get(1);
if("L".equals(items[Const.INFO_listStatusCD])){
//添加到内存中
Cache.cacheStockListAdd(items);
items[Const.INFO_industryID1] = "";
items[Const.INFO_industryName1] = "";
items[Const.INFO_isSuspend] = "0";// 是否停牌 0 未停牌 1 停牌
items[Const.INFO_assetClass] = "";
hash.hset(Const.RKEY_STOCK_INFO_, simpleCode, JSON.toJSONString(items));
}else{
hash.hdel(Const.RKEY_STOCK_INFO_, simpleCode);
}
}
reader.close();
}
System.out.println("股票基本信息同步用时" + (System.currentTimeMillis() - a));
return true;
} catch (Exception e) {
new Exception("跟新股票基本信息异常" + DateTool.DateToStr(new Date(), DateTool.TIME_FORMAT)).printStackTrace();
e.printStackTrace();
}
return false;
}
/**
* 合并利润表(最近)
*
* @throws IOException
*
*/
public void getFdmtislately() throws IOException {
try {
CsvReader reader = WmcloudUtil.url2csv(Const.FDMTISLATELY);
if(reader != null){
reader.readRecord();
while (reader.readRecord()) {
String[] items = reader.getValues();
if(items[Const.FdmtISLately_secID] != null && items[Const.FdmtISLately_secID].length() > 5){
String code = StockUtils.getStockCode(items[Const.FdmtISLately_secID]);
hash.hset(Const.PKEY_FDMTISLATELY, code, JSON.toJSONString(items));
}
}
reader.close();
}
} catch (Exception e) {
new Exception("合并利润表(最近)" + DateTool.DateToStr(new Date(), DateTool.TIME_FORMAT)).printStackTrace();
e.printStackTrace();
}
}
/**
* 跟新股票停复盘信息
*
* @throws IOException
*
*/
public void getSecTips() throws IOException {
Map<String,String> allStock = hash.hgetAll(Const.RKEY_STOCK_INFO_);
for (Object key : allStock.keySet()) {
String simpleCode = StrTool.toString(key);
JSONArray ary = JSON.parseArray(allStock.get(simpleCode));
if (ary != null) {
ary.set(Const.INFO_isSuspend, "0");
hash.hset(Const.RKEY_STOCK_INFO_, simpleCode, JSON.toJSONString(ary));
}
}
try {
CsvReader reader = WmcloudUtil.url2csv(Const.SECTIPS);
if (reader != null) {
reader.readRecord();
while (reader.readRecord()) {
String[] items = reader.getValues();
String code = StockUtils.getStockCode(items[0]);
JSONArray ary = JSON.parseArray(hash.hget(Const.RKEY_STOCK_INFO_, code));
// 如果信息不为空,数据就没有停牌
if (ary != null) {
ary.set(Const.INFO_isSuspend, "1");
hash.hset(Const.RKEY_STOCK_INFO_, code, JSON.toJSONString(ary));
}
}
reader.close();
System.out.println("股票停复牌跟新完毕"+DateTool.DateToStr(new Date(), DateTool.TIME_FORMAT));
}
QuotationAct.setSearch();
} catch (Exception e) {
new Exception("跟新股票停复盘信息" + DateTool.DateToStr(new Date(), DateTool.TIME_FORMAT)).printStackTrace();
e.printStackTrace();
}
}
/**
* 获取通联地域分类
*
* @param leave
* 地区级别
* @return
* @throws IOException
*/
public void initStockRegions() throws IOException {
JSONObject result = new JSONObject();
// 读取地域分类信息
CsvReader reader = WmcloudUtil.url2csv(Const.SECTYPEREGION);
reader.readRecord();
while (reader.readRecord()) {
String[] items = reader.getValues();
String code = items[0];
hash.hset(Const.RKEY_STOCK_SECTYPEREGION_, code, JSON.toJSONString(items));
}
reader.close();
}
public static void main(String[] args) {
try {
// sim.getEqu();
// sim.getSecTips();
// sim.getFdmtislately();
sim.getSecTips();
} catch (Exception e) {
e.printStackTrace();
}
}
}
| [
"649018673@qq.com"
] | 649018673@qq.com |
b4ecc29e4cd919d2e9a32d5f7311444dc35bfcb7 | ba0d567cce2b88b720f16309f2f881dfccb5f5e9 | /src/test/java/com/naji/simplelibrary/SimpleLibraryApplicationTests.java | d46f33ec93ce21052990562e4ebf443ed1917cbc | [] | no_license | malihe-da/simple_library | bd0595de058d6eaa78de0ce8621f2a667f1a57e3 | c318692cdbcb5b1f15fdf8f55f53fc89ee284125 | refs/heads/master | 2022-12-28T22:46:44.817529 | 2020-10-17T17:05:23 | 2020-10-17T17:05:23 | 304,926,043 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 221 | java | package com.naji.simplelibrary;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class SimpleLibraryApplicationTests {
@Test
void contextLoads() {
}
}
| [
"maliheh.dabbaghian@gmail.com"
] | maliheh.dabbaghian@gmail.com |
10a879fe5ee97bede022f92e9b15bd2391c7cc35 | 115bcdf232f4b534f74ac0a44b447a89815520c9 | /app/src/main/java/alexandria/chan/com/hospital/GetNearbyPlacesData.java | b9facea5117940c079863a71ade8be746850be51 | [] | no_license | justinemicaellaflamiano/Hospital-UI | 3e0e2e36ba01a1c1c055b2fa6cadea190a157629 | 11b0d2d1d56d2e3e9667fae4e20f04a7c4d3fcf3 | refs/heads/master | 2020-04-09T17:59:23.226472 | 2018-12-05T11:17:46 | 2018-12-05T11:17:46 | 160,498,176 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,684 | java | package alexandria.chan.com.hospital;
import android.os.AsyncTask;
import android.util.Log;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import org.json.JSONObject;
import java.util.HashMap;
import java.util.List;
/**
* Created by navneet on 23/7/16.
*/
public class GetNearbyPlacesData extends AsyncTask<Object, String, String> {
String googlePlacesData;
GoogleMap mMap;
String url;
@Override
protected String doInBackground(Object... params) {
try {
Log.d("GetNearbyPlacesData", "doInBackground entered");
mMap = (GoogleMap) params[0];
url = (String) params[1];
DownloadUrl downloadUrl = new DownloadUrl();
googlePlacesData = downloadUrl.readUrl(url);
Log.d("GooglePlacesReadTask", "doInBackground Exit");
} catch (Exception e) {
Log.d("GooglePlacesReadTask", e.toString());
}
return googlePlacesData;
}
@Override
protected void onPostExecute(String result) {
Log.d("GooglePlacesReadTask", "onPostExecute Entered");
List<HashMap<String, String>> nearbyPlacesList = null;
DataParser dataParser = new DataParser();
nearbyPlacesList = dataParser.parse(result);
ShowNearbyPlaces(nearbyPlacesList);
Log.d("GooglePlacesReadTask", "onPostExecute Exit");
}
private void ShowNearbyPlaces(List<HashMap<String, String>> nearbyPlacesList) {
for (int i = 0; i < nearbyPlacesList.size(); i++) {
Log.d("onPostExecute","Entered into showing locations");
MarkerOptions markerOptions = new MarkerOptions();
HashMap<String, String> googlePlace = nearbyPlacesList.get(i);
double lat = Double.parseDouble(googlePlace.get("lat"));
double lng = Double.parseDouble(googlePlace.get("lng"));
String placeName = googlePlace.get("place_name");
String vicinity = googlePlace.get("vicinity");
LatLng latLng = new LatLng(lat, lng);
markerOptions.position(latLng);
markerOptions.title(placeName + " : " + vicinity);
mMap.addMarker(markerOptions);
markerOptions.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_RED));
//move map camera
mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
mMap.animateCamera(CameraUpdateFactory.zoomTo(11));
}
}
} | [
"justinemicaella.flamiano.iics@ust.edu.ph"
] | justinemicaella.flamiano.iics@ust.edu.ph |
f4138ecf2c30e4a6a6b83ffbdc96d5c395cb555d | c9a9c2ba370220a5990d525a6f65f15bf7282ceb | /abc/SetNullProperty/src/main/java/com/urmi/file/App.java | 76fc1eae45bf169cb2e588014accb6506377d78b | [] | no_license | nparvez71/Spring-Ws-workbranch-SpringToolsSweets | 848247299322523bce34c8b81e138d802d85fc30 | a02d08d395d323f870c9b9237a2194011e4c6a76 | refs/heads/master | 2020-03-13T19:04:20.096469 | 2018-04-27T06:12:19 | 2018-04-27T06:12:19 | 131,246,685 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 471 | java | package com.urmi.file;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class App {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("com/urmi/beans/beans.xml");
Employee employee = (Employee)context.getBean("employee");
System.out.println(employee);
((ClassPathXmlApplicationContext) context).close();
}
}
| [
"nparvez92@gmail.com"
] | nparvez92@gmail.com |
a0a60da80ee33239ae75c01f4089310ceb79ff76 | da867c5df112ab36e735f21b89c0166a8190263b | /src/main/java/com/example/macstudent/styleme/db/helper/DBOutfit.java | d8956c274f194f7b92a3417887d62a36732be4fb | [] | no_license | Ravneetbajwa/Wardrobe_app | 71dde5be38181d16cce5e21d3823c689053434d8 | 6c52fc0a05f1a083b07bd53d541d4fd00fe5eec8 | refs/heads/master | 2020-05-17T05:01:09.594834 | 2019-04-25T23:24:34 | 2019-04-25T23:24:34 | 183,522,915 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,398 | java | package com.example.macstudent.styleme.db.helper;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import com.example.macstudent.styleme.db.model.MDress;
import com.example.macstudent.styleme.db.model.MOutfit;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class DBOutfit {
static final String TABLE_OUTFIT = "Outfits";
// Contacts Table Columns names
static final String OUTFIT_ID = "id";
static final String OUTFIT_TYPE = "type";
static final String OUTFIT_IMAGE = "mage";
private DatabaseHandler databaseHandler;
private Context context;
public DBOutfit(Context context) {
this.context = context;
}
// Adding new dress
public void addOutfit(MOutfit outfit) {
databaseHandler = new DatabaseHandler(context);
SQLiteDatabase db = databaseHandler.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(OUTFIT_ID, outfit.get_id());
values.put(OUTFIT_TYPE, outfit.get_type());
values.put(OUTFIT_IMAGE, outfit.get_image());
// Inserting Row
db.insert(TABLE_OUTFIT, null, values);
db.close(); // Closing database connection
}
// Getting single contact
public MOutfit getOutfit(String type) {
databaseHandler = new DatabaseHandler(context);
SQLiteDatabase db = databaseHandler.getReadableDatabase();
Cursor cursor = db.query(TABLE_OUTFIT, new String[]{OUTFIT_ID,OUTFIT_TYPE,
OUTFIT_IMAGE}, OUTFIT_TYPE + "=?",
new String[] {String.valueOf(type)}, null, null, "RANDOM()", "1");
if (cursor != null)
cursor.moveToFirst();
MOutfit outfit = new MOutfit(Integer.parseInt(cursor.getString(0)),cursor.getString(1),
cursor.getBlob(2));
// return contact
return outfit;
}
// Getting All Contacts
public List<MOutfit> getAllOutfits() {
databaseHandler = new DatabaseHandler(context);
List<MOutfit> contactList = new ArrayList<MOutfit>();
// Select All Query
String selectQuery = "SELECT * FROM " + TABLE_OUTFIT ;
SQLiteDatabase db = databaseHandler.getWritableDatabase();
Cursor cursor = db.rawQuery(selectQuery, null);
// looping through all rows and adding to list
if (cursor.moveToFirst()) {
do {
MOutfit contact = new MOutfit();
contact.set_id(Integer.parseInt(cursor.getString(0)));
contact.set_type(cursor.getString(1));
contact.set_image(cursor.getBlob(2));
// Adding contact to list
contactList.add(contact);
} while (cursor.moveToNext());
}
// return contact list
return contactList;
}
// Getting contacts Count
public int getOutfitCount() {
databaseHandler = new DatabaseHandler(context);
String countQuery = "SELECT * FROM " + TABLE_OUTFIT;
SQLiteDatabase db = databaseHandler.getReadableDatabase();
Cursor cursor = db.rawQuery(countQuery, null);
cursor.close();
// return count
return cursor.getCount();
}
// Updating single contact
public int updateOutfit(MOutfit contact) {
databaseHandler = new DatabaseHandler(context);
SQLiteDatabase db = databaseHandler.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(OUTFIT_ID, contact.get_id());
values.put(OUTFIT_TYPE, contact.get_type());
values.put(OUTFIT_IMAGE, contact.get_image());
// updating row
return db.update(TABLE_OUTFIT, values, OUTFIT_ID + " = ?",
new String[]{String.valueOf(contact.get_id())});
}
// Deleting single contact
public void deleteOutfit(MOutfit contact) {
databaseHandler = new DatabaseHandler(context);
SQLiteDatabase db = databaseHandler.getWritableDatabase();
db.delete(TABLE_OUTFIT, OUTFIT_ID + " = ?",
new String[]{String.valueOf(contact.get_id())});
db.close();
}
}
| [
"noreply@github.com"
] | Ravneetbajwa.noreply@github.com |
0ea468229154d9c82e149b14757b609eb8184c7a | 4145d4fb0a0a1733b537411d7cb79094184348c5 | /src/main/java/repositories/CookRepository.java | 42f7c6e2a657b6ce8c281d83441c8833fa53957f | [
"MIT"
] | permissive | raftrugon/Acme-Pad-Thai | 7f566fb8c6cc3f169f2c768fccd9d634695c0b86 | 51be0d285668ea9ed9b98b064f12b0a2daffd86d | refs/heads/master | 2021-07-08T14:08:30.723703 | 2017-10-07T13:46:04 | 2017-10-07T13:46:04 | 106,100,327 | 0 | 0 | null | null | null | null | ISO-8859-10 | Java | false | false | 753 | java | package repositories;
import java.util.Collection;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;
import domain.Cook;
@Repository
public interface CookRepository extends JpaRepository<Cook, Integer>{
// A/4 - The listing of cooks, sorted according to the number of master classes that have been promoted.
@Query("select distinct c from Cook c join c.masterClasses mc where mc.isPromoted=True order by c.masterClasses.size DESC")
Collection<Cook> findAllOrderedByMasterClassesPromoted();
//Aņadidas
@Query("select c from Cook c where c.userAccount.id = ?1")
Cook findByUserAccount(int id);
}
| [
"raftrugon@alum.us.es"
] | raftrugon@alum.us.es |
e5e40e37716705a5f97ac00c767b33cf8b25cc86 | b72caf450091ffb404519f5256481af9a9b40c60 | /connect-database/src/main/java/com/blogspot/na5cent/connectdb/query/Pagination.java | a8a7fa247bd42815f4256f574b6f0c3c47340e80 | [
"Apache-2.0"
] | permissive | jittagornp/cpe4235 | 00a6ac550b45c4527fbb3b65ffad5996953646a6 | ada4232a35aaba32883e044a3a4fc457b8ea5f6e | refs/heads/master | 2016-09-05T23:17:51.243217 | 2015-03-08T05:38:05 | 2015-03-08T05:38:05 | 29,604,363 | 1 | 11 | null | null | null | null | UTF-8 | Java | false | false | 901 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.blogspot.na5cent.connectdb.query;
/**
*
* @author anonymous
*/
public class Pagination {
private int pageNumber;
private int pageSize;
public Pagination(int pageNumber, int pageSize) {
if (pageNumber < 1) {
throw new IllegalArgumentException("pageNumber must > 0");
}
this.pageNumber = pageNumber;
this.pageSize = pageSize;
}
public int getPageNumber() {
return pageNumber;
}
public void setPageNumber(int pageNumber) {
this.pageNumber = pageNumber;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
}
| [
"jittagornp@gmail.com"
] | jittagornp@gmail.com |
ed2502efd02dc7ef0dc9cbed173ea70fd15c073c | 446a04bbd2726903360e0b816814bc12106d7d40 | /MapsService/src/main/java/com/gsoeller/personalization/maps/dao/MapRequestDao.java | 5f2ce1e9b7929a00a4b5afc060fa6cc52a1f8a0f | [] | no_license | dmerson/MapWatch | cbeaf0d057c32479a9c8828d2d5f315cfc212c09 | 7209026559bccb0f5bbd61e056a77d68df7a159a | refs/heads/master | 2021-01-11T16:27:56.190669 | 2017-01-24T19:33:12 | 2017-01-24T19:33:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 874 | java | package com.gsoeller.personalization.maps.dao;
import java.util.List;
import com.google.common.base.Optional;
import com.gsoeller.personalization.maps.data.BingMap;
import com.gsoeller.personalization.maps.data.Map;
import com.gsoeller.personalization.maps.data.MapRequest;
import com.gsoeller.personalization.maps.data.Region;
public interface MapRequestDao {
public List<MapRequest> getRequests(int limit, int offset, int mapNumber);
public void addMapRequest(MapRequest mapRequest);
public Optional<Region> getRegion(int mapRequest);
public int countTiles();
public List<Integer> getTileNumbers();
public List<Integer> getMapRequestsFromTileNumber(int tileNumber);
public Optional<BingMap> getMapFromFetchJobAndMapRequest(int fetchJob, int mapRequestId);
public List<Integer> getMapRequestsbyLocation(int location);
public int countAllTiles();
} | [
"soeller.g@husky.neu.edu"
] | soeller.g@husky.neu.edu |
447c7a3fb037a0c46f64c992cbf018655ab1c132 | 332a3699509ba08022b08a3c5acc33ab2f9f0b66 | /src/kang/com/StudyMaterial.java | 6428e8ad13010957a7259c199a95d374f7add750 | [] | no_license | kuldeep-singh-5894/KANG_E-Learning_System | 416f58204336c28e7ce70b7bd7ce7e85fc73427b | d494bfcb72530909b20e10b13b25db50bd0d4fa8 | refs/heads/master | 2022-06-20T11:56:51.380485 | 2020-04-05T01:07:37 | 2020-04-05T01:07:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,856 | java | package kang.com;
import java.io.IOException;
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("/StudyMaterial")
public class StudyMaterial extends HttpServlet {
private static final long serialVersionUID = 1L;
public StudyMaterial() {
super();
// TODO Auto-generated constructor stub
}
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
String id = request.getParameter("id");
Student s = KangDAO.getCourse(id);
String course = s.getCourse();
switch (course) {
case "html":
request.getRequestDispatcher("/Student/htmlMaterial.jsp").include(request, response);
break;
case "css":
request.getRequestDispatcher("/Student/cssMaterial.jsp").include(request, response);
break;
case "js":
request.getRequestDispatcher("/Student/jsMaterial.jsp").include(request, response);
break;
case "javaee":
request.getRequestDispatcher("/Student/javaEEMaterial.jsp").include(request, response);
break;
case "jq":
request.getRequestDispatcher("/Student/jQueryMaterial.jsp").include(request, response);
break;
case "cs":
request.getRequestDispatcher("/Student/cSharpMaterial.jsp").include(request, response);
break;
case "python":
request.getRequestDispatcher("/Student/pythonMaterial.jsp").include(request, response);
break;
case "politics":
request.getRequestDispatcher("/Student/politicsMaterial.jsp").include(request, response);
break;
default:
request.getRequestDispatcher("s_sign_in.jsp").include(request, response);
break;
}
}
}
| [
"noreply@github.com"
] | kuldeep-singh-5894.noreply@github.com |
8d70f59358513e9f771f6c87d0ae47f3aa92c298 | cb05527aeb3c080011651a7a39649012cf685fbe | /MinStack1.java | 060be2c46976581188939ca9cad924a8c0260f89 | [] | no_license | SheldonZheng/LeetCode | 0bb23ec37cb312284241ea30e25a4c55b2e81ad4 | 2e6e290f74d280abf72a8dbfe315ec08f7239f3f | refs/heads/master | 2023-08-31T15:35:20.305523 | 2023-08-31T03:33:03 | 2023-08-31T03:33:03 | 60,073,176 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 916 | java | class MinStack {
Stack<Integer> stack = new Stack();
Stack<Integer> minStack = new Stack();
/** initialize your data structure here. */
public MinStack() {
}
public void push(int x) {
if (stack.isEmpty()) {
minStack.push(x);
stack.push(x);
} else {
if (x < minStack.peek()) {
minStack.push(x);
} else {
minStack.push(minStack.peek());
}
stack.push(x);
}
}
public void pop() {
stack.pop();
minStack.pop();
}
public int top() {
return stack.peek();
}
public int getMin() {
return minStack.peek();
}
}
/**
* Your MinStack object will be instantiated and called as such:
* MinStack obj = new MinStack();
* obj.push(x);
* obj.pop();
* int param_3 = obj.top();
* int param_4 = obj.getMin();
*/
| [
"zhenghangtxdyr@gmail.com"
] | zhenghangtxdyr@gmail.com |
b2d1ae8a9885c71079e1ba97ac544c515df90631 | 9e952834c3175d735e8a745b9f349f36ac9f2ee0 | /springcloud-zuul-filter/springcloud-zuul-filter-gateway/src/main/java/com/pancm/fallback/package-info.java | 913bd3a95ada9ca94c66391288f2297e97ee84db | [] | no_license | danyan92/springcloud | 4dfe2e500e9e227d7f1ae52c014a5459e0715353 | 2ddac32e99b8ca39c800740426ddb375dcf62cf3 | refs/heads/master | 2022-10-26T08:15:34.050192 | 2020-06-12T06:42:18 | 2020-06-12T06:42:18 | 271,721,609 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 154 | java | /**
* @Title: package-info
* @Description:
* @Version:1.0.0
* @Since: jdk1.8
* @author pancm
* @date 2019年5月7日
*/
package com.pancm.fallback; | [
"chenhao@nnuo.com"
] | chenhao@nnuo.com |
471eee90cc3d47175d4fa134e93c00095538461c | e77e4cda149a5ab6b00adbff408c682551fe9b89 | /traveloke/src/main/java/apap/tutorial/traveloke/service/KamarServiceImpl.java | dc22de39e9c53dc96add29d7fec3bc5af7331da8 | [] | no_license | marcelvaldhano/tutorial-apap | 86ead17f249302ac310429dd3d922d7afdbb742b | c841cddf44fdbecd3aca5ba734c6daf98232500a | refs/heads/master | 2023-01-30T02:42:04.221262 | 2020-12-10T03:48:14 | 2020-12-10T03:48:14 | 298,162,733 | 0 | 0 | null | 2020-09-24T10:17:28 | 2020-09-24T03:49:22 | Java | UTF-8 | Java | false | false | 1,543 | java | package apap.tutorial.traveloke.service;
import apap.tutorial.traveloke.model.HotelModel;
import apap.tutorial.traveloke.model.KamarModel;
import apap.tutorial.traveloke.repository.KamarDb;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.transaction.Transactional;
import java.util.List;
@Service
@Transactional
public class KamarServiceImpl implements KamarService{
@Autowired
KamarDb kamarDb;
@Override
public KamarModel getKamarByNoKamar(Long noKamar) {return kamarDb.findByNoKamar(noKamar).get();}
@Override
public void deleteByNoKamar(Long noKamar) {
kamarDb.deleteByNoKamar(noKamar);
}
@Override
public void deleteKamar(KamarModel kamar) {
kamarDb.delete(kamar);
}
@Override
public void addKamar(KamarModel kamar){
kamarDb.save(kamar);
}
@Override
public List<KamarModel> findAllKamarByIdHotel(Long idHotel){
return kamarDb.findByHotelId(idHotel);
}
@Override
public KamarModel updateKamar(KamarModel kamar){
KamarModel targetKamar=kamarDb.findByNoKamar(kamar.getNoKamar()).get();
try{
targetKamar.setNamaKamar(kamar.getNamaKamar());
targetKamar.setTipe(kamar.getTipe());
targetKamar.setKapasitasKamar(kamar.getKapasitasKamar());
kamarDb.save(targetKamar);
return targetKamar;
}catch (NullPointerException nullException){
return null;
}
}
}
| [
"marcelvaldhano@gmail.com"
] | marcelvaldhano@gmail.com |
4ddeb6a9ba05805375ba3042ab50a04fcff7117b | 1b7c0afaa88978171266acf3b2a53615111784c0 | /src/main/java/Netty_Guide/chapter05/src02/EchoServer.java | e77afd3248f8aa64bdefd74801e8f24820d3e1b3 | [] | no_license | huyuxiang/niostudy | 0b483b4f80242da1c9037844bf176b6cd043e015 | 70468366684e01c7f4104bf8b979ff2909f06c83 | refs/heads/master | 2020-04-13T21:40:50.445467 | 2016-10-10T03:38:21 | 2016-10-10T03:38:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,735 | java | package Netty_Guide.chapter05.src02;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioServerSocketChannel;
import io.netty.handler.codec.FixedLengthFrameDecoder;
import io.netty.handler.codec.string.StringDecoder;
import io.netty.handler.logging.LogLevel;
import io.netty.handler.logging.LoggingHandler;
public class EchoServer {
public void bind(int port) throws Exception {
EventLoopGroup bossGroup = new NioEventLoopGroup();
EventLoopGroup workerGroup = new NioEventLoopGroup();
try {
ServerBootstrap b = new ServerBootstrap();
b.group(bossGroup, workerGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_BACKLOG, 100)
.handler(new LoggingHandler(LogLevel.INFO))
.childHandler(new ChannelInitializer<SocketChannel>() {
public void initChannel(SocketChannel ch) throws Exception {
ch.pipeline().addLast(new FixedLengthFrameDecoder(20));
ch.pipeline().addLast(new StringDecoder());
ch.pipeline().addLast(new EchoServerHandler());
}
});
ChannelFuture f = b.bind(port).sync();
f.channel().closeFuture().sync();
} finally {
bossGroup.shutdownGracefully();
workerGroup.shutdownGracefully();
}
}
public static void main(String[] args) throws Exception {
int port = 8080;
if(args!=null && args.length>0) {
try {
port = Integer.valueOf(args[0]);
} catch(NumberFormatException e) {
}
}
new EchoServer().bind(port);
}
}
| [
"1678907570@qq.com"
] | 1678907570@qq.com |
f1622d16e1094732a02bf1f3006bf922011a029e | f4454c0bbf2c73273d967dc8a738c83df40c1fa5 | /src/Task_1/Application.java | b0a90b40dabbb5352ccace47113dd61ac295d58a | [] | no_license | ekatsiashvili/Java_Core_lesson_06 | 303763df449b1c914c89999de4bc5245a0ac7db7 | 256f03d0f3ea9ea11d2f16d8ac069e317104d88e | refs/heads/master | 2022-08-22T23:31:10.798628 | 2020-05-10T10:16:05 | 2020-05-10T10:16:05 | 262,750,448 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 233 | java | package Task_1;
public class Application {
public static void main(String[] args) {
hourlyWorker a = new hourlyWorker ("Bob",100,168);
a.Salary();
fixedWageWorker b =new fixedWageWorker("Ron",17000);
b.Salary();
}
}
| [
"katsiashvili.elena@gmail.com"
] | katsiashvili.elena@gmail.com |
2b2a03c101c758c07e96212839bee948a3fb7a85 | 02fc1b635a641a8331f1aa7ecd7b5ea74e29de50 | /Passenger.java | fa00e427570a74448098871d7ca9a481b22b124a | [] | no_license | abhayhonnalli/UseCase-TrainTicket | e82e05bef30cf290f220e468c8af4762761aa10f | dd110153395909c2a5e35d58ae66ab13dfd6acbe | refs/heads/main | 2023-03-19T02:28:44.745492 | 2021-02-20T18:21:14 | 2021-02-20T18:21:14 | 340,720,686 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,002 | java | package usecase;
public class Passenger implements Comparable<Passenger>{
private String name;
private int age;
private char gender;
public Passenger() {
super();
// TODO Auto-generated constructor stub
}
//Constructors Using Fields
public Passenger(String name, int age, char gender) {
super();
this.name = name;
this.age = age;
this.gender = gender;
}
// Getters and Setters
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;
}
public char getGender() {
return gender;
}
public void setGender(char gender) {
this.gender = gender;
}
@Override
public String toString() {
return name + " " + age + " " + gender ;
}
public int compareTo(Passenger passenger) {
// TODO Auto-generated method stub
return name.compareTo(passenger.name);
}
} | [
"noreply@github.com"
] | abhayhonnalli.noreply@github.com |
27f041ea8dd18d1a9519c4b3b7a1176e4add3216 | 2fad855d2fa2881951f996aaa79866635339af0a | /app/src/main/java/com/rishichandak/jaishreeganeshtextile/Admin/AdminAddNewProduct.java | 932066ce7f6452e08c779cca296fe543f9f4af90 | [] | no_license | rkc2001/Jai-Shree-Ganesh-Textile-App | 60ec06cef1b60214c0fef57586e9d17d6a7005a1 | 37afff3a08da69305cb2e3e784a5dfbe24cd584a | refs/heads/master | 2023-07-02T09:35:36.334406 | 2021-07-27T07:19:06 | 2021-07-27T07:19:06 | 389,747,152 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,739 | java | package com.rishichandak.jaishreeganeshtextile.Admin;
import androidx.activity.result.ActivityResult;
import androidx.activity.result.ActivityResultCallback;
import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.contract.ActivityResultContracts;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.RelativeLayout;
import android.widget.Toast;
import com.google.android.gms.tasks.Continuation;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.storage.FirebaseStorage;
import com.google.firebase.storage.StorageReference;
import com.google.firebase.storage.UploadTask;
import com.rishichandak.jaishreeganeshtextile.R;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.HashMap;
public class AdminAddNewProduct extends AppCompatActivity {
// receive category from category activity
private String categoryName, description, price, pName, saveCurentDate, saveCurrentTime;
Button addNewProductButton;
ImageView inputProductImage;
EditText inputProductName, inputProductDescription, inputProductPrice;
RelativeLayout progressBar;
private static int galleryPick = 1;
private Uri imageUri;
private String productRandomKey, downloadImageUrl;
// folder to add all product images
private StorageReference productImagesRef;
// new table for products
private DatabaseReference productsRef;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_admin_add_new_product);
addNewProductButton = findViewById(R.id.add_new_product);
inputProductImage = findViewById(R.id.select_product_image);
inputProductName = findViewById(R.id.product_name);
inputProductDescription = findViewById(R.id.product_description);
inputProductPrice = findViewById(R.id.product_price);
progressBar = findViewById(R.id.add_product_progress_bar);
categoryName = getIntent().getExtras().get("category").toString();
productImagesRef = FirebaseStorage.getInstance().getReference().child("Product Images");
productsRef = FirebaseDatabase.getInstance().getReference().child("Products");
inputProductImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// open gallery to select the product image
openGallery();
}
});
addNewProductButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
validateProductData();
}
});
Toast.makeText(this, categoryName, Toast.LENGTH_SHORT).show();
}
private void openGallery() {
Intent galleryIntent = new Intent();
galleryIntent.setAction(Intent.ACTION_GET_CONTENT);
galleryIntent.setType("image/*");
someActivityResultLauncher.launch(galleryIntent);
}
// get the result i.e. image url and store it inside firebase storage and then in firebase database
ActivityResultLauncher<Intent> someActivityResultLauncher = registerForActivityResult(
new ActivityResultContracts.StartActivityForResult(),
result -> {
if (result.getResultCode() == Activity.RESULT_OK) {
// There are no request codes
Intent data = result.getData();
imageUri = data.getData();
// display image from uri in the image view
inputProductImage.setImageURI(imageUri);
}
});
private void validateProductData() {
description = inputProductDescription.getText().toString();
pName = inputProductName.getText().toString();
price = inputProductPrice.getText().toString();
if(imageUri == null){
Toast.makeText(this, "Product Image is mandatory !", Toast.LENGTH_SHORT).show();
}
else if(TextUtils.isEmpty(description)){
Toast.makeText(this, "Please give product description !", Toast.LENGTH_SHORT).show();
}
else if(TextUtils.isEmpty(pName)){
Toast.makeText(this, "Please provide the price !", Toast.LENGTH_SHORT).show();
}
else if(TextUtils.isEmpty(price)){
Toast.makeText(this, "Please write product name !", Toast.LENGTH_SHORT).show();
}
else{
// everything OK - store in firebase database
progressBar.setVisibility(View.VISIBLE);
storeProductInformation();
}
}
private void storeProductInformation() {
// get current time - so as to display the latest products to users first
Calendar calendar = Calendar.getInstance();
SimpleDateFormat currentDate = new SimpleDateFormat("MMM dd, yyyy");
saveCurentDate = currentDate.format(calendar.getTime());
SimpleDateFormat currentTime = new SimpleDateFormat("HH:mm:ss a");
saveCurrentTime = currentTime.format(calendar.getTime());
// for each product data, we need a random key - best way combine currentDay with currentTime [OR use firebase's .push() method]
// unique key every second
productRandomKey = saveCurentDate + saveCurrentTime;
// First store imageUri i.e. product image inside firebase storage ... then we'll be able to store link of image in firebase DB
// .getLastPathSegment() - adds the image (default) name
StorageReference filePath = productImagesRef.child(imageUri.getLastPathSegment() + productRandomKey + ".jpg");
final UploadTask uploadTask = filePath.putFile(imageUri);
uploadTask.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
String message = e.toString();
progressBar.setVisibility(View.GONE);
Toast.makeText(AdminAddNewProduct.this, "Error : " + message, Toast.LENGTH_SHORT).show();
}
}).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Toast.makeText(AdminAddNewProduct.this, "Product Image uploaded successfully !!", Toast.LENGTH_SHORT).show();
/** Once image is uploaded to firebase storage, now we have to get the link of image and store inside firebase DB - to display image to users */
Task<Uri> urlTask = uploadTask.continueWithTask(new Continuation<UploadTask.TaskSnapshot, Task<Uri>>() {
@Override
public Task<Uri> then(@NonNull Task<UploadTask.TaskSnapshot> task) throws Exception {
if(!task.isSuccessful()){
progressBar.setVisibility(View.GONE);
throw task.getException();
}
// ready to get image URL
downloadImageUrl = filePath.getDownloadUrl().toString();
return filePath.getDownloadUrl();
}
}).addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
downloadImageUrl = task.getResult().toString();
Toast.makeText(AdminAddNewProduct.this, "Got the Product Image URL", Toast.LENGTH_SHORT).show();
/** Store all information of new product in Firebase DB */
saveProductInfoToDatabase();
}
else{
progressBar.setVisibility(View.GONE);
Toast.makeText(AdminAddNewProduct.this, "Error - " + task.getException().toString(), Toast.LENGTH_SHORT).show();
return;
}
}
});
}
});
}
private void saveProductInfoToDatabase() {
HashMap<String,Object> productMap = new HashMap<>();
productMap.put("pid",productRandomKey);
productMap.put("date",saveCurentDate);
productMap.put("time", saveCurrentTime);
productMap.put("description",description);
productMap.put("image",downloadImageUrl);
productMap.put("category",categoryName);
productMap.put("price", price);
productMap.put("pname",pName);
// Create FireBase DB reference to new Node i.e. table for all products
productsRef.child(productRandomKey).updateChildren(productMap)
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if(task.isSuccessful()){
Toast.makeText(AdminAddNewProduct.this, "Product successfully added to DB !", Toast.LENGTH_SHORT).show();
progressBar.setVisibility(View.GONE);
Intent intent = new Intent(getApplicationContext(),AdminCategory.class);
finishAffinity();
startActivity(intent);
finish();
}else{
progressBar.setVisibility(View.GONE);
String message = task.getException().toString();
Toast.makeText(AdminAddNewProduct.this, "Error : " + message, Toast.LENGTH_SHORT).show();
}
}
});
}
} | [
"ajaychandak2092@gmail.com"
] | ajaychandak2092@gmail.com |
46ef6029a88e39fd47bf5bc4299cbfcba32f0429 | 0679cb793c269246dc476c4501601a1828eb12b4 | /core/optaplanner-core-impl/src/main/java/org/optaplanner/core/impl/util/FieldBasedScalingMap.java | fbc0a601fed1ee62c38d22380ee328401a929daf | [
"Apache-2.0"
] | permissive | emmurphy1/optaplanner | cb726e321cd46186db32afda253daf627efbba03 | 936ac89c7576469dd827ec2cf9273be111fdc193 | refs/heads/main | 2022-10-07T21:14:51.923088 | 2022-08-29T09:43:22 | 2022-08-29T09:43:22 | 210,389,726 | 0 | 0 | Apache-2.0 | 2022-09-21T16:02:49 | 2019-09-23T15:28:46 | Java | UTF-8 | Java | false | false | 5,946 | java | package org.optaplanner.core.impl.util;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.Supplier;
/**
* Uses a given {@link Map} as storage unless it is the first and only entry, in which case it uses fields.
* This helps avoid the overhead of creating and accessing a hash map if we only have 1 entry.
* This implementation is not thread-safe, regardless of the underlying {@link Map}.
* Iteration order of elements is specified by the underlying {@link Map}.
*/
public final class FieldBasedScalingMap<K, V> implements Map<K, V> {
private final Supplier<Map<K, V>> mapSupplier;
private K singletonKey;
private V singletonValue;
private Map<K, V> map;
private int size = 0;
public FieldBasedScalingMap(Supplier<Map<K, V>> mapSupplier) {
this.mapSupplier = Objects.requireNonNull(mapSupplier);
}
@Override
public V put(K key, V value) {
if (map == null) { // We have not yet created the map.
if (size == 0) { // Use the fields instead of the map.
singletonKey = key;
singletonValue = value;
size = 1;
return null;
} else if (size == 1) { // Switch from the fields to the map.
map = mapSupplier.get();
map.put(singletonKey, singletonValue);
singletonKey = null;
singletonValue = null;
} else {
throw new IllegalStateException("Impossible state: size (" + size + ") > 1 yet no map used.");
}
}
V oldValue = map.put(key, value);
if (oldValue == null) {
size += 1;
}
return oldValue;
}
@Override
public void putAll(Map<? extends K, ? extends V> m) {
for (Entry<? extends K, ? extends V> entry : m.entrySet()) {
K key = entry.getKey();
V value = entry.getValue();
put(key, value);
}
}
@Override
public void clear() {
if (map == null) {
singletonKey = null;
singletonValue = null;
} else {
map.clear();
}
size = 0;
}
/**
* As defined by {@link Map#keySet()}.
* May throw an exception if the iterator is used to remove an element while the map is based on a field.
*
* @return never null
*/
@Override
public Set<K> keySet() {
if (size == 0) {
return Collections.emptySet();
} else if (map == null) {
return Collections.singleton(singletonKey);
} else {
return map.keySet();
}
}
/**
* As defined by {@link Map#values()}.
* May throw an exception if the iterator is used to remove an element while the map is based on a field.
*
* @return never null
*/
@Override
public Collection<V> values() {
if (size == 0) {
return Collections.emptyList();
} else if (map == null) {
return Collections.singletonList(singletonValue);
} else {
return map.values();
}
}
/**
* As defined by {@link Map#entrySet()}.
* May throw an exception if the iterator is used to remove an element while the map is based on a field.
*
* @return never null
*/
@Override
public Set<Entry<K, V>> entrySet() {
if (size == 0) {
return Collections.emptySet();
} else if (map == null) {
return Collections.singleton(Map.entry(singletonKey, singletonValue));
} else {
return map.entrySet();
}
}
@Override
public void forEach(BiConsumer<? super K, ? super V> action) { // To avoid unnecessary entry sets.
if (size == 0) {
return;
}
if (map == null) {
action.accept(singletonKey, singletonValue);
} else {
map.forEach(action); // The entry set creation is only necessary now.
}
}
@Override
public V remove(Object key) {
if (map == null) { // We're using the fields.
if (!Objects.equals(singletonKey, key)) {
return null; // Key was not found.
}
V oldValue = singletonValue;
singletonKey = null;
singletonValue = null;
size = 0;
return oldValue;
}
V value = map.remove(key);
if (value != null) {
size -= 1;
}
return value;
}
@Override
public V get(Object key) {
if (map == null) { // We're using the fields.
if (!Objects.equals(singletonKey, key)) {
return null; // Key was not found.
}
return singletonValue;
}
return map.get(key);
}
@Override
public int size() {
return size;
}
@Override
public boolean isEmpty() {
return size == 0;
}
@Override
public boolean containsKey(Object key) {
if (size == 0) {
return false;
} else if (map == null) {
return Objects.equals(key, singletonKey);
} else {
return map.containsKey(key);
}
}
@Override
public boolean containsValue(Object value) {
if (size == 0) {
return false;
} else if (map == null) {
return Objects.equals(value, singletonValue);
} else {
return map.containsValue(singletonValue);
}
}
@Override
public String toString() {
if (size == 0) {
return "{}";
} else if (map == null) {
return "{" + singletonKey + "=" + singletonValue + "}";
} else {
return map.toString();
}
}
}
| [
"noreply@github.com"
] | emmurphy1.noreply@github.com |
193b3c4ff2c4289f3321db638e58ea5a69b163da | 6b691dd140e6092da809bb74cc194d9df496365c | /springMVCtest/src/main/java/view/liming.java | 4544b30b90e7fff412e8b94d4a8d274a2491b51e | [] | no_license | chongchongliu/springmvc_code | d2a38bac0243b6c0433264c27d6e7c2821140a70 | 70776438ee01237e5c16b010ac4e6d304f745584 | refs/heads/master | 2021-01-10T13:40:58.103839 | 2015-12-20T13:48:35 | 2015-12-20T13:48:35 | 48,322,492 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 403 | java | package view;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
public class liming {
@RequestMapping(value="index.do")
public void index_jsp(Model model){
model.addAttribute("liming", "ÀèÃ÷ÄãºÃ");
System.out.println("index.jsp");
}
}
| [
"120346801@qq.com"
] | 120346801@qq.com |
b670510b76c0147959c50faa49e6a90a7f705624 | 4f552438ba1495fa176a30e866320f1ae0a57c6a | /src/main/java/hu/transfet/javafx/MainController.java | 5f1c3bbbc42fe35757c383ab12971b51ac2d532c | [
"Apache-2.0"
] | permissive | Transfet/OpenJFX-spring-skeleton | 25349fbd88ad4ae894fc26f14adfa2d946bbdfc4 | 20d2990adc6df98d30e0a95a3727c34db5d66518 | refs/heads/master | 2023-04-23T19:23:24.307624 | 2021-05-05T00:06:17 | 2021-05-05T00:06:17 | 364,416,308 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 61 | java | package hu.transfet.javafx;
public class MainController {
}
| [
"alex.gyulai@accretivetg.com"
] | alex.gyulai@accretivetg.com |
e913d7f438f7393ff58100202151a755c52c29c7 | 6287f501e070737949b2e30eefec671025b6fa4e | /src/com/javaex/ex05/Ex07.java | 0179eb9e6df9b6761c59a4cd5ead9849d4b781c5 | [] | no_license | Minsik97/chapter01 | 4e1bde9b3b222b3b4ef976bae1720c179aeae740 | b3de1fea690a22594557b598521a170490f03fe3 | refs/heads/master | 2023-01-22T12:57:20.152010 | 2020-11-20T09:19:26 | 2020-11-20T09:19:26 | 311,881,035 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 763 | java | package com.javaex.ex05;
public class Ex07 {
public static void main(String[] args) {
int[] arrA = new int[3];
arrA[0] = 3;
arrA[1] = 6;
arrA[2] = 9;
int[] arrB; //변수만 생성
arrB = arrA; //주소값만 복사됨 같은 데이터를 바라본다.
//실제 데이터가 복사되는것이 아니다.
for(int i=0; i<arrA.length; i++) {
System.out.println(arrA[i]);
}
for(int i=0; i<arrB.length; i++) {
System.out.println(arrB[i]);
}
System.out.println("========================");
arrA[1] = 100;
for(int i=0; i<arrA.length; i++) {
System.out.println(arrA[i]);
}
for(int i=0; i<arrB.length; i++) {
System.out.println(arrB[i]);
}
}
}
| [
"insta@DESKTOP-IAVPL5C"
] | insta@DESKTOP-IAVPL5C |
db46b78fa41e41ca96f2a25b3ec9464e1fb32152 | 6007a98439ba12e0a62892d2d010aa351e027cfc | /src/course/chapter5/poo/matriz/application/Program.java | 3d048bb5a1e189d4402065bd81e6d8cce40d43fb | [] | no_license | davi1985/javacompleto | 0e08daf895cc895784fa4f19d18c9d62a26af425 | fb559df973f276873757ac6eede91b9560e76e2f | refs/heads/master | 2020-07-13T06:52:13.422554 | 2019-10-14T22:33:47 | 2019-10-14T22:33:47 | 205,023,016 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,013 | java | package course.chapter5.poo.matriz.application;
import java.util.Scanner;
public class Program {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter N: ");
int n = scan.nextInt();
int[][] mat = new int[n][n];
for (int i = 0; i < mat.length; i++) {
for (int j = 0; j < mat[i].length; j++) {
mat[i][j] = scan.nextInt();
}
}
System.out.println("Main Diagonal");
for (int i = 0; i < mat[i].length; i++) {
System.out.print(mat[i][i] + " ");
}
System.out.println();
int count = 0;
for (int i = 0; i < mat.length; i++) {
for (int j = 0; j < mat[i].length; j++) {
if (mat[i][j] < 0) {
count++;
}
}
}
System.out.println("Negative number: " + count);
// System.out.println("-------------------");
// for (int i = 0; i < mat.length; i++) {
// for (int j = 0; j < mat[i].length; j++) {
// System.out.print(mat[i][j] + " ");
// }
// System.out.println();
// }
scan.close();
}
}
| [
"davisilvaphoto@gmail.com"
] | davisilvaphoto@gmail.com |
b95faa09f380242a96ecfb3fa590ecf0c44d8b59 | 632892dee43582ccd254c2b8bceb791c8386494d | /src/net/ion/craken/loaders/GridStore.java | aae70eaec9aa70ee04ce0c7e6a521f217ebc6b42 | [] | no_license | bleujin/craken | db15e052a62807a6194798f048613e60e3abb19e | ccdac24b196468439d90d449e206427c35519653 | refs/heads/master | 2021-01-17T09:19:58.536549 | 2016-12-22T03:27:56 | 2016-12-22T03:27:56 | 5,227,204 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,959 | java | package net.ion.craken.loaders;
import infinispan.org.codehaus.jackson.map.deser.impl.PropertyValue;
import java.util.Map;
import java.util.concurrent.Executor;
import net.ion.craken.node.crud.tree.impl.PropertyId;
import net.ion.craken.node.crud.tree.impl.TreeNodeKey;
import net.ion.framework.util.Debug;
import org.infinispan.filter.KeyFilter;
import org.infinispan.marshall.core.MarshalledEntry;
import org.infinispan.notifications.Listener;
import org.infinispan.persistence.spi.AdvancedLoadWriteStore;
import org.infinispan.persistence.spi.InitializationContext;
@Listener
public class GridStore implements AdvancedLoadWriteStore<TreeNodeKey, Map<PropertyId, PropertyValue>> {
@Override
public boolean contains(Object arg0) {
Debug.line("contains");
return false;
}
@Override
public void init(InitializationContext icontext) {
Debug.line("init");
}
@Override
public MarshalledEntry<TreeNodeKey, Map<PropertyId, PropertyValue>> load(Object obj) {
Debug.line("load", obj);
return null;
}
@Override
public void start() {
Debug.line("start");
}
@Override
public void stop() {
Debug.line("stop");
}
@Override
public boolean delete(Object obj) {
Debug.line("delete", obj);
return false;
}
@Override
public void write(MarshalledEntry<? extends TreeNodeKey, ? extends Map<PropertyId, PropertyValue>> entry) {
Debug.line("write", entry);
}
@Override
public void process(KeyFilter<? super TreeNodeKey> filter, CacheLoaderTask<TreeNodeKey, Map<PropertyId, PropertyValue>> tasks, Executor ex, final boolean fetchValue, final boolean fetchMetadata) {
Debug.line("write", filter, tasks, ex, fetchValue);
}
@Override
public int size() {
Debug.line("size");
return 0;
}
@Override
public void clear() {
Debug.line("clear");
}
@Override
public void purge(Executor arg0, org.infinispan.persistence.spi.AdvancedCacheWriter.PurgeListener<? super TreeNodeKey> arg1) {
Debug.line("purge");
}
}
| [
"bleujin@gmail.com"
] | bleujin@gmail.com |
5a795df46bd00fedcca32e2cb0dd1568ee33a3ec | 82dc5807c02a9c81d574f59c74f72cabce8595a2 | /YFPosService/app/src/main/java/com/yifengcom/yfpos/api/SetDeviceDataTask.java | 73561b6b2dba550cad676d3a858f3dfb23c3c40f | [] | no_license | duslabo/android_work | 48d073e04cb58189c8cd363d4e1d8ada716474ea | adcaec07b3a7dd64b98763645522972387c67e73 | refs/heads/master | 2020-05-22T18:05:31.669708 | 2017-04-21T08:21:29 | 2017-04-21T08:21:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,629 | java | package com.yifengcom.yfpos.api;
import java.io.ByteArrayOutputStream;
import com.yifengcom.yfpos.DefaultDeviceComm;
import com.yifengcom.yfpos.DeviceComm;
import com.yifengcom.yfpos.ErrorCode;
import com.yifengcom.yfpos.YFLog;
import com.yifengcom.yfpos.codec.PackageBuilder;
import com.yifengcom.yfpos.exception.MPOSException;
import com.yifengcom.yfpos.tlv.TLVCollection;
import com.yifengcom.yfpos.tlv.support.TLVByteArray;
import com.yifengcom.yfpos.utils.StringUtils;
import android.os.AsyncTask;
public class SetDeviceDataTask extends AsyncTask<String,Object,Integer>{
private final static YFLog logger = YFLog.getLog(SetDeviceDataTask.class);
private final SwiperListener listener;
private final DeviceComm deviceComm;
public SetDeviceDataTask(DeviceComm deviceComm,SwiperListener listener) {
this.listener = listener;
this.deviceComm = deviceComm;
}
@Override
protected Integer doInBackground(String... params) {
String customerNo = (String)params[0];
String termNo = (String)params[1];
String serialNo = (String)params[2];
String batchNo = (String)params[3];
try {
writeDeviceParams(customerNo,termNo,serialNo,batchNo);
} catch(MPOSException ex) {
logger.e(ex.getMessage(), ex);
return ex.getErrorCode();
} catch(Exception ex) {
logger.e(ex.getMessage(), ex);
return ErrorCode.UNKNOWN.getCode();
}
return ErrorCode.SUCC.getCode();
}
protected void onPostExecute(Integer code) {
if(code == ErrorCode.SUCC.getCode()) {
listener.onResultSuccess(0x32);
} else {
listener.onError(code, ((DefaultDeviceComm)deviceComm).getErrorMessage(code));
}
}
/**
* 写入参数
* @param customerNo
* @param termNo
* @param serialNo
* @param batchNo
*/
public void writeDeviceParams(String customerNo,String termNo ,String serialNo,String batchNo) {
byte[] body;
try {
if(!StringUtils.isEmpty(customerNo)) {
customerNo = StringUtils.rightAddSpace(customerNo, 15);
logger.d("写入商户号:%s",customerNo);
body = new byte[19];
body[0] = (byte)0x9F;
body[1] = (byte)0x02;
body[2] = (byte)customerNo.length();
body[3] = (byte)(customerNo.length()>>8);
System.arraycopy(customerNo.getBytes(), 0, body, 4, customerNo.length());
deviceComm.execute(PackageBuilder.syn(PackageBuilder.CMD_SET_CACHE,body));
}
if(!StringUtils.isEmpty(termNo)){
termNo = StringUtils.rightAddSpace(termNo, 8);
logger.d("写入终端号:%s",termNo);
body = new byte[12];
body[0] = (byte)0x9F;
body[1] = (byte)0x03;
body[2] = (byte)termNo.length();
body[3] = (byte)(termNo.length()>>8);
System.arraycopy(termNo.getBytes(), 0, body, 4, termNo.length());
deviceComm.execute(PackageBuilder.syn(PackageBuilder.CMD_SET_CACHE,body));
}
//流水号
if(!StringUtils.isEmpty(serialNo)) {
if(serialNo.length()<8) {
serialNo = StringUtils.leftAddZero(Integer.valueOf(serialNo), 6);
}
logger.d("写入流水号:%s",serialNo);
body = new byte[10];
body[0] = (byte)0x9F;
body[1] = (byte)0x04;
body[2] = (byte)serialNo.length();
body[3] = (byte)(serialNo.length()>>8);
System.arraycopy(serialNo.getBytes(), 0, body, 4, serialNo.length());
deviceComm.execute(PackageBuilder.syn(PackageBuilder.CMD_SET_CACHE,body));
}
//批次号
if(!StringUtils.isEmpty(batchNo)) {
if(batchNo.length()<8) {
batchNo = StringUtils.leftAddZero(Integer.valueOf(batchNo), 6);
}
logger.d("写入批次号:%s",batchNo);
body = new byte[10];
body[0] = (byte)0x9F;
body[1] = (byte)0x05;
body[2] = (byte)batchNo.length();
body[3] = (byte)(batchNo.length()>>8);
System.arraycopy(batchNo.getBytes(), 0, body, 4, batchNo.length());
deviceComm.execute(PackageBuilder.syn(PackageBuilder.CMD_SET_CACHE,body));
}
} catch(MPOSException ex) {
throw ex;
} catch(Exception ex) {
throw new MPOSException(ErrorCode.UNKNOWN.getCode(),ErrorCode.UNKNOWN.getDefaultMessage());
}
}
/**
* tlv格式写入
* @param customerNo
* @param termNo
* @param serialNo
* @param batchNo
*/
public void writeDeviceParamsTLV(String customerNo,String termNo ,String serialNo,String batchNo) {
try {
TLVCollection tlvs = new TLVCollection();
if(!StringUtils.isEmpty(customerNo)) {
logger.d("写入商户号:%s",customerNo);
customerNo = StringUtils.rightAddSpace(customerNo, 15);
tlvs.add(new TLVByteArray(0x9F02,customerNo.getBytes()));
}
if(!StringUtils.isEmpty(termNo)){
termNo = StringUtils.rightAddSpace(termNo, 8);
logger.d("写入终端号:%s",termNo);
tlvs.add(new TLVByteArray(0x9F03,termNo.getBytes()));
}
//流水号
serialNo = StringUtils.isEmpty(serialNo) ? "000000" : serialNo;
if(serialNo.length()<8) {
serialNo = StringUtils.leftAddZero(Integer.valueOf(serialNo), 6);
}
logger.d("写入流水号:%s",serialNo);
tlvs.add(new TLVByteArray(0x9F04,serialNo.getBytes()));
//批次号
batchNo = StringUtils.isEmpty(batchNo) ? "000000" : batchNo;
if(batchNo.length()<8) {
batchNo = StringUtils.leftAddZero(Integer.valueOf(batchNo), 6);
}
logger.d("写入批次号:%s",batchNo);
tlvs.add(new TLVByteArray(0x9F05,batchNo.getBytes()));
ByteArrayOutputStream os = new ByteArrayOutputStream(500);
tlvs.encode(os);
deviceComm.execute(PackageBuilder.syn(PackageBuilder.CMD_SET_CACHE,os.toByteArray()));
} catch(MPOSException ex) {
throw ex;
} catch(Exception ex) {
throw new MPOSException(ErrorCode.UNKNOWN.getCode(),ErrorCode.UNKNOWN.getDefaultMessage());
}
}
}
| [
"dongyongzhi@foxmail.com"
] | dongyongzhi@foxmail.com |
418f61b74b2439bb25d34058be508cf011557211 | cbdecdd7040354b9bdaed4701edf3806390259aa | /src/main/java/com/hz/spring_ioc/service/DAO/PrimarySchool.java | f474244c1840abf41c92e86c4f2d77d2edf5f6cc | [] | no_license | Codefor4learn/spring | 431791ba746813ced8b4e3128c21768ddc09f5ef | f52f7a748a763d44567c1399abd292b4bfab7025 | refs/heads/master | 2023-01-09T19:47:14.851993 | 2020-11-13T15:54:05 | 2020-11-13T15:54:05 | 312,619,266 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 486 | java | package com.hz.spring_ioc.service.DAO;
public class PrimarySchool extends School {
private String name;
private String address;
public void setName(String name) {
this.name = name;
}
public void setAddress(String address) {
this.address = address;
}
@Override
public String toString() {
return "School{" +
"name='" + name + '\'' +
", address='" + address + '\'' +
'}';
}
}
| [
"1532246395@qq.com"
] | 1532246395@qq.com |
bd6018bdee46e2135420e53d876658ba782188f0 | a9910845ec38479ffd0f45a8fc279c077680875d | /pb01PanicButtonCORE/pb01PanicButtonCOREClasses/src/main/java/x47b/services/delegates/persistence/X47BFindServicesDelegateForOrganization.java | 0733e1cb3b3b08d6ef34d06a997fdfbad0024905 | [] | no_license | opendata-euskadi/zuzenean-panic-button | adbab6eb5bc9b2ef086e188105a402c7551c0395 | 88ba04197c34a2effbe55c24e78a4d2d78a871dd | refs/heads/develop | 2021-07-09T04:38:20.677805 | 2019-08-20T08:29:12 | 2019-08-20T08:29:12 | 200,735,000 | 0 | 0 | null | 2020-10-13T15:07:58 | 2019-08-05T22:03:21 | Java | UTF-8 | Java | false | false | 2,384 | java | package x47b.services.delegates.persistence;
import javax.persistence.EntityManager;
import com.google.common.eventbus.EventBus;
import r01f.bootstrap.services.config.core.ServicesCoreBootstrapConfigWhenBeanExposed;
import r01f.locale.Language;
import r01f.model.persistence.FindSummariesResult;
import r01f.objectstreamer.Marshaller;
import r01f.persistence.db.config.DBModuleConfigBuilder;
import r01f.securitycontext.SecurityContext;
import x47b.api.interfaces.X47BFindServicesForOrganization;
import x47b.db.find.X47BDBFindForOrganization;
import x47b.model.oids.X47BOrganizationalIDs.X47BOrganizationID;
import x47b.model.oids.X47BOrganizationalOIDs.X47BOrganizationOID;
import x47b.model.org.X47BOrganization;
/**
* Service layer delegated type for CRUD (Create/Read/Update/Delete) operations
*/
public class X47BFindServicesDelegateForOrganization
extends X47BFindServicesDelegateForOrganizationalEntityBase<X47BOrganizationOID,X47BOrganizationID,X47BOrganization>
implements X47BFindServicesForOrganization {
/////////////////////////////////////////////////////////////////////////////////////////
// CONSTRUCTOR
/////////////////////////////////////////////////////////////////////////////////////////
public X47BFindServicesDelegateForOrganization(final ServicesCoreBootstrapConfigWhenBeanExposed coreCfg,
final EntityManager entityManager,
final Marshaller marshaller,
final EventBus eventBus) {
super(coreCfg,
X47BOrganization.class,
new X47BDBFindForOrganization(DBModuleConfigBuilder.dbModuleConfigFrom(coreCfg),
entityManager,
marshaller));
}
/////////////////////////////////////////////////////////////////////////////////////////
// EXTENSION METHODS
/////////////////////////////////////////////////////////////////////////////////////////
@Override
public FindSummariesResult<X47BOrganization> findSummaries(final SecurityContext securityContext,
final Language lang) {
// params checking
Language theLang = (lang != null && lang.in(Language.SPANISH,Language.BASQUE)) ? lang
: Language.SPANISH;
// simply delegate
return this.getServiceImplAs(X47BFindServicesForOrganization.class)
.findSummaries(securityContext,
theLang);
}
}
| [
"pci@ejie.eus"
] | pci@ejie.eus |
dee2ccc0a5c1f454c789a5e6427e90242aee2a3e | 4e4f819f02fc6d11cdd397840a62a6622b6fac97 | /app/src/main/java/com/tongyuan/adapter/ShopCarAdapter.java | 3c6b40b956e53373b4f642fa7141477943277d61 | [] | no_license | bears08/TongYuan_A_1123 | 4233150eff75dfad47d8ba2449c4a8272fd8c611 | a3b42aea01ec19a21ded03e3b22d7a14b7993270 | refs/heads/master | 2021-01-10T13:23:25.779869 | 2015-11-30T10:36:39 | 2015-11-30T10:36:39 | 46,712,925 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,022 | java | //package com.tongyuan.adapter;
//
//import android.content.Context;
//import android.content.Intent;
//import android.os.Bundle;
//import android.view.LayoutInflater;
//import android.view.View;
//import android.view.View.OnClickListener;
//import android.view.ViewGroup;
//import android.widget.BaseAdapter;
//import android.widget.ImageView;
//import android.widget.TextView;
//
//import com.tongyuan.R;
//import com.tongyuan.dao.ShopCarDao;
//import com.tongyuan.domain.ShopCar;
//import com.tongyuan.util.image.ImageLoaderFactory;
//
//import java.util.List;
//
//public class ShopCarAdapter extends BaseAdapter {
// public static final String action = "jason.broadcast.action";
//
// private Context context;
// private LayoutInflater mInflater;
// private ImageLoaderFactory factory;
// private ShopCarDao shopCarDao;
// // todo 是不是需要新起任务
// private List<ShopCar> list;
//
// private static final String NUM = "nums";
// private static final String PRODUCTID = "productid";
// private static final String NAME = "name";
// private static final String INFO = "info";
// private static final String PRICE = "price";
// private static final String IMG = "img";
//
// public ShopCarAdapter(Context context) {
// this.context = context;
// this.mInflater = LayoutInflater.from(context);
// factory = new ImageLoaderFactory(context);
// shopCarDao = new ShopCarDao(context);
// list = shopCarDao.selectAll();
// }
//
// @Override
// public int getCount() {
// if (list != null && list.size() > 0) {
// return list.size();
// }
// return 0;
// }
//
// @Override
// public Object getItem(int arg0) {
// return null;
// }
//
// @Override
// public long getItemId(int arg0) {
// return 0;
// }
//
// @Override
// public View getView(int position, View convertView, ViewGroup parent) {
// final ViewHolder holder;
// final int pos = position;
// if (convertView == null) {
//
// holder = new ViewHolder();
//
// convertView = mInflater.inflate(R.layout.listview_shop_car, null);
// holder.img = (ImageView) convertView.findViewById(R.id.img);
// holder.name = (TextView) convertView.findViewById(R.id.name);
// holder.price = (TextView) convertView.findViewById(R.id.price);
// holder.num = (TextView) convertView.findViewById(R.id.num);
// holder.jia = (ImageView) convertView.findViewById(R.id.jia);
// holder.jian = (ImageView) convertView.findViewById(R.id.jian);
// holder.productid = (TextView) convertView
// .findViewById(R.id.product_id);
// convertView.setTag(holder);
//
// } else {
// holder = (ViewHolder) convertView.getTag();
// }
//
// holder.name.setText((String) list.get(position).getName());
// holder.price.setText("" + list.get(position).getPrice());
// holder.num.setText("" + list.get(position).getProductNum());
// holder.productid.setText("" + list.get(position).getProductId());
// holder.jia.setOnClickListener(new OnClickListener() {
//
// @Override
// public void onClick(View view) {
// String s = (String) holder.num.getText();
// int n = 0;
// if (s != null) {
// n = Integer.parseInt(s);
// }
// n++;
// holder.num.setText("" + n);
// if (n > 0) {
// holder.num.setVisibility(View.VISIBLE);
// holder.jian.setVisibility(View.VISIBLE);
// }
// ShopCar shopCar = new ShopCar();
// shopCar.setProductId(list.get(pos).getProductId());
// shopCar.setProductNum(1);
// shopCar.setName(list.get(pos).getName());
// shopCar.setPrice(list.get(pos).getPrice());
// shopCar.setSmallPic(list.get(pos).getSmallPic());
//
// Intent intent = new Intent(action);
// Bundle bundle = new Bundle();
// bundle.putSerializable("shopCar", shopCar);
// intent.putExtras(bundle);
//
// context.sendBroadcast(intent);
// }
// });
// holder.jian.setOnClickListener(new OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// String s = (String) holder.num.getText();
// int n = 0;
// if (s != null) {
// n = Integer.parseInt(s);
// }
// n--;
// holder.num.setText("" + n);
// if (n <= 0) {
// holder.num.setVisibility(View.INVISIBLE);
// holder.jian.setVisibility(View.INVISIBLE);
// }
// ShopCar shopCar = new ShopCar();
// shopCar.setProductId(list.get(pos).getProductId());
// shopCar.setProductNum(-1);
// shopCar.setName(list.get(pos).getName());
// shopCar.setPrice(list.get(pos).getPrice());
// shopCar.setSmallPic(list.get(pos).getSmallPic());
// Intent intent = new Intent(action);
// Bundle bundle = new Bundle();
// bundle.putSerializable("shopCar", shopCar);
// intent.putExtras(bundle);
// context.sendBroadcast(intent);
// }
// });
// factory.displayImage(list.get(position).getSmallPic(), holder.img);
// return convertView;
// }
//
// private class ViewHolder {
// public ImageView img;
// public TextView name;
// public TextView num;
// public TextView price;
// public ImageView jia;
// public ImageView jian;
// public TextView productid;
// }
//
//}
| [
"airberkelly@qq.com"
] | airberkelly@qq.com |
60833ee10bed2b7ec9f19d6ae8f60397de60eb5c | 536b6b962f11a87fcab9c85b3dd65daa49accf47 | /PRACTICA_1/src/tp/pr1/mv/Pila/OperandStack.java | 0ee37cb2f7b524c38a761241578f7b30c441e06f | [] | no_license | PaytonZ/TP_Clases_Practica2 | b2f1fcbe17e4f8019dd0ce63a4af3f400488a537 | b21f83eef92b4b9a0056d3d8ec72a2162bf4b2ae | refs/heads/master | 2016-09-05T17:14:07.768882 | 2013-11-25T16:28:04 | 2013-11-25T16:56:19 | null | 0 | 0 | null | null | null | null | ISO-8859-3 | Java | false | false | 1,843 | java | package tp.pr1.mv.Pila;
import java.util.Stack;
/**
* Implementa la pila donde se colocan los elementos de tipo entero introducidos.
*
* @param n Elemento de tipo entero introducido por el usuario.
*/
public class OperandStack {
private Stack<Integer> pila = new Stack<Integer>();
//PUSH -- introduce a la pila.
public void push(int n) {
pila.push(n);
}
// POP -- sacar de la pila.
public int pop() {
return pila.pop();
}
// DUP -- duplica el primero.
public void dup() {
int a = pop();
push(a);
push(a);
}
// FLIP -- intercambia cima y subcima.
public void flip() {
int cima, subcima;
cima = pop();
subcima = pop();
push(cima);
push(subcima);
}
// SUMA
public void add() {
int cima, subcima, suma;
cima = pop();
subcima = pop();
suma = subcima + cima;
push(suma);
}
// RESTA
public void sub() {
int cima, subcima, resta;
cima = pop();
subcima = pop();
resta = subcima - cima;
push(resta);
}
// MULTIPLICACION
public void mul() {
int cima, subcima, multi;
cima = pop();
subcima = pop();
multi = subcima * cima;
push(multi);
}
// DIVISION
public void div() {
int cima, subcima, div;
cima = pop();
subcima = pop();
div = subcima / cima;
push(div);
}
// OUT -- Mostrar cima.
public void out() {
int cima;
cima = pop();
System.out.println(Character.toChars(cima));
}
/**
* Esta instrucción muestra el contenido de la pila, si lo hay, si no muestra "vacia".
*
*/
public void mostrar() {
Object[] resultado = pila.toArray();
if (resultado.length == 0) {
System.out.print("<vacia>");
}
for (int i = 0; i < resultado.length; i++) {
System.out.print(resultado[i] + " ");
}
}
public Stack<Integer> getPila() {
return pila;
}
public void setPila(Stack<Integer> pila) {
this.pila = pila;
}
}
| [
"juanlp01@ucm.es"
] | juanlp01@ucm.es |
338a8cac5f2d5bb3db0b8f670b85738f6ec001e3 | 27ffb95f7af04db21d24e5b30c48d84c47cc9168 | /app/src/main/java/com/litesuits/common/net/OkHttpConfig.java | 9dc33be46c35bdf2c8e7fa1fec5e1b09f207dc31 | [] | no_license | SensYang/yousucc | a2819af17c8d30129469592af119ad33c97d3338 | dc895907b53a6b67ee4ea078286eb066e42823e9 | refs/heads/master | 2020-04-04T00:10:38.345343 | 2018-11-01T01:06:56 | 2018-11-01T01:06:56 | 155,642,797 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,428 | java | package com.litesuits.common.net;
import com.squareup.okhttp.OkHttpClient;
import java.net.CookieManager;
import java.net.CookiePolicy;
import java.net.CookieStore;
import java.net.HttpCookie;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* Created by aako on 2015/11/6.
*/
public class OkHttpConfig {
private static OkHttpClient mOkHttpClient;
public static OkHttpClient getmOkHttpClient(){
if (null == mOkHttpClient){
synchronized (OkHttpConfig.class){
if(null == mOkHttpClient){
mOkHttpClient = new OkHttpClient();
//增加Cookie支持
mOkHttpClient.setCookieHandler(new CookieManager(new MyCookieStore(), CookiePolicy.ACCEPT_ALL));
}
}
}
return mOkHttpClient;
}
static class MyCookieStore implements CookieStore {
private Map<URI, List<HttpCookie>> map = new HashMap<>();
public void add(URI uri, HttpCookie cookie) {
List<HttpCookie> cookies = map.get(uri);
if (cookies == null) {
cookies = new ArrayList<>();
map.put(uri, cookies);
}
cookies.add(cookie);
}
public List<HttpCookie> get(URI uri) {
List<HttpCookie> cookies = map.get(uri);
if (cookies == null) {
cookies = new ArrayList<>();
map.put(uri, cookies);
}
return cookies;
}
public List<HttpCookie> getCookies() {
Collection<List<HttpCookie>> values = map.values();
List<HttpCookie> result = new ArrayList<>();
for (List<HttpCookie> value : values) {
result.addAll(value);
}
return result;
}
public List<URI> getURIs() {
Set<URI> keys = map.keySet();
return new ArrayList<>(keys);
}
public boolean remove(URI uri, HttpCookie cookie) {
List<HttpCookie> cookies = map.get(uri);
if (cookies == null) {
return false;
}
return cookies.remove(cookie);
}
public boolean removeAll() {
map.clear();
return true;
}
}
}
| [
"lui1997@126.com"
] | lui1997@126.com |
38ba34fdd23a493dca7104bd45fa32915a0cd142 | 1e9e033d3a61bbcdf0a123447babf7ecf901787f | /app/src/main/java/com/example/roomdatabasedemo/MyDao.java | 7ad002317be0f5a874783c609e463ff12c4a5c8a | [] | no_license | SumitIdea/RoomDatabase | 7cc91fd540c8cb4bac82c2b6d1a5586f45dc283a | 123de662586fcd0aa4f241b1989794111d803063 | refs/heads/master | 2023-06-20T01:24:36.500426 | 2021-07-21T04:31:13 | 2021-07-21T04:31:13 | 387,993,037 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 460 | java | package com.example.roomdatabasedemo;
import androidx.room.Dao;
import androidx.room.Delete;
import androidx.room.Insert;
import androidx.room.Query;
import androidx.room.Update;
import java.util.List;
@Dao
public interface MyDao {
@Insert
public void addUser(User user);
@Query("select * from users")
public List<User> getUser();
@Update
public void updateUser(User user);
@Delete
public void deleteUser(User uesr);
}
| [
"sumidea23jun@gmail.com"
] | sumidea23jun@gmail.com |
de721ac502ba9dafd159af1dff3fcf0ddaa762b3 | 6b23d8ae464de075ad006c204bd7e946971b0570 | /WEB-INF/plugin/reserve/src/jp/groupsession/v2/rsv/RsvDailyValueModel.java | 6916b7e08c9394825a945f609c157ad162883abd | [] | no_license | kosuke8/gsession | a259c71857ed36811bd8eeac19c456aa8f96c61e | edd22517a22d1fb2c9339fc7f2a52e4122fc1992 | refs/heads/master | 2021-08-20T05:43:09.431268 | 2017-11-28T07:10:08 | 2017-11-28T07:10:08 | 112,293,459 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,474 | java | package jp.groupsession.v2.rsv;
import jp.groupsession.v2.cmn.model.AbstractModel;
/**
* <br>[機 能] 予約を日間画面表示用に編集したModelクラス
* <br>[解 説]
* <br>[備 考]
*
* @author JTS
*/
public class RsvDailyValueModel extends AbstractModel {
/** スケジュール情報 */
private RsvYoyakuModel yoyakuMdl__;
/** 横幅(cols/rows) */
private int cols__;
/** インデックス(出力先index) */
private int index__;
/**
* <p>cols__ を取得します。
* @return cols
*/
public int getCols() {
return cols__;
}
/**
* <p>cols__ をセットします。
* @param cols cols__
*/
public void setCols(int cols) {
cols__ = cols;
}
/**
* <p>index__ を取得します。
* @return index
*/
public int getIndex() {
return index__;
}
/**
* <p>index__ をセットします。
* @param index index__
*/
public void setIndex(int index) {
index__ = index;
}
/**
* <p>yoyakuMdl__ を取得します。
* @return yoyakuMdl
*/
public RsvYoyakuModel getYoyakuMdl() {
return yoyakuMdl__;
}
/**
* <p>yoyakuMdl__ をセットします。
* @param yoyakuMdl yoyakuMdl__
*/
public void setYoyakuMdl(RsvYoyakuModel yoyakuMdl) {
yoyakuMdl__ = yoyakuMdl;
}
} | [
"PK140601-29@PK140601-29"
] | PK140601-29@PK140601-29 |
573eb30be9c18520eb0161c99f1f64a05087daa7 | 2d2e1c6126870b0833c6f80fec950af7897065e5 | /scriptom-office-2k3/src/main/java/org/codehaus/groovy/scriptom/tlb/office/word/WdLineSpacing.java | 76740b271e981f6e3b7720f3f91312c20bb0b8ef | [] | no_license | groovy/Scriptom | d650b0464f58d3b58bb13469e710dbb80e2517d5 | 790eef97cdacc5da293d18600854b547f47e4169 | refs/heads/master | 2023-09-01T16:13:00.152780 | 2022-02-14T12:30:17 | 2022-02-14T12:30:17 | 39,463,850 | 20 | 7 | null | 2015-07-23T12:48:26 | 2015-07-21T18:52:11 | Java | UTF-8 | Java | false | false | 3,422 | java | /*
* Copyright 2009 (C) The Codehaus. All Rights Reserved.
*
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided that the
* following conditions are met:
* 1. Redistributions of source code must retain copyright statements and
* notices. Redistributions must also contain a copy of this document.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name "groovy" must not be used to endorse or promote products
* derived from this Software without prior written permission of The Codehaus.
* For written permission, please contact info@codehaus.org.
* 4. Products derived from this Software may not be called "groovy" nor may
* "groovy" appear in their names without prior written permission of The
* Codehaus. "groovy" is a registered trademark of The Codehaus.
* 5. Due credit should be given to The Codehaus - http://groovy.codehaus.org/
*
* THIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE CODEHAUS OR ITS CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
package org.codehaus.groovy.scriptom.tlb.office.word;
import java.util.Map;
import java.util.TreeMap;
import java.util.Collections;
/**
* @author Jason Smith
*/
public final class WdLineSpacing
{
private WdLineSpacing()
{
}
/**
* Value is 0 (0x0)
*/
public static final Integer wdLineSpaceSingle = Integer.valueOf(0);
/**
* Value is 1 (0x1)
*/
public static final Integer wdLineSpace1pt5 = Integer.valueOf(1);
/**
* Value is 2 (0x2)
*/
public static final Integer wdLineSpaceDouble = Integer.valueOf(2);
/**
* Value is 3 (0x3)
*/
public static final Integer wdLineSpaceAtLeast = Integer.valueOf(3);
/**
* Value is 4 (0x4)
*/
public static final Integer wdLineSpaceExactly = Integer.valueOf(4);
/**
* Value is 5 (0x5)
*/
public static final Integer wdLineSpaceMultiple = Integer.valueOf(5);
/**
* A {@code Map} of the symbolic names to constant values.
*/
public static final Map<String,Object> values;
static
{
TreeMap<String,Object> v = new TreeMap<String,Object>();
v.put("wdLineSpaceSingle", wdLineSpaceSingle);
v.put("wdLineSpace1pt5", wdLineSpace1pt5);
v.put("wdLineSpaceDouble", wdLineSpaceDouble);
v.put("wdLineSpaceAtLeast", wdLineSpaceAtLeast);
v.put("wdLineSpaceExactly", wdLineSpaceExactly);
v.put("wdLineSpaceMultiple", wdLineSpaceMultiple);
values = Collections.synchronizedMap(Collections.unmodifiableMap(v));
}
}
| [
"ysb33r@gmail.com"
] | ysb33r@gmail.com |
e1428fe29543fc1ddaa7d2cba18ba5baf38d7779 | 18d43477233451d60332dbe6f70186d40663a4fb | /src/test/java/DevOpsTraining/AppTest.java | 539af7b1449731149347c765c735eb10c36fa3fe | [] | no_license | radhakilaru/RK | 3b007e3e9045aaefebe49df48c8d38c82a4a55d2 | 02fc42038e4bbca74a62c43baeb14abc287f1f36 | refs/heads/master | 2021-04-29T23:21:42.756472 | 2020-02-13T16:41:53 | 2020-02-13T16:41:53 | 121,553,785 | 0 | 0 | null | 2020-10-13T06:43:24 | 2018-02-14T19:45:48 | PowerShell | UTF-8 | Java | false | false | 680 | java | package DevOpsTraining;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}
| [
"noreply@github.com"
] | radhakilaru.noreply@github.com |
1bcf33cde7903789be5a4cc3227ed835eec1a074 | be73270af6be0a811bca4f1710dc6a038e4a8fd2 | /crash-reproduction-moho/results/CHART-4b-2-27-SPEA2-WeightedSum:TestLen:CallDiversity/org/jfree/chart/axis/NumberAxis_ESTest.java | 5ba19a5f503912bddbd7f9a091df02fbcadd3394 | [] | no_license | STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application | cf118b23ecb87a8bf59643e42f7556b521d1f754 | 3bb39683f9c343b8ec94890a00b8f260d158dfe3 | refs/heads/master | 2022-07-29T14:44:00.774547 | 2020-08-10T15:14:49 | 2020-08-10T15:14:49 | 285,804,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 547 | java | /*
* This file was automatically generated by EvoSuite
* Sun Apr 05 22:43:27 UTC 2020
*/
package org.jfree.chart.axis;
import org.junit.Test;
import static org.junit.Assert.*;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
@RunWith(EvoRunner.class) @EvoRunnerParameters(useVFS = true, useJEE = true)
public class NumberAxis_ESTest extends NumberAxis_ESTest_scaffolding {
@Test
public void notGeneratedAnyTest() {
// EvoSuite did not generate any tests
}
}
| [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
869a07f49c4aaaf2fddbc13edff8b93d224d0232 | 43c012a9cdea1df74ddeaf16f7850ccaaedf0782 | /DAP/android/sub_app/fermat-dap-android-sub-app-asset-user-community/src/main/java/org/fermat/fermat_dap_android_sub_app_asset_user_community/common/header/UserAssetCommunityHeaderCLickListener.java | f7682c3a17ee4aa0af826f69f843b58c9dd54f09 | [
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | franklinmarcano1970/fermat | ef08d8c46740ac80ebeec96eca85936ce36d3ee8 | c5239a0d4c97414881c9baf152243e6311c9afd5 | refs/heads/develop | 2020-04-07T04:12:39.745585 | 2016-05-23T21:20:37 | 2016-05-23T21:20:37 | 52,887,265 | 1 | 22 | null | 2016-08-23T12:58:03 | 2016-03-01T15:26:55 | Java | UTF-8 | Java | false | false | 353 | java | package org.fermat.fermat_dap_android_sub_app_asset_user_community.common.header;
import android.view.View;
/**
* Created by Nerio on 07/03/16.
*/
public class UserAssetCommunityHeaderCLickListener implements View.OnClickListener{
public UserAssetCommunityHeaderCLickListener() {
}
@Override
public void onClick(View v) {
}
}
| [
"marsvicam@gmail.com"
] | marsvicam@gmail.com |
71fb09715644a2147e263ee9c35e77bb4d60e984 | a288451aa51bb4449f01ae83d1cb8c99f7d110f2 | /app/src/main/res/Task.java | b7a4b500490f4cac088c84307864e6088168dad0 | [] | no_license | 15017363/P06-TaskManager | a0ad31b95bdffbc0a315204471651425f17c3fd6 | bc096ea638f742f28c53b49f8d460806019e0847 | refs/heads/master | 2021-01-22T03:22:48.608556 | 2017-05-25T09:25:42 | 2017-05-25T09:25:42 | 92,375,343 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 68 | java | /**
* Created by 15017363 on 25/5/2017.
*/
public class Task {
}
| [
"15017363@myrp.edu.sg"
] | 15017363@myrp.edu.sg |
02ff9b30b9ca6536768a5764b0cafee70bc3acdc | d4d044732ce1d0d9aa518a02b8da6cff43d3b196 | /xiang-core/src/main/java/com/yangfan/xiang/core/web/vo/DefaultCoreRequest.java | 23ce20fff0fb00b08a580b93b34e779e9ba1dbc6 | [] | no_license | MangoFYang/xiang | 83407ebe11f1ca0148e029a59b6ffb6e506b8a4f | ed2f4bc4321a33cd3dda08bea7f745c4e68aae2a | refs/heads/master | 2016-09-10T00:07:37.578691 | 2014-08-09T13:47:02 | 2014-08-09T13:47:02 | 15,398,363 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,334 | java | package com.yangfan.xiang.core.web.vo;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.domain.Sort.Order;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
public class DefaultCoreRequest implements CoreRequest, Serializable {
private static final long serialVersionUID = 3308184917876917350L;
private CorePager pager;
private CoreSorter sorter;
private CoreFilter filter;
private Pageable pageable;
private Sort sort;
private MultiValueMap<String, String> filterMap;
public DefaultCoreRequest() {
}
public DefaultCoreRequest(CorePager pager) {
this(pager, null, null);
}
public DefaultCoreRequest(CoreSorter sorter) {
this(null, sorter, null);
}
public DefaultCoreRequest(CoreFilter filter) {
this(null, null, filter);
}
public DefaultCoreRequest(CorePager pager, CoreSorter sorter, CoreFilter filter) {
this.pager = pager;
this.sorter = sorter;
this.filter = filter;
}
public CorePager getPager() {
return pager;
}
public void setPager(CorePager pager) {
this.pager = pager;
}
public CoreSorter getSorter() {
return sorter;
}
public void setSorter(CoreSorter sorter) {
this.sorter = sorter;
}
public CoreFilter getFilter() {
return filter;
}
public void setFilter(CoreFilter filter) {
this.filter = filter;
}
public Pageable getPageable() {
if(pageable != null ) {
return pageable;
}
return new PageRequest(pager.getPage() - 1, pager.getSize(), getSort());
}
public Sort getSort() {
if(sort != null) {
return sort;
}
if(sorter != null && sorter.getOrderList() != null && !sorter.getOrderList().isEmpty()) {
List<Order> orderList = new ArrayList<Order>();
for (CoreOrder coreOrder : sorter.getOrderList()) {
Order o = new Order(
Direction.fromStringOrNull(coreOrder.getDirection()), coreOrder.getProperty());
orderList.add(o);
}
return sort = new Sort(orderList);
}
return null;
}
private void populateFilterMap() {
filterMap = new LinkedMultiValueMap<String, String>();
List<CoreCondition> conditionList = filter.getConditionList();
if(conditionList != null) {
for (CoreCondition coreCondition : conditionList) {
filterMap.add(coreCondition.getProperty(), coreCondition.getValue());
}
}
}
@Override
public String getCondition(String param) {
if(!hasCondition()) {
return null;
}
if(filterMap == null) {
populateFilterMap();
}
return filterMap.getFirst(param);
}
@Override
public List<?> getConditions(String param) {
if(!hasCondition()) {
return null;
}
if(filterMap == null) {
populateFilterMap();
}
return filterMap.get(param);
}
@Override
public boolean hasCondition() {
if(filter == null) {
return false;
}
if(filter.getConditionList() == null) {
return false;
}
if(filter.getConditionList().isEmpty()) {
return false;
}
return true;
}
}
| [
"18729218113@163.com"
] | 18729218113@163.com |
55ff8bc0167af74a6ace3f568d5b4a85edfbeec8 | 958e59f03247a14a038b07fcf8a099d39b694319 | /src/java/wolf/AddServlet.java | 24db09640e30ff20a9f59622aab5c09e44895ee1 | [] | no_license | khalilmuslimani/WebDatabaseProject | f54425160686c1e8d1f0644e2dc9aead589ea69f | df0aabffa403043fe64b223dfabac8eab53e6038 | refs/heads/master | 2020-12-23T08:39:45.264018 | 2020-01-29T23:22:27 | 2020-01-29T23:22:27 | 237,100,372 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,507 | 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 wolf;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* @author Wolf
*/
public class AddServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
int id = Integer.parseInt(request.getParameter("idtxt"));
String title = request.getParameter("titletxt");
String artist = request.getParameter("artisttxt");
String length = request.getParameter("lengthtxt");
String genre = request.getParameter("genretxt");
String release_year = request.getParameter("releasetxt");
try{
Class.forName("org.apache.derby.jdbc.ClientDriver");
Connection conn = DriverManager.getConnection("jdbc:derby://localhost:1527/Albums", "wolf", "Khalil08");
PreparedStatement pst = conn.prepareStatement("insert into WOLF.ALBUMINFO values(?, ?, ?, ?, ?, ?)");
pst.setInt(1, id);
pst.setString(2, title);
pst.setString(3, artist);
pst.setString(4, length);
pst.setString(5, genre);
pst.setString(6, release_year);
int row = pst.executeUpdate();
out.println("<h1>"+row+" record added successfully to the database</h1>");
out.println("<ul><li><a href =\"index.html\">Home</a></li>\n");
out.println("<li><a href =\"add.html\">Add Record</a></li>\n");
out.println("<li><a href =\"search.html\">Search Record</a></li>\n");
out.println("<li><a href =\"view.html\">View Database Contents</a></li></ul>\n");
}
catch(Exception e){
out.println(e);
}
}
}
}
| [
"noreply@github.com"
] | khalilmuslimani.noreply@github.com |
8a9556d71e2591c01c044cb63c4ad032ad6c5521 | 5ad8c74f936405f5e76252980a4220bbc9ace70c | /app/src/main/java/com/example/pizzaapplicationapps/MainActivity.java | 0b70cc365d2d51776246ca1d9d1ba9d3bc90d603 | [] | no_license | Ayush1619/Pizza-ap | ee6f31e0e8ce33214f349ea6e4962ba67a80bf1e | b18680b8209d80150529a9e279cf7d79fc10d626 | refs/heads/master | 2020-06-01T17:55:20.293216 | 2019-06-08T10:12:53 | 2019-06-08T10:12:53 | 190,873,124 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,777 | java | package com.example.pizzaapplicationapps;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Spinner;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
Spinner list;
String data[]={"pizza1","pizza2","pizza3","pizza4","pizza4","pizza5","pizza6","pizza7","pizza8","pizza9","pizza10"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
list=(Spinner) findViewById(R.id.listview);
ArrayAdapter adapter=new ArrayAdapter(MainActivity.this, android.R.layout.simple_list_item_1, data);
list.setAdapter(adapter);
list.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
switch (position)
{
case 0:
Toast.makeText(MainActivity.this, "First", Toast.LENGTH_SHORT).show();
break;
case 1:
Toast.makeText(MainActivity.this, "Second", Toast.LENGTH_SHORT).show();
break;
case 2:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 3:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 4:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 5:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 6:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 7:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 8:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
case 9:
Toast.makeText(MainActivity.this,"Third",Toast.LENGTH_SHORT).show();
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> parent){
}
});
}
}
| [
"you@example.com"
] | you@example.com |
eb5a0abd77f341681e5d02d03b06958529ead0f4 | 7ccddd84ea067dd1b46da9c1f0662604b2301f6d | /app/src/main/java/com/qtt/jinrong/enums/SocialFundEnum.java | 5125a803e2673c2c0db8c694336df090d6267aca | [] | no_license | miraclehjt/loan | 532c1841e782a93e920331ba742b9743491e103d | 97e7abfab0ac600ca9072b0f7057c69e770d6204 | refs/heads/master | 2021-06-03T05:27:54.819059 | 2016-04-30T11:47:52 | 2016-04-30T11:47:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,013 | java | package com.qtt.jinrong.enums;
import java.util.ArrayList;
import java.util.List;
/**
* 有无社保公积金
* Created by yanxin on 16/3/4.
*/
public enum SocialFundEnum {
无社保无公积金(1),
有社保有公积金(2),
有社保无公积金(3),
无社保有公积金(4);
private int code;
SocialFundEnum(int code) {
this.code = code;
}
public int getCode() {
return code;
}
public static List<String> getValues() {
SocialFundEnum[] enums = SocialFundEnum.values();
List<String> vals = new ArrayList<>();
for(int i=0;i<enums.length;i++) {
vals.add(enums[i].name());
}
return vals;
}
public static SocialFundEnum find(Integer code) {
if(code == null) return null;
SocialFundEnum[] enums = SocialFundEnum.values();
for(int i=0;i<enums.length;i++) {
if(enums[i].getCode() == code.intValue()) return enums[i];
}
return null;
}
}
| [
"453023604@qq.com"
] | 453023604@qq.com |
599263222695dd5ae826c41e8c8fa21bd30ba897 | 55ea243a53ccc8c0edcb02048efa71095ec2f72e | /InternetAnt/src/db/dao/EmploymentParser.java | c22af3f09dd0246942d09566a310a921bb30dbd9 | [] | no_license | caoyang5858/htmlparser | da721e1a3ed3136e214543a4a74a9c0f1aa511ee | 95ed27dafc2b39a38c78d546cad579749a9df63f | refs/heads/master | 2020-04-11T15:25:54.898625 | 2018-12-15T10:30:35 | 2018-12-15T10:30:35 | 161,891,245 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 733 | java | package db.dao;
import java.sql.ResultSet;
import java.sql.SQLException;
import db.bean.EmploymentBean;
import db.util.RowParser;
public class EmploymentParser implements RowParser{
public Object convertToModel(ResultSet rs) {
EmploymentBean emp=new EmploymentBean();
try {
emp.setNum(rs.getInt("num"));
emp.setPublish_time(rs.getString("publish_time"));
emp.setEmploy_time(rs.getString("employ_time"));
emp.setEmploy_address(rs.getString("employ_address"));
emp.setTitle(rs.getString("title"));
emp.setAbout(rs.getString("about"));
emp.setDetail(rs.getString("detail"));
emp.setLink(rs.getString("link"));
return emp;
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}
}
| [
"491109557@qq.com"
] | 491109557@qq.com |
8156a6eebdbd057417d61451a86e3caaf96e4af3 | c336378288a91efa2a2c6d669d376b9304e9a25b | /src/main/java/datasuorcetwo/datasource/entity/DeviceAirSoilLight.java | 21a7268302b1496f7b5396a829291611e9a90825 | [] | no_license | YK1099530925/datasource | ddaac19001bccfce16c455fcccdc9dabe831814e | db6c0a40600c5544e901f587c637fc1379203c9b | refs/heads/master | 2020-09-28T16:40:49.115030 | 2019-12-09T08:45:20 | 2019-12-09T08:45:20 | 226,816,955 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,166 | java | package datasuorcetwo.datasource.entity;
import org.hibernate.annotations.GenericGenerator;
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
@Entity
@Table(name = "device_air_soil_light")
public class DeviceAirSoilLight extends BaseEntity implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY, generator = "idOrGenerate")
@GenericGenerator(name = "idOrGenerate", strategy = "datasuorcetwo.datasource.entity.IdOrGenerate")
@Column(name = "Id")
private Integer id;
@Column(name = "device_nb_id")
private String deviceNbId;
@Column(name = "device_code")
private String deviceCode;
@Column(name = "name")
private String name;
@Column(name = "alarm_value_yellow")
private Double alarmValueYellow;
@Column(name = "alarm_value_orange")
private Double alarmValueOrange;
@Column(name = "alarm_value_red")
private Double alarmValueRed;
@Column(name = "status")
private Integer status;
@Column(name = "status_change_time")
private Date statusChangeTime;
@Column(name = "longitude")
private Double longitude;
@Column(name = "latitude")
private Double latitude;
@Column(name = "is_delete")
private Integer isDelete;
@Column(name = "device_type_id")
private Integer deviceTypeId;
@Column(name = "gateway_id")
private Integer gatewayId;
@Column(name = "gateway_name")
private String gatewayName;
@Column(name = "gateway_code")
private String gatewayCode;
@Column(name = "channel")
private Integer channel;
@Column(name = "access_mode")
private Byte accessMode;
@Column(name = "air_temperature_orange")
private Double airTemperatureOrange;
@Column(name = "air_temperature_yellow")
private Double airTemperatureYellow;
@Column(name = "air_temperature_red")
private Double airTemperatureRed;
@Column(name = "air_humidity_orange")
private Double airHumidityOrange;
@Column(name = "air_humidity_yellow")
private Double airHumidityYellow;
@Column(name = "air_humidity_red")
private Double airHumidityRed;
@Column(name = "soil_temperature_orange")
private Double soilTemperatureOrange;
@Column(name = "soil_temperature_yellow")
private Double soilTemperatureYellow;
@Column(name = "soil_temperature_red")
private Double soilTemperatureRed;
@Column(name = "soil_humidity_orange")
private Double soilHumidityOrange;
@Column(name = "soil_humidity_yellow")
private Double soilHumidityYellow;
@Column(name = "soil_humidity_red")
private Double soilHumidityRed;
@Column(name = "light_orange")
private Double lightOrange;
@Column(name = "light_yellow")
private Double lightYellow;
@Column(name = "light_red")
private Double lightRed;
@Column(name = "remark")
private String remark;
@Column(name = "version")
private Integer version;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDeviceNbId() {
return deviceNbId;
}
public void setDeviceNbId(String deviceNbId) {
this.deviceNbId = deviceNbId == null ? null : deviceNbId.trim();
}
public String getDeviceCode() {
return deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode == null ? null : deviceCode.trim();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public Double getAlarmValueYellow() {
return alarmValueYellow;
}
public void setAlarmValueYellow(Double alarmValueYellow) {
this.alarmValueYellow = alarmValueYellow;
}
public Double getAlarmValueOrange() {
return alarmValueOrange;
}
public void setAlarmValueOrange(Double alarmValueOrange) {
this.alarmValueOrange = alarmValueOrange;
}
public Double getAlarmValueRed() {
return alarmValueRed;
}
public void setAlarmValueRed(Double alarmValueRed) {
this.alarmValueRed = alarmValueRed;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Date getStatusChangeTime() {
return statusChangeTime;
}
public void setStatusChangeTime(Date statusChangeTime) {
this.statusChangeTime = statusChangeTime;
}
public Double getLongitude() {
return longitude;
}
public void setLongitude(Double longitude) {
this.longitude = longitude;
}
public Double getLatitude() {
return latitude;
}
public void setLatitude(Double latitude) {
this.latitude = latitude;
}
public Integer getIsDelete() {
return isDelete;
}
public void setIsDelete(Integer isDelete) {
this.isDelete = isDelete;
}
public Integer getDeviceTypeId() {
return deviceTypeId;
}
public void setDeviceTypeId(Integer deviceTypeId) {
this.deviceTypeId = deviceTypeId;
}
public Integer getGatewayId() {
return gatewayId;
}
public void setGatewayId(Integer gatewayId) {
this.gatewayId = gatewayId;
}
public String getGatewayName() {
return gatewayName;
}
public void setGatewayName(String gatewayName) {
this.gatewayName = gatewayName == null ? null : gatewayName.trim();
}
public String getGatewayCode() {
return gatewayCode;
}
public void setGatewayCode(String gatewayCode) {
this.gatewayCode = gatewayCode == null ? null : gatewayCode.trim();
}
public Integer getChannel() {
return channel;
}
public void setChannel(Integer channel) {
this.channel = channel;
}
public Byte getAccessMode() {
return accessMode;
}
public void setAccessMode(Byte accessMode) {
this.accessMode = accessMode;
}
public Double getAirTemperatureOrange() {
return airTemperatureOrange;
}
public void setAirTemperatureOrange(Double airTemperatureOrange) {
this.airTemperatureOrange = airTemperatureOrange;
}
public Double getAirTemperatureYellow() {
return airTemperatureYellow;
}
public void setAirTemperatureYellow(Double airTemperatureYellow) {
this.airTemperatureYellow = airTemperatureYellow;
}
public Double getAirTemperatureRed() {
return airTemperatureRed;
}
public void setAirTemperatureRed(Double airTemperatureRed) {
this.airTemperatureRed = airTemperatureRed;
}
public Double getAirHumidityOrange() {
return airHumidityOrange;
}
public void setAirHumidityOrange(Double airHumidityOrange) {
this.airHumidityOrange = airHumidityOrange;
}
public Double getAirHumidityYellow() {
return airHumidityYellow;
}
public void setAirHumidityYellow(Double airHumidityYellow) {
this.airHumidityYellow = airHumidityYellow;
}
public Double getAirHumidityRed() {
return airHumidityRed;
}
public void setAirHumidityRed(Double airHumidityRed) {
this.airHumidityRed = airHumidityRed;
}
public Double getSoilTemperatureOrange() {
return soilTemperatureOrange;
}
public void setSoilTemperatureOrange(Double soilTemperatureOrange) {
this.soilTemperatureOrange = soilTemperatureOrange;
}
public Double getSoilTemperatureYellow() {
return soilTemperatureYellow;
}
public void setSoilTemperatureYellow(Double soilTemperatureYellow) {
this.soilTemperatureYellow = soilTemperatureYellow;
}
public Double getSoilTemperatureRed() {
return soilTemperatureRed;
}
public void setSoilTemperatureRed(Double soilTemperatureRed) {
this.soilTemperatureRed = soilTemperatureRed;
}
public Double getSoilHumidityOrange() {
return soilHumidityOrange;
}
public void setSoilHumidityOrange(Double soilHumidityOrange) {
this.soilHumidityOrange = soilHumidityOrange;
}
public Double getSoilHumidityYellow() {
return soilHumidityYellow;
}
public void setSoilHumidityYellow(Double soilHumidityYellow) {
this.soilHumidityYellow = soilHumidityYellow;
}
public Double getSoilHumidityRed() {
return soilHumidityRed;
}
public void setSoilHumidityRed(Double soilHumidityRed) {
this.soilHumidityRed = soilHumidityRed;
}
public Double getLightOrange() {
return lightOrange;
}
public void setLightOrange(Double lightOrange) {
this.lightOrange = lightOrange;
}
public Double getLightYellow() {
return lightYellow;
}
public void setLightYellow(Double lightYellow) {
this.lightYellow = lightYellow;
}
public Double getLightRed() {
return lightRed;
}
public void setLightRed(Double lightRed) {
this.lightRed = lightRed;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark == null ? null : remark.trim();
}
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
@Override
public String toString() {
return "DeviceAirSoilLight{" +
"id=" + id +
", deviceNbId='" + deviceNbId + '\'' +
", deviceCode='" + deviceCode + '\'' +
", name='" + name + '\'' +
", status=" + status +
", statusChangeTime=" + statusChangeTime +
", isDelete=" + isDelete +
", gatewayCode='" + gatewayCode + '\'' +
", channel=" + channel +
", accessMode=" + accessMode +
", remark='" + remark + '\'' +
", version=" + version +
'}';
}
}
| [
"1099530925@qq.com"
] | 1099530925@qq.com |
e182530970a58a92cfabb916f1fcbe188f8956e4 | e8867c961e10f7651bb4152e986ef91f2826048d | /src/main/java/com/ModelExcel/Converter/Converter.java | adf3a67f08cc5d1e4fb2694f5fa854415c734781 | [] | no_license | kolyamolya/Matrix | 3302e7c7f5d3a09ccfa3cc9847d0eaa4b42b2d69 | 3576dc4cf4cd95d5b01a676ffd9c80a85c01fb08 | refs/heads/master | 2021-07-07T18:06:35.019766 | 2019-07-17T12:02:09 | 2019-07-17T12:02:09 | 193,917,739 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 947 | java | package com.ModelExcel.Converter;
import java.util.ArrayList;
import com.Matrix.ModelMonthlyReport.Row.RowForTable;
import com.ModelExcel.Cell.AbstractStringCell;
import com.ModelExcel.ExcelSheet.ExcelSheet;
import com.ModelExcel.Interface.InterfaceConvert;
public class Converter implements InterfaceConvert {
public void convert(ExcelSheet excelSheet) {
/*
* ArrayList<RowForTable> arrayRowForTables;
*
* RowForMonthlyReport rowForMonthlyReport = (RowForMonthlyReport)
* excelSheet.getRows().get(0); Column nameOrg =
* rowForMonthlyReport.getColumns().get(0); ArrayList<AbstractStringCell> column
* = nameOrg.getCells();
*/
}
private ArrayList<RowForTable> createRowForTable(ArrayList<AbstractStringCell> column) {
ArrayList<RowForTable> array = new ArrayList<RowForTable>();
for (AbstractStringCell cell : column) {
RowForTable row = new RowForTable();
array.add(row);
}
return null;
}
}
| [
"43096686+kolyamolya@users.noreply.github.com"
] | 43096686+kolyamolya@users.noreply.github.com |
d5a4eb78eddd67cbf18dc7524df12d37fe69dca4 | ff1b557eb08424065eca00228918aa99bd7084ff | /ej005_paises_WS_JavaFX/src/service/InfoPaisesServiceImpl.java | 545128bd769b69e95aa8875b08ab455708a7f29a | [] | no_license | wadajo/javaprofesionalCFTIC_V | d1ec3c0d51542b755d07264564a02924390ad7d4 | 20c67e6dc4a84f5e06311d6a60d10a718b605c6c | refs/heads/master | 2023-01-02T05:12:10.753890 | 2020-10-16T07:47:05 | 2020-10-16T07:47:05 | 300,528,658 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 530 | java | package service;
import java.util.Map;
import java.util.stream.Collectors;
import model.Pais;
import util.Utilidades;
public class InfoPaisesServiceImpl implements InfoPaisesService {
@Override
public Pais devolverPais(String nombre) {
return Utilidades.mapearAPaises()
.filter(pais->pais.getNombre().equals(nombre))
.findAny()
.orElse(null);
}
@Override
public Map<String, Pais> recuperarPaises() {
return Utilidades.mapearAPaises()
.collect(Collectors.toMap(pais->pais.getNombre(),pais->pais));
}
}
| [
"usuario@macbook-jc.home"
] | usuario@macbook-jc.home |
af3436d5d6dadc4aa219c006468238293d219982 | fc5592525f2211b8c771e82ac96ebd827a31770c | /src/Kinder.java | 97482562227b3709981d68a581f56befb30c183b | [] | no_license | Murad-Yateem/kindergarten | fd56299f8a1f11fc3d08127a9ed25a1b5fd38083 | 06fb9c7aa241907760d5971fb4cd17bb47015edb | refs/heads/master | 2020-04-25T19:10:20.989540 | 2019-02-28T00:04:57 | 2019-02-28T00:04:57 | 173,009,972 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 247 | java | import java.util.Scanner;
public class Kinder {
Scanner scanner = new Scanner(System.in);
public String name;
public int age;
public Kinder(String name, int age) {
this.name=name;
this.age=age;
}
}
| [
"moradyateembj@gmail.com"
] | moradyateembj@gmail.com |
6ffa4bda0bc041e861187f3c82635833fed6039d | ced11fd402c75ef685e72ac88910ce2b69daa2ff | /workbench/src/main/java/org/fourthline/cling/workbench/plugins/contentdirectory/impl/DetailPresenter.java | 1fb5d24b8e44e835846d37f24a369bbc383ceddb | [] | no_license | COLTRAM/cling | eeedde664de2995c56cdb1b4e0452ee3628d72f6 | 02a30774315a6f26da4a916c4ef88ce18f7d86df | refs/heads/master | 2021-01-14T14:29:04.853829 | 2014-04-02T16:16:39 | 2014-04-02T16:16:39 | 18,370,971 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 10,004 | java | /*
* Copyright (C) 2013 4th Line GmbH, Switzerland
*
* The contents of this file are subject to the terms of either the GNU
* Lesser General Public License Version 2 or later ("LGPL") or the
* Common Development and Distribution License Version 1 or later
* ("CDDL") (collectively, the "License"). You may not use this file
* except in compliance with the License. See LICENSE.txt for more
* information.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
package org.fourthline.cling.workbench.plugins.contentdirectory.impl;
import org.fourthline.cling.UpnpService;
import org.fourthline.cling.model.action.ActionInvocation;
import org.fourthline.cling.model.message.UpnpResponse;
import org.fourthline.cling.model.meta.Device;
import org.fourthline.cling.model.meta.Service;
import org.fourthline.cling.model.types.DeviceType;
import org.fourthline.cling.model.types.ServiceType;
import org.fourthline.cling.model.types.UDADeviceType;
import org.fourthline.cling.model.types.UDAServiceType;
import org.fourthline.cling.model.types.UnsignedIntegerFourBytes;
import org.fourthline.cling.support.avtransport.callback.SetAVTransportURI;
import org.fourthline.cling.support.connectionmanager.callback.GetProtocolInfo;
import org.fourthline.cling.support.model.Protocol;
import org.fourthline.cling.support.model.ProtocolInfo;
import org.fourthline.cling.support.model.ProtocolInfos;
import org.fourthline.cling.support.model.Res;
import org.fourthline.cling.support.model.container.Container;
import org.fourthline.cling.support.model.item.Item;
import org.fourthline.cling.workbench.plugins.contentdirectory.ContentDirectoryControlPoint;
import org.fourthline.cling.workbench.plugins.contentdirectory.DetailView;
import org.seamless.util.MimeType;
import javax.inject.Inject;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
* @author Christian Bauer
*/
public class DetailPresenter implements DetailView.Presenter {
public static final DeviceType SUPPORTED_MEDIA_RENDERER_TYPE = new UDADeviceType("MediaRenderer", 1);
public static final ServiceType SUPPORTED_CONNECTION_MGR_TYPE = new UDAServiceType("ConnectionManager", 1);
public static final ServiceType SUPPORTED_AV_TRANSPORT_TYPE = new UDAServiceType("AVTransport", 1);
@Inject
protected UpnpService upnpService;
protected DetailView view;
final protected Map<Device, List<ProtocolInfo>> availableRenderers = new HashMap();
@Override
public void init(DetailView view) {
this.view = view;
view.setPresenter(this);
updateMediaRenderers();
}
@Override
public void onContainerSelected(Container container) {
view.showContainer(container);
}
@Override
public void onItemSelected(Item item) {
// Whenever an item is selected, update the media renders, maybe we have new ones or old ones dropped out
updateMediaRenderers();
view.showItem(item, getAvailableRenderers());
}
@Override
public Service getMatchingAVTransportService(Device device, List<ProtocolInfo> infos, Res resource) {
final Service avTransportService =
device.findService(SUPPORTED_AV_TRANSPORT_TYPE);
return avTransportService != null && isProtocolInfoMatch(infos, resource)
? avTransportService : null;
}
@Override
public void onSendToMediaRenderer(int instanceId, Service avTransportService, String uri) {
sendToMediaRenderer(instanceId, avTransportService, uri);
}
synchronized public Map<Device, List<ProtocolInfo>> getAvailableRenderers() {
return availableRenderers;
}
synchronized protected void updateMediaRenderers() {
ContentDirectoryControlPoint.LOGGER.fine("Updating media renderers");
Collection<Device> foundMediaRenderers = upnpService.getRegistry().getDevices(SUPPORTED_MEDIA_RENDERER_TYPE);
ContentDirectoryControlPoint.LOGGER.fine(
"Mediarenderers found in local registry: " + foundMediaRenderers.size()
);
for (final Device foundMediaRenderer : foundMediaRenderers) {
// Queue a GetProtocolInfo action that will add the renderer + protocol info to the available renderer map
if (!availableRenderers.containsKey(foundMediaRenderer)) {
ContentDirectoryControlPoint.LOGGER.fine(
"New media renderer, preparing to get protocol information: " + foundMediaRenderer
);
Service connectionManager =
foundMediaRenderer.findService(SUPPORTED_CONNECTION_MGR_TYPE);
if (connectionManager == null) {
ContentDirectoryControlPoint.LOGGER.warning(
"MediaRenderer device has no ConnectionManager service: " + foundMediaRenderer
);
break;
}
GetProtocolInfo getProtocolInfoActionCallback =
new GetProtocolInfo(connectionManager) {
@Override
public void received(ActionInvocation actionInvocation,
ProtocolInfos sinkProtocolInfos,
ProtocolInfos sourceProtocolInfos) {
addMediaRendererInformation(foundMediaRenderer, sinkProtocolInfos);
}
@Override
public void failure(ActionInvocation invocation,
UpnpResponse operation,
String defaultMsg) {
addMediaRendererInformation(foundMediaRenderer, Collections.EMPTY_LIST);
updateStatusFailure(
"Error retrieving protocol info from " +
foundMediaRenderer.getDetails().getFriendlyName() + ". " + defaultMsg
);
}
};
upnpService.getControlPoint().execute(getProtocolInfoActionCallback);
}
}
// Remove renderers from the available renderers map if they are not in the registry anymore
Iterator<Map.Entry<Device, List<ProtocolInfo>>> it = availableRenderers.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<Device, List<ProtocolInfo>> currentDeviceEntry = it.next();
if (!foundMediaRenderers.contains(currentDeviceEntry.getKey())) {
it.remove();
}
}
}
synchronized void addMediaRendererInformation(Device mediaRenderer, List<ProtocolInfo> protocolInfos) {
availableRenderers.put(mediaRenderer, protocolInfos);
}
protected boolean isProtocolInfoMatch(List<ProtocolInfo> supportedProtocols, Res resource) {
ProtocolInfo resourceProtocolInfo = resource.getProtocolInfo();
if (!resourceProtocolInfo.getProtocol().equals(Protocol.HTTP_GET)) return false;
MimeType resourceMimeType;
try {
resourceMimeType = resourceProtocolInfo.getContentFormatMimeType();
} catch (IllegalArgumentException ex) {
ContentDirectoryControlPoint.LOGGER.warning(
"Illegal resource mime type: " + resourceProtocolInfo.getContentFormat()
);
return false;
}
for (ProtocolInfo supportedProtocol : supportedProtocols) {
// We currently only support HTTP-GET
if (!Protocol.HTTP_GET.equals(supportedProtocol.getProtocol())) continue;
try {
if (supportedProtocol.getContentFormatMimeType().equals(resourceMimeType)) {
return true;
} else if (supportedProtocol.getContentFormatMimeType().isCompatible(resourceMimeType)) {
return true;
}
} catch (IllegalArgumentException ex) {
ContentDirectoryControlPoint.LOGGER.warning(
"Illegal MediaRenderer supported mime type: " + supportedProtocol.getContentFormat()
);
}
}
return false;
}
protected void sendToMediaRenderer(final int instanceId, final Service avTransportService, String uri) {
SetAVTransportURI setAVTransportURIActionCallback =
new SetAVTransportURI(new UnsignedIntegerFourBytes(instanceId), avTransportService, uri) {
@Override
public void success(ActionInvocation invocation) {
updateStatus(
"Successfuly sent URI to: (Instance: " + instanceId + ") " +
avTransportService.getDevice().getDetails().getFriendlyName()
);
}
@Override
public void failure(ActionInvocation invocation,
UpnpResponse operation,
String defaultMsg) {
updateStatusFailure(
"Failed to send URI: " + defaultMsg
);
}
};
upnpService.getControlPoint().execute(setAVTransportURIActionCallback);
}
protected void updateStatus(String statusMessage) {
ContentDirectoryControlPoint.LOGGER.info(statusMessage);
}
protected void updateStatusFailure(String statusMessage) {
ContentDirectoryControlPoint.LOGGER.severe(statusMessage);
}
}
| [
"cb@4thline.com"
] | cb@4thline.com |
02f79473f075f0913b840aeeee5416650ec82ef7 | aedb21944d087f182fb718c8dbfdc74b22f1ee42 | /src/main/java/no/kristiania/yahtzee/Yahtzee.java | fd33594bacc961525d3aedcb333f34f584b8d5ed | [] | no_license | Seventh-CodeLab/College-Yatzee | 22744e11b080e897f13eddc015a5e65c32112e58 | 8dcd5cbf556605e280ff2a26e29ac8e910aa59e1 | refs/heads/master | 2020-07-13T00:53:26.632738 | 2019-08-29T21:11:53 | 2019-08-29T21:11:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,811 | java | package no.kristiania.yahtzee;
//Production File
class Yahtzee {
static int getScore(Category category, int[] rolls){
int[] dieFrequency = diceCounter(rolls); //Tracks roll results: Index 1 = Dice with 1's, etc.
switch (category){
case ONES: return dieFrequency[1];
case TWOS: return dieFrequency[2]*2;
case THREES: return dieFrequency[3]*3;
case FOURS: return dieFrequency[4]*4;
case FIVES: return dieFrequency[5]*5;
case SIXES: return dieFrequency[6]*6;
case PAIR: return findOfKind(2,dieFrequency);
case TWOPAIR: return findTwoOfKind(2,2, dieFrequency);
case THREEOFKIND: return findOfKind(3,dieFrequency);
case FOUROFKIND: return findOfKind(4,dieFrequency);
case FULLHOUSE: return findTwoOfKind(2,3, dieFrequency) > 0 ? 25 : 0;
case SMALLSTRAIGHT: return isSmallStraight(dieFrequency) ? 30 : 0;
case LARGESTRAIGHT: return isLargeStraight(dieFrequency) ? 40 : 0;
case CHANCE: return sumRolls(rolls);
case YAHTZEE: return findOfKind(5,dieFrequency) > 0 ? 50 : 0;
default:
System.err.println("Error: No category was selected");
return 0;
}
}
/* //This code block can be used to generate random rolls
static int[] rollDie(){
int[] rolls = new int[5];
for(int roll = 0; roll <= 5; roll++){
rolls[roll] = (int)(Math.random() * 6) + 1;
}
return rolls;
}
*/
//Method takes in a required amount of same roll die, if nothing is met gives 0.
private static int findOfKind(int requiredDice, int[] dieFrequency){
for(int dieValue = 6; dieValue > 0; dieValue--){
if(dieFrequency[dieValue] >= requiredDice){
return requiredDice*(dieValue);
}
}
return 0;
}
//Method takes in a required amount of same roll die TWICE, if both are not met it gives 0.
private static int findTwoOfKind(int requiredRollsA, int requiredRollsB, int[] dieCount){
for(int dieValueA = 6; dieValueA > 0; dieValueA--){
if(dieCount[dieValueA] >= requiredRollsA){
for(int dieValueB = 6; dieValueB > 0; dieValueB--){
if(dieValueB == dieValueA) continue; //Skip checking the same value
if(dieCount[dieValueB] >= requiredRollsB){
return (requiredRollsA*(dieValueA)) + (requiredRollsB*(dieValueB));
}
}
}
}
return 0;
}
//Checks if frequencies match prerequisites for a Small Straight (1,2,3,4,5);
private static boolean isSmallStraight(int[] dieFrequency){
for(int dieValue = 1; dieValue <= 5; dieValue++){
if(dieFrequency[dieValue] == 0) return false;
}
return true;
}
//Checks if frequencies match prerequisites for a Large Straight (2,3,4,5,6);
private static boolean isLargeStraight(int[] dieFrequency){
for(int dieValue = 2; dieValue <= 6; dieValue++){
if(dieFrequency[dieValue] == 0) return false;
}
return true;
}
//Summarizes Rolls: Used for chance
private static int sumRolls(int[] rolls){
int total = 0;
for(int dieValue : rolls){
total += dieValue;
}
return total;
}
//Method takes rolls and counts them, returns amount of select rolls as an array
private static int[] diceCounter(int[] rolls){
int[] dieFrequency = new int[]{0,0,0,0,0,0,0}; //PS: Index 0 is unused to reduce uncertainty
for(int dice : rolls){
dieFrequency[dice]++;
}
return dieFrequency;
}
}
| [
"SeventhDisaster@outlook.com"
] | SeventhDisaster@outlook.com |
280e5851c9d342541786778ec2bd3513ead2ae40 | cbbcead358f0c848e0c51428e18b42a2d3032829 | /WEB-INF/src/com/wisegrid/admin/expenseFactoryResult_list02.java | 2ce90963bc2953b8c2335fa90bf3dae9f0a8e362 | [] | no_license | NSAPS/nscm | f1b8c4ebcd7000d81cd1b83978ddfc5a353c5efe | f413b3c2aa8247907cb685a5daf138792fce2b8d | refs/heads/master | 2020-09-19T08:20:10.330036 | 2016-09-08T00:01:46 | 2016-09-08T00:01:46 | 66,534,395 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 30,762 | java | package com.wisegrid.admin;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.zionex.t3sinc.common.CommonUtil;
import xlib.cmc.GridData;
import xlib.cmc.OperateGridData;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Map;
import com.zionex.t3sinc.util.db.SincDatabaseUtility;
/**
*
* @author iCOMPIA CORP.
*/
//sc_11020_dailyProductionPlan_totalization01
public class expenseFactoryResult_list02 extends HttpServlet {
private static final long serialVersionUID = -419201700278107216L;
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
String sql = null;
//Map sessionMap = new HashMap();
SincDatabaseUtility databaseUtility = new SincDatabaseUtility();
public void doPost(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException {
GridData gdReq = null;
GridData gdRes = null;
System.out.println("START...");
// Encode Type; UTF-8
req.setCharacterEncoding("UTF-8");
res.setContentType("text/html;charset=UTF-8");
PrintWriter out = res.getWriter();
try {
// WISEGRID_DATA Param WiseGridG
String rawData = req.getParameter("WISEGRID_DATA");
//
gdReq = OperateGridData.parse(rawData);
//
String mode = gdReq.getParam("mode");
if (mode.equals("search")) //
gdRes = doQuery(gdReq);
else if (mode.equals("insert")) //
gdRes = doInsert(gdReq);
else if (mode.equals("update")) //
gdRes = doUpdata(gdReq);
else if (mode.equals("delete")) //
gdRes = doDelete(gdReq);
else if (mode.equals("save"))
gdRes = doSave(gdReq);
} catch (Exception e) {
gdRes = new GridData();
gdRes.setMessage("Error: " + e.getMessage());
gdRes.setStatus("false");
e.printStackTrace();
} finally {
try {
//
OperateGridData.write(gdRes, out);
} catch (Exception e) {
e.printStackTrace();
}
}
}
public GridData doQuery(GridData gdReq) throws Exception {
conn = databaseUtility.getConnection("t3sinc");
stmt = conn.createStatement();
GridData gdRes = new GridData();
int rowCount = 0;
int loopNum = 0;
String s_query = "";
String sub_query = "";
try {
gdRes = OperateGridData.cloneResponseGridData(gdReq);
//String p_plant_name = gdReq.getParam("plant_name");
String p_version = gdReq.getParam("version");
String p_res_code = gdReq.getParam("res_code");
System.out.println("!!!!!!!!!!!!!!! yongsoo !!!!!!!!!!!!!!!!!!!");
System.out.println("!!!!!!!!!!!!!!!"+p_version+"!!!!!!!!!!!!!!!!!");
System.out.println("!!!!!!!!!!!!!!!"+p_res_code+"!!!!!!!!!!!!!!!!!");
System.out.println("!!!!!!!!!!!!!!! yongsoo !!!!!!!!!!!!!!!!!!!");
String p_startDate= gdReq.getParam("startDate");
String p_endDate = gdReq.getParam("endDate");
String p_plant_id = gdReq.getParam("plant_id");
s_query+="\n /* 비율 vs. 비용기반 2차 공장할당 물량 비교 */ ";
s_query+="\n select nvl(fc.cat06,' ') as cat06, nvl(fc.cat06_name,' ') as cat06_name, nvl(fc.item_id,' ') as item_id, nvl(fc.item_name,' ') as item_name, nvl(fc.spec,' ') as spec, nvl(fc.plant_id,' ') as plant_id, nvl(fc.plant_name,' ') as plant_name, ";
s_query+="\n decode(fc.real_fix_cost,null,' ',to_char(fc.real_fix_cost,'FM999,999,999')) as real_fix_cost, decode(fc.real_chg_cost,null,' ',to_char(fc.real_chg_cost,'FM999,999,999')) as real_chg_cost, ";
s_query+="\n decode(fc.qty_by_rate,null,' ',to_char(fc.qty_by_rate,'FM999,999,999')) as qty_by_rate, decode(fc.plant_ratio_by_rate,null,' ',to_char(fc.plant_ratio_by_rate,'FM999,999,990.00')) as plant_ratio_by_rate, ";
s_query+="\n decode(fc.qty_by_cost,null,' ',to_char(fc.qty_by_cost,'FM999,999,999')) as qty_by_cost, decode(fc.plant_ratio_by_cost,null,' ',to_char(fc.plant_ratio_by_cost,'FM999,999,990.00')) as plant_ratio_by_cost, decode(fc.item_qty_gap,null,' ',to_char(fc.item_qty_gap,'FM999,999,999')) as item_qty_gap ";
s_query+="\n from fa_rate_cost_qty_comp fc ";
s_query+="\n where fc.version = '"+p_version+"' --and ls.version = '20090326.22.56' ";
s_query+="\n and fc.cat06 like '%"+p_res_code+"%' ";
s_query+="\n order by fc.cat06, fc.cat06_name, fc.item_id, fc.item_name, fc.seq ";
System.out.println(s_query);
rs = databaseUtility.executeQuery(stmt, s_query);
for( int i = 0 ; rs.next() ; i++ ) {
gdRes.getHeader("cat06" ).addValue(rs.getString(1), "");
gdRes.getHeader("cat06_name" ).addValue(rs.getString(2), "");
gdRes.getHeader("item_id" ).addValue(rs.getString(3), "");
gdRes.getHeader("item_name" ).addValue(rs.getString(4), "");
gdRes.getHeader("spec" ).addValue(rs.getString(5), "");
gdRes.getHeader("plant_id" ).addValue(rs.getString(6), "");
gdRes.getHeader("plant_name" ).addValue(rs.getString(7), "");
gdRes.getHeader("real_fix_cost" ).addValue(rs.getString(8), "");
gdRes.getHeader("real_chg_cost" ).addValue(rs.getString(9), "");
gdRes.getHeader("qty_by_rate" ).addValue(rs.getString(10), "");
gdRes.getHeader("plant_ratio_by_rate" ).addValue(rs.getString(11), "");
gdRes.getHeader("qty_by_cost" ).addValue(rs.getString(12), "");
gdRes.getHeader("plant_ratio_by_cost" ).addValue(rs.getString(13), "");
gdRes.getHeader("item_qty_gap" ).addValue(rs.getString(14), "");
}
gdRes.addParam("mode", "search");
gdRes.setMessage("");
gdRes.setStatus("true");
} catch (Exception e) {
throw e;
}
return gdRes;
}
/* */
private GridData doInsert(GridData gdReq) throws Exception {
GridData gdRes = new GridData();
int rowCount = 0;
// append StringBuffer insert_data
String insertData = "";
try {
//
rowCount = gdReq.getHeader("SEQ_NO").getRowCount();
//
String inData[][] = new String[rowCount][];
//
for (int i = 0; i < rowCount; i++) {
String Data[] = {
gdReq.getHeader("ITEM_FLAG").getComboHiddenValues()[gdReq.getHeader("ITEM_FLAG").getSelectedIndex(i)],
gdReq.getHeader("VENDOR_NAME").getValue(i),
gdReq.getHeader("ITEM_CODE").getValue(i),
gdReq.getHeader("ITEM_NAME").getValue(i),
gdReq.getHeader("SPECIFICATION").getValue(i),
gdReq.getHeader("UNIT").getComboHiddenValues()[gdReq.getHeader("UNIT").getSelectedIndex(i)],
gdReq.getHeader("PRICE").getValue(i),
gdReq.getHeader("STOCK").getValue(i) };
inData[i] = Data;
}
/*
*
*/
//
//
insertData = getSendData(inData, "C");
/*
*
*
*/
gdRes.addParam("mode", "insert");
gdRes.addParam("insert_data", insertData);
gdRes.setMessage("");
gdRes.setStatus("true");
} catch (Exception e) {
throw e;
}
return gdRes;
}
/**/
private GridData doUpdata(GridData gdReq) throws Exception {
GridData gdRes = new GridData();
int rowCount = 0;
//
String updatedata = "";
try {
//
rowCount = gdReq.getHeader("SEQ_NO").getRowCount();
//
String inData[][] = new String[rowCount][];
for (int i = 0; i < rowCount; i++) {
String Data[] = {
gdReq.getHeader("ITEM_FLAG").getComboHiddenValues()[gdReq.getHeader("ITEM_FLAG").getSelectedIndex(i)],
gdReq.getHeader("VENDOR_NAME").getValue(i),
gdReq.getHeader("ITEM_CODE").getValue(i),
gdReq.getHeader("ITEM_NAME").getValue(i),
gdReq.getHeader("SPECIFICATION").getValue(i),
gdReq.getHeader("UNIT").getComboHiddenValues()[gdReq.getHeader("UNIT").getSelectedIndex(i)],
gdReq.getHeader("PRICE").getValue(i),
gdReq.getHeader("STOCK").getValue(i) };
inData[i] = Data;
}
/*
*
*/
//
//
updatedata = getSendData(inData, "U");
/*
*
*
*/
gdRes.addParam("mode", "update");
gdRes.addParam("update_data", updatedata);
gdRes.setMessage("");
gdRes.setStatus("true");
} catch (Exception e) {
throw e;
}
return gdRes;
}
/* */
private GridData doDelete(GridData gdReq) throws Exception {
GridData gdRes = new GridData();
int rowCount = 0;
//
String deleteData = "";
try {
rowCount = gdReq.getHeader("SEQ_NO").getRowCount();
String inData[] = new String[rowCount];
/*
*
*/
//
//
deleteData = getSendData2(inData);
/*
*
*
*/
gdRes.addParam("mode", "delete");
gdRes.addParam("delete_data", deleteData);
gdRes.setMessage("");
gdRes.setStatus("true");
} catch (Exception e) {
throw e;
}
return gdRes;
}
private String getSendData(String[][] sendData, String flag) {
StringBuffer sbData = new StringBuffer();
for(int i = 0; i < sendData.length; i++) {
String[] rowData = (String[])sendData[i];
for(int j = 0; j < rowData.length; j++)
sbData.append("[" + rowData[j] + "]");
sbData.append("\n");
}
if(flag.equals("C"))
sbData.append(sendData.length + "\n");
else if(flag.equals("U"))
sbData.append(sendData.length + "\n");
return sbData.toString();
}
private String getSendData2(String[] sendData) {
StringBuffer sbData = new StringBuffer();
sbData.append(sendData.length + "\n");
return sbData.toString();
}
public GridData doSave(GridData gdReq) throws Exception {
conn = databaseUtility.getConnection("t3sinc");
stmt = conn.createStatement();
String message = null;
GridData gdRes = new GridData();
int rowCount = 0;
String merge = "";
String sq = "";
String delete = "";
String plant = "";
String line_id = "";
String proc_id = "";
String from_group = "";
String to_group = "";
String jc_time = "";
String box_qty = "";
String rsget = null;
String user_id = gdReq.getParam("_user_id");
try {
//화면에서 전달받은 "CRUD"의 row 수를 가져온다.
rowCount = gdReq.getHeader("CRUD").getRowCount();
System.out.println("---------------------------------------------------------");
System.out.println("rowCount:"+rowCount);
if( rowCount >= 1)
{
for (int i=0; i<rowCount ;i++)
{
plant = gdReq.getHeader("PLANT" ).getValue(i);
line_id = gdReq.getHeader("LINE_ID" ).getValue(i);
proc_id = gdReq.getHeader("PROC_ID" ).getValue(i);
from_group = gdReq.getHeader("FROM_GROUP").getValue(i);
to_group = gdReq.getHeader("TO_GROUP" ).getValue(i);
jc_time = gdReq.getHeader("JC_TIME" ).getValue(i);
box_qty = gdReq.getHeader("BOX_QTY" ).getValue(i);
if(i>0)
sq += "\n union all ";
sq += "\n select ";
sq += "\n '"+plant +"' as PLANT ";
sq += "\n ,'"+line_id +"' as LINE_ID ";
sq += "\n ,'"+proc_id +"' as PROC_ID ";
sq += "\n ,'"+from_group+"' as FROM_GROUP ";
sq += "\n ,'"+to_group +"' as TO_GROUP ";
sq += "\n ,'"+jc_time +"' as JC_TIME ";
sq += "\n ,'"+box_qty +"' as BOX_QTY ";
sq += "\n from dual ";
}
merge += "\n merge into JC_TIME_TEST JCT ";
merge += "\n using ( ";
merge += "\n select LST.PLANT ";
merge += "\n ,LST.LINE_ID ";
merge += "\n ,LST.PROC_ID ";
merge += "\n ,LST.FROM_GROUP ";
merge += "\n ,LST.TO_GROUP ";
merge += "\n ,LST.JC_TIME ";
merge += "\n ,LST.BOX_QTY ";
merge += "\n ------------------------ ";
merge += "\n ,MST.PLANT_NM ";
merge += "\n ,MST.LINE_NM ";
merge += "\n ,MST.PROC_NM ";
merge += "\n ------------------------ ";
merge += "\n ,case when LST.FROM_GROUP='ALL' then '전체' else FITM.ITEM_NAME end as FROM_GROUP_NM ";
merge += "\n ,case when LST.TO_GROUP='ALL' then '전체' else TITM.ITEM_NAME end as TO_GROUP_NM ";
merge += "\n from ( ";
merge += sq;
merge += "\n ) LST ";
merge += "\n ------------------------------------------------------------------------ ";
merge += "\n --공장명, 라인명, 라인명을 가져온다. ";
merge += "\n left outer join ";
merge += "\n ( ";
merge += "\n select distinct PLANT ,PLANT_NM ,LINE_ID ,LINE_NM ,PROC_ID ,PROC_NM ";
merge += "\n from JC_TIME_TEST_MST ";
merge += "\n ) MST ";
merge += "\n on MST.PLANT = LST.PLANT ";
merge += "\n and MST.LINE_ID = LST.LINE_ID ";
merge += "\n and MST.PROC_ID = LST.PROC_ID ";
merge += "\n ------------------------------------------------------------------------ ";
merge += "\n --From 아이템명 ";
merge += "\n left outer join ";
merge += "\n ( ";
merge += "\n select distinct RECIPE_TYPE ,ITEM_NAME from JC_TIME_TEST_MST ";
merge += "\n ) FITM ";
merge += "\n on FITM.RECIPE_TYPE = LST.FROM_GROUP ";
merge += "\n ------------------------------------------------------------------------ ";
merge += "\n --TO 아이템명 ";
merge += "\n left outer join ";
merge += "\n ( ";
merge += "\n select distinct RECIPE_TYPE ,ITEM_NAME from JC_TIME_TEST_MST ";
merge += "\n ) TITM ";
merge += "\n on TITM.RECIPE_TYPE = LST.TO_GROUP ";
merge += "\n ) LST ";
merge += "\n on ( ";
merge += "\n JCT.PLANT = LST.PLANT ";
merge += "\n and JCT.LINE_ID = LST.LINE_ID ";
merge += "\n and JCT.PROC_ID = LST.PROC_ID ";
merge += "\n and JCT.FROM_GROUP = LST.FROM_GROUP ";
merge += "\n and JCT.TO_GROUP = LST.TO_GROUP ";
merge += "\n ) when matched then ";
merge += "\n update ";
merge += "\n set JCT.JC_TIME = LST.JC_TIME ";
merge += "\n ,JCT.BOX_QTY = LST.BOX_QTY ";
merge += "\n ,JCT.MADE_DTTM = SYSDATE ";
merge += "\n ,JCT.MADE_BY = '"+user_id+"' ";
merge += "\n when not matched then ";
merge += "\n insert ";
merge += "\n (JCT.PLANT, JCT.PLANT_NM, JCT.LINE_ID, JCT.LINE_NM, JCT.PROC_ID, JCT.PROC_NM, JCT.FROM_GROUP, JCT.FROM_GROUP_NM, JCT.TO_GROUP, JCT.TO_GROUP_NM, JCT.JC_TIME, JCT.BOX_QTY ,JCT.MADE_DTTM ,JCT.MADE_BY) ";
merge += "\n values ";
merge += "\n (LST.PLANT, LST.PLANT_NM, LST.LINE_ID, LST.LINE_NM, LST.PROC_ID, LST.PROC_NM, LST.FROM_GROUP, LST.FROM_GROUP_NM, LST.TO_GROUP, LST.TO_GROUP_NM, LST.JC_TIME, LST.BOX_QTY ,SYSDATE ,'"+user_id+"') ";
System.out.println(merge);
rs = databaseUtility.executeQuery(stmt, merge);
delete = "delete from JC_TIME_TEST where nvl(JC_TIME,0)=0 and nvl(BOX_QTY,0)=0";
System.out.println(delete);
rs = databaseUtility.executeQuery(stmt, delete);
}
/*
//데이터 셋팅
for (int i = 0; i < rowCount; i++) {
//화면에서 전달받은 "CRUD"의 HiddenValue를 가져온다.
String crud = gdReq.getHeader("CRUD").getHiddenValue(i);
if (crud.equals("C")) {
System.out.println("인설트!!! 행을 생성하여 저장!!");
String paramKey = "";
String paramCode = "";
String query_id = "group_list_insert";
try {
//
rowCount = gdReq.getHeader("GROUP_ID").getRowCount();
paramKey = "GROUP_ID!%!GROUP_NAME";
paramCode = gdReq.getHeader("GROUP_ID").getValue(i)+"!%!";
paramCode = paramCode + gdReq.getHeader("GROUP_NAME").getValue(i);
//다중 추가시 문제 해결 부분 쿼리에서 에러 안나오게 하기위해 추가함.
String sql= "";
sql = "select GROUP_ID from REG_GROUP where GROUP_ID = '";
sql = sql + gdReq.getHeader("GROUP_ID").getValue(i)+ "'";
rs = databaseUtility.executeQuery(stmt, sql);
if( rs.next() == false ){
new CommonUtil().executeQuery(paramKey,paramCode,query_id);
}else{
System.out.println("값있음,,,;;");
}
//다중추가 문제 끝.
//new CommonUtil().executeQuery(paramKey,paramCode,query_id);
}catch (Exception e) {
throw e;
}
} else if (crud.equals("U")) {
System.out.println("업데이트!! 수정한값을 저장!!!!!");
String paramKey = "";
String paramCode = "";
String query_id = "group_list_update";
try {
//
rowCount = gdReq.getHeader("GROUP_ID").getRowCount();
paramKey = "GROUP_ID!%!GROUP_NAME";
paramCode = gdReq.getHeader("GROUP_ID").getValue(i)+"!%!";
paramCode = paramCode + gdReq.getHeader("GROUP_NAME").getValue(i);
new CommonUtil().executeQuery(paramKey,paramCode,query_id);
}catch (Exception e) {
throw e;
}
} else if (crud.equals("D")) {
System.out.println("삭제!! 선택한값을 삭제함!!!!!");
String paramKey = "";
String paramCode = "";
String query_id = "group_list_delete";
try {
//
rowCount = gdReq.getHeader("GROUP_ID").getRowCount();
paramKey = "GROUP_ID";
paramCode = gdReq.getHeader("GROUP_ID").getValue(i);
new CommonUtil().executeQuery(paramKey,paramCode,query_id);
}catch (Exception e) {
throw e;
}
}
}
*/
/*
* 생성된 3개의 자료구조를 DataBase에 넘겨 처리한다.
*/
// 이 예제는 통합통신의 동작을 확인하기 위한 샘플이므로
// 만들어진 데이터를 화면의 fieldset으로 보내 정상적으로 통신이 이루어졌는지 확인한다.
//String returnData = getSendData(createDataList, "C");
//returnData += getSendData(updateDataList, "U");
//returnData += getSendData(deleteDataList, "D");
/* 화면에 전달할 파라미터를 설정한다.
* 메세지를 셋팅한다.
* Status를 설정한다
*/
gdRes.addParam("mode", "save");
//gdRes.addParam("saveData", returnData);
gdRes.setMessage("성공적으로 작업하였습니다.");
gdRes.setStatus("true");
} catch (Exception e) {
throw e;
}
return gdRes;
}
} | [
"nuy@nongshim.co.kr"
] | nuy@nongshim.co.kr |
8669a76bef4b2d9a949d124b176411fea4ea88ba | f2393ab072484e729a6f346399056ca5f43372fa | /SpringCloudTutorials/SpringCloudConfig/src/main/java/com/spring/cloud/config/SpringCloudConfig/SpringCloudConfigApplication.java | f2f4a3e0dac3fe9a36987a53207e258334a0e0bd | [] | no_license | gowthamshankar99/LetsDebugTech | 735ed2c90db68b681aeeed8461b3b7479c966e05 | 697d0fbb2b1be3de928f6f8b0f90e6628200d2f6 | refs/heads/master | 2023-03-23T21:30:23.302628 | 2020-09-19T14:18:52 | 2020-09-19T14:18:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 443 | java | package com.spring.cloud.config.SpringCloudConfig;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class SpringCloudConfigApplication {
public static void main(String[] args) {
SpringApplication.run(SpringCloudConfigApplication.class, args);
}
}
| [
"noreply@github.com"
] | gowthamshankar99.noreply@github.com |
059b6fde35a1bb8797c39e9ea3fa248b856c8e5f | 0ade87cbff61dbf518c21d8f4b6659a56c2fc59d | /src/com/test/level38/lesson06/task01/Solution.java | 08041d9f5f07995030f5ec6405527dff2d358e71 | [] | no_license | KashkanVlad/JRHW | 1b47fb563e15c17aef0640c6fbb7b1466476ed0b | ced081ba7b59c685dc299cbfb416081acd81bbdf | refs/heads/master | 2021-07-12T04:51:44.629029 | 2017-10-15T23:22:27 | 2017-10-15T23:22:27 | 107,056,246 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,217 | java | package com.test.level38.lesson06.task01;
/* Улучшения в Java 7 (try-with-resources)
Перепиши реализации методов класса Solution.
Используй нововведения, касающиеся обработки исключений, которые были добавлены в Java 7.
*/
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
public class Solution {
public void printFile1() throws IOException {
try (FileInputStream fileInputStream = new FileInputStream("file.txt")){
int data = fileInputStream.read();
while (data != -1) {
System.out.println(data);
data = fileInputStream.read();
}
}
}
public void printFile2() throws IOException {
try (FileInputStream fileInputStream = new FileInputStream("file.txt"); BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream)){
int data = bufferedInputStream.read();
while (data != -1) {
System.out.println(data);
data = bufferedInputStream.read();
}
}
}
} | [
"vladislav.kashkan.primary@gmail.com"
] | vladislav.kashkan.primary@gmail.com |
ae5d0539b441fe946e588e6ffd0a13843c09a574 | 009b1ebd0abc2bfb5bc6abaa6fc1e373ecdb28d9 | /deprecated/src/androidTest/java/com/dianshang/deprecated/ExampleInstrumentedTest.java | 376b2630b220cf272ff04a39b1a2bf0b92e16753 | [] | no_license | MumuGit/MU | 5b702270cf7ac8b030342db3ba6016eddd609642 | 67a695cd58b4cb29623dc4d928e2e3ad491eb61c | refs/heads/master | 2021-01-15T14:19:21.704967 | 2018-11-14T08:24:38 | 2018-11-14T08:24:38 | 99,685,507 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 732 | java | package com.dianshang.deprecated;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.dianshang.deprecated", appContext.getPackageName());
}
}
| [
"765879176@qq.com"
] | 765879176@qq.com |
7da23b3380367e02a1283d13a063d898a123f953 | 12aecb08e6469378ad8695321976f66360801a4d | /Project/Code/src/matrix/IllegalDimensionException.java | 29bb19a39dea3211990f53afacbdd040a9afed1e | [] | no_license | zhongshuiyuan/BackPropagation | e7b3850d3e6ce522ac5727bd958d351e69c98351 | f1f77064b68ded7ad4c7a31a1a894f7270069c93 | refs/heads/master | 2020-12-25T05:43:56.469573 | 2015-03-28T20:58:56 | 2015-03-28T20:58:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 309 | java | package matrix;
public class IllegalDimensionException extends Exception {
public IllegalDimensionException() {
super();
// TODO Auto-generated constructor stub
}
public IllegalDimensionException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
}
| [
"chelinoska@gmail.com"
] | chelinoska@gmail.com |
de88f42f047561d72486553cacca072c56805aa2 | 5fced5809fced7b4e87f2aaec8ace288ebc08e89 | /src/Players/NegamaxABPlayer.java | e79d7f393fde484851c357a238bd537639e145be | [] | no_license | cpetry/ChiniMess | eb4d9bcdce5c52edc96b5617aaeed90ae2edb5ce | 50ed75e563af4acf70fa1d57c0672e9d8c38c736 | refs/heads/master | 2021-01-15T23:45:40.425879 | 2013-04-26T12:46:33 | 2013-04-26T12:46:33 | 9,595,250 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,404 | java | package Players;
import java.sql.Time;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.TreeSet;
import ChiniMess.Board;
import ChiniMess.GameStatus;
import ChiniMess.Move;
import Figures.Figure;
import Figures.Pawn;
import Figures.Queen;
public class NegamaxABPlayer extends NegamaxPlayer{
long start_time, maximum_time, time_spent;
int start_depth;
int time_counter;
int best_value;
boolean timeover;
boolean playerOnTurn;
public NegamaxABPlayer(int maximum_time){
this.maximum_time = maximum_time;
}
public Move chooseMove(Board b) {
this.playerOnTurn = b.getPlayerOnTurn();
//System.out.println(this.playerOnTurn);
this.time_counter = 0;
this.timeover = false;
this.start_time = System.currentTimeMillis();
this.start_depth = 2;
this.best_value = -this.INF;
ArrayList<Move> moves = b.genMoves();
Move m = moves.get(0);
while(true){
Board negamaxboard = new Board(b);
Move m_test = best_move(negamaxboard, start_depth);
if (this.timeover)
return m;
if (m_test != null)
m = m_test;
start_depth++;
}
}
private int negamax(Board state, int depth, int alpha, int beta){
GameStatus game_status = state.gameOver();
if (depth == 0){
return state.calculateScore();
}
if (game_status != GameStatus.GAME_RUNNING){
if ((game_status == GameStatus.GAME_BLACKWINS && this.playerOnTurn == Board.BLACK)
|| (game_status == GameStatus.GAME_WHITEWINS && this.playerOnTurn == Board.WHITE)){
return state.calculateScore() + 100 - (this.start_depth - depth);
}
else if ((game_status == GameStatus.GAME_BLACKWINS && this.playerOnTurn == Board.WHITE)
|| (game_status == GameStatus.GAME_WHITEWINS && this.playerOnTurn == Board.BLACK)){
return state.calculateScore() + 100 - (this.start_depth - depth);
}
else
return state.calculateScore() + 100 - (this.start_depth - depth);
}
int v = -this.INF;
ArrayList<Move> moves = state.genMoves();
for (Move m : moves){
this.time_counter++;
if (this.time_counter > 100){
//System.out.println("time counter");
this.time_counter = 0;
this.time_spent = System.currentTimeMillis() - start_time;
//System.out.println(time_spent);
if (this.time_spent > this.maximum_time){
//System.out.println("Time over!");
this.timeover = true;
return v;
}
}
Figure thrownFigure = null;
boolean pawn_transformed = false;
//state = this.do__move(state, m, thrownFigure, pawn_transformed);
// do
/////////
thrownFigure = state.getFigureFromField(m.getTo());
Figure movingFigure = state.getFigureFromField(m.getFrom());
state.executeMove(m);
Figure movedFigure = state.getFigureFromField(m.getTo());
if (movingFigure instanceof Pawn && movedFigure instanceof Queen) // Pawn changed into Queen
pawn_transformed = true;
else
pawn_transformed = false;
///////////////
int v0 = Math.max(v, -negamax(state, depth-1, -beta, -alpha));
//state = this.undo__move(state, m, thrownFigure, pawn_transformed);
// undo
///////////////
Move move = new Move(m.getTo(), m.getFrom());
state.executeMove(move);
if (pawn_transformed)
state.setFigureToField(m.getFrom(), new Pawn(state.getFigureFromField(m.getFrom()).getColor()));
if (state.getPlayerOnTurn() == Board.BLACK)
state.setMoveNumber(state.getMoveNumber() - 1);
state.setFigureToField(m.getTo(), thrownFigure);
///////////////
v = Math.max(v0 , v);
if (this.timeover)
return v;
if (v >= beta){
return v;
}
}
return v;
}
private Move best_move(Board state, int depth){
Board start_board = new Board (state);
ArrayList<Move> moves = state.genMoves();
Move m0 = null;
for (Move m : moves){
Figure thrownFigure = null;
boolean pawn_transformed = false;
//start_board = this.do__move(start_board, m, thrownFigure, pawn_transformed);
// do
/////////
thrownFigure = start_board.getFigureFromField(m.getTo());
Figure movingFigure = start_board.getFigureFromField(m.getFrom());
start_board.executeMove(m);
start_board.setTurn(!start_board.getPlayerOnTurn());
Figure movedFigure = start_board.getFigureFromField(m.getTo());
if (movingFigure instanceof Pawn && movedFigure instanceof Queen) // Pawn changed into Queen
pawn_transformed = true;
else
pawn_transformed = false;
///////////////
int v0 = -this.INF;
//System.out.println(this.playerOnTurn);
GameStatus status = start_board.gameOver();
if (status != GameStatus.GAME_RUNNING){
if ((status == GameStatus.GAME_BLACKWINS && this.playerOnTurn == Board.BLACK)
|| (status == GameStatus.GAME_WHITEWINS && this.playerOnTurn == Board.WHITE)){
v0 = start_board.calculateScore() + 100;
//System.out.println(v0);
}
else if ((status == GameStatus.GAME_BLACKWINS && this.playerOnTurn == Board.WHITE)
|| (status == GameStatus.GAME_WHITEWINS && this.playerOnTurn == Board.BLACK)){
v0 = start_board.calculateScore() + 100;
//System.out.println(v0);
}
else{
//System.out.println( "DRAW!");
v0 = start_board.calculateScore();
}
}
else
v0 = -negamax(start_board, depth-1, -this.INF, this.INF);
//start_board = this.undo__move(start_board, m, thrownFigure, pawn_transformed);
// undo
///////////////
Move move = new Move(m.getTo(), m.getFrom());
start_board.executeMove(move);
if (pawn_transformed)
start_board.setFigureToField(m.getFrom(), new Pawn(start_board.getFigureFromField(m.getFrom()).getColor()));
if (start_board.getPlayerOnTurn() == Board.BLACK)
start_board.setMoveNumber(state.getMoveNumber() - 1);
start_board.setFigureToField(m.getTo(), thrownFigure);
start_board.setTurn(!start_board.getPlayerOnTurn());
///////////////
if (v0 > this.best_value){
this.best_value = v0;
//if (this.move_depth <= this.end_depth){
// end_depth = move_depth;
m0 = m;
//System.out.println("BestMove: " + m0 + " Points: " + v0);
//}
}
this.time_counter++;
if (this.time_counter > 100){
//System.out.println("time counter");
this.time_counter = 0;
this.time_spent = System.currentTimeMillis() - start_time;
//System.out.println(time_spent);
if (this.time_spent > this.maximum_time){
//System.out.println("Time over!");
this.timeover = true;
}
}
if (this.timeover)
return null;
}
return m0;
}
}
| [
"petry2christian@gmail.com"
] | petry2christian@gmail.com |
98cfa618dfdc074415ed399627ba92b7f73675ee | 81104c146422de7d9b795e2c79fba6ac9bc38aea | /appserver/downstream/Server/config/java/invoiceeform/CatValidateInvoice.java | 2f4bffb9b569083222f69eb60080b9222def7452 | [] | no_license | skishukmr/Masterfiles | 7b92c7d1fdc53abd3b8d48f9a1fe7f48e7d9d108 | 544b5c0e866489a45e266f19bf42715cc392e6cd | refs/heads/master | 2020-04-26T18:40:31.792251 | 2014-03-11T19:26:24 | 2014-03-11T19:26:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,307 | java | /*
Author: Nani Venkatesan (Ariba Inc.)
Date; 5/29/2005
Purpose: The purpose of this class is to prevent entering a duplicate invoice.
*/
package config.java.invoiceeform;
import ariba.base.core.Base;
import ariba.base.core.BaseId;
import ariba.base.core.ClusterRoot;
import ariba.base.core.aql.AQLOptions;
import ariba.base.core.aql.AQLQuery;
import ariba.base.core.aql.AQLResultCollection;
import ariba.base.core.aql.AQLScalarExpression;
import ariba.base.fields.Condition;
import ariba.base.fields.ConditionResult;
import ariba.base.fields.ValueInfo;
import ariba.common.core.Supplier;
import ariba.util.core.Fmt;
import ariba.util.core.PropertyTable;
import ariba.util.core.StringUtil;
import ariba.util.core.SystemUtil;
public class CatValidateInvoice extends Condition
{
private static final ValueInfo valueInfo = new ValueInfo(0);
private static ValueInfo parameterInfo[] = {
new ValueInfo("Invoice",
0,
"config.java.invoiceeform.InvoiceEform")
};
private static final String requiredParameterNames[] = {
"Invoice"
};
private static final String ComponentStringTable = "aml.InvoiceEform";
private static final String StringTable = "ariba.common.core.condition";
private static final String ErrorMsgKey = "DuplicateInvoice";
public boolean evaluate (Object value, PropertyTable params)
{
return evaluateImpl(value, params);
}
public ConditionResult evaluateAndExplain (Object value, PropertyTable params)
{
boolean isValid = evaluate(value, params);
if (isValid) {
return null;
}
else {
return new ConditionResult(Fmt.Sil(ComponentStringTable,
"DuplicateInvoice",
subjectForMessages(params)));
}
}
private boolean evaluateImpl (Object value, PropertyTable params)
{
ClusterRoot invoice = (ClusterRoot)params.getPropertyForKey("Invoice");
Supplier supplier = (Supplier)invoice.getFieldValue("Supplier");
String number = (String)invoice.getFieldValue("InvoiceNumber");
// Just return OK if supplier or number not set yet
if (supplier == null ||
StringUtil.nullOrEmptyOrBlankString(number)) {
return true;
}
//return true if it is already approved
String status = (String) invoice.getDottedFieldValue("StatusString");
if (status != null && status.equals("Approved")) {
return true;
}
if (number != null) {
number = number.toUpperCase();
}
// Setup the query to search for an invoice with same supplier and number
AQLQuery query = AQLQuery.parseQuery(
Fmt.S("SELECT Invoice " +
"FROM ariba.invoicing.core.Invoice " +
"WHERE Supplier = %s " +
"AND UPPER(InvoiceNumber) = '%s'",
AQLScalarExpression.buildLiteral(supplier).toString(),
number));
// Execute the query
AQLOptions options = new AQLOptions(Base.getSession().getPartition());
AQLResultCollection results = Base.getService().executeQuery(query,options);
// If matching invoice found, check if it is actually this one
boolean valid = true;
while (results.next()) {
BaseId baseId = results.getBaseId(0);
// If not equal, the another one already exists, so return false
if (!SystemUtil.equal(baseId, invoice.getBaseId())) {
valid = false;
break;
}
}
return valid;
}
/**
Returns the valueInfo
*/
public ValueInfo getValueInfo ()
{
return valueInfo;
}
/**
Returns the valid parameter types
*/
public ValueInfo[] getParameterInfo ()
{
return parameterInfo;
}
/**
Returns required parameter names for the class
*/
public String[] getRequiredParameterNames ()
{
return requiredParameterNames;
}
}
| [
"Dec11@test.com"
] | Dec11@test.com |
1aadcf92b46188172b04c0666f59fc269aeb43dd | c6f5403e24aac11826bb24cdd078bf2d37b23f63 | /app/src/main/java/com/personal/recyclerview/MainActivity.java | c2d6d08254c0dcd5edaa06dae6350861a7410c77 | [] | no_license | Avinash696/RecyclerViewRecap | ccd2833249eb460f2ff332513520cb532ff109d9 | 0e580f3e11a26474e02e26873a29b8332f532834 | refs/heads/master | 2023-05-13T14:08:53.979894 | 2021-06-03T15:27:30 | 2021-06-03T15:27:30 | 373,555,341 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 925 | java | package com.personal.recyclerview;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import androidx.recyclerview.widget.RecyclerView.Adapter;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
RecyclerView rv;
String arr[]={"AVi","jj","kk","dd","vv","cc"};
int img[] ={R.drawable.dice_1,R.drawable.dice_2,R.drawable.dice_3,
R.drawable.dice_4,R.drawable.dice_5,R.drawable.dice_6};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();
rv.setLayoutManager(new LinearLayoutManager(this));
AdapterRec adapterRec=new AdapterRec(arr,img,this);
rv.setAdapter(adapterRec);
}
void init(){
rv=findViewById(R.id.rv);
}
} | [
"arawatrawat696@gmail.com"
] | arawatrawat696@gmail.com |
2820b5de97f72a571467bdf868a551ac3f8c53ed | 885d6eb27db8dbfa9d349547c6195deae07f656b | /birds/src/main/java/com/zy/birds/activity/WcontentActivity.java | f7b59f8afe85878a1ac27e3b15d058a1f2740585 | [] | no_license | WinnieZy/Birds | 6363d15bfc3e8271b7b21b1baefaca7d85799681 | 612c907197e33ec62e7d70588a250e10643bb325 | refs/heads/master | 2021-01-25T06:55:19.494889 | 2017-06-07T14:54:35 | 2017-06-07T14:54:35 | 93,621,726 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,126 | java | package com.zy.birds.activity;
import com.zy.birds.R;
import com.zy.birds.Model.BirdsDB;
import com.zy.birds.Model.Weekly;
import com.zy.birds.util.ImageUtil;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Window;
import android.widget.ImageView;
import android.widget.TextView;
/*
* weekly详情页,显示该week推文
*/
public class WcontentActivity extends Activity {
public ImageView iv_wcontent;
public TextView tv_wcontent;
public Weekly weekly;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_wcontent);
iv_wcontent = (ImageView) findViewById(R.id.iv_wcontent);
tv_wcontent = (TextView) findViewById(R.id.tv_wcontent);
Intent intent = getIntent();
String week = intent.getStringExtra("week");
weekly = BirdsDB.getInstance(this).queryWeeklyByWeek(week);
ImageUtil.loadBitmap(weekly.getWimage(), iv_wcontent);
tv_wcontent.setText(weekly.getWcontent());
}
}
| [
"897531071@qq.com"
] | 897531071@qq.com |
4f1503a7b1f452d8692fb4ed025e793918df7d1c | 9c01b44ca250879f5834c2bb9093b9a57507f502 | /GwtTest/src/com/rbevans/server/GreetingServiceImpl.java | 9b744655a619c881a25e4c696a93014f0cbf4334 | [] | no_license | manuelsantiengineering/EN605_681 | eade10d87261d4e30016f72692d254a407354dd5 | f7bd16cf350a6ef7462a794764a884e3d9fc3adb | refs/heads/master | 2020-09-07T18:46:13.923968 | 2019-11-16T22:11:42 | 2019-11-16T22:11:42 | 209,183,529 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,295 | java | package com.rbevans.server;
import com.rbevans.client.GreetingService;
import com.rbevans.shared.FieldVerifier;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.text.DateFormatter;
/**
* The server-side implementation of the RPC service.
*/
@SuppressWarnings("serial")
public class GreetingServiceImpl extends RemoteServiceServlet implements GreetingService {
DateFormatter formatter = new DateFormatter(new SimpleDateFormat("EEE, MMM d, yyyy"));
public String greetServer(String input, boolean isStaff, Date birthday) throws IllegalArgumentException {
// Verify that the input is valid.
if (!FieldVerifier.isValidName(input)) {
// If the input is not valid, throw an IllegalArgumentException back to
// the client.
throw new IllegalArgumentException(
"You must provide a name");
}
if (birthday == null) {
throw new IllegalArgumentException(
"You must provide a birthday");
}
String preface = "Instructor ";
if (!isStaff) {
preface = "Student ";
}
return "Hello, " + preface + input + "!<br>" +
"I hope you have a nice birthday on " + DateFormat.getDateInstance(DateFormat.MEDIUM).format(birthday) +
"<br>";
}
}
| [
"manuelsantiengineering@gmail.com"
] | manuelsantiengineering@gmail.com |
6b09cdf61d77d2c002926b15043571af830246cc | c2efa8f7e0e9ee7983a28456576bac06401029cd | /msg/src/main/java/com/msg/exception/MessageSendException.java | 1cfa5f7d7a323f87db112312f7532a3c4aa55cd4 | [] | no_license | kotori0815/message | 63b0ce79afbaca705b4d7675265e69790733749b | 14a6f04a320bbd35b1b8edce36a08f4cddc8227c | refs/heads/master | 2021-04-09T15:51:13.549266 | 2018-08-29T09:50:49 | 2018-08-29T09:50:49 | 125,589,680 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,652 | java | package com.msg.exception;
/**
* Created by wd on 2017/10/26.
*/
public class MessageSendException extends RuntimeException{
private static final long serialVersionUID = 1L;
/**
* 错误编码
*/
private String errorCode;
/**
* 消息是否为属性文件中的Key
*/
private boolean propertiesKey = true;
/**
* 构造一个基本异常.
*
* @param message
* 信息描述
*/
public MessageSendException(String message)
{
super(message);
}
/**
* 构造一个基本异常.
*
* @param errorCode
* 错误编码
* @param message
* 信息描述
*/
public MessageSendException(String errorCode, String message)
{
this(errorCode, message, true);
}
/**
* 构造一个基本异常.
*
* @param errorCode
* 错误编码
* @param message
* 信息描述
*/
public MessageSendException(String errorCode, String message, Throwable cause)
{
this(errorCode, message, cause, true);
}
/**
* 构造一个基本异常.
*
* @param errorCode
* 错误编码
* @param message
* 信息描述
* @param propertiesKey
* 消息是否为属性文件中的Key
*/
public MessageSendException(String errorCode, String message, boolean propertiesKey)
{
super(message);
this.setErrorCode(errorCode);
this.setPropertiesKey(propertiesKey);
}
/**
* 构造一个基本异常.
*
* @param errorCode
* 错误编码
* @param message
* 信息描述
*/
public MessageSendException(String errorCode, String message, Throwable cause, boolean propertiesKey)
{
super(message, cause);
this.setErrorCode(errorCode);
this.setPropertiesKey(propertiesKey);
}
/**
* 构造一个基本异常.
*
* @param message
* 信息描述
* @param cause
* 根异常类(可以存入任何异常)
*/
public MessageSendException(String message, Throwable cause)
{
super(message, cause);
}
public String getErrorCode()
{
return errorCode;
}
public void setErrorCode(String errorCode)
{
this.errorCode = errorCode;
}
public boolean isPropertiesKey()
{
return propertiesKey;
}
public void setPropertiesKey(boolean propertiesKey)
{
this.propertiesKey = propertiesKey;
}
}
| [
"monokumo@163.com"
] | monokumo@163.com |
4158c3f17fc85e5eb9a8c99f0164a69918924743 | 4385a4ad80fcb65a5990cefdae7da468079b8529 | /ql/src/java/org/apache/hadoop/hive/ql/security/authorization/plugin/metastore/events/LoadPartitionDoneEvent.java | aded0e94ef1f64fdfc8c0011fa046af9b98c98bc | [
"Apache-2.0",
"JSON",
"BSD-3-Clause",
"Python-2.0",
"MIT",
"GPL-1.0-or-later",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | LadyForest/hive | f47f5bd185478a66d2b45d5efd8af32d0d32f5ac | 95e76f0bd65e9c7f48252d5c4777ca5ab2a66c3b | refs/heads/master | 2022-12-23T01:25:55.555661 | 2020-09-17T08:06:46 | 2020-09-17T08:06:46 | 296,282,642 | 1 | 0 | Apache-2.0 | 2020-09-17T09:38:18 | 2020-09-17T09:38:17 | null | UTF-8 | Java | false | false | 2,943 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.hadoop.hive.ql.security.authorization.plugin.metastore.events;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.hive.metastore.events.PreEventContext;
import org.apache.hadoop.hive.metastore.events.PreLoadPartitionDoneEvent;
import org.apache.hadoop.hive.ql.security.authorization.plugin.HiveOperationType;
import org.apache.hadoop.hive.ql.security.authorization.plugin.HivePrivilegeObject;
import org.apache.hadoop.hive.ql.security.authorization.plugin.HivePrivilegeObject.HivePrivilegeObjectType;
import org.apache.hadoop.hive.ql.security.authorization.plugin.metastore.HiveMetaStoreAuthorizableEvent;
import org.apache.hadoop.hive.ql.security.authorization.plugin.metastore.HiveMetaStoreAuthzInfo;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/*
Authorizable Event for HiveMetaStore operation LoadPartition
*/
public class LoadPartitionDoneEvent extends HiveMetaStoreAuthorizableEvent {
private static final Log LOG = LogFactory.getLog(LoadPartitionDoneEvent.class);
private String COMMAND_STR = "alter table load partition";
public LoadPartitionDoneEvent(PreEventContext preEventContext) {
super(preEventContext);
}
@Override
public HiveMetaStoreAuthzInfo getAuthzContext() {
HiveMetaStoreAuthzInfo ret = new HiveMetaStoreAuthzInfo(preEventContext, HiveOperationType.ALTERTABLE_ADDPARTS, getInputHObjs(), getOutputHObjs(), COMMAND_STR);
return ret;
}
private List<HivePrivilegeObject> getInputHObjs() { return Collections.emptyList(); }
private List<HivePrivilegeObject> getOutputHObjs() {
if (LOG.isDebugEnabled()) {
LOG.debug("==> DropTableEvent.getOutputHObjs()");
}
List<HivePrivilegeObject> ret = new ArrayList<>();
PreLoadPartitionDoneEvent event = (PreLoadPartitionDoneEvent) preEventContext;
ret.add(new HivePrivilegeObject(HivePrivilegeObjectType.TABLE_OR_VIEW, event.getDbName(), event.getTableName()));
if (LOG.isDebugEnabled()) {
LOG.debug("<== DropTableEvent.getOutputHObjs(): ret=" + ret);
}
return ret;
}
}
| [
"daijyc@gmail.com"
] | daijyc@gmail.com |
ff51784e2b263156975dfc58f3f49312eec75a02 | 018781953bce1ad759c8fbe8e4b6bba43654d483 | /src/vistas/AltaMaterias.java | 3a038c3673cd102165a3ee3ea5c0ff870575a6c9 | [] | no_license | PabloBarrionuevo/Lab1-TP7 | 8a8badfab9ecf7ebfb2f8c82aa9be2bbc10150cb | c5cd8f81a673a20c44824423d257529a61be5002 | refs/heads/master | 2023-04-05T13:37:09.638538 | 2021-04-16T08:13:59 | 2021-04-16T08:13:59 | 358,524,922 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,968 | 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 vistas;
/**
*
* @author Pablo
*/
public class AltaMaterias extends javax.swing.JInternalFrame {
/**
* Creates new form AltaMateria
*/
public AltaMaterias() {
initComponents();
}
/**
* 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() {
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
txtid = new javax.swing.JFormattedTextField();
txtnombre = new javax.swing.JTextField();
txtanio = new javax.swing.JFormattedTextField();
jButton1 = new javax.swing.JButton();
btnNuevo = new javax.swing.JButton();
btnGuardar = new javax.swing.JButton();
setClosable(true);
setIconifiable(true);
setMaximizable(true);
setResizable(true);
setTitle("Alta de Materia");
jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel1.setText("Formulario de Materias");
jLabel2.setText("Código de la Materia: ");
jLabel3.setText("Nombre de la Materia: ");
jLabel4.setText("Año al que pertenece: ");
txtid.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new javax.swing.text.NumberFormatter(new java.text.DecimalFormat("#0"))));
txtid.setEnabled(false);
txtnombre.setEnabled(false);
txtanio.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new javax.swing.text.DateFormatter(new java.text.SimpleDateFormat("yyyy"))));
txtanio.setEnabled(false);
jButton1.setText("Salir");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
btnNuevo.setText("Nuevo");
btnNuevo.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnNuevoActionPerformed(evt);
}
});
btnGuardar.setText("Guardar");
btnGuardar.setEnabled(false);
btnGuardar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnGuardarActionPerformed(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()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel4)
.addComponent(jLabel2)
.addComponent(jLabel3))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(txtid)
.addComponent(txtnombre)
.addComponent(txtanio)))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(0, 173, Short.MAX_VALUE)
.addComponent(btnGuardar)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(btnNuevo)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton1)))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 43, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(txtid, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(txtnombre, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4)
.addComponent(txtanio, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton1)
.addComponent(btnNuevo)
.addComponent(btnGuardar))
.addContainerGap())
);
layout.linkSize(javax.swing.SwingConstants.VERTICAL, new java.awt.Component[] {txtanio, txtid, txtnombre});
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
dispose();
}//GEN-LAST:event_jButton1ActionPerformed
private void btnNuevoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnNuevoActionPerformed
limpiar();
habilitar();
txtid.requestFocus();
}//GEN-LAST:event_btnNuevoActionPerformed
private void btnGuardarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnGuardarActionPerformed
if(!txtid.getText().isEmpty() && !txtnombre.getText().isEmpty() && !txtanio.getText().isEmpty()){
recursos.Materia e = new recursos.Materia(Integer.parseInt(txtid.getText()), txtnombre.getText(), Integer.parseInt(txtanio.getText()));
FramePrincipal.materias.add(e);
FramePrincipal.actualizartxt();
deshabilitar();
}else
javax.swing.JOptionPane.showMessageDialog(null,"Escriba todos los datos de la materia","Error",0);
}//GEN-LAST:event_btnGuardarActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton btnGuardar;
private javax.swing.JButton btnNuevo;
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JFormattedTextField txtanio;
private javax.swing.JFormattedTextField txtid;
private javax.swing.JTextField txtnombre;
// End of variables declaration//GEN-END:variables
private void limpiar() {
txtid.setText("");
txtnombre.setText("");
txtanio.setText("");
}
private void habilitar() {
txtid.setEnabled(true);
txtnombre.setEnabled(true);
txtanio.setEnabled(true);
btnGuardar.setEnabled(true);
btnNuevo.setEnabled(false);
}
private void deshabilitar() {
txtid.setEnabled(false);
txtnombre.setEnabled(false);
txtanio.setEnabled(false);
btnGuardar.setEnabled(false);
btnNuevo.setEnabled(true);
}
}
| [
"Pablo@NOTEBOOK-PABLO"
] | Pablo@NOTEBOOK-PABLO |
f19f7215e530aea38fe893f7b221a64677701ec1 | 5bf213b4deca7cdc67faeec0ed8beedd48ece7dc | /src/java/com/spring/entity/Teacherdb.java | c84bf9ac4d94e647895097fd69374cac7fe3694f | [] | no_license | smaharjan974/collegemanagementsystem-CMS- | b65abf42b77c62921c560bcfc817f2a37c2596b0 | bb0dab30e476c3939a66481bff6e1958e8e51bf1 | refs/heads/master | 2021-07-13T02:43:45.835947 | 2017-10-18T07:02:33 | 2017-10-18T07:02:33 | 107,370,245 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,334 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.spring.entity;
import java.io.Serializable;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
/**
*
* @author SANJAY
*/
@Entity
@Table(name = "teacherdb")
@NamedQueries({
@NamedQuery(name = "Teacherdb.findAll", query = "SELECT t FROM Teacherdb t")})
public class Teacherdb implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@Column(name = "teacherid")
private String teacherid;
@Column(name = "tfirstname")
private String tfirstname;
@Column(name = "tlastname")
private String tlastname;
@Column(name = "tgender")
private String tgender;
@Column(name = "tcontact")
private String tcontact;
@Column(name = "taddress")
private String taddress;
@Column(name = "temail")
private String temail;
@Column(name = "tpassword")
private String tpassword;
@OneToMany(mappedBy = "teacherid")
private List<Teachersubject> teachersubjectList;
public Teacherdb() {
}
public Teacherdb(String teacherid, String tfirstname, String tlastname, String tgender, String tcontact, String taddress, String temail, String tpassword, List<Teachersubject> teachersubjectList) {
this.teacherid = teacherid;
this.tfirstname = tfirstname;
this.tlastname = tlastname;
this.tgender = tgender;
this.tcontact = tcontact;
this.taddress = taddress;
this.temail = temail;
this.tpassword = tpassword;
this.teachersubjectList = teachersubjectList;
}
public Teacherdb(String teacherid) {
this.teacherid = teacherid;
}
public String getTeacherid() {
return teacherid;
}
public void setTeacherid(String teacherid) {
this.teacherid = teacherid;
}
public String getTfirstname() {
return tfirstname;
}
public void setTfirstname(String tfirstname) {
this.tfirstname = tfirstname;
}
public String getTlastname() {
return tlastname;
}
public void setTlastname(String tlastname) {
this.tlastname = tlastname;
}
public String getTgender() {
return tgender;
}
public void setTgender(String tgender) {
this.tgender = tgender;
}
public String getTcontact() {
return tcontact;
}
public void setTcontact(String tcontact) {
this.tcontact = tcontact;
}
public String getTaddress() {
return taddress;
}
public void setTaddress(String taddress) {
this.taddress = taddress;
}
public String getTemail() {
return temail;
}
public void setTemail(String temail) {
this.temail = temail;
}
public String getTpassword() {
return tpassword;
}
public void setTpassword(String tpassword) {
this.tpassword = tpassword;
}
public List<Teachersubject> getTeachersubjectList() {
return teachersubjectList;
}
public void setTeachersubjectList(List<Teachersubject> teachersubjectList) {
this.teachersubjectList = teachersubjectList;
}
@Override
public int hashCode() {
int hash = 0;
hash += (teacherid != null ? teacherid.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof Teacherdb)) {
return false;
}
Teacherdb other = (Teacherdb) object;
if ((this.teacherid == null && other.teacherid != null) || (this.teacherid != null && !this.teacherid.equals(other.teacherid))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.spring.entity.Teacherdb[ teacherid=" + teacherid + " ]";
}
}
| [
"smaharjan974@gmail.com"
] | smaharjan974@gmail.com |
5b2b35b5769e976611de8ca70ca6471f70ba3b94 | ffd8a2478f9708a83f0b4b19596c30a2ee43bb82 | /alistirmalar/src/alistirmalar/WhileKullaniciTarafindanGirilenOnSayiyiToplayanProgram.java | 4ae36facc3d2b3e4b3d00045b1ef566d472e7afb | [] | no_license | ahmetyanik/JAVA | ce92ae9fbba6db586507b383a5d2c462e20e97a3 | 0bb2df57ac46a5fa46fd127ab9f134b24c2cd78e | refs/heads/master | 2023-05-31T05:44:19.123691 | 2021-07-01T18:04:12 | 2021-07-01T18:04:12 | 382,117,251 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 470 | java | package alistirmalar;
import java.util.Scanner;
public class WhileKullaniciTarafindanGirilenOnSayiyiToplayanProgram {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int sayac = 0;
int toplam = 0;
int i = 0;
while(i<10) {
System.out.print("Lütfen sayilari giriniz: ");
int sayi = scanner.nextInt();
toplam +=sayi;
i++;
sayac++;
}System.out.println("Sayilarin Toplami: "+toplam);
}
}
| [
"ahmetyank4242@gmail.com"
] | ahmetyank4242@gmail.com |
3f1bb3aa0ffc40a1e98613f9e96395e1bf13b735 | 4570d13c3c4ea315ac35c0ceae8cc2e82e88a2ab | /src/main/java/by/sergeev/hotel/dao/impl/RoomDaoImpl.java | df81fdfde067564957d32f872d060be1de437bd9 | [] | no_license | Fargus811/final_hotel | b2156a75470998c9d01af494897574053a64914d | c92ebc297abb1cd85124316a12fbb2023d3aa2b1 | refs/heads/main | 2023-01-23T18:59:18.298769 | 2020-12-08T11:27:17 | 2020-12-08T11:27:17 | 301,227,530 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,010 | java | package by.sergeev.hotel.dao.impl;
import by.sergeev.hotel.dao.AbstractJDBCDao;
import by.sergeev.hotel.dao.RoomDao;
import by.sergeev.hotel.entity.Booking;
import by.sergeev.hotel.entity.Room;
import by.sergeev.hotel.entity.enumeration.RoomGrade;
import by.sergeev.hotel.exception.ConnectionPoolException;
import by.sergeev.hotel.exception.DaoException;
import by.sergeev.hotel.pool.ConnectionPool;
import by.sergeev.hotel.pool.ProxyConnection;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.math.BigDecimal;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
import java.util.Optional;
/**
* The type Room dao.
*
* @author Daniil Sergeev
* @version 1.0
*/
public class RoomDaoImpl extends AbstractJDBCDao<Room> implements RoomDao {
private static final Logger LOGGER = LogManager.getLogger(RoomDaoImpl.class);
private static final String INSERTED_COLUMNS = "rooms.name, rooms.number_of_rooms, rooms.max_persons, " +
"rooms.cost, rooms.has_Wifi, rooms.has_TV, rooms.has_bathroom, rooms.number_of_beds,rooms.room_description, rooms.photo_path, rooms.grade_id";
private static final String SELECTED_COLUMNS = "rooms.id, " + INSERTED_COLUMNS;
private static final String CREATE_ROOM = "INSERT INTO rooms (" + INSERTED_COLUMNS + ") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
private static final String UPDATE_ROOM_INFO = "UPDATE rooms SET rooms.name = ?, rooms.number_of_rooms= ?, rooms.max_persons = ?, " +
"rooms.cost = ?, rooms.has_Wifi = ?, rooms.has_TV=?, rooms.has_bathroom=?, rooms.number_of_beds=?, rooms.room_description=?," +
" rooms.photo_path=?, rooms.grade_id=? WHERE id = ?";
private static final String FIND_ALL_ROOMS = "SELECT " + SELECTED_COLUMNS + " FROM rooms";
private static final String GET_ROOMS_BY_PAGE = "SELECT " + SELECTED_COLUMNS + " FROM rooms INNER JOIN grades ON " +
"grades.id = rooms.grade_id LIMIT ?, 5";
private static final String FIND_ROOM_BY_ID = "SELECT " + SELECTED_COLUMNS + " FROM rooms INNER JOIN grades ON " +
"grades.id = rooms.grade_id WHERE rooms.id = ?";
private static final String GET_COUNT_OF_ROWS = "SELECT COUNT(*) FROM rooms";
private static final String DELETE_ROOM = "DELETE FROM rooms WHERE id = ? ";
private static final String FIND_FREE_ROOMS_BY_BOOKING = "SELECT " + SELECTED_COLUMNS + " FROM rooms " +
"WHERE rooms.number_of_rooms >= ? AND rooms.number_of_beds >= ? AND rooms.max_persons >= ?" +
" AND rooms.grade_id = ? AND rooms.has_Wifi >= ? AND rooms.has_TV >= ? AND rooms.has_bathroom >= ?" +
" AND rooms.id NOT IN (" +
"SELECT room_id FROM bookings WHERE room_id IS NOT NULL AND" +
" (( hotel.bookings.end_date >= ? AND hotel.bookings.end_date <= ?) " +
"OR (hotel.bookings.start_date >= ? AND hotel.bookings.start_date <= ?) " +
"OR ( hotel.bookings.start_date < ? AND hotel.bookings.end_date > ?)))";
//NOT IN
//(SELECT hotel.bookings.room_id FROM hotel.bookings
//WHERE hotel.bookings.room_id IS NOT NULL AND (( '2020-12-07' >= hotel.bookings.end_date AND hotel.bookings.end_date <= '2020-12-10')
//OR ( '2020-12-07' >= hotel.bookings.start_date AND hotel.bookings.start_date <= '2020-12-10')
// OR ( hotel.bookings.start_date < '2020-12-07' AND hotel.bookings.end_date > '2020-12-10')));
@Override
public List<Room> findAll() throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
return tryFindEntityListByQuery(connection, FIND_ALL_ROOMS);
} catch (SQLException | ConnectionPoolException e) {
LOGGER.fatal("Problem in RoomDao, while trying to find all rooms");
throw new DaoException("Problem in RoomDao, while trying to find all rooms", e);
}
}
@Override
public List<Room> getRoomsByPage(int offset) throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
return tryFindEntityListByPrStatement(connection, GET_ROOMS_BY_PAGE,
((preparedStatement, params) -> preparedStatement.setInt(1, offset)), offset);
} catch (SQLException | ConnectionPoolException e) {
LOGGER.fatal("Problem with get rooms by page");
throw new DaoException("Problem in RoomDao, while trying to get rooms by page in room dao", e);
}
}
@Override
public int getCountOfRows() throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
try (PreparedStatement preparedSt = connection.prepareStatement(GET_COUNT_OF_ROWS)) {
ResultSet resultSet = preparedSt.executeQuery();
if (resultSet.next()) {
return resultSet.getInt(1);
}
}
} catch (ConnectionPoolException | SQLException e) {
LOGGER.fatal("Problem with get count of room");
throw new DaoException("Problem with get count of room", e);
}
return 0;
}
@Override
public Optional<Room> findRoomById(long roomId) throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
return Optional.ofNullable(tryFindEntityByPrStatement(connection, FIND_ROOM_BY_ID,
((preparedStatement, params) -> preparedStatement.setLong(1, roomId)), roomId));
} catch (SQLException | ConnectionPoolException e) {
LOGGER.fatal("Problem with find room by id");
throw new DaoException("Problem with bookingDao to find room by id in room dao", e);
}
}
@Override
public List<Room> findFreeRoomsByBooking(Booking booking) throws DaoException {
try (ProxyConnection proxyConnection = ConnectionPool.getInstance().takeConnection()) {
return tryFindEntityListByPrStatement(proxyConnection, FIND_FREE_ROOMS_BY_BOOKING,
(preparedStatement, params) -> {
preparedStatement.setInt(1, booking.getNumberOfRooms());
preparedStatement.setInt(2, booking.getNumberOfBeds());
preparedStatement.setInt(3, booking.getMaxPersons());
preparedStatement.setInt(4, booking.getRoomGrade().ordinal());
preparedStatement.setBoolean(5, booking.isHasWifi());
preparedStatement.setBoolean(6, booking.isHasTV());
preparedStatement.setBoolean(7, booking.isHasBathroom());
preparedStatement.setString(8, booking.getStartDate());
preparedStatement.setString(9, booking.getEndDate());
preparedStatement.setString(10, booking.getStartDate());
preparedStatement.setString(11, booking.getEndDate());
preparedStatement.setString(12, booking.getStartDate());
preparedStatement.setString(13, booking.getEndDate());
}, booking);
} catch (SQLException | ConnectionPoolException e) {
LOGGER.fatal("Problem with find free rooms");
throw new DaoException("Problem in UserDao, while trying to find free rooms", e);
}
}
@Override
protected Room makeEntity(ResultSet rs) throws SQLException {
long id = rs.getInt(1);
String roomName = rs.getString(2);
int numberOfRooms = rs.getInt(3);
int maxPersons = rs.getInt(4);
BigDecimal cost = rs.getBigDecimal(5);
boolean hasWifi = rs.getBoolean(6);
boolean hasTV = rs.getBoolean(7);
boolean hasBathroom = rs.getBoolean(8);
int numberOfBeds = rs.getInt(9);
String description = rs.getString(10);
String photoPath = rs.getString(11);
RoomGrade gradeName = RoomGrade.values()[(rs.getInt(12))];
return new Room(id, roomName, numberOfRooms, maxPersons, cost, hasWifi, hasTV, hasBathroom, numberOfBeds, description, photoPath, gradeName);
}
@Override
public void createRoom(Room room) throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
try (PreparedStatement preparedSt = connection.prepareStatement(CREATE_ROOM)) {
prepareStatement(room, preparedSt);
if (preparedSt.executeUpdate() != 1) {
LOGGER.fatal("Room was not created");
throw new DaoException("Room was not created");
}
}
} catch (ConnectionPoolException | SQLException e) {
LOGGER.fatal("Room was not created");
throw new DaoException("Problem with create room in room dao", e);
}
}
private void prepareStatement(Room room, PreparedStatement preparedSt) throws SQLException {
preparedSt.setString(1, room.getName());
preparedSt.setInt(2, room.getNumberOfRooms());
preparedSt.setInt(3, room.getMaxPersons());
preparedSt.setBigDecimal(4, room.getCost());
preparedSt.setBoolean(5, room.isHasWifi());
preparedSt.setBoolean(6, room.isHasTV());
preparedSt.setBoolean(7, room.isHasBathroom());
preparedSt.setInt(8, room.getNumberOfBeds());
preparedSt.setString(9, room.getDescription());
preparedSt.setString(10, room.getPhotoPath());
preparedSt.setInt(11, room.getRoomGrade().ordinal());
}
@Override
public void deleteRoomById(long roomId) throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
try (PreparedStatement preparedSt = connection.prepareStatement(DELETE_ROOM)) {
preparedSt.setLong(1, roomId);
if (preparedSt.executeUpdate() != 1) {
LOGGER.fatal("Room was not deleted");
throw new DaoException("Room was not deleted");
}
}
} catch (ConnectionPoolException | SQLException e) {
LOGGER.fatal("Room was not deleted");
throw new DaoException("Problem in delete room method in room dao", e);
}
}
@Override
public void updateRoomInfo(Room room) throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
try (PreparedStatement preparedSt = connection.prepareStatement(UPDATE_ROOM_INFO)) {
prepareStatement(room, preparedSt);
preparedSt.setLong(12, room.getId());
if (preparedSt.executeUpdate() != 1) {
LOGGER.fatal("Room was not updated");
throw new DaoException("Room was not updated");
}
}
} catch (ConnectionPoolException | SQLException e) {
LOGGER.fatal("Room was not updated");
throw new DaoException("Problem with update room", e);
}
}
@Override
public void updateRoomPhoto(long roomId, String newPath) throws DaoException {
try (ProxyConnection connection = ConnectionPool.getInstance().takeConnection()) {
try (PreparedStatement preparedSt = connection.prepareStatement(UPDATE_ROOM_INFO)) {
preparedSt.setString(1, newPath);
preparedSt.setLong(2, roomId);
if (preparedSt.executeUpdate() != 1) {
LOGGER.fatal("Room was not updated");
throw new DaoException("Room was not update");
}
}
} catch (ConnectionPoolException | SQLException e) {
LOGGER.fatal("Room was not updated");
throw new DaoException("Problem with create room", e);
}
}
}
| [
"ggas10041997@gmail.com"
] | ggas10041997@gmail.com |
24f6166af05b5990b5380902e8e7a80476c4cd28 | e529e568c231ef261107917ea25b663e3e60ff01 | /src/test/java/controllers/VersionControlGatewayTest.java | 83626ddaa85041ea34dcc6e15ed0e0d22e33ed30 | [] | no_license | kingarj/API-migration-recommender | db4c19b0c8821f26ded0b038143cc9a63f10ff42 | 826512a1aed94ba2bffdadffbbb45ce7ea223c69 | refs/heads/master | 2020-04-26T05:11:35.576708 | 2019-04-11T12:27:52 | 2019-04-11T12:27:52 | 173,325,664 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,575 | java | package controllers;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.io.Reader;
import java.net.URISyntaxException;
import org.apache.http.Consts;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.HttpVersion;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.message.BasicHttpResponse;
import org.junit.Before;
import org.junit.Test;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import domain.response_resources.RateLimit;
public class VersionControlGatewayTest {
String source;
String target;
VersionControlGateway vcg;
@Before
public void init() {
source = "test1";
target = "test2";
vcg = new VersionControlGateway("kingarj", "e1bae533f7e0badb44d81d6f4df04ae8ca7d857f");
}
@Test
public void canInstantiateVersionControlGateway() {
VersionControlGateway testGateway = new VersionControlGateway("test", "test");
assertNotNull(testGateway);
}
@Test
public void canBuildSearchCommitRequestBody() throws ClientProtocolException, URISyntaxException, IOException {
HttpGet request = vcg.buildSearchCommitRequestBody("1", this.source, this.target);
String uri = "/search/commits?q=test1+test2&page=1&per_page=100";
assertNotNull(request);
assertEquals(request.getURI().toString(), uri);
}
@Test
public void canHandleResponse() {
StringEntity entity = new StringEntity("important message", ContentType.create("plain/text", Consts.UTF_8));
HttpResponse response = new BasicHttpResponse(HttpVersion.HTTP_1_1, HttpStatus.SC_OK, "OK");
response.setEntity(entity);
try {
vcg.handleResponse(response);
} catch (ClientProtocolException e) {
assertTrue(false);
}
}
@Test
public void canBuildSoleCommitRequestBody() throws URISyntaxException {
String uri = "/repos/owner/repo/commits/sha123";
HttpGet request = vcg.buildCommitRequestBody(uri);
assertNotNull(request);
assertEquals(request.getURI().toString(), uri);
}
@Test
public void canGetRateLimit() throws ClientProtocolException, URISyntaxException, IOException {
HttpResponse response = vcg.getRateLimit();
Gson gson = new GsonBuilder().create();
Reader reader = vcg.getResponseReader(response);
RateLimit rlResponse = gson.fromJson(reader, RateLimit.class);
assertNotNull(rlResponse);
}
}
| [
"alicerjk@gmail.com"
] | alicerjk@gmail.com |
edcfaca7b5b351da31a92aa84ff2b1c7e9da679a | b8563797b2497f2f426ed6b26bdd9bb43de62820 | /src/main/java/com/itsight/cuy/json/JsonMoneySimpleSerializer.java | 9f1fc8b06dbced1473397e07350ab321a1928754 | [] | no_license | itsightconsulting/cuy_mobile | 3e8cab43f07da3ee228f1a8e18e610fb4ebb18bd | 058db971680b4e70590cb0e4e5a51f80a55792c9 | refs/heads/master | 2020-04-13T21:01:06.591204 | 2018-12-28T20:20:57 | 2018-12-28T20:20:57 | 163,445,771 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 565 | java | package com.itsight.cuy.json;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import java.io.IOException;
import java.math.BigDecimal;
public class JsonMoneySimpleSerializer extends JsonSerializer<BigDecimal> {
@Override
public void serialize(BigDecimal value, JsonGenerator gen, SerializerProvider serializers)
throws IOException {
// TODO Auto-generated method stub
gen.writeString(value.toString());
}
}
| [
"peterpaul.0194@gmail.com"
] | peterpaul.0194@gmail.com |
70ababeaf3b197056214d2a60dc33d41b7463b23 | a373f1fb2949eb4d3b777c7ed59d3cdc71d69531 | /items/items-domain/src/main/java/org/dominokit/craft/model/ListingItem.java | e5a266f0a6453af51797e86842c703be11621022 | [] | no_license | rjeeb/old-crafts | 12ad6fe557446f95558e6bf6aaa9b51bd5aea8e9 | e5e5c9e835d29f23838632a3e836fbdee3fc4d1d | refs/heads/master | 2020-04-07T02:43:27.227094 | 2019-01-07T19:31:43 | 2019-01-07T19:31:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,654 | java | package org.dominokit.craft.model;
import org.dominokit.craft.exception.InvalidItemException;
import org.dominokit.craft.items.shared.model.Violation;
import org.immutables.value.Value;
import java.util.ArrayList;
import java.util.List;
import static java.util.Objects.isNull;
@Value.Immutable
public abstract class ListingItem {
public abstract String reference();
public abstract String title();
public abstract String whoMadeIt();
public abstract String whatIsIt();
public abstract String whenWasItMade();
public abstract String category();
public abstract RenewalOptions renewalOption();
public abstract ItemType itemType();
public abstract String description();
public abstract double price();
public abstract int quantity();
public abstract List<String> imageReferences();
@Nullable
public abstract String section();
@Nullable
public abstract List<String> tags();
@Nullable
public abstract List<String> materials();
@Nullable
public abstract List<Variation> variations();
@Nullable
public abstract Personalization personalization();
@Value.Check
protected void validate() {
List<Violation> violations = new ArrayList<>();
if (title().isEmpty()) {
violations.add(createInvalidViolation("title"));
}
if (whoMadeIt().isEmpty()) {
violations.add(createInvalidViolation("whoMadeIt"));
}
if (whatIsIt().isEmpty()) {
violations.add(createInvalidViolation("whatIsIt"));
}
if (whenWasItMade().isEmpty()) {
violations.add(createInvalidViolation("whenWasItMade"));
}
if (category().isEmpty()) {
violations.add(createInvalidViolation("category"));
}
if (description().isEmpty()) {
violations.add(createInvalidViolation("description"));
}
if (price() < 0) {
violations.add(createInvalidViolation("price"));
}
if (quantity() < 0) {
violations.add(createInvalidViolation("quantity"));
}
if (isNull(imageReferences()) || imageReferences().isEmpty()) {
violations.add(createInvalidViolation("imageReferences"));
}
if (!violations.isEmpty()) {
throw new InvalidItemException(violations);
}
}
private Violation createInvalidViolation(String propertyName) {
Violation violation = new Violation();
violation.setPropertyName(propertyName);
violation.setErrorMessage(propertyName + ".is.invalid");
return violation;
}
}
| [
"rafat.albarouki@gmail.com"
] | rafat.albarouki@gmail.com |
2a614ccd9fd99eccbb5d5658b7d22d7b9227d0c2 | 2a39be604fb32b177cc9e4859ea35770387f60e4 | /live-common/src/main/java/com/homvee/livebroadcast/common/enums/EncryptionEnum.java | 2bf2294d375b777bb48b9f31a3b7dd99e13c715e | [] | no_license | tanghomvee/live-broadcast | 42fa69bc90a72fefdced9c4911a6fde92b1f5bcb | b906c0ed7d33bf5ae8e3dd3b99186307d9dbd971 | refs/heads/master | 2020-03-23T06:34:32.525748 | 2018-09-30T02:00:19 | 2018-09-30T02:00:19 | 141,216,918 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,823 | java | package com.homvee.livebroadcast.common.enums;
import com.google.common.collect.Maps;
import org.apache.commons.codec.binary.Base64;
import sun.misc.BASE64Encoder;
import javax.crypto.Cipher;
import java.math.BigInteger;
import java.security.*;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
/**
* Copyright (c) 2018. slst.com all rights reserved
* @Description 加密
* @author Homvee.Tang
* @date 2018-07-17 16:56
* @version V1.0
*/
public enum EncryptionEnum {
/**
* 将MD5的结果转为Base64
* MD5加密后的值是128bit的,将结果用Base64 编码
*/
MD5_2_BASE64(){
@Override
public String encrypt(String data) throws Exception {
byte[] encrypted = EncryptionEnum.getMD5(data);
return BASE_64_ENCODER.encode(encrypted);
}
@Override
public String decode(String encryptedData) throws Exception {
return null;
}
},
/**
* 将MD5的结果转为16进制数据
* MD5加密后的值是128bit的,按4位二进制组合成一个十六进制,所以最后出来的十六进制字符串是32个
*/
MD5_2_HEX(){
@Override
public String encrypt(String data) throws Exception {
byte[] encrypted = EncryptionEnum.getMD5(data);
return new BigInteger(1,encrypted).toString(16);
}
@Override
public String decode(String encryptedData) throws Exception {
return null;
}
},
RSA(){
private String KEY_RSA_TYPE = "RSA";
private String publicKeyBase64Str = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCOf+929MZBj/PvUtIGh0sCbe+BnVjkkBJbhuN+4DqTWpRAlZGpN0VPH8qOyzrKnRwu46oB8FFVAh3dDXgXELx0MC1I/dNyLaG26NTVDfZh2fnSRjcpxTf82LQZbfxxNoYgmRIDgg6thwAvZqTCSy8JjRkRDDJEthLko+Zli/b1TQIDAQAB";
private String privateKeyBase64Str = "MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBAI5/73b0xkGP8+9S0gaHSwJt74GdWOSQEluG437gOpNalECVkak3RU8fyo7LOsqdHC7jqgHwUVUCHd0NeBcQvHQwLUj903Itobbo1NUN9mHZ+dJGNynFN/zYtBlt/HE2hiCZEgOCDq2HAC9mpMJLLwmNGREMMkS2EuSj5mWL9vVNAgMBAAECgYAetU06elc7C7WKrnNaOs+cT2qcqPbeEnoSRUhDMDkPRibKoDDKoYGLIpO5H+ykeyT2qdMaJdqxEgqzd1KYzd9+au5J9XZ+C2Si4IuIOWvwNqIO8Y8Q2nnSptysKwihjai2xpZqLss63rEvXAAqkF+D7moBnVQD2EAFb/ox2edqdQJBAOE+dFEsm59qgsd6CYvwCNxe2phXfJ0n6yaeF2ksSirRldMurzYsHhCeTs9iqGjbrQ7VWr8bIWTUrse1MMFefs8CQQCh9RrBfSyfPf8EN9CoGwS12xtJWB6HFmk76efZefNYA0aKHyH0mT614NortFLmcFutxmvncaPm0zKLAq2/WjEjAkBqxGjsZWGrEhjFp0JJM9FvbALf/XBTKi3b00ozj0vkug3z2Ygx/H2P0Qp4YUKE2cRRaK6oMZsFqY7jmS5wKnOfAkAUgkBIHjzHUYd4lkTS9NDs4nkbGZCMFLdwwdb9QCcjjw6gsP6QxdMeHwIhpK0Wx0WkxMqnPUm/EiGFXup3n8k3AkEAptZXMRnK0qOOLTq/VPT5EVph+1DVqwtiE5lDDRJxT07Q0ljAn+fkJYI/JWY0qACvazVgS3RNYudlayvQdOIxPQ==";
//JDK方式RSA加密最大只有1024位
private int KEY_SIZE = 1024;
private int ENCODE_PART_SIZE = KEY_SIZE/8;
public final String PUBLIC_KEY_NAME = "public";
public final String PRIVATE_KEY_NAME = "private";
/**
* 公钥加密
* 描述:
* 1字节 = 8位;
* 最大加密长度如 1024位私钥时,最大加密长度为 128-11 = 117字节,不管多长数据,加密出来都是 128 字节长度。
* @param data
* @return
*/
@Override
public String encrypt(String data) throws Exception {
byte [] publicBytes = Base64.decodeBase64(publicKeyBase64Str);
//公钥加密
X509EncodedKeySpec x509EncodedKeySpec = new X509EncodedKeySpec(publicBytes);
List<byte[]> alreadyEncodeListData = new LinkedList<>();
int maxEncodeSize = ENCODE_PART_SIZE - 11;
String encodeBase64Result = null;
KeyFactory keyFactory = KeyFactory.getInstance(KEY_RSA_TYPE);
PublicKey publicKey = keyFactory.generatePublic(x509EncodedKeySpec);
Cipher cipher = Cipher.getInstance(KEY_RSA_TYPE);
cipher.init(Cipher.ENCRYPT_MODE,publicKey);
byte[] sourceBytes = data.getBytes("UTF-8");
int sourceLen = sourceBytes.length;
for(int i=0;i<sourceLen;i+=maxEncodeSize){
int curPosition = sourceLen - i;
int tempLen = curPosition;
if(curPosition > maxEncodeSize){
tempLen = maxEncodeSize;
}
//待加密分段数据
byte[] tempBytes = new byte[tempLen];
System.arraycopy(sourceBytes,i,tempBytes,0,tempLen);
byte[] tempAlreadyEncodeData = cipher.doFinal(tempBytes);
alreadyEncodeListData.add(tempAlreadyEncodeData);
}
//加密次数
int partLen = alreadyEncodeListData.size();
int allEncodeLen = partLen * ENCODE_PART_SIZE;
//存放所有RSA分段加密数据
byte[] encodeData = new byte[allEncodeLen];
for (int i = 0; i < partLen; i++) {
byte[] tempByteList = alreadyEncodeListData.get(i);
System.arraycopy(tempByteList,0,encodeData,i*ENCODE_PART_SIZE,ENCODE_PART_SIZE);
}
encodeBase64Result = Base64.encodeBase64String(encodeData);
return encodeBase64Result;
}
/**
* 私钥解密
* @param encryptedData
*/
@Override
public String decode(String encryptedData) throws Exception {
byte[] privateBytes = Base64.decodeBase64(privateKeyBase64Str);
byte[] encodeSource = Base64.decodeBase64(encryptedData);
int encodePartLen = encodeSource.length/ENCODE_PART_SIZE;
//所有解密数据
List<byte[]> decodeListData = new LinkedList<>();
String decodeStrResult = null;
//私钥解密
PKCS8EncodedKeySpec pkcs8EncodedKeySpec = new PKCS8EncodedKeySpec(privateBytes);
KeyFactory keyFactory = KeyFactory.getInstance(KEY_RSA_TYPE);
PrivateKey privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec);
Cipher cipher = Cipher.getInstance(KEY_RSA_TYPE);
cipher.init(Cipher.DECRYPT_MODE,privateKey);
//初始化所有被解密数据长度
int allDecodeByteLen = 0;
for (int i = 0; i < encodePartLen; i++) {
byte[] tempEncodedData = new byte[ENCODE_PART_SIZE];
System.arraycopy(encodeSource,i*ENCODE_PART_SIZE,tempEncodedData,0,ENCODE_PART_SIZE);
byte[] decodePartData = cipher.doFinal(tempEncodedData);
decodeListData.add(decodePartData);
allDecodeByteLen += decodePartData.length;
}
byte [] decodeResultBytes = new byte[allDecodeByteLen];
for (int i = 0,curPosition = 0; i < encodePartLen; i++) {
byte[] tempSorceBytes = decodeListData.get(i);
int tempSourceBytesLen = tempSorceBytes.length;
System.arraycopy(tempSorceBytes,0,decodeResultBytes,curPosition,tempSourceBytesLen);
curPosition += tempSourceBytesLen;
}
decodeStrResult = new String(decodeResultBytes,"UTF-8");
return decodeStrResult;
}
public Map<String,String> createRSAKeys() throws Exception{
//里面存放公私秘钥的Base64位加密
Map<String,String> keyPairMap = Maps.newHashMap();
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance(KEY_RSA_TYPE);
keyPairGenerator.initialize(KEY_SIZE,new SecureRandom());
KeyPair keyPair = keyPairGenerator.generateKeyPair();
//获取公钥秘钥
String publicKeyValue = Base64.encodeBase64String(keyPair.getPublic().getEncoded());
String privateKeyValue = Base64.encodeBase64String(keyPair.getPrivate().getEncoded());
//存入公钥秘钥,以便以后获取
keyPairMap.put(PUBLIC_KEY_NAME,publicKeyValue);
keyPairMap.put(PRIVATE_KEY_NAME,privateKeyValue);
return keyPairMap;
}
}
;
private static byte[] getMD5(String data) throws Exception {
String in = data + "";
byte[] bytes = in.getBytes("UTF-8");
MessageDigest md5=MessageDigest.getInstance("MD5");
/**
* MD5的结果是一个16字节128位数组
*/
byte[] encrypted = md5.digest(bytes);
return encrypted;
}
private static final BASE64Encoder BASE_64_ENCODER = new BASE64Encoder();
public abstract String encrypt(String data) throws Exception;
public abstract String decode(String encryptedData) throws Exception;
}
| [
"Wert324tang"
] | Wert324tang |
f231220feb45d1b787664860c524ac84ea14aa24 | 4d056777f493f02ce386c4aff212f388c33e551a | /BookList/app/src/main/java/com/example/android/booklist/BookLoader.java | 2be349c6c8a99c554c8c2c96c4b3bd379b00f3c1 | [] | no_license | hitesh-bansal/AndroidBasicProjectByUdacity | 406c071e8724899b8ab645d33deea4b5e76f7b98 | 296001e0c96c06935fecc75fabaafa5ec40dc7fe | refs/heads/master | 2021-01-18T18:12:06.897814 | 2017-08-19T16:48:14 | 2017-08-19T16:48:14 | 100,516,339 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 613 | java | package com.example.android.booklist;
import android.content.AsyncTaskLoader;
import android.content.Context;
import java.util.List;
public class BookLoader extends AsyncTaskLoader<List<Book>> {
private String mUrl;
public BookLoader(Context context, String url) {
super(context);
mUrl = url;
}
@Override
protected void onStartLoading() {
forceLoad();
}
@Override
public List<Book> loadInBackground() {
if (mUrl == null) {
return null;
}
List<Book> books = fechingdata.fetchData(mUrl);
return books;
}
}
| [
"hiteshbansal224@gmail.com"
] | hiteshbansal224@gmail.com |
647bbe51daf71fe256c56b1fbf9517e01e1ff287 | f1e5f9e09e094d3d35fe3c3c070d135e0e40c384 | /src/test/java/ObjectClass/Successful.java | 4c37f245c945dd49df65a75552653182e3b3469a | [] | no_license | GiorgiBolotashvili/restAssured-homework | d7d6cd0a62a9d72ea882feeb3d63b916890a1214 | 2f32d99c3db236f88938f1c72ac363a37bd5aff5 | refs/heads/master | 2023-08-25T18:23:44.637082 | 2021-10-27T19:20:17 | 2021-10-27T19:20:17 | 419,970,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 344 | java | package ObjectClass;
public class Successful {
private int id;
private String token;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
}
| [
"gio_bolota@yahoo.com"
] | gio_bolota@yahoo.com |
ce38041cd529cb92d3493d66ed86014b5763462f | 0a012e5364971f843e53ffba2a472c8d073b06ba | /src/com/android/yijiang/kzx/fragment/KzxTargetSelectedFragment.java | d42eac5a1d04744e88a62aa609f852e086f8ce7a | [] | no_license | davidleen/kzx | 349db04235a9f5ac0766ef1f40bdc29adaaef51b | c6bd28d02d55ab97dff091ab08c419876ee17182 | refs/heads/master | 2021-01-10T12:51:14.971361 | 2016-03-01T15:12:39 | 2016-03-01T15:12:39 | 51,090,830 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,829 | java | package com.android.yijiang.kzx.fragment;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Type;
import java.net.SocketTimeoutException;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.HashMap;
import java.util.List;
import java.util.UUID;
import org.apache.http.Header;
import org.apache.http.client.HttpResponseException;
import org.json.JSONException;
import org.json.JSONObject;
import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.app.TimePickerDialog;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.content.DialogInterface.OnDismissListener;
import android.content.res.AssetManager;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.drawable.Drawable;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.os.SystemClock;
import android.support.annotation.Nullable;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.Fragment;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v4.widget.SwipeRefreshLayout.OnRefreshListener;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.DisplayMetrics;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.LinearInterpolator;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputMethodManager;
import android.widget.AdapterView;
import android.widget.AbsListView.OnScrollListener;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.TextView.OnEditorActionListener;
import android.widget.AbsListView;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.FrameLayout;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.ProgressBar;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.android.yijiang.kzx.R;
import com.android.yijiang.kzx.ResourceMap;
import com.android.yijiang.kzx.adapter.KzxCopySelectedAdapter;
import com.android.yijiang.kzx.adapter.KzxExecutionAdapter;
import com.android.yijiang.kzx.adapter.KzxIncentiveAdapter;
import com.android.yijiang.kzx.adapter.KzxPartnerAdapter;
import com.android.yijiang.kzx.adapter.KzxTargetSelectedAdapter;
import com.android.yijiang.kzx.bean.LeaderBean;
import com.android.yijiang.kzx.bean.TargetCanRelateBean;
import com.android.yijiang.kzx.http.AsyncHttpClient;
import com.android.yijiang.kzx.http.AsyncHttpResponseHandler;
import com.android.yijiang.kzx.http.RequestParams;
import com.android.yijiang.kzx.sdk.BitmapUtil;
import com.android.yijiang.kzx.sdk.Blur;
import com.android.yijiang.kzx.sdk.FileUtil;
import com.android.yijiang.kzx.sdk.ImageCompressUtil;
import com.android.yijiang.kzx.sdk.RegexUtils;
import com.android.yijiang.kzx.sdk.StringUtils;
import com.android.yijiang.kzx.ui.ApplicationController;
import com.android.yijiang.kzx.ui.Constants;
import com.android.yijiang.kzx.ui.ContentFragmentActivity;
import com.android.yijiang.kzx.ui.MainActivity;
import com.android.yijiang.kzx.ui.SingleFragmentActivity;
import com.android.yijiang.kzx.ui.MainActivity.MessageReceiver;
import com.android.yijiang.kzx.widget.CircleImageView;
import com.android.yijiang.kzx.widget.MsgTools;
import com.android.yijiang.kzx.widget.PinnedHeaderListView;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;
import com.squareup.picasso.Picasso;
import com.squareup.picasso.Target;
import com.squareup.picasso.Picasso.LoadedFrom;
/**
* 选择关联目标
* @title com.android.yijiang.kzx.fragment
* @date 2014年6月11日
* @author tanke
*/
@SuppressLint("NewApi")
public class KzxTargetSelectedFragment extends BaseFragment {
private boolean mHasRequestedMore;
private long pageNow=1;
private View footerView;
private ListView dateCustomList;
private ProgressBar default_load_view;
private TextView img_empty_feed;
private TextView doneBtn;//选中事件
private HashMap<String, TargetCanRelateBean> isLeaderHash;
private Gson gson ;
private Type tt ;
private AsyncHttpClient asyncHttpClient;
private KzxTargetSelectedAdapter kzxTargetSelectedAdapter;
//头部View
private ImageButton backBtn;
private EditText searchEt;
public static KzxTargetSelectedFragment newInstance(HashMap<String, TargetCanRelateBean> isLeaderHash) {
KzxTargetSelectedFragment fragment = new KzxTargetSelectedFragment();
Bundle bundle = new Bundle();
bundle.putSerializable("isLeaderHash", isLeaderHash);
fragment.setArguments(bundle);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
isLeaderHash=(HashMap<String, TargetCanRelateBean>) getArguments().getSerializable("isLeaderHash");
gson = new GsonBuilder().create();
tt=new TypeToken<List<TargetCanRelateBean>>() {}.getType();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View contentView = inflater.inflate(R.layout.kzx_target_selected_fragment, null);
return contentView;
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
footerView=getLayoutInflater(savedInstanceState).inflate(R.layout.fragment_lv_footer, null);
footerView.setVisibility(View.INVISIBLE);
kzxTargetSelectedAdapter=new KzxTargetSelectedAdapter(getActivity());
searchEt=(EditText)view.findViewById(R.id.searchEt);
dateCustomList=(ListView) view.findViewById(R.id.dateCustomList);
default_load_view=(ProgressBar) view.findViewById(R.id.default_load_view);
img_empty_feed=(TextView)view.findViewById(R.id.img_empty_feed);
doneBtn=(TextView)view.findViewById(R.id.doneBtn);
dateCustomList.addFooterView(footerView, null, false);
dateCustomList.setAdapter(kzxTargetSelectedAdapter);
dateCustomList.setOnScrollListener(new OnScrollListener() {
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
}
@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
if (!mHasRequestedMore) {
int lastInScreen = firstVisibleItem + visibleItemCount;
if (lastInScreen >= totalItemCount && totalItemCount != 0 && totalItemCount != dateCustomList.getHeaderViewsCount() + dateCustomList.getFooterViewsCount() && kzxTargetSelectedAdapter.getCount() > 0) {
postLoad();
mHasRequestedMore = true;
}
}
}
});
//选中确定
doneBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
HashMap<String, TargetCanRelateBean> isSelected=kzxTargetSelectedAdapter.getIsSelected();
Intent mIntent=new Intent(getActivity().getPackageName()+".ADD_TASK_RECEIVED_ACTION");
mIntent.putExtra("data", isSelected);
mIntent.putExtra("action", "target_selected");
getActivity().sendBroadcast(mIntent);
getActivity().finish();
}
});
//返回上一級
backBtn = (ImageButton) view.findViewById(R.id.backBtn);
backBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
((InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE)).
hideSoftInputFromWindow(searchEt.getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS);
getActivity().finish();
}
});
searchEt.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == KeyEvent.ACTION_DOWN || actionId == EditorInfo.IME_ACTION_SEARCH) {
((InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
kzxTargetSelectedAdapter.clearDataForLoader();
pageNow=1;
postLoad();
}
return true;
}
});
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
postLoad();
}
/**相关目标数据查询*/
private void postLoad() {
asyncHttpClient = new AsyncHttpClient();
asyncHttpClient.addHeader("Cookie", getContext().getLoginUserCookie());
asyncHttpClient.setUserAgent(Constants.USER_AGENT);
RequestParams rp = new RequestParams();
rp.put("pageNow", pageNow+"");//页码
rp.put("searchContent",searchEt.getText().toString());
asyncHttpClient.post(getActivity(), Constants.queryCanRelateAPI, rp, responseHandler);
}
/**相关目标数据查询回调*/
AsyncHttpResponseHandler responseHandler=new AsyncHttpResponseHandler() {
public void onStart() {
super.onStart();
if(kzxTargetSelectedAdapter.isEmpty()){
footerView.setVisibility(View.GONE);
default_load_view.setVisibility(View.VISIBLE);
}else{
footerView.setVisibility(View.VISIBLE);
((ProgressBar)footerView.findViewById(R.id.default_load)).setVisibility(View.VISIBLE);
}
}
@Override
public void onFinish() {
default_load_view.setVisibility(View.GONE);
((ProgressBar)footerView.findViewById(R.id.default_load)).setVisibility(View.INVISIBLE);
super.onFinish();
}
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
String content=new String(responseBody);
try {
long pageSize=new JSONObject(content).optLong("pageSize",0);
long rowCount=new JSONObject(content).optLong("rowCount",0);
long totalPage = (rowCount + pageSize -1) / pageSize;
String records=new JSONObject(content).optString("records");
if (!StringUtils.isEmpty(records)&&!"[]".equals(records)) {
List<TargetCanRelateBean> leaderList = new ArrayList<TargetCanRelateBean>();
leaderList.addAll((List<TargetCanRelateBean>)gson.fromJson(records, tt));
kzxTargetSelectedAdapter.setDataForLoader(leaderList,isLeaderHash);
if (pageNow == totalPage) {
//最后一页
footerView.setVisibility(View.VISIBLE);
mHasRequestedMore = true;
((ProgressBar)footerView.findViewById(R.id.default_load)).setVisibility(View.INVISIBLE);
} else {
//新增页码
footerView.setVisibility(View.INVISIBLE);
pageNow++;
mHasRequestedMore = false;
}
}else{
//空数据
dateCustomList.setEmptyView(img_empty_feed);
}
} catch (Exception e) {
e.printStackTrace();
MsgTools.toast(getActivity(), getString(R.string.request_error), ResourceMap.LENGTH_SHORT);
}
}
@Override
public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
onFailureToast(error);
}
};
public ApplicationController getContext() {
return ((ApplicationController) getActivity().getApplicationContext());
}
@Override
public void onDestroy() {
super.onDestroy();
if (asyncHttpClient != null)
asyncHttpClient.cancelRequests(getActivity(), true);
}
}
| [
"davidleen29@gmail.com"
] | davidleen29@gmail.com |
122539e732ac3833a3f2d9cc18c0346d5c0338a4 | 83cea6bfbd066c6937b690da46609aee541f3c89 | /src/main/java/com/leah/ipproxy/MyHttpResponse.java | 28eac2b97759deb1e31b24b015a310b16512c82d | [] | no_license | leahSunshine/multithreading-crawlers | c7953931912c0f9f387e4e8289e13480a236eba4 | ee2f3fa7c95b840a777535ab09c0cf49b8892f40 | refs/heads/master | 2020-03-26T21:51:00.550947 | 2018-09-07T09:33:58 | 2018-09-07T09:33:58 | 145,412,293 | 0 | 0 | null | 2018-08-20T12:03:34 | 2018-08-20T12:03:34 | null | UTF-8 | Java | false | false | 5,330 | java | package com.leah.ipproxy;
import java.io.IOException;
import org.apache.http.HttpHost;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
public class MyHttpResponse {
// 使用本机IP进行网站抓取
public static String getHtml(String url) {
String entity = null;
int httpStatus;
CloseableHttpResponse httpResponse = null;
CloseableHttpClient httpClient = HttpClients.createDefault();
// 设置超时处理(猜测setConnectTimeout是与网站建立HTTP链接的时间,setSocketTimeout是从网站获取数据的时间)
RequestConfig config = RequestConfig.custom().setConnectTimeout(3000).
setSocketTimeout(3000).build();
HttpGet httpGet = new HttpGet(url);
httpGet.setConfig(config);
httpGet.setHeader("Accept", "text/html,application/xhtml+xml,application/xml;" +
"q=0.9,image/webp,*/*;q=0.8");
httpGet.setHeader("Accept-Encoding", "gzip, deflate, sdch");
httpGet.setHeader("Accept-Language", "zh-CN,zh;q=0.8");
httpGet.setHeader("Cache-Control", "no-cache");
httpGet.setHeader("Connection", "keep-alive");
// httpGet.setHeader("Host", "www.xicidaili.com");
httpGet.setHeader("Pragma", "no-cache");
httpGet.setHeader("Upgrade-Insecure-Requests", "1");
httpGet.setHeader("User-Agent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 " +
"(KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36");
try {
// 客户端执行httpGet方法,返回响应
httpResponse = httpClient.execute(httpGet);
// 得到服务响应状态码
httpStatus = httpResponse.getStatusLine().getStatusCode();
if (httpStatus == 200) {
entity = EntityUtils.toString(httpResponse.getEntity(), "utf-8");
} else {
System.out.println("本机IP抓取xici代理网第一页IP返回状态码:" + httpStatus);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (httpResponse != null) {
httpResponse.close();
}
httpClient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return entity;
}
// 对上一个方法的重载,使用代理进行网站爬取
public static String getHtml(String url, String ip, String port) {
String entity = null;
int httpStatus;
CloseableHttpClient httpClient = HttpClients.createDefault();
CloseableHttpResponse httpResponse = null;
// 设置代理访问和超时处理
HttpHost proxy = new HttpHost(ip, Integer.parseInt(port));
RequestConfig config = RequestConfig.custom().setProxy(proxy).setConnectTimeout(1000).
setSocketTimeout(1000).build();
HttpGet httpGet = new HttpGet(url);
httpGet.setConfig(config);
httpGet.setHeader("Accept", "text/html,application/xhtml+xml,application/xml;" +
"q=0.9,image/webp,*/*;q=0.8");
httpGet.setHeader("Accept-Encoding", "gzip, deflate, sdch");
httpGet.setHeader("Accept-Language", "zh-CN,zh;q=0.8");
httpGet.setHeader("Cache-Control", "no-cache");
httpGet.setHeader("Connection", "keep-alive");
// httpGet.setHeader("Host", "www.xicidaili.com");
httpGet.setHeader("Pragma", "no-cache");
httpGet.setHeader("Upgrade-Insecure-Requests", "1");
httpGet.setHeader("User-Agent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 " +
"(KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36");
try {
// 客户端执行httpGet方法,返回响应
httpResponse = httpClient.execute(httpGet);
// 得到服务响应状态码
httpStatus = httpResponse.getStatusLine().getStatusCode();
if (httpStatus == 200) {
entity = EntityUtils.toString(httpResponse.getEntity(), "utf-8");
System.out.println("当前线程:" + Thread.currentThread().getName() + ", 使用的代理IP:" +
ip + ":" + port + ", 成功抓取xici代理网:" + url);
} else {
System.out.println("当前线程:" + Thread.currentThread().getName() + ", 使用的代理IP:" +
ip + ":" + port + ", 抓取xici代理网:" + url + ", 返回状态码:" + httpStatus);
}
} catch (IOException e) {
entity = null;
} finally {
try {
if (httpResponse != null) {
httpResponse.close();
}
httpClient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return entity;
}
}
| [
"Administrator@k-PC"
] | Administrator@k-PC |
773ab2334d9b1faa755203d815676a475aec1054 | 780a385a0617415b66019007a257b6d036061831 | /src/gent/timdemey/visuals/core/log/elements/AbstractDebugElement.java | 5741a4d1d003950b1cd8dac6ec6538af82b9331d | [] | no_license | T1mmos/visuals | 82e49912c970b5e1160bcf739a6499f5295b9d96 | 3f050942ae3f3aef34cd2b71670be9289f938ec3 | refs/heads/master | 2020-06-17T01:19:20.507851 | 2016-11-30T14:36:56 | 2016-11-30T14:36:56 | 75,054,273 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 576 | java | package gent.timdemey.visuals.core.log.elements;
/**
* Abstract base class for debug elements that hold a value.
* @author Timmos
*
* @param <T> the value type
*/
public abstract class AbstractDebugElement<T> implements DebugElement {
private final T value;
/**
* Package private constructor.
* @param value the wrapped value
*/
AbstractDebugElement(T value) {
this.value = value;
}
/**
* Gets the wrapped value.
* @return the wrapped value
*/
public T getValue () {
return value;
}
}
| [
"tim.demey@gmail.com"
] | tim.demey@gmail.com |
0884dd2301d8760ccfd99672cad19386cad780d9 | 29345337bf86edc938f3b5652702d551bfc3f11a | /shaded_libraries/shaded_alink_metadata_def/src/main/java/org/tensorflow/metadata/v0/LiftStatistics.java | b8e21d4006071be88297f224135b8e9449358b89 | [
"Apache-2.0"
] | permissive | vacaly/Alink | 32b71ac4572ae3509d343e3d1ff31a4da2321b6d | edb543ee05260a1dd314b11384d918fa1622d9c1 | refs/heads/master | 2023-07-21T03:29:07.612507 | 2023-07-12T12:41:31 | 2023-07-12T12:41:31 | 283,079,072 | 0 | 0 | Apache-2.0 | 2020-07-28T02:46:14 | 2020-07-28T02:46:13 | null | UTF-8 | Java | false | true | 47,422 | java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: statistics.proto
package org.tensorflow.metadata.v0;
/**
* Protobuf type {@code tensorflow.metadata.v0.LiftStatistics}
*/
public final class LiftStatistics extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:tensorflow.metadata.v0.LiftStatistics)
LiftStatisticsOrBuilder {
private static final long serialVersionUID = 0L;
// Use LiftStatistics.newBuilder() to construct.
private LiftStatistics(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private LiftStatistics() {
liftSeries_ = java.util.Collections.emptyList();
weightedLiftSeries_ = java.util.Collections.emptyList();
}
@Override
@SuppressWarnings({"unused"})
protected Object newInstance(
UnusedPrivateParameter unused) {
return new LiftStatistics();
}
@Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private LiftStatistics(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
liftSeries_ = new java.util.ArrayList<LiftSeries>();
mutable_bitField0_ |= 0x00000001;
}
liftSeries_.add(
input.readMessage(LiftSeries.parser(), extensionRegistry));
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
weightedLiftSeries_ = new java.util.ArrayList<LiftSeries>();
mutable_bitField0_ |= 0x00000002;
}
weightedLiftSeries_.add(
input.readMessage(LiftSeries.parser(), extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
liftSeries_ = java.util.Collections.unmodifiableList(liftSeries_);
}
if (((mutable_bitField0_ & 0x00000002) != 0)) {
weightedLiftSeries_ = java.util.Collections.unmodifiableList(weightedLiftSeries_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return Statistics.internal_static_tensorflow_metadata_v0_LiftStatistics_descriptor;
}
@Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return Statistics.internal_static_tensorflow_metadata_v0_LiftStatistics_fieldAccessorTable
.ensureFieldAccessorsInitialized(
LiftStatistics.class, Builder.class);
}
public static final int LIFT_SERIES_FIELD_NUMBER = 1;
private java.util.List<LiftSeries> liftSeries_;
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
@Override
public java.util.List<LiftSeries> getLiftSeriesList() {
return liftSeries_;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
@Override
public java.util.List<? extends LiftSeriesOrBuilder>
getLiftSeriesOrBuilderList() {
return liftSeries_;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
@Override
public int getLiftSeriesCount() {
return liftSeries_.size();
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
@Override
public LiftSeries getLiftSeries(int index) {
return liftSeries_.get(index);
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
@Override
public LiftSeriesOrBuilder getLiftSeriesOrBuilder(
int index) {
return liftSeries_.get(index);
}
public static final int WEIGHTED_LIFT_SERIES_FIELD_NUMBER = 2;
private java.util.List<LiftSeries> weightedLiftSeries_;
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
@Override
public java.util.List<LiftSeries> getWeightedLiftSeriesList() {
return weightedLiftSeries_;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
@Override
public java.util.List<? extends LiftSeriesOrBuilder>
getWeightedLiftSeriesOrBuilderList() {
return weightedLiftSeries_;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
@Override
public int getWeightedLiftSeriesCount() {
return weightedLiftSeries_.size();
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
@Override
public LiftSeries getWeightedLiftSeries(int index) {
return weightedLiftSeries_.get(index);
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
@Override
public LiftSeriesOrBuilder getWeightedLiftSeriesOrBuilder(
int index) {
return weightedLiftSeries_.get(index);
}
private byte memoizedIsInitialized = -1;
@Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < liftSeries_.size(); i++) {
output.writeMessage(1, liftSeries_.get(i));
}
for (int i = 0; i < weightedLiftSeries_.size(); i++) {
output.writeMessage(2, weightedLiftSeries_.get(i));
}
unknownFields.writeTo(output);
}
@Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < liftSeries_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, liftSeries_.get(i));
}
for (int i = 0; i < weightedLiftSeries_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, weightedLiftSeries_.get(i));
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@Override
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof LiftStatistics)) {
return super.equals(obj);
}
LiftStatistics other = (LiftStatistics) obj;
if (!getLiftSeriesList()
.equals(other.getLiftSeriesList())) return false;
if (!getWeightedLiftSeriesList()
.equals(other.getWeightedLiftSeriesList())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getLiftSeriesCount() > 0) {
hash = (37 * hash) + LIFT_SERIES_FIELD_NUMBER;
hash = (53 * hash) + getLiftSeriesList().hashCode();
}
if (getWeightedLiftSeriesCount() > 0) {
hash = (37 * hash) + WEIGHTED_LIFT_SERIES_FIELD_NUMBER;
hash = (53 * hash) + getWeightedLiftSeriesList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static LiftStatistics parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static LiftStatistics parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static LiftStatistics parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static LiftStatistics parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static LiftStatistics parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static LiftStatistics parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static LiftStatistics parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static LiftStatistics parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static LiftStatistics parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static LiftStatistics parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static LiftStatistics parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static LiftStatistics parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(LiftStatistics prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code tensorflow.metadata.v0.LiftStatistics}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:tensorflow.metadata.v0.LiftStatistics)
LiftStatisticsOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return Statistics.internal_static_tensorflow_metadata_v0_LiftStatistics_descriptor;
}
@Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return Statistics.internal_static_tensorflow_metadata_v0_LiftStatistics_fieldAccessorTable
.ensureFieldAccessorsInitialized(
LiftStatistics.class, Builder.class);
}
// Construct using org.tensorflow.metadata.v0.LiftStatistics.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLiftSeriesFieldBuilder();
getWeightedLiftSeriesFieldBuilder();
}
}
@Override
public Builder clear() {
super.clear();
if (liftSeriesBuilder_ == null) {
liftSeries_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
liftSeriesBuilder_.clear();
}
if (weightedLiftSeriesBuilder_ == null) {
weightedLiftSeries_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
weightedLiftSeriesBuilder_.clear();
}
return this;
}
@Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return Statistics.internal_static_tensorflow_metadata_v0_LiftStatistics_descriptor;
}
@Override
public LiftStatistics getDefaultInstanceForType() {
return LiftStatistics.getDefaultInstance();
}
@Override
public LiftStatistics build() {
LiftStatistics result = buildPartial();
if (!result.isInitialized()) {
throw Builder.newUninitializedMessageException(result);
}
return result;
}
@Override
public LiftStatistics buildPartial() {
LiftStatistics result = new LiftStatistics(this);
int from_bitField0_ = bitField0_;
if (liftSeriesBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
liftSeries_ = java.util.Collections.unmodifiableList(liftSeries_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.liftSeries_ = liftSeries_;
} else {
result.liftSeries_ = liftSeriesBuilder_.build();
}
if (weightedLiftSeriesBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
weightedLiftSeries_ = java.util.Collections.unmodifiableList(weightedLiftSeries_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.weightedLiftSeries_ = weightedLiftSeries_;
} else {
result.weightedLiftSeries_ = weightedLiftSeriesBuilder_.build();
}
onBuilt();
return result;
}
@Override
public Builder clone() {
return super.clone();
}
@Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.setField(field, value);
}
@Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return super.setRepeatedField(field, index, value);
}
@Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.addRepeatedField(field, value);
}
@Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof LiftStatistics) {
return mergeFrom((LiftStatistics)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(LiftStatistics other) {
if (other == LiftStatistics.getDefaultInstance()) return this;
if (liftSeriesBuilder_ == null) {
if (!other.liftSeries_.isEmpty()) {
if (liftSeries_.isEmpty()) {
liftSeries_ = other.liftSeries_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureLiftSeriesIsMutable();
liftSeries_.addAll(other.liftSeries_);
}
onChanged();
}
} else {
if (!other.liftSeries_.isEmpty()) {
if (liftSeriesBuilder_.isEmpty()) {
liftSeriesBuilder_.dispose();
liftSeriesBuilder_ = null;
liftSeries_ = other.liftSeries_;
bitField0_ = (bitField0_ & ~0x00000001);
liftSeriesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLiftSeriesFieldBuilder() : null;
} else {
liftSeriesBuilder_.addAllMessages(other.liftSeries_);
}
}
}
if (weightedLiftSeriesBuilder_ == null) {
if (!other.weightedLiftSeries_.isEmpty()) {
if (weightedLiftSeries_.isEmpty()) {
weightedLiftSeries_ = other.weightedLiftSeries_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.addAll(other.weightedLiftSeries_);
}
onChanged();
}
} else {
if (!other.weightedLiftSeries_.isEmpty()) {
if (weightedLiftSeriesBuilder_.isEmpty()) {
weightedLiftSeriesBuilder_.dispose();
weightedLiftSeriesBuilder_ = null;
weightedLiftSeries_ = other.weightedLiftSeries_;
bitField0_ = (bitField0_ & ~0x00000002);
weightedLiftSeriesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getWeightedLiftSeriesFieldBuilder() : null;
} else {
weightedLiftSeriesBuilder_.addAllMessages(other.weightedLiftSeries_);
}
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@Override
public final boolean isInitialized() {
return true;
}
@Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
LiftStatistics parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (LiftStatistics) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List<LiftSeries> liftSeries_ =
java.util.Collections.emptyList();
private void ensureLiftSeriesIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
liftSeries_ = new java.util.ArrayList<LiftSeries>(liftSeries_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
LiftSeries, LiftSeries.Builder, LiftSeriesOrBuilder> liftSeriesBuilder_;
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public java.util.List<LiftSeries> getLiftSeriesList() {
if (liftSeriesBuilder_ == null) {
return java.util.Collections.unmodifiableList(liftSeries_);
} else {
return liftSeriesBuilder_.getMessageList();
}
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public int getLiftSeriesCount() {
if (liftSeriesBuilder_ == null) {
return liftSeries_.size();
} else {
return liftSeriesBuilder_.getCount();
}
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public LiftSeries getLiftSeries(int index) {
if (liftSeriesBuilder_ == null) {
return liftSeries_.get(index);
} else {
return liftSeriesBuilder_.getMessage(index);
}
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder setLiftSeries(
int index, LiftSeries value) {
if (liftSeriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLiftSeriesIsMutable();
liftSeries_.set(index, value);
onChanged();
} else {
liftSeriesBuilder_.setMessage(index, value);
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder setLiftSeries(
int index, LiftSeries.Builder builderForValue) {
if (liftSeriesBuilder_ == null) {
ensureLiftSeriesIsMutable();
liftSeries_.set(index, builderForValue.build());
onChanged();
} else {
liftSeriesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder addLiftSeries(LiftSeries value) {
if (liftSeriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLiftSeriesIsMutable();
liftSeries_.add(value);
onChanged();
} else {
liftSeriesBuilder_.addMessage(value);
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder addLiftSeries(
int index, LiftSeries value) {
if (liftSeriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLiftSeriesIsMutable();
liftSeries_.add(index, value);
onChanged();
} else {
liftSeriesBuilder_.addMessage(index, value);
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder addLiftSeries(
LiftSeries.Builder builderForValue) {
if (liftSeriesBuilder_ == null) {
ensureLiftSeriesIsMutable();
liftSeries_.add(builderForValue.build());
onChanged();
} else {
liftSeriesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder addLiftSeries(
int index, LiftSeries.Builder builderForValue) {
if (liftSeriesBuilder_ == null) {
ensureLiftSeriesIsMutable();
liftSeries_.add(index, builderForValue.build());
onChanged();
} else {
liftSeriesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder addAllLiftSeries(
Iterable<? extends LiftSeries> values) {
if (liftSeriesBuilder_ == null) {
ensureLiftSeriesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, liftSeries_);
onChanged();
} else {
liftSeriesBuilder_.addAllMessages(values);
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder clearLiftSeries() {
if (liftSeriesBuilder_ == null) {
liftSeries_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
liftSeriesBuilder_.clear();
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public Builder removeLiftSeries(int index) {
if (liftSeriesBuilder_ == null) {
ensureLiftSeriesIsMutable();
liftSeries_.remove(index);
onChanged();
} else {
liftSeriesBuilder_.remove(index);
}
return this;
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public LiftSeries.Builder getLiftSeriesBuilder(
int index) {
return getLiftSeriesFieldBuilder().getBuilder(index);
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public LiftSeriesOrBuilder getLiftSeriesOrBuilder(
int index) {
if (liftSeriesBuilder_ == null) {
return liftSeries_.get(index); } else {
return liftSeriesBuilder_.getMessageOrBuilder(index);
}
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public java.util.List<? extends LiftSeriesOrBuilder>
getLiftSeriesOrBuilderList() {
if (liftSeriesBuilder_ != null) {
return liftSeriesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(liftSeries_);
}
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public LiftSeries.Builder addLiftSeriesBuilder() {
return getLiftSeriesFieldBuilder().addBuilder(
LiftSeries.getDefaultInstance());
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public LiftSeries.Builder addLiftSeriesBuilder(
int index) {
return getLiftSeriesFieldBuilder().addBuilder(
index, LiftSeries.getDefaultInstance());
}
/**
* <pre>
* Lift information for each value of path_y. Lift is defined for each pair of
* values (x,y) as P(path_y=y|path_x=x)/P(path_y=y).
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries lift_series = 1;</code>
*/
public java.util.List<LiftSeries.Builder>
getLiftSeriesBuilderList() {
return getLiftSeriesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
LiftSeries, LiftSeries.Builder, LiftSeriesOrBuilder>
getLiftSeriesFieldBuilder() {
if (liftSeriesBuilder_ == null) {
liftSeriesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
LiftSeries, LiftSeries.Builder, LiftSeriesOrBuilder>(
liftSeries_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
liftSeries_ = null;
}
return liftSeriesBuilder_;
}
private java.util.List<LiftSeries> weightedLiftSeries_ =
java.util.Collections.emptyList();
private void ensureWeightedLiftSeriesIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
weightedLiftSeries_ = new java.util.ArrayList<LiftSeries>(weightedLiftSeries_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
LiftSeries, LiftSeries.Builder, LiftSeriesOrBuilder> weightedLiftSeriesBuilder_;
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public java.util.List<LiftSeries> getWeightedLiftSeriesList() {
if (weightedLiftSeriesBuilder_ == null) {
return java.util.Collections.unmodifiableList(weightedLiftSeries_);
} else {
return weightedLiftSeriesBuilder_.getMessageList();
}
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public int getWeightedLiftSeriesCount() {
if (weightedLiftSeriesBuilder_ == null) {
return weightedLiftSeries_.size();
} else {
return weightedLiftSeriesBuilder_.getCount();
}
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public LiftSeries getWeightedLiftSeries(int index) {
if (weightedLiftSeriesBuilder_ == null) {
return weightedLiftSeries_.get(index);
} else {
return weightedLiftSeriesBuilder_.getMessage(index);
}
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder setWeightedLiftSeries(
int index, LiftSeries value) {
if (weightedLiftSeriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.set(index, value);
onChanged();
} else {
weightedLiftSeriesBuilder_.setMessage(index, value);
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder setWeightedLiftSeries(
int index, LiftSeries.Builder builderForValue) {
if (weightedLiftSeriesBuilder_ == null) {
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.set(index, builderForValue.build());
onChanged();
} else {
weightedLiftSeriesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder addWeightedLiftSeries(LiftSeries value) {
if (weightedLiftSeriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.add(value);
onChanged();
} else {
weightedLiftSeriesBuilder_.addMessage(value);
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder addWeightedLiftSeries(
int index, LiftSeries value) {
if (weightedLiftSeriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.add(index, value);
onChanged();
} else {
weightedLiftSeriesBuilder_.addMessage(index, value);
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder addWeightedLiftSeries(
LiftSeries.Builder builderForValue) {
if (weightedLiftSeriesBuilder_ == null) {
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.add(builderForValue.build());
onChanged();
} else {
weightedLiftSeriesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder addWeightedLiftSeries(
int index, LiftSeries.Builder builderForValue) {
if (weightedLiftSeriesBuilder_ == null) {
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.add(index, builderForValue.build());
onChanged();
} else {
weightedLiftSeriesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder addAllWeightedLiftSeries(
Iterable<? extends LiftSeries> values) {
if (weightedLiftSeriesBuilder_ == null) {
ensureWeightedLiftSeriesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, weightedLiftSeries_);
onChanged();
} else {
weightedLiftSeriesBuilder_.addAllMessages(values);
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder clearWeightedLiftSeries() {
if (weightedLiftSeriesBuilder_ == null) {
weightedLiftSeries_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
weightedLiftSeriesBuilder_.clear();
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public Builder removeWeightedLiftSeries(int index) {
if (weightedLiftSeriesBuilder_ == null) {
ensureWeightedLiftSeriesIsMutable();
weightedLiftSeries_.remove(index);
onChanged();
} else {
weightedLiftSeriesBuilder_.remove(index);
}
return this;
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public LiftSeries.Builder getWeightedLiftSeriesBuilder(
int index) {
return getWeightedLiftSeriesFieldBuilder().getBuilder(index);
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public LiftSeriesOrBuilder getWeightedLiftSeriesOrBuilder(
int index) {
if (weightedLiftSeriesBuilder_ == null) {
return weightedLiftSeries_.get(index); } else {
return weightedLiftSeriesBuilder_.getMessageOrBuilder(index);
}
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public java.util.List<? extends LiftSeriesOrBuilder>
getWeightedLiftSeriesOrBuilderList() {
if (weightedLiftSeriesBuilder_ != null) {
return weightedLiftSeriesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(weightedLiftSeries_);
}
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public LiftSeries.Builder addWeightedLiftSeriesBuilder() {
return getWeightedLiftSeriesFieldBuilder().addBuilder(
LiftSeries.getDefaultInstance());
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public LiftSeries.Builder addWeightedLiftSeriesBuilder(
int index) {
return getWeightedLiftSeriesFieldBuilder().addBuilder(
index, LiftSeries.getDefaultInstance());
}
/**
* <pre>
* Weighted lift information for each value of path_y. Weighted lift is
* defined for each pair of values (x,y) as P(path_y=y|path_x=x)/P(path_y=y)
* where probabilities are computed over weighted example space.
* </pre>
*
* <code>repeated .tensorflow.metadata.v0.LiftSeries weighted_lift_series = 2;</code>
*/
public java.util.List<LiftSeries.Builder>
getWeightedLiftSeriesBuilderList() {
return getWeightedLiftSeriesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
LiftSeries, LiftSeries.Builder, LiftSeriesOrBuilder>
getWeightedLiftSeriesFieldBuilder() {
if (weightedLiftSeriesBuilder_ == null) {
weightedLiftSeriesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
LiftSeries, LiftSeries.Builder, LiftSeriesOrBuilder>(
weightedLiftSeries_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
weightedLiftSeries_ = null;
}
return weightedLiftSeriesBuilder_;
}
@Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:tensorflow.metadata.v0.LiftStatistics)
}
// @@protoc_insertion_point(class_scope:tensorflow.metadata.v0.LiftStatistics)
private static final LiftStatistics DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new LiftStatistics();
}
public static LiftStatistics getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<LiftStatistics>
PARSER = new com.google.protobuf.AbstractParser<LiftStatistics>() {
@Override
public LiftStatistics parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LiftStatistics(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<LiftStatistics> parser() {
return PARSER;
}
@Override
public com.google.protobuf.Parser<LiftStatistics> getParserForType() {
return PARSER;
}
@Override
public LiftStatistics getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
| [
"hongfanxo@gmail.com"
] | hongfanxo@gmail.com |
a0650ff59770abd814a340ec683340c13f2c7fda | bed3bd0eac5886b14e7f5f4573294a4c13cc9080 | /starter-code/OOPlab/src/RedHouse.java | b0604b901986f5ce6fb22166b953e915fc47ce36 | [] | no_license | WasabiMayo/oop-inheritance-abstraction-lab | b717a096a1530b6b03e9600ef82e7e04bcc70841 | 691bf295cf47a1b8962ea0c67e3774eec402e959 | refs/heads/master | 2021-01-22T00:29:03.433102 | 2016-03-21T16:47:10 | 2016-03-21T16:47:10 | 54,403,032 | 0 | 0 | null | 2016-03-21T16:00:28 | 2016-03-21T16:00:28 | null | UTF-8 | Java | false | false | 607 | java | /**
* Created by Wasabi on 3/21/2016.
*/
public class RedHouse extends HouseHold implements HouseHoldInterface {
private String pet;
public RedHouse(double income, String pet) {
super(income);
this.pet = pet;
}
@Override
public void generateIncome() {
System.out.println("Red won in a poke battle! Got " + getIncome() + " as a reward");
}
@Override
public void trainPokemon() {
System.out.println("Trained Red's pet " + pet);
}
@Override
public void feedPet() {
System.out.println("Fed Red's pet " + pet);
}
} | [
"hyewon910119@gmail.com"
] | hyewon910119@gmail.com |
ddc35b351ab09ec6cc2b48ab63a23cb5cd3571e6 | 8abfa82febda3fd61f0ee6b775d44a5155212cbd | /IFeiraAPI/src/main/java/com/feiraBrasil/IFeiraAPI/jwt/JwtUser.java | fccaa57494f87c211351904af7084e8d0f36c5c1 | [] | no_license | LucasCapSilva/FileUpload-Angular | f099c60488f2894ed409b7787f99212c42878b83 | 6869a5d8a753b89d17f27053628fc51685733602 | refs/heads/master | 2023-01-11T13:50:54.780437 | 2020-03-15T21:02:48 | 2020-03-15T21:02:48 | 247,367,220 | 0 | 0 | null | 2023-01-07T15:57:17 | 2020-03-14T23:08:08 | Java | UTF-8 | Java | false | false | 1,338 | java | package com.feiraBrasil.IFeiraAPI.jwt;
import java.util.Collection;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import com.fasterxml.jackson.annotation.JsonIgnore;
public class JwtUser implements UserDetails {
private static final long serialVersionUID = 1L;
private final Long id;
private final String username;
private final String password;
private final Collection<? extends GrantedAuthority> authorities;
public JwtUser(Long id, String username, String password, Collection<? extends GrantedAuthority> authorities) {
this.id = id;
this.username = username;
this.password = password;
this.authorities = authorities;
}
@JsonIgnore
public Long getId() {
return id;
}
@Override
public String getUsername() {
return username;
}
@JsonIgnore
@Override
public boolean isAccountNonExpired() {
return true;
}
@JsonIgnore
@Override
public boolean isAccountNonLocked() {
return true;
}
@JsonIgnore
@Override
public boolean isCredentialsNonExpired() {
return true;
}
@JsonIgnore
@Override
public String getPassword() {
return password;
}
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
return authorities;
}
@Override
public boolean isEnabled() {
return true;
}
}
| [
"lcapelotto@gmail.com"
] | lcapelotto@gmail.com |
01ab1f0ae389c64ab099aa831df3225edad9a61d | 5f8edc997423813c79fe93ab5561a23d8f4a3ab2 | /src/main/java/to/flows/googledrive/JDOPersistenceHelper.java | dbd6b6c47110b5c9713f2b3f9e44c49ac4712c66 | [] | no_license | martin-ericsson/googleoauth2servletfilter | 61b5d2a6910cd1d15d38ebdb739b1218552f6891 | a71b0a30b259a52c2b386b29d3aba500448561be | refs/heads/master | 2020-05-27T07:54:57.718369 | 2013-04-20T07:11:11 | 2013-04-20T07:11:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 604 | java | package to.flows.googledrive;
import javax.jdo.JDOHelper;
import javax.jdo.PersistenceManagerFactory;
import com.google.api.client.auth.oauth2.CredentialStore;
import com.google.api.client.extensions.jdo.auth.oauth2.JdoCredentialStore;
public class JDOPersistenceHelper {
static PersistenceManagerFactory pmf;
static public CredentialStore createJDOCredentialStore( ) {
if( pmf != null ) {
return new JdoCredentialStore(pmf);
}
pmf = JDOHelper.getPersistenceManagerFactory("jdo.properties");
return new JdoCredentialStore(pmf);
}
}
| [
"martin.ericsson.sthlm@gmail.com"
] | martin.ericsson.sthlm@gmail.com |
4ada1cff6ecb9fd6f7e62686d2782886ec71b96b | f8041533e6432ca3616d07af98cb3c6592010f1b | /app/src/main/java/com/example/sqlitepractice/Ativities/DeleteProducts.java | 2bb65a20fc0ec24912920d6439def0a00c3a1317 | [] | no_license | xenonJr/EshopDataBaseProject | c3a0dee4c877fb384e71825aff88259cd6cf58ac | c6bcb58eeaf081017493dacd658cefff829743b0 | refs/heads/master | 2023-02-14T05:27:46.444672 | 2020-12-30T19:38:33 | 2020-12-30T19:38:33 | 323,367,703 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,319 | java | package com.example.sqlitepractice.Ativities;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.example.sqlitepractice.R;
import static com.example.sqlitepractice.GlobalClass.GlobalClass.productDatabase;
public class DeleteProducts extends AppCompatActivity {
EditText id_text;
Button delete;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_delete_products);
id_text = findViewById(R.id.id_to_delete);
delete = findViewById(R.id.Delete_Product_button);
delete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String id = id_text.getText().toString();
int is_deleted = productDatabase.deleteData(id);
if(is_deleted>0){
Toast.makeText(DeleteProducts.this, "Product Deleted", Toast.LENGTH_SHORT).show();
}else {
Toast.makeText(DeleteProducts.this, "Product Not Deleted", Toast.LENGTH_SHORT).show();
}
}
});
}
} | [
"zkxenon98@gmail.com"
] | zkxenon98@gmail.com |
e60857267a974b413807c53c5ccb742e89ac9371 | 341e75c5bd9d7fb8d4d16679c20a2e029535a0bb | /leyou/ly-search/src/main/java/xu/leyou/client/GoodsClient.java | fa04fe4154fb9a4905e962b13b24d57a2b7bd6da | [] | no_license | xxp921013/leyouTatol | 58feaa6c7c2e4f08c453fc705980a8560d165e2b | 902bfe8cf1007ae844b31d36745472770ab7e007 | refs/heads/master | 2022-12-23T04:03:14.852734 | 2020-02-18T12:37:19 | 2020-02-18T12:37:19 | 209,943,764 | 0 | 0 | null | 2022-12-10T05:46:27 | 2019-09-21T07:30:43 | HTML | UTF-8 | Java | false | false | 186 | java | package xu.leyou.client;
import org.springframework.cloud.openfeign.FeignClient;
@FeignClient("item-service")
public interface GoodsClient extends xu.leyou.item.client.GoodsClient {
}
| [
"408395920@qq.com"
] | 408395920@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.