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
97ffb503535ecacc032a2e306b0cd8e9e99cea94
99c7f5ba1aeb3912b9f32e43c16c31461df24d0c
/Homer/ComponentX10/src/com/jpeterson/x10/.svn/text-base/ControlError.java.svn-base
6a0791bd3586b1ffa2e062bd78cefcf88a6a92c2
[]
no_license
sepiroth887/KinectHomer
aaca831224e4278e1a43a440c5acab04c4f5bc74
397f18858fc93138ffcd204de6bbebbcb1194020
refs/heads/master
2020-03-28T19:21:19.684422
2012-04-20T06:32:44
2012-04-20T06:32:44
3,386,536
0
2
null
null
null
null
UTF-8
Java
false
false
1,502
/* * Copyright (C) 1999 Jesse E. Peterson * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * */ package com.jpeterson.x10; /** * Signals that an error has occurred. * * @see ControlException * @see Serialized Form * * @author Jesse Peterson <6/29/99> * @version 1.0 */ public class ControlError extends Error { /** * Empty constructor for <CODE>ControlException</CODE> with no detail * message. * * @author Jesse Peterson <6/29/99> */ public ControlError() { super(); } /** * Constructs a <CODE>ControlException</CODE> with a detail message. * * @param s the detail message * * @author Jesse Peterson <6/29/99> */ public ControlError(String s) { super(s); } }
[ "tha@cs.stir.ac.uk" ]
tha@cs.stir.ac.uk
1c5f0ba8d8bf7369fb19cf1970e7ad2c5378da9f
05e45581f8b3b147af2f42cff1b701654d7b61d2
/wuxi/landsale/trunk/landsale/common/src/main/java/cn/gtmap/landsale/common/model/OnePriceLog.java
72fd95a965c3e38f824a3c2ad4fbb958903afcbf
[]
no_license
TimfuDeng/gtfree-bank
581bdc0478e47e2303296b3b6921ae59f976208f
48106284af428a449f0a2ccbee1653b57b4bd120
refs/heads/master
2020-04-03T05:22:06.031843
2018-10-28T06:50:40
2018-10-28T06:50:40
155,043,209
0
2
null
null
null
null
UTF-8
Java
false
false
2,728
java
package cn.gtmap.landsale.common.model; import cn.gtmap.egovplat.core.support.hibernate.UUIDHexGenerator; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.GenericGenerator; import javax.persistence.*; import java.io.Serializable; import java.util.Date; /** * 一次报价竞买流程列表 * @author jiff on 14/12/24. */ @Entity @Table(name = "one_price_log") //@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) public class OnePriceLog implements Serializable { @Id @GeneratedValue(generator = "sort-uuid") @GenericGenerator(name = "sort-uuid", strategy = UUIDHexGenerator.TYPE) @Column(length = 50) private String id; @Column(length = 32) private String applyId; @Column(length = 50) private String transUserId; @Column private Long price; @Column private Date priceDate; @Column(length = 200) private String priceUnit; @Column private Date createDate; @Column(length = 50) private String transResourceId;//原来标的Id @Column private String extend1; @Column private String extend2; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getApplyId() { return applyId; } public void setApplyId(String applyId) { this.applyId = applyId; } public String getTransUserId() { return transUserId; } public void setTransUserId(String transUserId) { this.transUserId = transUserId; } public Long getPrice() { return price; } public void setPrice(Long price) { this.price = price; } public Date getPriceDate() { return priceDate; } public void setPriceDate(Date priceDate) { this.priceDate = priceDate; } public String getPriceUnit() { return priceUnit; } public void setPriceUnit(String priceUnit) { this.priceUnit = priceUnit; } public Date getCreateDate() { return createDate; } public void setCreateDate(Date createDate) { this.createDate = createDate; } public String getTransResourceId() { return transResourceId; } public void setTransResourceId(String transResourceId) { this.transResourceId = transResourceId; } public String getExtend1() { return extend1; } public void setExtend1(String extend1) { this.extend1 = extend1; } public String getExtend2() { return extend2; } public void setExtend2(String extend2) { this.extend2 = extend2; } }
[ "1337343005@qq.com" ]
1337343005@qq.com
2677be18f0463bbb96cd6d380feb20480a52a948
279f24f0da750c321ef18049523d41a588c3e2fd
/facs-agriculture-dao/src/main/java/com/facs/agriculture/dao/DepartmentMapper.java
a2c277aedbb898b27b1a4e6cc99bb2e252315d38
[]
no_license
wy19840708/facs-agriculture
e338f111b68b171556c12b23ab60935e6aaad74a
2638baa7f998f5423eca0af835545a1eaf01e82b
refs/heads/master
2021-03-30T21:04:51.586530
2018-04-08T01:13:31
2018-04-08T01:13:31
125,002,155
0
0
null
null
null
null
UTF-8
Java
false
false
478
java
package com.facs.agriculture.dao; import com.facs.basic.framework.model.bo.BoPageRequest; import com.facs.agriculture.support.model.bo.DepartmentQuery; import com.facs.agriculture.support.model.po.Department; import java.util.List; public interface DepartmentMapper { List<Department> loadPage(BoPageRequest<DepartmentQuery> condition); Long total(DepartmentQuery condition); Department load(Long id); int insert(Department object); int update(Department object); }
[ "39920304@qq.com" ]
39920304@qq.com
0892324a5a821a4684cdaba5247a4a7706a1f35a
38f57aac3342861b8adfcf279492ff85553a2b22
/RenderEngine/text/Character.java
ce15ea271fedc40e813cfdca7f0d853991e48667
[]
no_license
finnkupka/Strategiespiel
cf4aafb2c60673d52252c634d9a7ec2f1e7238ba
b8baeb6a3434b0e5e3bdc0d71a8e0c2204c9c951
refs/heads/master
2020-04-16T03:32:52.294127
2019-02-06T22:54:24
2019-02-06T22:54:24
165,235,455
0
0
null
null
null
null
UTF-8
Java
false
false
1,036
java
package text; public class Character { private int id; private int xPosition; private int yPosition; private int width; private int height; private int xOffset; private int yOffset; private int xAdvance; public Character(int id, int xPosition, int yPosition, int width, int height, int xOffset, int yOffset, int xAdvance) { this.id = id; this.xPosition = xPosition; this.yPosition = yPosition; this.width = width; this.height = height; this.xOffset = xOffset; this.yOffset = yOffset; this.xAdvance = xAdvance; } public int getID() { return this.id; } public int getXPosition() { return this.xPosition; } public int getYPosition() { return this.yPosition; } public int getWidth() { return this.width; } public int getHeight() { return this.height; } public int getXOffest() { return this.xOffset; } public int getYOffset() { return this.yOffset; } public int getXAdvance() { return this.xAdvance; } }
[ "Finn Kupka@MSI.fritz.box" ]
Finn Kupka@MSI.fritz.box
8ab9ad9ae8e206f3ce733fa20751ca646d1f7834
a899bca4f0149aa8a8129ebdf5d3e45603ae31e9
/basex-core/src/main/java/org/basex/query/func/jobs/JobsList.java
df542c78526edac5f0bd88b086e428f0d198d455
[ "BSD-3-Clause" ]
permissive
jarped/basex
d66b81bebd976af8545472bbdf264509301b73e1
5edde5833db9a50e3a19f862464d7d6fb63c456a
refs/heads/master
2021-01-16T22:35:35.276429
2016-06-29T19:36:14
2016-06-29T19:36:14
62,297,675
0
0
null
2016-06-30T09:22:27
2016-06-30T09:22:27
null
UTF-8
Java
false
false
848
java
package org.basex.query.func.jobs; import java.util.*; import org.basex.core.jobs.*; import org.basex.query.*; import org.basex.query.func.*; import org.basex.query.iter.*; import org.basex.query.value.*; import org.basex.query.value.seq.*; import org.basex.util.list.*; /** * Function implementation. * * @author BaseX Team 2005-16, BSD License * @author Christian Gruen */ public final class JobsList extends StandardFunc { @Override public Value value(final QueryContext qc) throws QueryException { checkAdmin(qc); final Map<String, Job> jobs = qc.context.jobs.jobs; final TokenList list = new TokenList(jobs.size()); for(final String id : jobs.keySet()) list.add(id); return StrSeq.get(list); } @Override public Iter iter(final QueryContext qc) throws QueryException { return value(qc).iter(); } }
[ "christian.gruen@gmail.com" ]
christian.gruen@gmail.com
a581f8ceee7a5f441240e9225956858b366c7966
9aabc476961f4929422ad3640eb77b78e4c94c95
/src/main/java/org/springframework/samples/petclinic/web/PetValidator.java
f35559b9d7210f15a29fed2d10a9af3cd84cca66
[]
no_license
jhcao23/spring-boot-petclinic-thymeleaf-mongodb
8e2323adf10b653ddbb7be342a7f246cae7b5725
f23eec0b121dac995598f948befb2eaacfccfa90
refs/heads/master
2016-09-06T02:20:15.044891
2014-02-24T06:12:00
2014-02-24T06:12:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,332
java
/* * Copyright 2002-2013 the original author or authors. * * 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.springframework.samples.petclinic.web; import org.springframework.samples.petclinic.model.jpa.Pet; import org.springframework.util.StringUtils; import org.springframework.validation.Errors; /** * <code>Validator</code> for <code>Pet</code> forms. * * @author Ken Krebs * @author Juergen Hoeller */ public class PetValidator { public void validate(Pet pet, Errors errors) { String name = pet.getName(); if (!StringUtils.hasLength(name)) { errors.rejectValue("name", "required", "required"); } else if (pet.isNew() && pet.getOwner().getPet(name, true) != null) { errors.rejectValue("name", "duplicate", "already exists"); } } }
[ "jhcao23@gmail.com" ]
jhcao23@gmail.com
7fd71f5304987673ca353d110b7b24a2d4023aad
18fe76b635103a08cbe9e7eb7bb539e1ab986d16
/Kore-API/src/main/java/com/kosakorner/kosakore/api/world/IWorld.java
54d55a92881ae3377af7313717d94166edd37194
[]
no_license
kosakriszi/KosaKore
16d2cb3c753c286f6cd94f2454d66e4e365ff665
b71bc511633b39831396bd4d14bae01388e78dcc
refs/heads/master
2021-01-01T17:57:17.249347
2015-08-21T23:39:47
2015-08-21T23:39:47
27,059,296
0
0
null
null
null
null
UTF-8
Java
false
false
337
java
package com.kosakorner.kosakore.api.world; import com.kosakorner.kosakore.api.item.IItemStack; public interface IWorld { String getName(); IBlock getBlockAt(Location location); IBlock getBlockAt(int x, int y, int z); IChunk getChunkAt(Location location); void dropItem(Location location, IItemStack stack); }
[ "kosakriszi@gmail.com" ]
kosakriszi@gmail.com
799354fc308012deb9d8ac2c7de5c7724f3c9db9
2514dde0650fa35ee3bf70507e5a8797783ef616
/Andframework/src/main/java/tzl/com/framework/widget/behavior/ScaleAnimateHelper.java
6138084aa0df772318806e1820cdc10bee62cbd2
[]
no_license
MrLeion/wanAndroid
82ef418b8479c0b54218949c8376a9025be122b8
a9867e71998ed4b7581a684295a638345402e8d8
refs/heads/master
2020-03-26T08:14:16.943328
2019-01-21T06:57:28
2019-01-21T06:57:28
144,692,664
1
0
null
null
null
null
UTF-8
Java
false
false
1,607
java
package tzl.com.framework.widget.behavior; import android.animation.ValueAnimator; import android.view.View; /** * ScaleAnimateHelper using for float button * * Created by wing on 11/8/16. */ public class ScaleAnimateHelper implements AnimateHelper { public View mTarget; public int mCurrentState = STATE_SHOW; private ScaleAnimateHelper(View view) { mTarget = view; } public static ScaleAnimateHelper get(View view) { return new ScaleAnimateHelper(view); } @Override public void show() { ValueAnimator va = ValueAnimator.ofFloat(mTarget.getScaleX(), 1); va.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator valueAnimator) { float scale = (Float) valueAnimator.getAnimatedValue(); mTarget.setScaleX(scale); mTarget.setScaleY(scale); } }); va.setDuration(300); va.start(); mCurrentState = STATE_SHOW; } @Override public void hide() { ValueAnimator va = ValueAnimator.ofFloat(mTarget.getScaleX(), 0); va.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator valueAnimator) { float scale = (Float) valueAnimator.getAnimatedValue(); mTarget.setScaleX(scale); mTarget.setScaleY(scale); } }); va.setDuration(300); va.start(); mCurrentState = STATE_HIDE; } @Override public void setStartY(float y) { } @Override public void setMode(int modeBottom) { } public int getState() { return mCurrentState; } }
[ "shtangzenglei@163.com" ]
shtangzenglei@163.com
d6e579e3e5e4057cfb448aa5e22cd5e950fde59e
d2cb1f4f186238ed3075c2748552e9325763a1cb
/pre_compile/nonstatic_methods/methods/java_security_cert_X509CRLEntry_wait.java
0dd8b1c056487e0dd929a5bb6b4c4044dd230b76
[]
no_license
Adabot1/data
9e5c64021261bf181b51b4141aab2e2877b9054a
352b77eaebd8efdb4d343b642c71cdbfec35054e
refs/heads/master
2020-05-16T14:22:19.491115
2019-05-25T04:35:00
2019-05-25T04:35:00
183,001,929
4
0
null
null
null
null
UTF-8
Java
false
false
164
java
class java_security_cert_X509CRLEntry_wait{ public static void function() {java.security.cert.X509CRLEntry obj = new java.security.cert.X509CRLEntry();obj.wait();}}
[ "peter2008.ok@163.com" ]
peter2008.ok@163.com
3c7bf00b512a1d0e94977dd513a76ca7d272cc3f
09e03ba73062c62c1d3389cdecb94f68430cd82d
/base/config/src/main/java/org/artifactory/descriptor/repo/vcs/VcsArtifactoryProviderConfiguration.java
633987022511db7fa79d5073d757247ab317684b
[ "Apache-2.0" ]
permissive
alancnet/artifactory
1ee6183301b581e60f67691d7fa025b0fb44b118
7ac3ea76471a00543eaf60e82b554d8edd894c0f
refs/heads/master
2021-01-10T14:58:53.769805
2015-10-07T16:46:14
2015-10-07T16:46:14
43,829,862
3
6
null
2016-03-09T18:30:58
2015-10-07T16:38:51
Java
UTF-8
Java
false
false
1,123
java
/* * Artifactory is a binaries repository manager. * Copyright (C) 2012 JFrog Ltd. * * Artifactory is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Artifactory is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Artifactory. If not, see <http://www.gnu.org/licenses/>. */ package org.artifactory.descriptor.repo.vcs; import java.util.HashMap; /** * Created by michaelp on 6/28/15. */ public class VcsArtifactoryProviderConfiguration extends AbstractVcsProviderConfiguration { public VcsArtifactoryProviderConfiguration() { super( "Artifactory", "", "{0}/{1}/{2}?ext={3}" ); } }
[ "github@alanc.net" ]
github@alanc.net
d348d4873bcdaa6ab106c7aba5e1f04666800a8b
74508358643993290c3c67245a60650d8c215d1b
/gmall-api/src/main/java/com/fendou/gmall/bean/PmsSkuInfo.java
295ef4972d888894b5544d0dbfe52f8687f80616
[]
no_license
mmm141023/gmall
279d63e3c036157a89952d31261c6cdfb20ba414
8ffe281fa8ed902ee384b35e4f8602d4e3e59ac6
refs/heads/master
2022-09-09T17:45:21.744268
2019-10-22T03:30:28
2019-10-22T03:30:28
205,352,331
2
1
null
2022-09-01T23:12:15
2019-08-30T09:40:36
CSS
UTF-8
Java
false
false
3,518
java
package com.fendou.gmall.bean; import javax.persistence.*; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; /** * @param * @return */ public class PmsSkuInfo implements Serializable { @GeneratedValue(strategy = GenerationType.IDENTITY) @Id @Column String id; @Column String productId; @Transient String spuId; @Column BigDecimal price; @Column String skuName; @Column BigDecimal weight; @Column String skuDesc; @Column String catalog3Id; @Column String skuDefaultImg; @Transient List<PmsSkuImage> SkuImageList; @Transient List<PmsSkuAttrValue> SkuAttrValueList; @Transient List<PmsSkuSaleAttrValue> SkuSaleAttrValueList; public String getSpuId() { return spuId; } public void setSpuId(String spuId) { this.spuId = spuId; } public String getId() { return id; } public void setId(String id) { this.id = id; } public BigDecimal getPrice() { return price; } public void setPrice(BigDecimal price) { this.price = price; } public String getSkuName() { return skuName; } public void setSkuName(String skuName) { this.skuName = skuName; } public BigDecimal getWeight() { return weight; } public void setWeight(BigDecimal weight) { this.weight = weight; } public String getSkuDesc() { return skuDesc; } public void setSkuDesc(String skuDesc) { this.skuDesc = skuDesc; } public String getCatalog3Id() { return catalog3Id; } public void setCatalog3Id(String catalog3Id) { this.catalog3Id = catalog3Id; } public String getSkuDefaultImg() { return skuDefaultImg; } public void setSkuDefaultImg(String skuDefaultImg) { this.skuDefaultImg = skuDefaultImg; } public String getProductId() { return productId; } public void setProductId(String productId) { this.productId = productId; } public List<PmsSkuImage> getSkuImageList() { return SkuImageList; } public void setSkuImageList(List<PmsSkuImage> skuImageList) { SkuImageList = skuImageList; } public List<PmsSkuAttrValue> getSkuAttrValueList() { return SkuAttrValueList; } public void setSkuAttrValueList(List<PmsSkuAttrValue> skuAttrValueList) { SkuAttrValueList = skuAttrValueList; } public List<PmsSkuSaleAttrValue> getSkuSaleAttrValueList() { return SkuSaleAttrValueList; } public void setSkuSaleAttrValueList(List<PmsSkuSaleAttrValue> skuSaleAttrValueList) { SkuSaleAttrValueList = skuSaleAttrValueList; } @Override public String toString() { return "PmsSkuInfo{" + "id='" + id + '\'' + ", productId='" + productId + '\'' + ", spuId='" + spuId + '\'' + ", price=" + price + ", skuName='" + skuName + '\'' + ", weight=" + weight + ", skuDesc='" + skuDesc + '\'' + ", catalog3Id='" + catalog3Id + '\'' + ", skuDefaultImg='" + skuDefaultImg + '\'' + ", SkuImageList=" + SkuImageList + ", SkuAttrValueList=" + SkuAttrValueList + ", SkuSaleAttrValueList=" + SkuSaleAttrValueList + '}'; } }
[ "925670706@qq.com" ]
925670706@qq.com
71d17b6202bf842934efc891bb79ccceee7b0162
da9d7cbd76f4a7188a41f700ed9ae3068997c847
/app/src/main/java/com/kisaan/plantdiseasedetector/Utilities/KeyboardUtil.java
4575e12e76cd80c4033d4632ab2d6cc07800fabc
[]
no_license
RohanAgarwal1108/Plant-Disease-Detection
16a5cdd33e344c379f37fffdf9a218fd26006bc2
e3335ad0c8e0f3f8a75342ca5985ab40a58aaabf
refs/heads/master
2023-06-03T03:14:53.778178
2021-06-21T13:45:35
2021-06-21T13:45:35
372,738,160
1
0
null
null
null
null
UTF-8
Java
false
false
1,685
java
package com.kisaan.plantdiseasedetector.Utilities; import android.app.Activity; import android.content.Context; import android.view.MotionEvent; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; public class KeyboardUtil { Activity activity; MotionEvent ev; public KeyboardUtil(Activity activity, MotionEvent ev) { this.activity = activity; this.ev = ev; } public void touchEvent() { View v = activity.getCurrentFocus(); if (v != null && (ev.getAction() == MotionEvent.ACTION_UP || ev.getAction() == MotionEvent.ACTION_MOVE) && v instanceof EditText && !v.getClass().getName().startsWith("android.webkit.")) { int[] sourceCoordinates = new int[2]; v.getLocationOnScreen(sourceCoordinates); float x = ev.getRawX() + v.getLeft() - sourceCoordinates[0]; float y = ev.getRawY() + v.getTop() - sourceCoordinates[1]; if (x < v.getLeft() || x > v.getRight() || y < v.getTop() || y > v.getBottom()) { hideKeyboard(activity); } } } private void hideKeyboard(Activity activity) { activity.findViewById(android.R.id.content).clearFocus(); if (activity != null && activity.getWindow() != null) { activity.getWindow().getDecorView(); InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE); if (imm != null) { imm.hideSoftInputFromWindow(activity.getWindow().getDecorView().getWindowToken(), 0); } } } }
[ "raragarwal102@gmail.com" ]
raragarwal102@gmail.com
ecd84dc528f5538fa5ff20f397f9c80c4c70dfa0
104cda8eafe0617e2a5fa1e2b9f242d78370521b
/aliyun-java-sdk-hdr/src/main/java/com/aliyuncs/hdr/transform/v20170925/DescribeDrGatewaysResponseUnmarshaller.java
ab228f95f651055491609a410c4ed2d980485cc3
[ "Apache-2.0" ]
permissive
SanthosheG/aliyun-openapi-java-sdk
89f9b245c1bcdff8dac0866c36ff9a261aa40684
38a910b1a7f4bdb1b0dd29601a1450efb1220f79
refs/heads/master
2020-07-24T00:00:59.491294
2019-09-09T23:00:27
2019-09-11T04:29:56
207,744,099
2
0
NOASSERTION
2019-09-11T06:55:58
2019-09-11T06:55:58
null
UTF-8
Java
false
false
3,467
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.hdr.transform.v20170925; import java.util.ArrayList; import java.util.List; import com.aliyuncs.hdr.model.v20170925.DescribeDrGatewaysResponse; import com.aliyuncs.hdr.model.v20170925.DescribeDrGatewaysResponse.Gateway; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeDrGatewaysResponseUnmarshaller { public static DescribeDrGatewaysResponse unmarshall(DescribeDrGatewaysResponse describeDrGatewaysResponse, UnmarshallerContext _ctx) { describeDrGatewaysResponse.setRequestId(_ctx.stringValue("DescribeDrGatewaysResponse.RequestId")); describeDrGatewaysResponse.setSuccess(_ctx.booleanValue("DescribeDrGatewaysResponse.Success")); describeDrGatewaysResponse.setCode(_ctx.stringValue("DescribeDrGatewaysResponse.Code")); describeDrGatewaysResponse.setMessage(_ctx.stringValue("DescribeDrGatewaysResponse.Message")); describeDrGatewaysResponse.setTotalCount(_ctx.integerValue("DescribeDrGatewaysResponse.TotalCount")); describeDrGatewaysResponse.setPageNumber(_ctx.integerValue("DescribeDrGatewaysResponse.PageNumber")); describeDrGatewaysResponse.setPageSize(_ctx.integerValue("DescribeDrGatewaysResponse.PageSize")); List<Gateway> drGateways = new ArrayList<Gateway>(); for (int i = 0; i < _ctx.lengthValue("DescribeDrGatewaysResponse.DrGateways.Length"); i++) { Gateway gateway = new Gateway(); gateway.setGatewayId(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].GatewayId")); gateway.setSiteId(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].SiteId")); gateway.setName(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].Name")); gateway.setDescription(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].Description")); gateway.setVersion(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].Version")); gateway.setIpAddress(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].IpAddress")); gateway.setGatewayClass(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].GatewayClass")); gateway.setStatus(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].Status")); gateway.setImageType(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].ImageType")); gateway.setUpstreamSpeed(_ctx.longValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].UpstreamSpeed")); gateway.setDownstreamSpeed(_ctx.longValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].DownstreamSpeed")); gateway.setOperations(_ctx.stringValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].Operations")); gateway.setCreatedTime(_ctx.longValue("DescribeDrGatewaysResponse.DrGateways["+ i +"].CreatedTime")); drGateways.add(gateway); } describeDrGatewaysResponse.setDrGateways(drGateways); return describeDrGatewaysResponse; } }
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
841f6e66d85543000205342edb0793f361a6e580
feea4687dffefb2d1e8b457d2ad7a2f1bdf3807a
/lab1/src/com/shevtsod/Client.java
0eb8aca762a77235665e41032f26968e212c0ac0
[]
no_license
shevtsod/ENSE470
142ecba63ede055f03593dda4fd4a46c70aaf766
374c4ae6d2e13e912d4fdce43ab574ecde555bee
refs/heads/master
2021-01-11T11:33:41.260840
2017-04-06T03:18:06
2017-04-06T03:18:06
87,381,539
0
1
null
null
null
null
UTF-8
Java
false
false
3,938
java
/* * AUTHOR: Daniel Shevtsov (SID: 200351253 */ package com.shevtsod; import java.math.BigDecimal; import java.text.DecimalFormat; import java.util.InputMismatchException; import java.util.Scanner; public class Client { /** * Main program entry point * * @param args Console arguments to program (unused) */ public static void main(String[] args) { Client2 program = new Client2(); Scanner input = new Scanner(System.in, "UTF-8"); int userInput = -1; char userInputChar = 'F'; System.out.println("PRODUCT ORDERING SYSTEM"); System.out.println("Add products A and B to your cart, and check-out when finished." + "\nThe price of your orders will be displayed at check-out." + "\n\nProduct A - $4.99\t\t\tProduct B - $9.99\n"); System.out.println("Enter your credit rating between A and F: "); boolean correctInput = false; do { System.out.print("\tINPUT: "); try { userInputChar = input.next().charAt(0); if ( Character.toUpperCase(userInputChar) >= 'A' && Character.toUpperCase(userInputChar) <= 'F') correctInput = true; else System.out.println("ERROR: Input must be in range A to F"); input.nextLine(); } catch (InputMismatchException e) { System.out.println("ERROR: Invalid input"); input.nextLine(); } } while (!correctInput); //Could add I/O to initialize other data in customer of customer, only rating really matters Customer c = new PersonalCustomer( "Test Customer", "123 Fake St.", userInputChar, "111111111" ); Order myOrder = new Order(c); while(userInput != 2) { System.out.println("Press 0 to add product A, 1 to add product B, 2 to check-out"); correctInput = false; do { System.out.print("\tINPUT: "); try { userInput = input.nextInt(); if (userInput == 0 || userInput == 1 || userInput == 2) correctInput = true; else System.out.println("ERROR: Input must be in range 0 to 2"); input.nextLine(); } catch (InputMismatchException e) { System.out.println("ERROR: Invalid input"); input.nextLine(); } } while (!correctInput); //Input = 0 -> Add product A // = 1 -> Add product B // = 2 -> Checkout switch(userInput) { case 0: myOrder.addProduct(new Product(new BigDecimal(4.99))); System.out.println("Added Product A to cart"); break; case 1: myOrder.addProduct(new Product(new BigDecimal(9.99))); System.out.println("Added product B to cart"); break; } } DecimalFormat currency = new DecimalFormat("#,###.##"); DecimalFormat percent = new DecimalFormat("###"); System.out.println("Checked-out successfully"); System.out.println("\tTotal price:\t\t$" + currency.format(myOrder.calculatePrice())); System.out.println("Billing Information:" + "\n\tName:\t\t\t\t" + c.getName() + "\n\tAddress:\t\t\t" + c.getAddress() + "\n\tCredit Rating:\t\t" + c.getCreditRating() + " (" + percent.format(c.getDiscountInfo().multiply(new BigDecimal(100))) + "% discount)"); input.close(); } }
[ "daniel.shevtsov@gmail.com" ]
daniel.shevtsov@gmail.com
20e7812ed87cebeb3803f6f64a874947a26015af
e8e0e98bab124fd0594529f75ae0a67332a17bdf
/HelpApp/src/ip/vigilante/help/control/HelpService.java
67241b0308e44b0bdc441e064f4a1b19c292bf0c
[]
no_license
krstvc/Vigilante
11d665a3f4ce9a7e18d5b397f37a2b4feee5fda9
cad109e034b2ad3dcdba58efe9e4d92b69c6f2e1
refs/heads/master
2022-11-24T20:30:47.804730
2020-08-06T08:29:51
2020-08-06T08:29:51
277,673,475
0
0
null
null
null
null
UTF-8
Java
false
false
3,546
java
package ip.vigilante.help.control; import java.util.ArrayList; import javax.ws.rs.DELETE; import javax.ws.rs.GET; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import org.jdom2.Element; import org.jdom2.Namespace; import com.rometools.rome.feed.synd.SyndContent; import com.rometools.rome.feed.synd.SyndContentImpl; import com.rometools.rome.feed.synd.SyndEntry; import com.rometools.rome.feed.synd.SyndEntryImpl; import com.rometools.rome.feed.synd.SyndFeed; import com.rometools.rome.feed.synd.SyndFeedImpl; import com.rometools.rome.io.FeedException; import com.rometools.rome.io.SyndFeedOutput; import ip.vigilante.help.util.PropertiesManager; import ip.vigilante.model.EmergencyCall; import ip.vigilante.service.EmergencyCallService; @Path("/help") public class HelpService { private static PropertiesManager props; private static EmergencyCallService callSvc; private static String BASE_APP_URL; static { props = PropertiesManager.getInstance(); callSvc = EmergencyCallService.getInstance(); BASE_APP_URL = props.getProperty("help_app_url"); } @GET @Produces(MediaType.APPLICATION_JSON) public ArrayList<EmergencyCall> getEmergencyCalls() { return callSvc.getCalls(); } @GET @Path("/{id}") @Produces(MediaType.APPLICATION_JSON) public Response getCallById(@PathParam("id") int id) { EmergencyCall call = callSvc.getCallById(id); return Response.status(200) .entity(call) .build(); } @PUT @Path("/{id}") public Response report(@PathParam("id") int id) { EmergencyCall call = callSvc.getCallById(id); if(call != null) { int reportCount = call.getReportCount() + 1; call.setReportCount(reportCount); callSvc.updateCall(call); return Response.status(200).build(); } else { return Response.status(404).build(); } } @DELETE @Path("/{id}") public Response delete(@PathParam("id") int id) { boolean deleted = callSvc.deleteCall(id); if(deleted) { return Response.status(200).build(); } else { return Response.status(404).build(); } } @GET @Path("/rss") @Produces(MediaType.APPLICATION_JSON) public Response getRssFeed() { SyndFeed feed = new SyndFeedImpl(); feed.setFeedType("rss_2.0"); feed.setLink(BASE_APP_URL); feed.setTitle("Emergency calls"); feed.setDescription("Calls for help"); ArrayList<EmergencyCall> calls = callSvc.getCalls(); ArrayList<SyndEntry> entries = new ArrayList<SyndEntry>(); for(EmergencyCall call : calls) { SyndEntry entry = new SyndEntryImpl(); entry.setTitle(call.getTitle()); entry.setLink(BASE_APP_URL + "/api/help/" + call.getId()); entry.setPublishedDate(call.getTime()); Element image = new Element("image", Namespace.getNamespace("image", "http://web.resource.org/rss/1.0/modules/image/")); image.addContent(call.getImageURI()); entry.getForeignMarkup().add(image); SyndContent description = new SyndContentImpl(); description.setType("text/html"); description.setValue(call.getDescription()); entry.setDescription(description); entries.add(entry); } feed.setEntries(entries); SyndFeedOutput syndFeedOutput = new SyndFeedOutput(); String rss = ""; try { rss = syndFeedOutput.outputString(feed); } catch (FeedException e) { e.printStackTrace(); return Response.status(500).build(); } return Response.status(200).entity(rss).build(); } }
[ "krstvcm@gmail.com" ]
krstvcm@gmail.com
de2df82b6e5453a062060b494a484a5673f637de
437d14f4eea7ac24aa2ff487a8816848f5a4fbcd
/WebRTC-WebSocket/src/main/java/com/chachae/webrtc/service/impl/MessageForwardServiceImpl.java
e4828d91aed577c6c11253a5938059177de4b7a4
[ "Apache-2.0" ]
permissive
wujiuhsu/WebRTC-With-Socket
ea7740a5471fa1d75acaa28a5889f0987c947b0f
4cc7897a2c5570d730457b3068d11efbed892bb6
refs/heads/master
2022-12-13T17:58:17.966868
2020-09-12T06:55:01
2020-09-12T06:55:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,354
java
package com.chachae.webrtc.service.impl; import com.alibaba.fastjson.JSON; import com.chachae.webrtc.entity.ConnectionSystemUser; import com.chachae.webrtc.entity.Message; import com.chachae.webrtc.service.IMessageForwardService; import java.io.IOException; import java.util.Map; import java.util.Set; import org.springframework.stereotype.Service; import org.springframework.web.socket.TextMessage; import org.springframework.web.socket.WebSocketSession; /** * @author chachae * @version v1.0 * @date 2020/8/13 23:16 */ @Service public class MessageForwardServiceImpl implements IMessageForwardService { @Override public boolean sendMessageToOne(Message message, WebSocketSession session) { if (session == null || !session.isOpen()) { return false; } try { session.sendMessage(new TextMessage(JSON.toJSONString(message))); return true; } catch (IOException e) { e.printStackTrace(); return false; } } @Override public boolean sendMessageGroup(Message message, Set<ConnectionSystemUser> users, Map<String, WebSocketSession> socketMap) { for (ConnectionSystemUser user : users) { // 默认不发送给本人 if (!message.getUserId().equals(user.getUserId())) { this.sendMessageToOne(message, socketMap.get(user.getUserId())); } } return true; } }
[ "chenyuexin1998@gmail.com" ]
chenyuexin1998@gmail.com
02bf08cd4b870eb82d2330355c73a585bf006d04
0bd0ca78cc00a89c95c40f3802e0fa307fa37b8b
/android_client/src/com/sunsai/androidpn/NotificationDetailsActivity.java
b9e64e85890122092dd408bd718ed82d67de5df1
[]
no_license
zhuojianhai/androidpn
075806e22831c836d7d94f95136b1b96d4d39a26
ed48b057d93ddf526ba239b4658209e81754ab95
refs/heads/master
2021-01-21T05:37:43.600070
2013-06-01T03:25:09
2013-06-01T03:25:09
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,202
java
/* * Copyright (C) 2010 Moduad Co., Ltd. * * 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.sunsai.androidpn; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.graphics.Typeface; import android.net.Uri; import android.os.Bundle; import android.util.Log; import android.view.Gravity; import android.view.View; import android.widget.Button; import android.widget.LinearLayout; import android.widget.TextView; /** * Activity for displaying the notification details view. * * @author Sehwan Noh (devnoh@gmail.com) */ public class NotificationDetailsActivity extends Activity { private static final String LOGTAG = LogUtil .makeLogTag(NotificationDetailsActivity.class); private String callbackActivityPackageName; private String callbackActivityClassName; public NotificationDetailsActivity() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); SharedPreferences sharedPrefs = this.getSharedPreferences( Constants.SHARED_PREFERENCE_NAME, Context.MODE_PRIVATE); callbackActivityPackageName = sharedPrefs.getString( Constants.CALLBACK_ACTIVITY_PACKAGE_NAME, ""); callbackActivityClassName = sharedPrefs.getString( Constants.CALLBACK_ACTIVITY_CLASS_NAME, ""); Intent intent = getIntent(); String notificationId = intent .getStringExtra(Constants.NOTIFICATION_ID); String notificationApiKey = intent .getStringExtra(Constants.NOTIFICATION_API_KEY); String notificationTitle = intent .getStringExtra(Constants.NOTIFICATION_TITLE); String notificationMessage = intent .getStringExtra(Constants.NOTIFICATION_MESSAGE); String notificationUri = intent .getStringExtra(Constants.NOTIFICATION_URI); Log.d(LOGTAG, "notificationId=" + notificationId); Log.d(LOGTAG, "notificationApiKey=" + notificationApiKey); Log.d(LOGTAG, "notificationTitle=" + notificationTitle); Log.d(LOGTAG, "notificationMessage=" + notificationMessage); Log.d(LOGTAG, "notificationUri=" + notificationUri); // Display display = getWindowManager().getDefaultDisplay(); // View rootView; // if (display.getWidth() > display.getHeight()) { // rootView = null; // } else { // rootView = null; // } View rootView = createView(notificationTitle, notificationMessage, notificationUri); setContentView(rootView); } private View createView(final String title, final String message, final String uri) { LinearLayout linearLayout = new LinearLayout(this); linearLayout.setBackgroundColor(0xffeeeeee); linearLayout.setOrientation(LinearLayout.VERTICAL); linearLayout.setPadding(5, 5, 5, 5); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT); linearLayout.setLayoutParams(layoutParams); TextView textTitle = new TextView(this); textTitle.setText(title); textTitle.setTextSize(18); // textTitle.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18); textTitle.setTypeface(Typeface.DEFAULT, Typeface.BOLD); textTitle.setTextColor(0xff000000); textTitle.setGravity(Gravity.CENTER); layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); layoutParams.setMargins(30, 30, 30, 0); textTitle.setLayoutParams(layoutParams); linearLayout.addView(textTitle); TextView textDetails = new TextView(this); textDetails.setText(message); textDetails.setTextSize(14); // textTitle.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14); textDetails.setTextColor(0xff333333); textDetails.setGravity(Gravity.CENTER); layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); layoutParams.setMargins(30, 10, 30, 20); textDetails.setLayoutParams(layoutParams); linearLayout.addView(textDetails); Button okButton = new Button(this); okButton.setText("Ok"); okButton.setWidth(100); okButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { Intent intent; if (uri != null && uri.length() > 0 && (uri.startsWith("http:") || uri.startsWith("https:") || uri.startsWith("tel:") || uri .startsWith("geo:"))) { intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri)); } else { intent = new Intent().setClassName( callbackActivityPackageName, callbackActivityClassName); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); // intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); // intent.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT); // intent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); } NotificationDetailsActivity.this.startActivity(intent); NotificationDetailsActivity.this.finish(); } }); LinearLayout innerLayout = new LinearLayout(this); innerLayout.setGravity(Gravity.CENTER); innerLayout.addView(okButton); linearLayout.addView(innerLayout); return linearLayout; } // protected void onPause() { // super.onPause(); // finish(); // } // // protected void onStop() { // super.onStop(); // finish(); // } // // protected void onSaveInstanceState(Bundle outState) { // super.onSaveInstanceState(outState); // } // // protected void onNewIntent(Intent intent) { // setIntent(intent); // } }
[ "pengqiuyuanfj@gmail.com" ]
pengqiuyuanfj@gmail.com
ee7c04350f4b7246ec88ddb1e2dba0b65afffd5a
60335d89997560e049ba92cdb787f6282bfe4a80
/app/src/main/java/com/example/reuven/FloaTube/Player.java
8beceef2307eb1b640478252b5b1076961b894e9
[]
no_license
reuvenshenkin/FloaTube
aa258a2fb0cbe5ab74d92d71ab1f37f9c3c54f96
92970e5008e8b8fefb648131fb9d880c24eb31a3
refs/heads/master
2020-06-24T12:51:28.267248
2017-07-11T20:49:33
2017-07-11T20:49:33
96,934,679
0
0
null
null
null
null
UTF-8
Java
false
false
1,327
java
package com.example.reuven.FloaTube; import android.content.Context; import android.content.Intent; import android.os.Bundle; import com.google.android.youtube.player.YouTubeBaseActivity; import com.google.android.youtube.player.YouTubePlayerView; public class Player extends YouTubeBaseActivity { public static YouTubePlayerView playerView; public static Context context; public static String VIDEO_ID; @Override protected void onCreate(Bundle bundle) { super.onCreate(bundle); if(getIntent().getBooleanExtra("FINISH_PLAYER",false)) { finish(); } else { context = this; playerView = new YouTubePlayerView(this); Intent intent = new Intent(getApplicationContext(), YoutubeVideoService.class); if (getIntent().getStringArrayListExtra("VIDEOS_ID")==null) { VIDEO_ID = getIntent().getStringExtra("VIDEO_ID"); intent.putExtra("VIDEO_ID", VIDEO_ID); } else{ intent.putExtra("POSITION",getIntent().getIntExtra("POSITION",0)); intent.putExtra("VIDEOS_ID",getIntent().getStringArrayListExtra("VIDEOS_ID")); } startService(intent); moveTaskToBack(true); } } }
[ "reuvenshen2@gmail.com" ]
reuvenshen2@gmail.com
44cdc0e1bb0d4989313a1f3512f3b61a2c290827
74eae5990697ea020187d7a45a2103915075efe7
/labs/7/BMI.java
0628daf9cbd253a98e16a47426a79a41c404f1cd
[]
no_license
BeingGeeky/cmpt220sd1schaaf
c6481dbdb7fc91f37115dfa4c33162c0809cd357
1cc532280facc1f362697e06558b33e46cc92d6d
refs/heads/master
2021-06-16T05:44:19.245924
2017-05-16T02:23:28
2017-05-16T02:23:28
79,935,265
0
0
null
null
null
null
UTF-8
Java
false
false
2,001
java
/* file: Lab 7 10.2 author: Cassie Schaaf course: CMPT 220 assignment: lab 7 - 10.2 BMI class due date: May 10, 2017 version: 1.0 This file contains the code to 10.2 BMI class UML: ------------------------------ | BMI | ------------------------------ | row: int | | column: int | | maxValue: double | ------------------------------ | locateLargest(): double[][] | ------------------------------ */ import java.util.Scanner; public class BMI{ private String name; private int age; private double weight; private double height; public static final double KILOGRAMS_PER_POUND = 0.45359237; public static final double METERS_PER_INCH = 0.0254; public BMI (String name, int age, double weight, double height){ this.name = name; this.age = age; this.weight = weight; this.height = height; } //end bmi public BMI(String name, double weight, double height) { this(name, 20, weight, height); }//end bmi public BMI(String name, int age, double weight, double feet, double inches){ }//end bmi public double getBMI(){ double bmi = weight * KILOGRAMS_PER_POUND / ((height * METERS_PER_INCH) * (height * METERS_PER_INCH)); return Math.round(bmi * 100)/100; }//end getBMI public String getStatus(){ double bmi= getBMI(); if (bmi<18.5){ return "Underweight"; } else if (bmi<25) { return "Normal"; } else if (bmi < 30) { return "Overweight"; } else return "Obese"; }//end getStatus public String getName() { return name; }//end getName public int getAge(){ return age; }//end getAge public double getWeight(){ return weight; }//end getWeight public double getHeight(){ return height; }//end getHeight }//end program
[ "cassiechapman@Cassies-MacBook-Air.local" ]
cassiechapman@Cassies-MacBook-Air.local
8fae3514a27f644726db033e37e4c611083cb825
5ae0c42c009cbc33b3c5096a46b1d6e53987f3e5
/app/src/test/java/com/example/pavelponomarev/book/ExampleUnitTest.java
cdc4abc0375917f5b9cc5a1b5411f1395b9318ca
[]
no_license
PavelPon/Book
4434ccb9b4e4e1a325aec4ea7d34ae73b322b6b8
0b28dc7d985d7621e27654ba77dcb994334a543c
refs/heads/master
2020-04-12T04:10:37.339416
2019-01-15T07:27:21
2019-01-15T07:27:21
162,287,525
0
0
null
null
null
null
UTF-8
Java
false
false
392
java
package com.example.pavelponomarev.book; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "weizylol92@gmail.com" ]
weizylol92@gmail.com
4e7efc87ec8f6956925d08e8d41b557782eaae29
7eeef26062238ac1df38383f96a9238c14e7b563
/src/main/java/com/simphony/pos/client/CalculateTransactionTotalsExResponse.java
c96b1a106476507a704321464af6e94c4ca58c15
[]
no_license
Varunbxr/SimphonyPOSDubaiRestaurants
8f1c82b32a09e412453a612cdb33c004fc4fa183
042d303280d3a41748aeff8d50a41dc7e2426a65
refs/heads/master
2023-05-31T05:55:22.891616
2021-06-23T10:13:57
2021-06-23T10:13:57
379,526,434
0
0
null
null
null
null
UTF-8
Java
false
false
5,342
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2021.03.23 at 02:11:47 AM IST // package com.simphony.pos.client; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;sequence&gt; * &lt;element name="ppMenuItemsEx" type="{http://micros-hosting.com/EGateway/}ArrayOfSimphonyPosApi_MenuItemEx" minOccurs="0"/&gt; * &lt;element name="ppComboMealsEx" type="{http://micros-hosting.com/EGateway/}ArrayOfSimphonyPosApi_ComboMealEx" minOccurs="0"/&gt; * &lt;element name="pSvcChargeEx" type="{http://micros-hosting.com/EGateway/}SimphonyPosApi_SvcChargeEx" minOccurs="0"/&gt; * &lt;element name="pSubTotalDiscountEx" type="{http://micros-hosting.com/EGateway/}ArrayOfSimphonyPosApi_DiscountEx" minOccurs="0"/&gt; * &lt;element name="pTotalsResponseEx" type="{http://micros-hosting.com/EGateway/}SimphonyPosApi_TotalsResponseEx" minOccurs="0"/&gt; * &lt;/sequence&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ppMenuItemsEx", "ppComboMealsEx", "pSvcChargeEx", "pSubTotalDiscountEx", "pTotalsResponseEx" }) @XmlRootElement(name = "CalculateTransactionTotalsExResponse") public class CalculateTransactionTotalsExResponse { protected ArrayOfSimphonyPosApiMenuItemEx ppMenuItemsEx; protected ArrayOfSimphonyPosApiComboMealEx ppComboMealsEx; protected SimphonyPosApiSvcChargeEx pSvcChargeEx; protected ArrayOfSimphonyPosApiDiscountEx pSubTotalDiscountEx; protected SimphonyPosApiTotalsResponseEx pTotalsResponseEx; /** * Gets the value of the ppMenuItemsEx property. * * @return * possible object is * {@link ArrayOfSimphonyPosApiMenuItemEx } * */ public ArrayOfSimphonyPosApiMenuItemEx getPpMenuItemsEx() { return ppMenuItemsEx; } /** * Sets the value of the ppMenuItemsEx property. * * @param value * allowed object is * {@link ArrayOfSimphonyPosApiMenuItemEx } * */ public void setPpMenuItemsEx(ArrayOfSimphonyPosApiMenuItemEx value) { this.ppMenuItemsEx = value; } /** * Gets the value of the ppComboMealsEx property. * * @return * possible object is * {@link ArrayOfSimphonyPosApiComboMealEx } * */ public ArrayOfSimphonyPosApiComboMealEx getPpComboMealsEx() { return ppComboMealsEx; } /** * Sets the value of the ppComboMealsEx property. * * @param value * allowed object is * {@link ArrayOfSimphonyPosApiComboMealEx } * */ public void setPpComboMealsEx(ArrayOfSimphonyPosApiComboMealEx value) { this.ppComboMealsEx = value; } /** * Gets the value of the pSvcChargeEx property. * * @return * possible object is * {@link SimphonyPosApiSvcChargeEx } * */ public SimphonyPosApiSvcChargeEx getPSvcChargeEx() { return pSvcChargeEx; } /** * Sets the value of the pSvcChargeEx property. * * @param value * allowed object is * {@link SimphonyPosApiSvcChargeEx } * */ public void setPSvcChargeEx(SimphonyPosApiSvcChargeEx value) { this.pSvcChargeEx = value; } /** * Gets the value of the pSubTotalDiscountEx property. * * @return * possible object is * {@link ArrayOfSimphonyPosApiDiscountEx } * */ public ArrayOfSimphonyPosApiDiscountEx getPSubTotalDiscountEx() { return pSubTotalDiscountEx; } /** * Sets the value of the pSubTotalDiscountEx property. * * @param value * allowed object is * {@link ArrayOfSimphonyPosApiDiscountEx } * */ public void setPSubTotalDiscountEx(ArrayOfSimphonyPosApiDiscountEx value) { this.pSubTotalDiscountEx = value; } /** * Gets the value of the pTotalsResponseEx property. * * @return * possible object is * {@link SimphonyPosApiTotalsResponseEx } * */ public SimphonyPosApiTotalsResponseEx getPTotalsResponseEx() { return pTotalsResponseEx; } /** * Sets the value of the pTotalsResponseEx property. * * @param value * allowed object is * {@link SimphonyPosApiTotalsResponseEx } * */ public void setPTotalsResponseEx(SimphonyPosApiTotalsResponseEx value) { this.pTotalsResponseEx = value; } }
[ "varunbxr92@gmail.com" ]
varunbxr92@gmail.com
2e7a72408a1459cdddcda39ac21e85025a52a66b
8036524f5d7a49c4871a39b20acfaf70a7eae9f0
/android/guava/src/com/google/common/cache/CacheLoader.java
57a2dfdb7d81e5fa4141c9348c76c8df527b3d07
[ "Apache-2.0" ]
permissive
codeclimate-testing/guava
46a9ede478329c4815108779d2751bb63b78cb12
be233b637673db7318001274aa16e60a17ca1a50
refs/heads/master
2021-01-20T21:49:45.381176
2020-11-16T17:47:17
2020-11-16T17:47:17
101,792,131
0
0
Apache-2.0
2018-11-19T15:22:30
2017-08-29T18:14:20
Java
UTF-8
Java
false
false
9,883
java
/* * Copyright (C) 2011 The Guava Authors * * 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.google.common.cache; import static com.google.common.base.Preconditions.checkNotNull; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import com.google.common.base.Function; import com.google.common.base.Supplier; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.ListenableFutureTask; import java.io.Serializable; import java.util.Map; import java.util.concurrent.Callable; import java.util.concurrent.Executor; /** * Computes or retrieves values, based on a key, for use in populating a {@link LoadingCache}. * * <p>Most implementations will only need to implement {@link #load}. Other methods may be * overridden as desired. * * <p>Usage example: * * <pre>{@code * CacheLoader<Key, Graph> loader = new CacheLoader<Key, Graph>() { * public Graph load(Key key) throws AnyException { * return createExpensiveGraph(key); * } * }; * LoadingCache<Key, Graph> cache = CacheBuilder.newBuilder().build(loader); * }</pre> * * <p>Since this example doesn't support reloading or bulk loading, if you're able to use lambda * expressions it can be specified even more easily: * * <pre>{@code * CacheLoader<Key, Graph> loader = CacheLoader.from(key -> createExpensiveGraph(key)); * }</pre> * * @author Charles Fry * @since 10.0 */ @GwtCompatible(emulated = true) public abstract class CacheLoader<K, V> { /** * Constructor for use by subclasses. */ protected CacheLoader() {} /** * Computes or retrieves the value corresponding to {@code key}. * * @param key the non-null key whose value should be loaded * @return the value associated with {@code key}; <b>must not be null</b> * @throws Exception if unable to load the result * @throws InterruptedException if this method is interrupted. {@code InterruptedException} is * treated like any other {@code Exception} in all respects except that, when it is caught, * the thread's interrupt status is set */ public abstract V load(K key) throws Exception; /** * Computes or retrieves a replacement value corresponding to an already-cached {@code key}. This * method is called when an existing cache entry is refreshed by * {@link CacheBuilder#refreshAfterWrite}, or through a call to {@link LoadingCache#refresh}. * * <p>This implementation synchronously delegates to {@link #load}. It is recommended that it be * overridden with an asynchronous implementation when using * {@link CacheBuilder#refreshAfterWrite}. * * <p><b>Note:</b> <i>all exceptions thrown by this method will be logged and then swallowed</i>. * * @param key the non-null key whose value should be loaded * @param oldValue the non-null old value corresponding to {@code key} * @return the future new value associated with {@code key}; <b>must not be null, must not return * null</b> * @throws Exception if unable to reload the result * @throws InterruptedException if this method is interrupted. {@code InterruptedException} is * treated like any other {@code Exception} in all respects except that, when it is caught, * the thread's interrupt status is set * @since 11.0 */ @GwtIncompatible // Futures public ListenableFuture<V> reload(K key, V oldValue) throws Exception { checkNotNull(key); checkNotNull(oldValue); return Futures.immediateFuture(load(key)); } /** * Computes or retrieves the values corresponding to {@code keys}. This method is called by * {@link LoadingCache#getAll}. * * <p>If the returned map doesn't contain all requested {@code keys} then the entries it does * contain will be cached, but {@code getAll} will throw an exception. If the returned map * contains extra keys not present in {@code keys} then all returned entries will be cached, but * only the entries for {@code keys} will be returned from {@code getAll}. * * <p>This method should be overridden when bulk retrieval is significantly more efficient than * many individual lookups. Note that {@link LoadingCache#getAll} will defer to individual calls * to {@link LoadingCache#get} if this method is not overridden. * * @param keys the unique, non-null keys whose values should be loaded * @return a map from each key in {@code keys} to the value associated with that key; <b>may not * contain null values</b> * @throws Exception if unable to load the result * @throws InterruptedException if this method is interrupted. {@code InterruptedException} is * treated like any other {@code Exception} in all respects except that, when it is caught, * the thread's interrupt status is set * @since 11.0 */ public Map<K, V> loadAll(Iterable<? extends K> keys) throws Exception { // This will be caught by getAll(), causing it to fall back to multiple calls to // LoadingCache.get throw new UnsupportedLoadingOperationException(); } /** * Returns a cache loader that uses {@code function} to load keys, and without supporting either * reloading or bulk loading. This is most useful when you can pass a lambda expression. Otherwise * it is useful mostly when you already have an existing function instance. * * @param function the function to be used for loading values; must never return {@code null} * @return a cache loader that loads values by passing each key to {@code function} */ public static <K, V> CacheLoader<K, V> from(Function<K, V> function) { return new FunctionToCacheLoader<>(function); } private static final class FunctionToCacheLoader<K, V> extends CacheLoader<K, V> implements Serializable { private final Function<K, V> computingFunction; public FunctionToCacheLoader(Function<K, V> computingFunction) { this.computingFunction = checkNotNull(computingFunction); } @Override public V load(K key) { return computingFunction.apply(checkNotNull(key)); } private static final long serialVersionUID = 0; } /** * Returns a cache loader based on an <i>existing</i> supplier instance. Note that there's no need * to create a <i>new</i> supplier just to pass it in here; just subclass {@code CacheLoader} and * implement {@link #load load} instead. * * @param supplier the supplier to be used for loading values; must never return {@code null} * @return a cache loader that loads values by calling {@link Supplier#get}, irrespective of the * key */ public static <V> CacheLoader<Object, V> from(Supplier<V> supplier) { return new SupplierToCacheLoader<V>(supplier); } /** * Returns a {@code CacheLoader} which wraps {@code loader}, executing calls to * {@link CacheLoader#reload} using {@code executor}. * * <p>This method is useful only when {@code loader.reload} has a synchronous implementation, such * as {@linkplain #reload the default implementation}. * * @since 17.0 */ @GwtIncompatible // Executor + Futures public static <K, V> CacheLoader<K, V> asyncReloading( final CacheLoader<K, V> loader, final Executor executor) { checkNotNull(loader); checkNotNull(executor); return new CacheLoader<K, V>() { @Override public V load(K key) throws Exception { return loader.load(key); } @Override public ListenableFuture<V> reload(final K key, final V oldValue) throws Exception { ListenableFutureTask<V> task = ListenableFutureTask.create( new Callable<V>() { @Override public V call() throws Exception { return loader.reload(key, oldValue).get(); } }); executor.execute(task); return task; } @Override public Map<K, V> loadAll(Iterable<? extends K> keys) throws Exception { return loader.loadAll(keys); } }; } private static final class SupplierToCacheLoader<V> extends CacheLoader<Object, V> implements Serializable { private final Supplier<V> computingSupplier; public SupplierToCacheLoader(Supplier<V> computingSupplier) { this.computingSupplier = checkNotNull(computingSupplier); } @Override public V load(Object key) { checkNotNull(key); return computingSupplier.get(); } private static final long serialVersionUID = 0; } /** * Exception thrown by {@code loadAll()} to indicate that it is not supported. * * @since 19.0 */ public static final class UnsupportedLoadingOperationException extends UnsupportedOperationException { // Package-private because this should only be thrown by loadAll() when it is not overridden. // Cache implementors may want to catch it but should not need to be able to throw it. UnsupportedLoadingOperationException() {} } /** * Thrown to indicate that an invalid response was returned from a call to {@link CacheLoader}. * * @since 11.0 */ public static final class InvalidCacheLoadException extends RuntimeException { public InvalidCacheLoadException(String message) { super(message); } } }
[ "cpovirk@google.com" ]
cpovirk@google.com
9eeb4e001568d2d4c7ce172589561968fc5f1db3
f9e5066771ccc666a9c76c0ee1e82fa12e50505e
/sub.mission/src/core/SubMission.java
be276c134cce21afc94bfcee87a0a1b376af9193
[]
no_license
aarongoin/sub.mission
beea2619c8dd69cab8476b23b6b71b16326c0fe1
81dcb4aa800bb0e6a4c46da54727a45f28a01f46
refs/heads/master
2021-04-09T14:51:22.156833
2018-03-18T05:50:46
2018-03-18T05:50:46
125,694,077
0
0
null
null
null
null
UTF-8
Java
false
false
9,763
java
package core; import java.awt.Font; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import org.newdawn.slick.AppGameContainer; import org.newdawn.slick.GameContainer; import org.newdawn.slick.Image; import org.newdawn.slick.ScalableGame; import org.newdawn.slick.SlickException; import org.newdawn.slick.Sound; import org.newdawn.slick.TrueTypeFont; import org.newdawn.slick.state.StateBasedGame; import org.newdawn.slick.util.ResourceLoader; import entities.Airplane; import entities.Submarine; import jig.ResourceManager; import jig.Vector; import jig.Entity; public class SubMission extends StateBasedGame { static public List<List<Entity>> entities = new ArrayList<List<Entity>>(); public static HashMap<String, String> IMG = new HashMap<String, String>(); static public int[][] landMasses = { /* x, y, r */ {37, 287, 27}, {0, 75, 118}, {80, 660, 250}, {945, 76, 69} }; static public int[][][] shippingLanes = { { {100, -50, 850, -100}, {400, 900, 1200, 950} } }; static public Vector[] patrolZones = { new Vector(580, 270), new Vector(1080, 500), new Vector(640, 725) }; static HashMap<String, Integer> layers = new HashMap<String, Integer>(); public static final int LOADINGSTATE = 0; public static final int MENUSTATE = 1; public static final int PLAYINGSTATE = 2; public static final int INSTRUCTIONSTATE = 3; public static final int MISSIONSELECTIONSTATE = 4; public static final int GAMEOVERSTATE = 5; public static int ScreenHeight; public static int ScreenWidth; public static HashMap<String, String> SND = new HashMap<String, String>(); static public TrueTypeFont subtitle; static public TrueTypeFont text; static public TrueTypeFont title; static HashMap<Entity, Integer> toRemove = new HashMap<Entity, Integer>(); public static Submarine player; static public Airplane airSupport; static public CommercialManager trafficManager; static public PatrolManager patrolManager; static public MissionManager missionManager; static public Image map; static public int missionFailed; static public boolean addEntity(String layer, Entity e) { if (e == null) return false; if (layers.containsKey(layer)) { //System.out.println(entities.get(getLayerIndex(layer))); entities.get(getLayerIndex(layer)).add(e); return true; } return false; } public static Image getImage(String key) { return ResourceManager.getImage(SubMission.IMG.get(key)); } static public List<Entity> getLayer(String layer) { return entities.get(getLayerIndex(layer)); } static public int getLayerIndex(String layer) { return Math.abs(layers.get(layer)) - 1; } public static Sound getSound(String key) { return ResourceManager.getSound(SubMission.SND.get(key)); } public static void main(String[] args) { AppGameContainer app; try { SubMission g = new SubMission("sub.mission"); app = new AppGameContainer( new ScalableGame(g, 1400,850) ); SubMission.ScreenWidth = 1400; SubMission.ScreenHeight = 850; //System.out.println(SubMission.ScreenWidth + " " + SubMission.ScreenHeight); app.setDisplayMode(app.getScreenWidth(), app.getScreenHeight() - 50, false); app.setVSync(true); app.start(); } catch (SlickException e) { e.printStackTrace(); } } static public boolean removeEntity(String layer, Entity e) { //System.out.println("Removing: " + e); if (layers.containsKey(layer)) { toRemove.put(e, getLayerIndex(layer)); return true; } return false; } public Sound bg; public Image depth; /** * Create the BounceGame frame, saving the width and height for later use. * * @param title * the window's title * @param width * the window's width * @param height * the window's height */ public SubMission(String title) { super(title); Entity.setCoarseGrainedCollisionBoundary(Entity.CIRCLE); IMG.put("land", "resource/img/map1/land.png"); IMG.put("map", "resource/img/map1/map.png"); IMG.put("d1", "resource/img/map1/depth_100.png"); IMG.put("d2", "resource/img/map1/depth_200.png"); IMG.put("d3", "resource/img/map1/depth_300.png"); IMG.put("d4", "resource/img/map1/depth_400.png"); IMG.put("d5", "resource/img/map1/depth_500.png"); IMG.put("d6", "resource/img/map1/depth_600.png"); IMG.put("d7", "resource/img/map1/depth_700.png"); IMG.put("sub0", "resource/img/vessel/sub0.png"); IMG.put("sub1", "resource/img/vessel/sub1.png"); IMG.put("sub2", "resource/img/vessel/sub2.png"); IMG.put("patrol", "resource/img/vessel/patrol.png"); IMG.put("destroyer", "resource/img/vessel/destroyer.png"); IMG.put("airplane", "resource/img/vessel/airplane.png"); IMG.put("ship1", "resource/img/vessel/feeder.png"); IMG.put("ship2", "resource/img/vessel/panamax.png"); IMG.put("ship3", "resource/img/vessel/post-panamax.png"); IMG.put("ship4", "resource/img/vessel/ulcv.png"); IMG.put("speed", "resource/img/ui/speed.png"); IMG.put("depth", "resource/img/ui/depth.png"); IMG.put("speed_target", "resource/img/ui/speed_target.png"); IMG.put("depth_target", "resource/img/ui/depth_target.png"); IMG.put("bearing_target", "resource/img/ui/bearing_target.png"); IMG.put("marker", "resource/img/ui/marker.png"); IMG.put("torpedo_marker", "resource/img/ui/torpedo_marker.png"); IMG.put("sub_torpedo_marker", "resource/img/ui/sub_torpedo_marker.png"); IMG.put("mission_target", "resource/img/ui/mission_target.png"); IMG.put("sub_hull", "resource/img/ui/sub_hull.png"); IMG.put("sub_hull0", "resource/img/ui/sub_hull0.png"); IMG.put("torpedo_full", "resource/img/ui/torpedo_full.png"); IMG.put("torpedo_empty", "resource/img/ui/torpedo_empty.png"); IMG.put("nm_full", "resource/img/ui/nm_full.png"); IMG.put("nm_empty", "resource/img/ui/nm_empty.png"); IMG.put("decoy_btn", "resource/img/ui/decoy_btn.png"); IMG.put("retract_btn", "resource/img/ui/retract_btn.png"); IMG.put("sonar_btn", "resource/img/ui/sonar_btn.png"); IMG.put("target_lock", "resource/img/ui/target_lock.png"); IMG.put("towed_sonar", "resource/img/items/towed_sonar.png"); IMG.put("towed_decoy", "resource/img/items/towed_decoy.png"); IMG.put("decoy_waves", "resource/img/items/decoy_waves.png"); IMG.put("sonar_waves", "resource/img/items/sonar_waves.png"); IMG.put("sub_torpedo", "resource/img/items/sub_torpedo.png"); IMG.put("enemy_torpedo", "resource/img/items/enemy_torpedo.png"); IMG.put("sonobuoy_above", "resource/img/items/sonobuoy_above.png"); IMG.put("sonobuoy_even", "resource/img/items/sonobuoy_even.png"); IMG.put("sonobuoy_below", "resource/img/items/sonobuoy_below.png"); SND.put("bg", "resource/sound/115609__scratchikken__underwaterloop1.wav"); SND.put("fire_torpedo", "resource/sound/35530__jobro__torpedo-launch-underwater.wav"); SND.put("torpedo_explosion", "resource/sound/159402__noirenex__overheadexplosion.wav"); SND.put("explosion_a", "resource/sound/203331__veiler__explosion-documentary-veiler.wav"); SND.put("explosion_b", "resource/sound/94185__nbs-dark__explosion.wav"); SND.put("random_0", "resource/sound/370167__shealcudahy__underwater-creature.wav"); SND.put("random_1", "resource/sound/343682__mbari-mars__blue-whale-b-call.wav"); SND.put("random_2", "resource/sound/210837__abrez__dolphin-song-2.wav"); SND.put("random_3", "resource/sound/53266__stomachache__whale.wav"); } static public void addLayer(String layer) { if (!layers.containsKey(layer)) { layers.put(layer, entities.size() + 1); entities.add( new ArrayList<Entity>() ); } } public ArrayList<Integer> getVisibleLayers() { ArrayList<Integer> result = new ArrayList<Integer>(); for (Integer i : layers.values()) if (i > 0) result.add(i); return result; } @Override public void initStatesList(GameContainer container) throws SlickException { container.setShowFPS(false); // game states addState(new LoadingState()); addState(new MenuState()); addState(new GameOverState()); addState(new PlayingState()); addState(new InstructionState()); addState(new MissionSelectionState()); try { Font font = Font.createFont(Font.TRUETYPE_FONT, ResourceLoader.getResourceAsStream("resource/Verdana.ttf")); title = new TrueTypeFont(font.deriveFont(44f), true); subtitle = new TrueTypeFont(font.deriveFont(24f), true); text = new TrueTypeFont(font.deriveFont(16f), true); } catch (Exception e) { e.printStackTrace(); title = new TrueTypeFont(new Font("Verdana", Font.PLAIN, 48), true); subtitle = new TrueTypeFont(new Font("Verdana", Font.PLAIN, 24), true); text = new TrueTypeFont(new Font("Verdana", Font.PLAIN, 16), true); } } static public void removeLayer(String layer) { if (layers.containsKey(layer)) { entities.remove( Math.abs(layers.get(layer)) - 1 ); int removed = layers.remove(layer); int k; for (String key : layers.keySet()) { k = layers.get(key); if (k > removed) { layers.put(key, k - 1); } } } } public void setFont(TrueTypeFont t) { text = t; } public void setLayers(List<String> types) { for (String layer : types) { addLayer(layer); } } public void setLayerVisibility(String layer, boolean b) { if (layers.containsKey(layer)) { if (b) layers.put( layer, Math.abs(layers.get(layer)) ); else layers.put(layer, 0 - Math.abs(layers.get(layer)) ); } } public void setSubtitleFont(TrueTypeFont t) { subtitle = t; } public void setTitleFont(TrueTypeFont t) { title = t; } public void update() { for (Entity e : toRemove.keySet()) { entities.get(toRemove.get(e)).remove(e); } toRemove.clear(); } }
[ "aaron.goin@wsu.edu" ]
aaron.goin@wsu.edu
02e6dc764b384de9f1efd837dae717c5a5ae0e72
f7de2968036201a33a24b73d91128767df7c442f
/src/com/safetronics/WSC/FormGenerator/FormSpinner.java
19bd9bc3cdb349b7ff5ebfd51bf03c5740c396bd
[]
no_license
topolski/SafeTronicAndroid
e64121f4b7e13d6084f2be181b2167be1287444e
05d706a57adbf5f1168d6a5e22a928030e0fcd9a
refs/heads/master
2020-09-19T19:23:47.914206
2016-11-11T21:42:13
2016-11-11T21:42:13
73,513,617
0
0
null
null
null
null
UTF-8
Java
false
false
2,853
java
package com.safetronics.WSC.FormGenerator; import java.util.HashMap; import java.util.Map; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import android.content.Context; import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Spinner; import android.widget.TextView; public class FormSpinner extends FormWidget { protected JSONObject _options; protected TextView _label; protected Spinner _spinner; protected Map<String, String> _propmap; protected ArrayAdapter<String> _adapter; public FormSpinner( Context context, String property, JSONObject options ) { super( context, property ); _options = options; _label = new TextView( context ); _label.setText( getDisplayText() ); _label.setLayoutParams( FormActivity.defaultLayoutParams ); _spinner = new Spinner( context ); _spinner.setLayoutParams( FormActivity.defaultLayoutParams ); String p; String name; JSONArray propertyNames = options.names(); _propmap = new HashMap<String, String>(); _adapter = new ArrayAdapter<String>( context, android.R.layout.simple_spinner_item ); _adapter.setDropDownViewResource( android.R.layout.simple_spinner_dropdown_item ); _spinner.setAdapter( _adapter ); _spinner.setSelection( 0 ); try{ for( int i = 0; i < options.length(); i++ ) { name = propertyNames.getString(i); p = options.getString( name ); _adapter.add( p ); _propmap.put( p, name ); } } catch( JSONException e){ } _layout.addView( _label ); _layout.addView( _spinner ); } @Override public String getValue() { return _propmap.get( _adapter.getItem( _spinner.getSelectedItemPosition() ) ); } @Override public void setValue(String value) { try{ String name; JSONArray names = _options.names(); for( int i = 0; i < names.length(); i++ ) { name = names.getString(i); if( name.equals(value) ) { String item = _options.getString(name); _spinner.setSelection( _adapter.getPosition(item) ); } } } catch( JSONException e ){ Log.i("Lykaion", e.getMessage() ); } } @Override public void setToggleHandler( FormActivity.FormWidgetToggleHandler handler ) { super.setToggleHandler(handler); _spinner.setOnItemSelectedListener( new SelectionHandler( this ) ); } class SelectionHandler implements AdapterView.OnItemSelectedListener { protected FormWidget _widget; public SelectionHandler( FormWidget widget ){ _widget = widget; } public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2, long arg3) { if( _handler != null ){ _handler.toggle( _widget ); } } public void onNothingSelected(AdapterView<?> arg0) { // TODO Auto-generated method stub } } }
[ "milanko.topolski@ict.edu.rs" ]
milanko.topolski@ict.edu.rs
105b7078303006f19b1381faa171adce21072ff7
f75795c2f3dc02ad8324b044ed57e5588c0a74cd
/client/src/main/java/lighthouse/subwindows/SendMoneyController.java
982b4dfd20229c4ac454b04613af8ab4bebf6e26
[ "Apache-2.0" ]
permissive
cgruber/lighthouse
fd9046c3f352fb386d1d768dd9de5897e7c0d4ec
8b20d491e2dfd2bedc60783532971aededd2c928
refs/heads/master
2021-01-21T03:55:20.154242
2014-09-22T12:52:20
2014-09-22T12:52:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,907
java
package lighthouse.subwindows; import com.google.bitcoin.core.*; import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import javafx.event.ActionEvent; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TextField; import lighthouse.Main; import lighthouse.controls.BitcoinAddressValidator; import org.spongycastle.crypto.params.KeyParameter; import javax.annotation.Nullable; import static com.google.common.base.Preconditions.checkState; import static lighthouse.utils.GuiUtils.*; public class SendMoneyController { public Button sendBtn; public Button cancelBtn; public TextField address; public Label titleLabel; public Main.OverlayUI overlayUI; private Wallet.SendResult sendResult; private KeyParameter aesKey; // Called by FXMLLoader public void initialize() { checkState(!Main.bitcoin.wallet().getBalance().isZero()); new BitcoinAddressValidator(Main.params, address, sendBtn); } public void cancel(ActionEvent event) { overlayUI.done(); } public void send(@Nullable ActionEvent event) { // Address exception cannot happen as we validated it beforehand. try { Address destination = new Address(Main.params, address.getText()); Wallet.SendRequest req = Wallet.SendRequest.emptyWallet(destination); req.aesKey = aesKey; sendResult = Main.bitcoin.wallet().sendCoins(req); Futures.addCallback(sendResult.broadcastComplete, new FutureCallback<Transaction>() { @Override public void onSuccess(Transaction result) { checkGuiThread(); overlayUI.done(); } @Override public void onFailure(Throwable t) { // We died trying to empty the wallet. crashAlert(t); } }); sendResult.tx.getConfidence().addEventListener((tx, reason) -> { if (reason == TransactionConfidence.Listener.ChangeReason.SEEN_PEERS) updateTitleForBroadcast(); }); sendBtn.setDisable(true); address.setDisable(true); updateTitleForBroadcast(); } catch (InsufficientMoneyException e) { informationalAlert("Could not empty the wallet", "You may have too little money left in the wallet to make a transaction."); overlayUI.done(); } catch (ECKey.KeyIsEncryptedException e) { askForPasswordAndRetry(); } catch (AddressFormatException e) { // Cannot happen because we already validated it when the text field changed. throw new RuntimeException(e); } } private void askForPasswordAndRetry() { Main.OverlayUI<WalletPasswordController> pwd = Main.instance.overlayUI("subwindows/wallet_password.fxml"); final String addressStr = address.getText(); pwd.controller.aesKeyProperty().addListener((observable, old, cur) -> { // We only get here if the user found the right password. If they don't or they cancel, we end up back on // the main UI screen. By now the send money screen is history so we must recreate it. checkGuiThread(); Main.OverlayUI<SendMoneyController> screen = Main.instance.overlayUI("subwindows/send_money.fxml"); screen.controller.aesKey = cur; screen.controller.address.setText(addressStr); screen.controller.send(null); }); } private void updateTitleForBroadcast() { final int peers = sendResult.tx.getConfidence().numBroadcastPeers(); titleLabel.setText(String.format("Broadcasting ... seen by %d peers", peers)); } }
[ "mike@plan99.net" ]
mike@plan99.net
b7bc0117149bc0f69d011504370a304d934a6000
dfdb9cfa53d7032850f86859db3c84db543d80de
/app/src/main/java/my/edu/tarc/lab41navigationactivity/importFragment.java
a15ed6986eda80c6d768a804c6d268cb310fd9a0
[]
no_license
HinTarUC/Lab41NavigationActivity
078a8b806130161cfdd2bbdaa5565e7dc288b624
4279aa2c99390be4af4e204a87e66fcad9fda467
refs/heads/master
2020-04-08T18:23:31.702302
2018-11-29T04:12:56
2018-11-29T04:12:56
159,606,094
0
0
null
null
null
null
UTF-8
Java
false
false
1,218
java
package my.edu.tarc.lab41navigationactivity; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; /** * A simple {@link Fragment} subclass. */ public class importFragment extends Fragment { private TextView textViewMessage; public importFragment() { // Required empty public constructor } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view; view = inflater.inflate(R.layout.fragment_import, container, false); textViewMessage = view.findViewById(R.id.textViewMessage); Button buttonShowMessage; buttonShowMessage = view.findViewById(R.id.buttonShowMessage); buttonShowMessage.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v) { textViewMessage.setText("Helle Imprt Fragment Button"); } }); return view; } }
[ "teekh-wa16@student.tarc.edu.my" ]
teekh-wa16@student.tarc.edu.my
e0d22a0bfe3cb883659181150a62b775a2f3db32
ec98409b6370cced7245530a47eaf9779bad5944
/spring-web/src/test/java/org/togglz/spring/test/proxy/ProxyFeatures.java
3238a89ba351c7c7934435b490a4e8530eb20908
[ "Apache-2.0" ]
permissive
Christopher-Hsieh/togglz
0cdcb687e4f9c7834055fddbc307c3c7d3f8d0e0
dbf3fc5e48d567e3e307e490f4985c48d1a4e7ca
refs/heads/master
2022-07-11T02:50:50.101452
2020-03-11T07:22:58
2020-03-11T07:22:58
265,479,488
1
0
Apache-2.0
2020-05-20T07:01:30
2020-05-20T07:01:29
null
UTF-8
Java
false
false
295
java
package org.togglz.spring.test.proxy; import org.togglz.core.Feature; import org.togglz.core.context.FeatureContext; public enum ProxyFeatures implements Feature { SERVICE_TOGGLE; public boolean isActive() { return FeatureContext.getFeatureManager().isActive(this); } }
[ "christian@kaltepoth.de" ]
christian@kaltepoth.de
da6554a926044fa55558a6c6cfdd07b6d60a0d1b
af7352526d2a122197c6402de602c44372384ec1
/src/chrischristakis/Shapes/SShape.java
49e0b925b00326634b13613841ff78201e3d8f01
[]
no_license
chrischristakis/BlocksGL
372fd84d55dfb9b76434e34f192c995293f510df
5e91f639ff1997500c0ecd8ce4dad4179cd232db
refs/heads/master
2022-12-24T18:40:49.422332
2020-10-02T22:25:33
2020-10-02T22:25:33
296,919,966
0
0
null
null
null
null
UTF-8
Java
false
false
1,151
java
package chrischristakis.Shapes; import chrischristakis.Scene; public class SShape extends Shape { public SShape(int x, int y) { super(x, y); shape = rot0; color.x = Scene.SColor.x; color.y = Scene.SColor.y; color.z = Scene.SColor.z; } @Override public void rotateCW() { currentRotation = (currentRotation >= 3)? 0 : currentRotation + 1; switch(currentRotation) { case 0: shape = rot0; break; case 1: shape = rot1; break; case 2: shape = rot2; break; case 3: shape = rot3; break; default: shape = rot0; break; } } @Override public void rotateCCW() { currentRotation = (currentRotation < 0)? 3 : currentRotation - 1; switch(currentRotation) { case 0: shape = rot0; break; case 1: shape = rot1; break; case 2: shape = rot2; break; case 3: shape = rot3; break; default: shape = rot0; break; } } public int[][] rot0 = {{0,6,6}, {6,6,0}, {0,0,0}}; public int[][] rot1 = {{0,6,0}, {0,6,6}, {0,0,6}}; public int[][] rot2 = {{0,0,0}, {0,6,6}, {6,6,0}}; public int[][] rot3 = {{6,0,0}, {6,6,0}, {0,6,0}}; }
[ "cchrista@uwo.ca" ]
cchrista@uwo.ca
a6588d82f2c887b55e8ba998761a71b494dc7b7a
1e8d0774843f93e4643f54dcfc1c0430c7f83071
/src/hr/gladijatori/web/servlets/PorVirLigaServlet.java
2209dae7c4ddb97be4068f5453385c3e762f9e3c
[]
no_license
gbrlas/gladijatori
8e5f5fb089d41947de3c0c988a23fcefb4377213
fa3691ebc1c7e6a5b29214fff466a3413119e157
refs/heads/master
2021-06-18T23:00:44.555597
2017-05-23T21:38:40
2017-05-23T21:38:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,162
java
package hr.gladijatori.web.servlets; import java.io.IOException; import java.util.Comparator; import java.util.List; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import hr.gladijatori.dao.DAOProvider; import hr.gladijatori.modeli.virtliga.VirtEkipa; @WebServlet("/servleti/virt/poredakvirtualnaLiga") public class PorVirLigaServlet extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { List<VirtEkipa> ekipe = DAOProvider.getDAO().dohvatiLigu("Virtualna liga").getEkipe(); ekipe.sort(new Comparator<VirtEkipa>() { @Override public int compare(VirtEkipa o1, VirtEkipa o2) { return -Double.compare(o1.getOstvareniBodovi(), o2.getOstvareniBodovi()); } }); req.setAttribute("ekipe", ekipe); req.getRequestDispatcher("/WEB-INF/pages/PoredakVirtLige.jsp").forward(req, resp); } }
[ "goran.brlas@gmail.com" ]
goran.brlas@gmail.com
dc76919e7d84048f5fe133e2e7c63171f51351ab
a335c839adce96b23f2a9bf6481b0f31d46680fd
/src/by/htp/libsite/service/ServiceFactory.java
78d052f4b51046516d594e763d6a433f54a6f57f
[]
no_license
AlexShatskiy/LibrarySite
b0faa4cd56dc22aa17c6f86774822ac03237413f
f3ab9e4352354049a0e5c801f5a058d8877b54ca
refs/heads/master
2020-12-07T15:18:38.465891
2017-07-06T14:53:02
2017-07-06T14:53:02
95,486,199
0
0
null
null
null
null
UTF-8
Java
false
false
564
java
package by.htp.libsite.service; import by.htp.libsite.service.impl.BookServiceImpl; //utf-8 import by.htp.libsite.service.impl.UserServiceImpl; public class ServiceFactory { private final static ServiceFactory instance = new ServiceFactory(); private UserService userService = new UserServiceImpl(); private BookService bookService = new BookServiceImpl(); public static ServiceFactory getInstance(){ return instance; } public UserService getUserService(){ return userService; } public BookService getBookService(){ return bookService; } }
[ "leha.shatskiy@gmail.com" ]
leha.shatskiy@gmail.com
cf98de906de8ce18df9f8653af05bd8f13460495
8081c55e92352da8c8d563d2f103373ff1d5696a
/app/src/main/java/com/sticket/app/sticket/util/CameraSurfaceView.java
5690f0ac8d92d368c8ea01855416e99eedba1f95
[]
no_license
sticket-studio/sticket-android
054538875f6e532467b4325463f01c6bf1e78b99
a2dff7a7a01ca6b3ae0fd9ed04abfac76e3fef47
refs/heads/master
2020-05-25T06:36:36.841296
2019-11-06T07:55:01
2019-11-06T07:55:01
187,669,048
2
1
null
2019-11-06T07:55:02
2019-05-20T15:37:32
Java
UTF-8
Java
false
false
1,859
java
package com.sticket.app.sticket.util; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.util.Log; import android.view.SurfaceHolder; import android.view.SurfaceView; public class CameraSurfaceView extends SurfaceView { private SurfaceHolder.Callback callback; private Context context; @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); Log.e("Surface", "onDraw"); } public CameraSurfaceView(Context context, SurfaceHolder.Callback callback) { super(context); this.context = context; this.callback = callback; } // // public void surfaceCreated(SurfaceHolder holder) { // try { // // Open the Camera in preview mode // this.camera = Camera.open(); // this.camera.setPreviewDisplay(holder); // } catch (IOException ioe) { // ioe.printStackTrace(System.out); // } // // } // // public void surfaceDestroyed(SurfaceHolder holder) { // // Surface will be destroyed when replaced with a new screen // // Always make sure to release the Camera instance // camera.stopPreview(); // camera.release(); // camera = null; // } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { // TODO Auto-generated method stub } public Bitmap drawBitmap() { // https://blog.naver.com/PostView.nhn?blogId=pii90&logNo=90167897138 Bitmap bitmap = Bitmap.createBitmap(getWidth(), getHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); callback.surfaceDestroyed(null); //Thread 잠시 멈춤(pause) draw(canvas); callback.surfaceCreated(null); //Thread 재개(resume) return bitmap; } }
[ "yhc944@gmail.com" ]
yhc944@gmail.com
2124dede54c89f96bc8888cdce1d4a152c33c94d
452d8583d31179f2ef68dbe6a71524b0718060de
/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/InternalRandomSampler.java
b444a1ef8f4d7ee675e358bf35def0846dccb292
[ "Apache-2.0", "Elastic-2.0", "SSPL-1.0", "LicenseRef-scancode-other-permissive" ]
permissive
ianuoui/elasticsearch
8b22db8bdf4ebfba0f3b0e443cd4668d68ef9bf1
7ea2a2c4090e9af1caf29677be1bbc57d25a80a8
refs/heads/master
2023-01-25T01:41:00.686110
2023-01-21T20:19:44
2023-01-21T20:19:44
122,552,945
1
0
Apache-2.0
2018-02-23T00:35:00
2018-02-23T00:35:00
null
UTF-8
Java
false
false
4,136
java
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ package org.elasticsearch.search.aggregations.bucket.sampler.random; import org.elasticsearch.common.io.stream.StreamInput; import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.search.aggregations.AggregationReduceContext; import org.elasticsearch.search.aggregations.InternalAggregation; import org.elasticsearch.search.aggregations.InternalAggregations; import org.elasticsearch.search.aggregations.bucket.InternalSingleBucketAggregation; import org.elasticsearch.search.aggregations.bucket.sampler.Sampler; import org.elasticsearch.search.aggregations.support.SamplingContext; import org.elasticsearch.xcontent.XContentBuilder; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; public class InternalRandomSampler extends InternalSingleBucketAggregation implements Sampler { public static final String NAME = "mapped_random_sampler"; public static final String PARSER_NAME = "random_sampler"; private final int seed; private final double probability; InternalRandomSampler( String name, long docCount, int seed, double probability, InternalAggregations subAggregations, Map<String, Object> metadata ) { super(name, docCount, subAggregations, metadata); this.seed = seed; this.probability = probability; } /** * Read from a stream. */ public InternalRandomSampler(StreamInput in) throws IOException { super(in); this.seed = in.readInt(); this.probability = in.readDouble(); } @Override protected void doWriteTo(StreamOutput out) throws IOException { super.doWriteTo(out); out.writeInt(seed); out.writeDouble(probability); } @Override public String getWriteableName() { return NAME; } @Override public String getType() { return PARSER_NAME; } @Override protected InternalSingleBucketAggregation newAggregation(String name, long docCount, InternalAggregations subAggregations) { return new InternalRandomSampler(name, docCount, seed, probability, subAggregations, metadata); } @Override public InternalAggregation reduce(List<InternalAggregation> aggregations, AggregationReduceContext reduceContext) { long docCount = 0L; List<InternalAggregations> subAggregationsList = new ArrayList<>(aggregations.size()); for (InternalAggregation aggregation : aggregations) { docCount += ((InternalSingleBucketAggregation) aggregation).getDocCount(); subAggregationsList.add(((InternalSingleBucketAggregation) aggregation).getAggregations()); } InternalAggregations aggs = InternalAggregations.reduce(subAggregationsList, reduceContext); if (reduceContext.isFinalReduce() && aggs != null) { SamplingContext context = buildContext(); aggs = InternalAggregations.from( aggs.asList().stream().map(agg -> ((InternalAggregation) agg).finalizeSampling(context)).toList() ); } return newAggregation(getName(), docCount, aggs); } public SamplingContext buildContext() { return new SamplingContext(probability, seed); } @Override public XContentBuilder doXContentBody(XContentBuilder builder, Params params) throws IOException { builder.field(RandomSamplerAggregationBuilder.SEED.getPreferredName(), seed); builder.field(RandomSamplerAggregationBuilder.PROBABILITY.getPreferredName(), probability); builder.field(CommonFields.DOC_COUNT.getPreferredName(), getDocCount()); getAggregations().toXContentInternal(builder, params); return builder; } }
[ "noreply@github.com" ]
ianuoui.noreply@github.com
8eb0d204ef628b3339417137482999dedd7be3fd
ad1678a7cedef2fad88900b5fca7eb2cfb85fb1f
/ncep/gov.noaa.nws.ncep.viz.rtkp/src/gov/noaa/nws/ncep/viz/rtkp/rsc/GeoMagSampling.java
791ad777473cd6e40e4f5b5720380f0071dc393c
[]
no_license
h4ck3rm1k3/awips2
f4fa386788d7f913648f527aa1d9d6332e7a7b9f
63ab4c6a1d32acd9d76fd3bf3e604f5a210c522e
refs/heads/upc
2020-12-29T00:26:18.244418
2015-01-13T00:37:49
2015-01-13T00:37:49
29,173,456
0
0
null
2015-01-13T04:56:35
2015-01-13T04:56:35
null
UTF-8
Java
false
false
18,116
java
/** * This code has unlimited rights, and is provided "as is" by the National Centers * for Environmental Prediction, without warranty of any kind, either expressed or implied, * including but not limited to the implied warranties of merchantability and/or fitness * for a particular purpose. * * This code has been developed by the NCEP-SIB for use in the AWIPS2 system. * **/ package gov.noaa.nws.ncep.viz.rtkp.rsc; import java.awt.geom.Rectangle2D; import java.util.ArrayList; import java.util.List; import org.eclipse.swt.graphics.RGB; import com.raytheon.uf.common.geospatial.ReferencedCoordinate; import com.raytheon.uf.common.status.IUFStatusHandler; import com.raytheon.uf.common.status.UFStatus; import com.raytheon.uf.common.status.UFStatus.Priority; import com.raytheon.uf.viz.core.DrawableString; import com.raytheon.uf.viz.core.IExtent; import com.raytheon.uf.viz.core.IGraphicsTarget; import com.raytheon.uf.viz.core.IGraphicsTarget.HorizontalAlignment; import com.raytheon.uf.viz.core.IGraphicsTarget.TextStyle; import com.raytheon.uf.viz.core.IGraphicsTarget.VerticalAlignment; import com.raytheon.uf.viz.core.drawables.AbstractRenderableDisplay; import com.raytheon.uf.viz.core.drawables.IDescriptor; import com.raytheon.uf.viz.core.drawables.IFont; import com.raytheon.uf.viz.core.drawables.IFont.Style; import com.raytheon.uf.viz.core.drawables.PaintProperties; import com.raytheon.uf.viz.core.drawables.ResourcePair; import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.uf.viz.core.rsc.AbstractVizResource; import com.raytheon.uf.viz.core.rsc.AbstractVizResource.ResourceStatus; import com.raytheon.uf.viz.core.rsc.ResourceList; import com.raytheon.uf.viz.core.rsc.ResourceProperties; import com.raytheon.uf.viz.core.rsc.capabilities.ColorableCapability; import com.vividsolutions.jts.geom.Coordinate; /** * GeoMagSampling resource, draws sample text to the screen. Also picks up mouse * events. * * <pre> * * SOFTWARE HISTORY * * Date Ticket# Engineer Description * ------------ ---------- ----------- -------------------------- * April 16, 2014 1122 sgurung Initial creation * * </pre> * * @author sgurung * @version 1.0 */ public class GeoMagSampling { private static final transient IUFStatusHandler statusHandler = UFStatus .getHandler(GeoMagSampling.class); /** * The result of a hover operation: a set of strings and corresponding * colors * */ protected static class SampleResult { public SampleResult() { } public String[] labels; public RGB[] colors; } private IFont hoverFont = null; private boolean errorInHovering = false; private VerticalAlignment verticalAlignment = VerticalAlignment.TOP; public GeoMagSampling() { } protected SampleResult doHover(ReferencedCoordinate coord, ResourceList resources) throws VizException { SampleResult result = new SampleResult(); List<String> labelList = new ArrayList<String>(); List<RGB> colorList = new ArrayList<RGB>(); try { int size = resources.size(); for (int i = size - 1; i >= 0; --i) { ResourcePair rp = resources.get(i); String retVal = recursiveHoverSearch(rp, coord); if (retVal != null && retVal.length() > 0) { RGB color = null; if (rp.getResource().hasCapability( ColorableCapability.class)) { color = rp.getResource() .getCapability(ColorableCapability.class) .getColor(); } int p1, p2; p1 = 0; while ((p2 = retVal.indexOf('\n', p1)) >= 0) { colorList.add(color); labelList.add(retVal.substring(p1, p2)); p1 = p2 + 1; } String s = retVal.substring(p1); if (s.length() > 0) { colorList.add(color); labelList.add(retVal.substring(p1)); } break; } } } catch (Throwable t) { statusHandler.handle(Priority.PROBLEM, "Error sampling resources: " + t.getLocalizedMessage(), t); } result.labels = labelList.toArray(new String[labelList.size()]); result.colors = colorList.toArray(new RGB[colorList.size()]); return result; } private String recursiveHoverSearch(ResourcePair rp, ReferencedCoordinate coordinate) throws VizException { ResourceProperties props = rp.getProperties(); AbstractVizResource<?, ?> rsc = rp.getResource(); if (rsc != null && rsc.getStatus() == ResourceStatus.INITIALIZED && props.isVisible()) { String curVal = rsc.inspect(coordinate); if (curVal != null && curVal.length() > 0) { return curVal; } } return null; } protected void paintResult(IGraphicsTarget target, IDescriptor descriptor, PaintProperties paintProps, ReferencedCoordinate coord) throws VizException { if (hoverFont == null) { hoverFont = target.initializeFont(target.getDefaultFont() .getFontName(), 12, new Style[] { Style.BOLD }); hoverFont.setSmoothing(false); hoverFont.setScaleFont(false); } SampleResult result = doHover(coord, descriptor.getResourceList()); verticalAlignment = VerticalAlignment.TOP; target.clearClippingPlane(); try { if (result != null) { double[] world = new double[] { coord.getObject().x, coord.getObject().y }; double[] pixel = descriptor.worldToPixel(world); Coordinate c = new Coordinate(pixel[0], pixel[1]); int canvasWidth = paintProps.getCanvasBounds().width; double extentWidth = paintProps.getView().getExtent() .getWidth(); double ratioX = canvasWidth / extentWidth; if (result.labels.length > 0) { List<String[]> strsToUse = new ArrayList<String[]>(); HorizontalAlignment[] alignments = new HorizontalAlignment[result.labels.length]; boolean[] modified = new boolean[result.labels.length]; for (int i = 0; i < modified.length; ++i) { modified[i] = false; alignments[i] = HorizontalAlignment.LEFT; String[] tmp = new String[] { result.labels[i], result.labels[i] }; strsToUse.add(tmp); } adjustStrings(target, paintProps, strsToUse, modified, alignments, c, ratioX, null); HorizontalAlignment horizontalAlignment = alignments[0]; boolean good = true; for (int i = 1; i < alignments.length && good; ++i) { if (horizontalAlignment != alignments[i]) { good = false; } } if (!good) { // not all the same, figure out alignments!!! int maxLen = 0; int i = 0; for (String[] s : strsToUse) { if (s[0].length() > maxLen) { maxLen = s[0].length(); horizontalAlignment = alignments[i]; } ++i; } adjustStrings(target, paintProps, strsToUse, modified, alignments, c, ratioX, horizontalAlignment); } List<String> actualStrs = new ArrayList<String>(); for (int i = 0; i < strsToUse.size(); ++i) { String[] strs = strsToUse.get(i); for (int j = 1; j < strs.length; ++j) { actualStrs.add(strs[j]); // colorsToUse.add(result.colors[i]); } } String[] newStrs = actualStrs.toArray(new String[actualStrs .size()]); double referencePtY = adjustLabelWrapY( target, newStrs, c.y + ((AbstractRenderableDisplay.CURSOR_HEIGHT) / ratioX), paintProps.getView().getExtent(), ratioX); if (horizontalAlignment == HorizontalAlignment.RIGHT) { c.x -= (target.getStringBounds(hoverFont, newStrs, TextStyle.BOXED).getWidth() / ratioX); } DrawableString hoverString = new DrawableString(newStrs, new RGB(0, 0, 0)); hoverString.font = hoverFont; hoverString.textStyle = TextStyle.BOXED; hoverString.horizontalAlignment = HorizontalAlignment.LEFT; hoverString.verticallAlignment = verticalAlignment; hoverString.boxColor = new RGB(255, 255, 255); hoverString.setCoordinates(c.x, referencePtY); target.drawStrings(hoverString); } } errorInHovering = false; } catch (Exception e) { if (errorInHovering) { // Keep down the number of error messages statusHandler.handle( Priority.PROBLEM, "Error painting sample text: " + e.getLocalizedMessage(), e); } errorInHovering = true; } } private void adjustStrings(IGraphicsTarget target, PaintProperties paintProps, List<String[]> strsToUse, boolean[] modified, HorizontalAlignment[] alignments, Coordinate c, double ratio, HorizontalAlignment targetAlignment) { List<String[]> strsToUseInternal = new ArrayList<String[]>(); for (int i = 0; i < strsToUse.size(); ++i) { String str = strsToUse.get(i)[0]; String[] split = str.split("[ ]"); boolean done = false; int divideBy = strsToUse.get(i).length - 1; int maxDivisions = 0; for (int j = 0; j < split.length; ++j) { if (split[j].isEmpty() == false) { ++maxDivisions; } } if (alignments[i] == targetAlignment) { strsToUseInternal.add(strsToUse.get(i)); } else { String[] test = new String[] { str }; while (!done) { if (divideBy > maxDivisions || alignments[i] == targetAlignment) { done = true; continue; } int approxLenPerStr = str.length() / divideBy; List<String> strs = new ArrayList<String>(); for (int j = 0; j < split.length;) { String line = split[j++]; while (j < split.length) { String s = split[j]; if (s.length() + line.length() <= approxLenPerStr) { if (!s.isEmpty()) { if (j == split.length - 1 && split[1].equalsIgnoreCase("=")) { line = split[split.length - 1]; } else { line += " " + s; } } else { line += " "; } ++j; } else { break; } } strs.add(line); } test = strs.toArray(new String[strs.size()]); HorizontalAlignment alignment = adjustLabelWrapX(target, test, c.x, paintProps.getView().getExtent(), ratio, alignments[i]); if (alignment == alignments[i] && (targetAlignment == null || alignment == targetAlignment)) { // the alignment was not changed and we are the target // alignment, we are done done = true; } else { if (targetAlignment == null) { // alignment changed, check to see if it changes // back HorizontalAlignment tmpAlignment = alignment; alignment = adjustLabelWrapX(target, test, c.x, paintProps.getView().getExtent(), ratio, alignment); if (alignment != tmpAlignment) { // we moved back, we need to divide and // conquer alignments[i] = HorizontalAlignment.LEFT; modified[i] = true; divideBy++; } else { // we are good at this alignment alignments[i] = alignment; done = true; } } else { // we need to be the targetAlignment alignment = adjustLabelWrapX(target, test, c.x, paintProps.getView().getExtent(), ratio, targetAlignment); if (alignment == targetAlignment) { // we are fine at other alignment also, use it: alignments[i] = alignment; done = true; } else { alignments[i] = targetAlignment; modified[i] = true; divideBy++; } } } } String[] addTo = new String[test.length + 1]; addTo[0] = str; for (int j = 0; j < test.length; ++j) { addTo[j + 1] = test[j]; } strsToUseInternal.add(addTo); } } strsToUse.clear(); strsToUse.addAll(strsToUseInternal); } /** * Adjusts the x label if the width of the longest label extends the extent * * @param target * @param labels * @param x * @param extent * @param ratio * @return */ private HorizontalAlignment adjustLabelWrapX(IGraphicsTarget target, String[] labels, double x, IExtent extent, double ratio, HorizontalAlignment horizontalAlignment) { double referencePoint = x; // Find the max width of the label in pixels double maxWidth = 0; IFont font = hoverFont; for (String label : labels) { Rectangle2D bounds = target.getStringBounds(font, label); if (bounds.getWidth() > maxWidth) { maxWidth = bounds.getWidth(); } } // Get the width in gl space double widthInGl = maxWidth / ratio; if (horizontalAlignment == HorizontalAlignment.LEFT) { // Check to see if text extends screen extent if (referencePoint + widthInGl > extent.getMaxX()) { horizontalAlignment = HorizontalAlignment.RIGHT; } } else { // Check to see if text extends screen extent if (referencePoint - widthInGl < extent.getMinX()) { horizontalAlignment = HorizontalAlignment.LEFT; } } return horizontalAlignment; } /** * Adjusts the y label position if the stacked labels exceeds the screen * extent height * * @param target * @param labels * @param y * @param extent * @param ratio * @return */ private double adjustLabelWrapY(IGraphicsTarget target, String[] labels, double y, IExtent extent, double ratio) { double referencePoint = y; double totalHeight = target.getStringBounds(hoverFont, labels, TextStyle.BLANKED).getHeight(); // convert to gl space double maxHeightInGl = (totalHeight) / ratio; // check to see if height extends map height if (referencePoint + maxHeightInGl > extent.getMaxY()) { verticalAlignment = VerticalAlignment.BOTTOM; referencePoint -= (AbstractRenderableDisplay.CURSOR_HEIGHT + 2) / ratio; } // return adjusted point return referencePoint; } public void dispose() { if (hoverFont != null) { hoverFont.dispose(); } } }
[ "mjames@unidata.ucar.edu" ]
mjames@unidata.ucar.edu
8621d3cda07c6569c891d9395805bbad0c1d10cb
5fb48a195565b706c1a5f6654f2995bbe9c901bf
/ppsmweb/src/main/java/com/ppsm/mobile/utils/CopyEntityToDtoUtils.java
04cf45e992fa11150c555548e37d4ac96bb2ee74
[]
no_license
liuyiqiang1995/ppsm
25c78a1e3f596a6c0166bc37bbf80801c106e6a7
a7b6b4490f04650cff2762d582f8842da9737fa7
refs/heads/master
2020-03-16T19:14:27.287166
2018-05-11T00:42:17
2018-05-11T00:42:17
132,906,781
1
0
null
null
null
null
UTF-8
Java
false
false
1,933
java
package com.ppsm.mobile.utils; import com.ppsm.mobile.dto.PpsmPriceDto; import com.ppsm.mobile.dto.PpsmPriceRootIdDto; import com.ppsm.mobile.entity.MobilePrice; import java.util.ArrayList; import java.util.List; /** * @Description: * @Author: LiuYiQiang * @Date: 15:54 2018/5/6 */ public class CopyEntityToDtoUtils { public static void copyMobilePriceToPpsmPriceDto(MobilePrice mobilePrice, PpsmPriceDto ppsmPriceDto){ ppsmPriceDto.setId(mobilePrice.getId()); ppsmPriceDto.setPrice(mobilePrice.getPrice()); ppsmPriceDto.setTime(mobilePrice.getTime()); ppsmPriceDto.setProductName(mobilePrice.getMobileProduct() == null ? "" : mobilePrice.getMobileProduct().getProductName()); ppsmPriceDto.setProductColor(mobilePrice.getMobileProduct() == null ? "" : mobilePrice.getMobileProduct().getProductColor()); ppsmPriceDto.setProductCountry(mobilePrice.getMobileProduct() == null ? "" : mobilePrice.getMobileProduct().getProductCountry()); } public static void copyMobilePriceListToPpsmPriceRootIdDto(List<MobilePrice> mobilePrices, PpsmPriceRootIdDto ppsmPriceRootIdDto){ List<PpsmPriceDto> ppsmPriceDtos = new ArrayList<PpsmPriceDto>(); for(MobilePrice mobilePrice : mobilePrices){ PpsmPriceDto ppsmPriceDto = new PpsmPriceDto(); copyMobilePriceToPpsmPriceDto(mobilePrice,ppsmPriceDto); ppsmPriceDtos.add(ppsmPriceDto); } String rootId = (mobilePrices.get(0).getMobileProduct() == null ? "null" : mobilePrices.get(0).getMobileProduct().getRootId()); String rootName = (mobilePrices.get(0).getMobileProduct() == null ? "null" : mobilePrices.get(0).getMobileProduct().getProductName()); ppsmPriceRootIdDto.setRootId(rootId); ppsmPriceRootIdDto.setRootName(rootName); ppsmPriceRootIdDto.setPpsmPriceDtoList(ppsmPriceDtos); } }
[ "liuyiqiang1995@outlook.com" ]
liuyiqiang1995@outlook.com
7efc78e8d6b6ba2885b76319668db6a7f7d7e26e
153521379423be2279d2ad8ece55928d90f00356
/addsubdemo/src/main/java/xuejian/bwie/com/addsubdemo/AmountView.java
5b0ad0d1d7de86be5237e83e0f920c79d5bc1120
[]
no_license
CXJean/CartJiaJianDemo
9c75f0e8804fba8c3425c42effac72da5ebd16d6
a0005a8d45704fc222705cb26ba12c6492f3eae0
refs/heads/master
2021-09-05T15:23:10.443552
2018-01-29T08:07:33
2018-01-29T08:07:33
111,641,748
3
0
null
null
null
null
UTF-8
Java
false
false
4,220
java
package xuejian.bwie.com.addsubdemo; import android.content.Context; import android.content.res.TypedArray; import android.text.Editable; import android.text.TextWatcher; import android.util.AttributeSet; import android.util.Log; import android.util.TypedValue; import android.view.LayoutInflater; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; /** * Created by xue on 2017-11-22. */ public class AmountView extends LinearLayout implements View.OnClickListener, TextWatcher { private static final String TAG = "AmountView"; private int amount = 1; //购买数量 private int goods_storage = 1; //商品库存 private OnAmountChangeListener mListener; private EditText etAmount; private Button btnDecrease; private Button btnIncrease; public AmountView(Context context) { super(context); } public AmountView(Context context, AttributeSet attrs) { super(context, attrs); LayoutInflater.from(context).inflate(R.layout.number_add_sub_view, this); etAmount = (EditText) findViewById(R.id.etAmount); btnDecrease = (Button) findViewById(R.id.btnDecrease); btnIncrease = (Button) findViewById(R.id.btnIncrease); btnDecrease.setOnClickListener(this); btnIncrease.setOnClickListener(this); etAmount.addTextChangedListener(this); TypedArray obtainStyledAttributes = getContext().obtainStyledAttributes(attrs, R.styleable.AmountView); int btnWidth = obtainStyledAttributes.getDimensionPixelSize(R.styleable.AmountView_btnWidth, LayoutParams.WRAP_CONTENT); int tvWidth = obtainStyledAttributes.getDimensionPixelSize(R.styleable.AmountView_tvWidth, 80); int tvTextSize = obtainStyledAttributes.getDimensionPixelSize(R.styleable.AmountView_tvTextSize, 0); int btnTextSize = obtainStyledAttributes.getDimensionPixelSize(R.styleable.AmountView_btnTextSize, 0); obtainStyledAttributes.recycle(); LayoutParams btnParams = new LayoutParams(btnWidth, LayoutParams.MATCH_PARENT); btnDecrease.setLayoutParams(btnParams); btnIncrease.setLayoutParams(btnParams); if (btnTextSize != 0) { btnDecrease.setTextSize(TypedValue.COMPLEX_UNIT_PX, btnTextSize); btnIncrease.setTextSize(TypedValue.COMPLEX_UNIT_PX, btnTextSize); } LayoutParams textParams = new LayoutParams(tvWidth, LayoutParams.MATCH_PARENT); etAmount.setLayoutParams(textParams); if (tvTextSize != 0) { etAmount.setTextSize(tvTextSize); } } public void setOnAmountChangeListener(OnAmountChangeListener onAmountChangeListener) { this.mListener = onAmountChangeListener; } public void setGoods_storage(int goods_storage) { this.goods_storage = goods_storage; } @Override public void onClick(View v) { int i = v.getId(); if (i == R.id.btnDecrease) { if (amount > 1) { amount--; Log.d(TAG, "onClick:===== "+amount); etAmount.setText(amount + ""); } } else if (i == R.id.btnIncrease) { if (amount < goods_storage) { amount++; etAmount.setText(amount + ""); } } //清除焦点 etAmount.clearFocus(); if (mListener != null) { mListener.onAmountChange(this, amount); } } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void onTextChanged(CharSequence s, int start, int before, int count) { } @Override public void afterTextChanged(Editable s) { if (s.toString().isEmpty()) return; amount = Integer.valueOf(s.toString()); if (amount > goods_storage) { etAmount.setText(goods_storage + ""); return; } if (mListener != null) { mListener.onAmountChange(this, amount); } } public interface OnAmountChangeListener { void onAmountChange(View view, int amount); } }
[ "908625675@qq.com" ]
908625675@qq.com
35125ea0874214e00faac62d92b67574f013776c
5a0f17e42552bff4f50daeb6d818c53c67df3364
/app/src/main/java/com/example/amandeep/myfirstapp/DatabaseDeleteActivity.java
95cd60a8f3225b7745feb55fb8a7a146818a4c63
[]
no_license
amandeep75/MyFirstApp
7a2202231b71415fccf736fd4a7056705aa1ca18
9265d3d8bfabbd5b9b1f130e7bc8b20dfaff9eaf
refs/heads/master
2020-03-28T22:19:44.809716
2017-06-17T13:55:43
2017-06-17T13:55:43
94,626,841
0
0
null
null
null
null
UTF-8
Java
false
false
1,117
java
package com.example.amandeep.myfirstapp; import android.database.sqlite.SQLiteDatabase; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.EditText; import android.widget.Toast; public class DatabaseDeleteActivity extends AppCompatActivity { EditText et1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_database_delete); et1 = (EditText) findViewById(R.id.editText1); } public void delete(View view) { int cid = Integer.parseInt( et1.getText().toString() ); SQLiteDatabase db = openOrCreateDatabase("RCPL_DB", MODE_APPEND, null); String query = "delete from Customer where _id = "+cid; db.execSQL(query); Toast.makeText(this, "Record "+cid+" deleted", Toast.LENGTH_SHORT).show(); Log.d("RCPLMESSAGE", "******************************1"+query); //DEbug use filter debug (search RCPL) db.close(); } //end of delete }
[ "amandeeptiwary01@gmail.com" ]
amandeeptiwary01@gmail.com
5865eecf5c68d58db718265db5bd56199b147d46
945e96442a92f77d3973d2eee8fd23481c7882a4
/app/src/main/java/dav/com/foody/Adapters/TypeAdapter.java
08b77ee96e946ee7f9a921b4c239c1468cbfc617
[]
no_license
Nhokbin/FoodyProjet
a9d2b0acde3526155efb20b61817251152aae727
4e8a9ebe2cad67be5a083d28e92a2716bdf432f0
refs/heads/master
2021-03-19T15:31:19.738674
2017-05-14T15:04:52
2017-05-14T15:04:52
85,970,890
0
0
null
null
null
null
UTF-8
Java
false
false
2,711
java
package dav.com.foody.Adapters; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.TextView; import com.squareup.picasso.Picasso; import java.util.List; import dav.com.foody.Objects.Type; import dav.com.foody.R; /** * Created by binhb on 10/03/2017. */ public class TypeAdapter extends BaseAdapter{ Context context; int layout; List<Type> types; ViewHolderShowListType holder; private int selectdPos = -1; public int getSelectdPos() { return selectdPos; } public void setSelectdPos(int selectdPos) { this.selectdPos = selectdPos; notifyDataSetChanged(); } private class ViewHolderShowListType{ ImageView imgType,imgIsChoose; TextView txtNameType; } public TypeAdapter(Context context, int layout, List<Type> types){ this.context = context; this.layout = layout; this.types = types; } @Override public int getCount() { return types.size(); } @Override public Object getItem(int position) { return types.get(position); } @Override public long getItemId(int position) { return types.get(position).getId(); } @Override public View getView(int position, View convertView, ViewGroup parent) { View view = convertView; if(view == null){ holder = new ViewHolderShowListType(); LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); view = inflater.inflate(layout,parent,false); holder.imgType = (ImageView) view.findViewById(R.id.img_icon_type); holder.imgIsChoose = (ImageView) view.findViewById(R.id.img_is_choose_type); holder.txtNameType = (TextView) view.findViewById(R.id.txt_name_one_type); view.setTag(holder); }else{ holder = (ViewHolderShowListType) view.getTag(); } Type type = types.get(position); Picasso.with(context).load(type.getImg()).fit().centerInside().into(holder.imgType); holder.txtNameType.setText(type.getName()); if(selectdPos == position){ holder.txtNameType.setTextColor(context.getResources().getColor(R.color.colorFoody)); holder.imgIsChoose.setVisibility(View.VISIBLE); }else{ holder.txtNameType.setTextColor(context.getResources().getColor(R.color.colorBlack)); holder.imgIsChoose.setVisibility(View.INVISIBLE); } return view; } }
[ "binhbinh0708@gmail.com" ]
binhbinh0708@gmail.com
24a67d3331cc23a692aee523050b4de3a6c78f48
63ba639289cea8096e0c0c4a4eaec6b1d3340973
/jpa-sample/src/main/java/com/example/jpasample/repository/ItemRepository.java
72818208a34c1d1dc85fbb38fd03f9dd062ce052
[]
no_license
tsb-study/JpaSample
002a6f0ca53e93bb338b05e088fcf874d1268863
f2edb004264b3f523de565c554780749497ab413
refs/heads/main
2023-04-02T21:17:25.725996
2021-04-15T13:45:23
2021-04-15T13:45:23
329,320,498
1
3
null
null
null
null
UTF-8
Java
false
false
78
java
package com.example.jpasample.repository; public class ItemRepository { }
[ "qodbtn41@naver.com" ]
qodbtn41@naver.com
d2bdde68492b399afa6bc237474b3e9c07c31ee4
d4c3659ac9ddb5e3c0010b326f3bcc7e33ce0bed
/ren-automation-ui/src/main/java/com/exigen/ren/main/modules/policy/common/metadata/common/IssueActionTabMetaData.java
03e7f7cba85e5cdea2063091906f7207f0a7f7a8
[]
no_license
NandiniDR29/regression-test
cbfdae60e8b462cf32485afb3df0d9504200d0e1
c4acbc3488195217f9d6a780130d2e5dfe01d6e5
refs/heads/master
2023-07-03T14:35:40.673146
2021-08-11T07:03:13
2021-08-11T07:03:13
369,527,619
0
0
null
null
null
null
UTF-8
Java
false
false
2,278
java
/* Copyright © 2016 EIS Group and/or one of its affiliates. All rights reserved. Unpublished work under U.S. copyright laws. CONFIDENTIAL AND TRADE SECRET INFORMATION. No portion of this work may be copied, distributed, modified, or incorporated into any other media without EIS Group prior written consent.*/ package com.exigen.ren.main.modules.policy.common.metadata.common; import com.exigen.istf.webdriver.controls.ComboBox; import com.exigen.istf.webdriver.controls.TextBox; import com.exigen.istf.webdriver.controls.composite.assets.metadata.AssetDescriptor; import com.exigen.istf.webdriver.controls.composite.assets.metadata.MetaData; public class IssueActionTabMetaData extends MetaData { public static final AssetDescriptor<ComboBox> METHOD_OF_DELIVERY = declare("Method Of Delivery", ComboBox.class); public static final AssetDescriptor<ComboBox> SEND_TO = declare("Send To", ComboBox.class); public static final AssetDescriptor<TextBox> CORPORATE_SPONSOR_EMAIL = declare("Corporate Sponsor Email", TextBox.class); public static final AssetDescriptor<TextBox> ISSUE_DATE = declare("Issue Date", TextBox.class); public static final AssetDescriptor<TextBox> BROKER_EMAIL = declare("Broker Email", TextBox.class); public static final AssetDescriptor<TextBox> INSURED_EMAIL = declare("Insured Email", TextBox.class); public static final AssetDescriptor<TextBox> ATTENTION_OF = declare("Attention of", TextBox.class); public static final AssetDescriptor<ComboBox> COUNTRY = declare("Country", ComboBox.class); public static final AssetDescriptor<TextBox> ZIP_POSTAL_CODE = declare("Zip/Postal Code", TextBox.class); public static final AssetDescriptor<TextBox> ADDRESS_LINE_1 = declare("Address Line 1", TextBox.class); public static final AssetDescriptor<TextBox> ADDRESS_LINE_2 = declare("Address Line 2", TextBox.class); public static final AssetDescriptor<TextBox> ADDRESS_LINE_3 = declare("Address Line 3", TextBox.class); public static final AssetDescriptor<TextBox> CITY = declare("City", TextBox.class); public static final AssetDescriptor<ComboBox> STATE_PROVINCE = declare("State / Province", ComboBox.class); public static final AssetDescriptor<TextBox> NOTES = declare("Notes", TextBox.class); }
[ "Nramachandra@previseit.com" ]
Nramachandra@previseit.com
23c1b8cc1209db8300e2e9dafa9d08fa300242f6
90dc46fc19ac304df278fa2695aa54f7e3e8baee
/src/core/lombok/Await.java
fb0e0a6b6b0df332698b7ddcd476f0636315b14b
[ "MIT" ]
permissive
framiere/lombok-pg
d57da74b3496eaafc5910257882831ab87626649
318f3f05fbdf2f0c9ce7d593512661d4c69ee96e
refs/heads/master
2020-04-08T14:11:28.489573
2011-12-16T16:25:24
2011-12-16T16:25:24
2,994,589
0
0
null
null
null
null
UTF-8
Java
false
false
2,699
java
/* * Copyright © 2010-2011 Philipp Eichhorn * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package lombok; import static java.lang.annotation.ElementType.*; import static java.lang.annotation.RetentionPolicy.SOURCE; import java.lang.annotation.*; /** * Lock Conditions * <pre> * void methodAnnotatedWithAwait() throws java.lang.InterruptedException { * this.&lt;LOCK_NAME&gt;.lock(); * try { * while (this.&lt;CONDITION_METHOD&gt;()) { * this.&lt;CONDITION_NAME&gt;.await(); * } * * // method body * * } finally { * this.&lt;LOCK_NAME&gt;.unlock(); * } * } * <pre> */ @Target(METHOD) @Retention(SOURCE) public @interface Await { /** * Name of the condition. * <p> * If no condition with the specified name exists a new {@link java.util.concurrent.locks.Condition Condition} * will be created, using this name. */ String conditionName(); /** * Specifies the place to put the await-block, default is {@link lombok.Position BEFORE}. * <p> * Supported positions: * <ul> * <li>{@link lombok.Position BEFORE} - before the method body</li> * <li>{@link lombok.Position AFTER} - after the method body</li> * </ul> */ Position pos() default lombok.Position.BEFORE; /** * Name of the lock, default is {@code $<CONDITION_NAME>Lock}. * <p> * If no lock with the specified name exists a new {@link java.util.concurrent.locks.Lock Lock} * will be created, using this name. */ String lockName() default ""; /** * Method to verify if the condition is met. * <p> * The method must return a {@code boolean} and may * not require any parameters. */ String conditionMethod(); }
[ "peichhor@web.de" ]
peichhor@web.de
f870a8e6c73539e5c6c41fc79e9415c861ace53c
2b4721f68fed06fd101da6d0fde4235e4f8f33d0
/AndroidAlarmBroadcastService/app/src/main/java/com/journaldev/androidalarmbroadcastservice/MainActivity.java
4972b8774ad90ccc21167909144f30b36f7b9b90
[]
no_license
nikesh-devaki/AlarmManager
edb538dd25971c5752552d79054d2e2e5906f710
18bed841a2d56e697e49db8d89a1629f11718688
refs/heads/master
2022-02-14T11:41:46.270460
2019-07-26T18:42:23
2019-07-26T18:42:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,977
java
package com.journaldev.androidalarmbroadcastservice; import android.Manifest; import android.app.AlarmManager; import android.app.AlertDialog; import android.app.PendingIntent; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.content.pm.ApplicationInfo; import android.content.pm.PackageManager; import android.content.pm.ResolveInfo; import android.media.MediaPlayer; import android.os.Build; import android.os.SystemClock; import android.support.v4.app.ActivityCompat; import android.support.v4.content.ContextCompat; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.Toast; //import androidx.annotation.NonNull; import com.journaldev.overlaymanager.FloatingLayout; import com.journaldev.overlaymanager.NotificationListener; import com.journaldev.smsmanager.MessageListener; import com.journaldev.smsmanager.MessageReceiver; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.List; import java.util.TimeZone; import pub.devrel.easypermissions.AppSettingsDialog; import pub.devrel.easypermissions.EasyPermissions; public class MainActivity extends AppCompatActivity implements EasyPermissions.PermissionCallbacks { MediaPlayer mp = null; Button btnStartAlarm, btnCancelAlarm; private final int REQUEST_PERMISSION_PHONE_STATE=1; private static final int CODE_DRAW_OVER_OTHER_APP_PERMISSION = 2084; AlarmManager alarmManager; PendingIntent pendingIntent; private static final String TAG = MainActivity.class.getSimpleName(); public Intent intentService; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //getListOfInstalledApps(); //intentService = new Intent(this, MyService.class); // if (ContextCompat.checkSelfPermission(this.getApplicationContext(),Manifest.permission.SYSTEM_ALERT_WINDOW) // != PackageManager.PERMISSION_GRANTED) { // if(ActivityCompat.shouldShowRequestPermissionRationale(this, // Manifest.permission.SYSTEM_ALERT_WINDOW)){ // showExplanation("Permission Needed", "Rationale", Manifest.permission.SYSTEM_ALERT_WINDOW, REQUEST_PERMISSION_PHONE_STATE); // } else { // requestPermission(android.Manifest.permission.SYSTEM_ALERT_WINDOW, 225); // } // } intentService = new Intent(getApplicationContext(),MyService.class); // intentService.setAction("com.journaldev.androidalarmbroadcastservice.MyService"); if (!MyService.isOn) { getApplicationContext().startService(intentService); } finish(); // Toast.makeText(this,"started main activity" , Toast.LENGTH_SHORT).show(); // btnStartAlarm = findViewById(R.id.btnStartAlarm); // btnCancelAlarm = findViewById(R.id.btnCancelAlarm); // // btnStartAlarm.setOnClickListener(new View.OnClickListener() { // @Override // public void onClick(View v) { // //startAlarm(); // } // }); // // btnCancelAlarm.setOnClickListener(new View.OnClickListener() { // @Override // public void onClick(View v) { // //cancelAlarm(); // } // }); } private void checkRunTimePermission() { String[] permissionArrays = new String[] { Manifest.permission.READ_CALL_LOG, Manifest.permission.READ_SMS, Manifest.permission.READ_PHONE_STATE }; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { requestPermissions(permissionArrays, 11111); } } public void getListOfInstalledApps(){ final PackageManager pm = getPackageManager(); //get a list of installed apps. List<ApplicationInfo> packages = pm.getInstalledApplications(PackageManager.GET_META_DATA); for (ApplicationInfo packageInfo : packages) { Log.d(TAG, "Installed package :" + packageInfo.packageName); Log.d(TAG, "Source dir : " + packageInfo.sourceDir); Log.d(TAG, "Launch Activity :" + pm.getLaunchIntentForPackage(packageInfo.packageName)); }} @Override public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); // Forward results to EasyPermissions EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this); } private void showExplanation(String title, String message, final String permission, final int permissionRequestCode) { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle(title) .setMessage(message) .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { requestPermission(permission, permissionRequestCode); } }); builder.create().show(); } private void requestPermission(String permissionName, int permissionRequestCode) { ActivityCompat.requestPermissions(this, new String[]{permissionName}, permissionRequestCode); } @Override public void onPermissionsGranted(int requestCode, List<String> perms) { } @Override public void onPermissionsDenied(int requestCode, List<String> perms) { Log.d(TAG, "onPermissionsDenied:" + requestCode + ":" + perms.size()); // (Optional) Check whether the user denied any permissions and checked "NEVER ASK AGAIN." // This will display a dialog directing them to enable the permission in app settings. if (EasyPermissions.somePermissionPermanentlyDenied(this, perms)) { new AppSettingsDialog.Builder(this).build().show(); } } @Override public void onPointerCaptureChanged(boolean hasCapture) { } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == AppSettingsDialog.DEFAULT_SETTINGS_REQ_CODE) { // Do something after user returned from app settings screen, like showing a Toast. Toast.makeText(this,"On activity result", Toast.LENGTH_SHORT) .show(); } } }
[ "nikesh@tagbox.in" ]
nikesh@tagbox.in
93ecf46b187cc9775ad28d25780041a9cfd492ad
814169b683b88f1b7498f1edf530a8d1bec2971f
/mall-product/src/main/java/com/bootx/mall/product/dao/PaymentMethodDao.java
8c199b533df6323342ff596544d415f14a9fe66e
[]
no_license
springwindyike/mall-auth
fe7f216c7241d8fd9247344e40503f7bc79fe494
3995d258955ecc3efbccbb22ef4204d148ec3206
refs/heads/master
2022-10-20T15:12:19.329363
2020-07-05T13:04:29
2020-07-05T13:04:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
238
java
package com.bootx.mall.product.dao; import com.bootx.mall.product.entity.PaymentMethod; /** * Dao - 支付方式 * * @author BOOTX Team * @version 6.1 */ public interface PaymentMethodDao extends BaseDao<PaymentMethod, Long> { }
[ "a12345678" ]
a12345678
70d2b4eed8a71f718e918d3be3e996431b9cb1cb
67b81240f7a9b1b53213d445f5d0e4ec4da1beb6
/app/src/main/java/com/wujingchao/android/demo/MainActivity.java
58b2663f2327fd368a796d8e7a1b2d3c9ba7c32f
[ "Apache-2.0" ]
permissive
woaimaomao/android-demo
b8416d9247f24bd9606ac3c97dc01c16f1ff6b57
2210ec2ef4e18a2ae232d3d9d14244e70ad45a37
refs/heads/master
2020-03-24T20:37:52.559788
2018-07-16T16:40:26
2018-07-16T16:41:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,595
java
package com.wujingchao.android.demo; import android.content.Intent; import android.content.pm.PackageManager; import android.content.pm.ResolveInfo; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.widget.Toolbar; import android.text.TextUtils; import android.view.Menu; import android.view.MenuItem; import android.view.MotionEvent; import android.widget.ListView; import android.widget.SimpleAdapter; import com.blankj.utilcode.util.LogUtils; import com.wujingchao.android.demo.util.TraceWrapper; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnItemClick; /** * Created by wujingchao92@gmail.com on 2016/6/18. */ public class MainActivity extends BaseActivity { private static final String TAG = "MainActivity"; @BindView(R.id.list) ListView mListView; @BindView(R.id.toolbar) Toolbar toolbar; private SimpleAdapter adapter; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { setTheme(R.style.AppTheme_NoActionBar); super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.bind(this); setSupportActionBar(toolbar); Intent intent = getIntent(); String prefix = intent.getStringExtra("path"); adapter = new SimpleAdapter(this,getData(prefix), android.R.layout.simple_list_item_1, new String[] { "title" }, new int[] { android.R.id.text1 }); } private List<Map<String, Object>> getData(String path) { String[] subPathNames = null; String pathWithSlash = ""; if(!TextUtils.isEmpty(path)) { subPathNames = path.split("/"); pathWithSlash = path; } Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory("com.wujingchao.category.DEMO"); PackageManager pm = getPackageManager(); List<ResolveInfo> resolveInfos = pm.queryIntentActivities(intent,0); List<Map<String, Object>> data = new ArrayList<>(); final List<String> titles = new ArrayList<>(); for(ResolveInfo ri:resolveInfos) { //use actual path naming String label = ri.activityInfo.loadLabel(pm).toString(); if(label.startsWith(pathWithSlash)) { String[] fullSubPath = label.split("/"); String title = ""; if(TextUtils.equals(label,pathWithSlash)) { title = fullSubPath[fullSubPath.length - 1]; }else { //top level,subPathNames is null title = subPathNames == null ? fullSubPath[0] : fullSubPath[subPathNames.length]; } if(!titles.contains(title)) { titles.add(title); Map<String,Object> itemInfoMap = new HashMap<>(); String className = ri.activityInfo.name; itemInfoMap.put("title",title); itemInfoMap.put("className",className); itemInfoMap.put("label",label); Intent dest = new Intent(); dest.putExtra("title",title); //directly start activity if(TextUtils.equals(label,pathWithSlash + "/" + title)) { dest.setClassName(this,className); }else { dest.setClassName(this,getClass().getName()); //top level if(subPathNames == null) { dest.putExtra("path",title); }else { dest.putExtra("path",pathWithSlash + "/" + title); } } itemInfoMap.put("intent",dest); data.add(itemInfoMap); } } } Collections.sort(data, new Comparator<Map<String, Object>>() { @Override public int compare(Map<String, Object> lhs, Map<String, Object> rhs) { String l = (String) lhs.get("title"); String r = (String)rhs.get("title"); return l.compareToIgnoreCase(r); } }); return data; } @Override protected void onStart() { super.onStart(); mListView.setAdapter(adapter); } @OnItemClick(R.id.list) void onItemClick(int position) { Map<String, Object> map = (Map<String, Object>) adapter.getItem(position); Intent intent = (Intent) map.get("intent"); startActivity(intent); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(com.wujingchao.android.demo.R.menu.menu_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify meizhi_a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == com.wujingchao.android.demo.R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } @Override public boolean dispatchTouchEvent(MotionEvent ev) { if (BuildConfig.DEBUG && ev.getAction() == MotionEvent.ACTION_DOWN) { try { int i = 1/0; }catch (RuntimeException e) { StringBuilder builder = new StringBuilder(); for (StackTraceElement element : e.getStackTrace()) { builder.append(element.toString() + "\n"); } LogUtils.d(builder.toString()); } } return super.dispatchTouchEvent(ev); } @Override public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); if (hasFocus) { TraceWrapper.endSection(); } } }
[ "wujingchao92@gmail.com" ]
wujingchao92@gmail.com
e4b05555c58e7211add429b16f657678350eeca1
986af5358993a7047b223f4e78b2069424eb4581
/Lab3/src/Interface/CreateProductJPanel.java
61dec63ca3fd4b0f0e425199294d3b50b7d088d2
[]
no_license
SandhyaGitH/Goswami_sandhya_001021975
1f005258638694f2f23d3723b00f6037e531e9f3
734ff0c580c05b605e101609c81577ca3ea241db
refs/heads/master
2022-04-19T12:48:46.933986
2020-04-22T04:03:26
2020-04-22T04:03:26
233,951,098
0
0
null
null
null
null
UTF-8
Java
false
false
9,777
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 Interface; import javax.swing.JOptionPane; import Business.ProductDirectory; import Business.Product; import javax.swing.JPanel; import java.awt.CardLayout; import java.util.ArrayList; import jdk.nashorn.internal.objects.NativeArray; /** * * @author info */ public class CreateProductJPanel extends javax.swing.JPanel { /** * Creates new form CreateAccontJPanel */ private ProductDirectory prodDir; private JPanel panel; public CreateProductJPanel(ProductDirectory prodDir, JPanel panel) { initComponents(); this.prodDir = prodDir; this.panel=panel; } /** * 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() { lblHead = new javax.swing.JLabel(); lblRoutingNo = new javax.swing.JLabel(); lblAccNo = new javax.swing.JLabel(); lblBankName = new javax.swing.JLabel(); lblBalance = new javax.swing.JLabel(); txtProdName = new javax.swing.JTextField(); txtAvailablity = new javax.swing.JTextField(); txtPrice = new javax.swing.JTextField(); txtDescription = new javax.swing.JTextField(); btnCreate = new javax.swing.JButton(); BackButton = new javax.swing.JButton(); setBackground(new java.awt.Color(153, 153, 255)); lblHead.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N lblHead.setText("Create Product"); lblRoutingNo.setText("Product Name*"); lblAccNo.setText("Availiblity*"); lblBankName.setText("Price*"); lblBalance.setText("Description"); btnCreate.setText("Create Account"); btnCreate.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnCreateActionPerformed(evt); } }); BackButton.setText("Back"); BackButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { BackButtonActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(133, 133, 133) .addComponent(lblHead)) .addGroup(layout.createSequentialGroup() .addGap(78, 78, 78) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(lblRoutingNo) .addComponent(lblAccNo) .addComponent(lblBankName) .addComponent(lblBalance)) .addGap(45, 45, 45) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(txtAvailablity, javax.swing.GroupLayout.DEFAULT_SIZE, 119, Short.MAX_VALUE) .addComponent(txtPrice) .addComponent(txtDescription) .addComponent(txtProdName))) .addGroup(layout.createSequentialGroup() .addGap(148, 148, 148) .addComponent(btnCreate) .addGap(26, 26, 26) .addComponent(BackButton))) .addContainerGap(305, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(39, 39, 39) .addComponent(lblHead) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(lblRoutingNo) .addComponent(txtProdName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(lblAccNo, javax.swing.GroupLayout.PREFERRED_SIZE, 14, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(txtAvailablity, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(lblBankName) .addComponent(txtPrice, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(lblBalance) .addComponent(txtDescription, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(btnCreate) .addComponent(BackButton)) .addContainerGap(144, Short.MAX_VALUE)) ); }// </editor-fold>//GEN-END:initComponents private void btnCreateActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnCreateActionPerformed // TODO add your handling code here: String priceText = txtPrice.getText(); double price =0; try { price =Double.parseDouble(priceText); }catch(NumberFormatException e){ e.printStackTrace(); JOptionPane.showMessageDialog(null, "Please Enter Valid Price"); return; } if(txtProdName.getText().equals("")) { JOptionPane.showMessageDialog(null, "Please Enter Valid Product Name"); return; } else { ArrayList<Product> pp = new ArrayList<Product>(); pp= prodDir.getProductDirectory(); Product prod ; for(int i=0;i<prodDir.getProductDirectory().size();i++) { prod=pp.get(i); if(prod.getName().equals(txtProdName.getText())) { JOptionPane.showMessageDialog(null, "Duplicate Product Name"); return;} // if(pp[i].get) } } // Double.parseDouble(txtPrice.getText()); // String availabilityText = txtAvailablity.getText(); int availability; try { availability = Integer.parseInt(txtAvailablity.getText()); }catch(NumberFormatException e){ e.printStackTrace(); JOptionPane.showMessageDialog(null, "Please Enter Availability in Numbers Only."); return; } Integer.parseInt(txtAvailablity.getText()); Product prod = prodDir.addProduct(); prod.setName(txtProdName.getText()); prod.setAvailNum(availability); prod.setPrice(price); prod.setDescription(txtDescription.getText()); JOptionPane.showMessageDialog(null, "Account Created Successfully"); txtProdName.setText(""); txtAvailablity.setText(""); txtPrice.setText(""); txtDescription.setText(""); }//GEN-LAST:event_btnCreateActionPerformed private void BackButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_BackButtonActionPerformed // TODO add your handling code here: this.panel.remove(this); CardLayout layout =(CardLayout) this.panel.getLayout(); layout.previous(panel); }//GEN-LAST:event_BackButtonActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton BackButton; private javax.swing.JButton btnCreate; private javax.swing.JLabel lblAccNo; private javax.swing.JLabel lblBalance; private javax.swing.JLabel lblBankName; private javax.swing.JLabel lblHead; private javax.swing.JLabel lblRoutingNo; private javax.swing.JTextField txtAvailablity; private javax.swing.JTextField txtDescription; private javax.swing.JTextField txtPrice; private javax.swing.JTextField txtProdName; // End of variables declaration//GEN-END:variables }
[ "goswami.sa@husky.neu.edu" ]
goswami.sa@husky.neu.edu
59cb6e5e5657843c21eae5524d4ca06b61f857b6
daef3258d14e1ff085620aae0c014f6828ce8acf
/src/main/java/pyramid/Pyramid.java
0e7f643e73dfb0889378d02548bb496095ec00d2
[]
no_license
scriddel/pyramid
321ab56fe0673fcf23855ac4010cdc1053235a0f
8b4732cf5a8c1e7b940d17fe092fb04ed66f4927
refs/heads/master
2020-05-27T21:08:46.346176
2017-03-01T20:44:19
2017-03-01T20:44:19
83,597,290
0
0
null
null
null
null
UTF-8
Java
false
false
1,152
java
package pyramid; import java.util.HashMap; import java.util.Map; import static java.lang.System.*; /** * @author Emelyanov (01.03.2017) */ public class Pyramid { private static final double BASIC_WEIGHT = 1.0; private static final Map<String, Double> WEIGHT_CACHE = new HashMap<>(); public Double calcWeight(int row, int pos) { Double weight = 0d; //basic conditions if (row == 0 || pos - 1 > row) return weight; if (row == 1) return BASIC_WEIGHT / 2; String key = row + "::" + pos; weight = WEIGHT_CACHE.get(key); if (weight == null) { if (pos == 0) weight = (calcWeight(row - 1, 0) + BASIC_WEIGHT) / 2; else if (pos == row) weight = (calcWeight(row - 1, pos - 1) + BASIC_WEIGHT) / 2; else weight = (calcWeight(row - 1, pos - 1) + BASIC_WEIGHT) / 2 + (calcWeight(row - 1, pos) + BASIC_WEIGHT) / 2; WEIGHT_CACHE.put(key, weight); } return weight; } public void printWeight(int row, int pos) { Double weight = calcWeight(row, pos); out.println(String.format("Weight for element [%d x %d] is %s", row, pos, weight)); } }
[ "scriddel@gmail.com" ]
scriddel@gmail.com
44a8ab9455bdc024a387c357e1c35ce137b24485
29febc392c938d6247a17d197d75d132ae52fa63
/dubbo-admin-server/src/main/java/org/apache/dubbo/admin/service/MeshRouteService.java
708dd7ef88576e80342b4fc1bdba9392ae571052
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
apache/dubbo-admin
bd7769695616a3ce93a421e610ab2b0bcacf5462
0c8b0b75b5a4d8927537d700fd309429fb036b97
refs/heads/develop
2023-09-01T03:16:32.649315
2023-09-01T02:46:45
2023-09-01T02:46:45
117,054,584
2,619
1,789
Apache-2.0
2023-09-08T03:55:25
2018-01-11T05:30:17
Java
UTF-8
Java
false
false
1,516
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.dubbo.admin.service; import org.apache.dubbo.admin.model.dto.MeshRouteDTO; public interface MeshRouteService { /** * create mesh rule route * * @param meshRoute dto * @return success */ boolean createMeshRule(MeshRouteDTO meshRoute); /** * update mesh rule route * * @param meshRoute dto * @return success */ boolean updateMeshRule(MeshRouteDTO meshRoute); /** * delete mesh rule * * @param id id * @return success */ boolean deleteMeshRule(String id); /** * find mesh rule by id * * @param id id * @return dto */ MeshRouteDTO findMeshRoute(String id); }
[ "noreply@github.com" ]
apache.noreply@github.com
68bb309949707b0899a4364a0d0a453816738de3
aea96f0dfba51a3ae08a18807156ac7ea7c95ddb
/fhir-database-utils/src/main/java/com/ibm/fhir/database/utils/postgres/PostgresDoesViewExist.java
4bade30f7092f3e0abd6894cfe437b95eb044fbf
[ "Apache-2.0" ]
permissive
prb112/FHIR
949dc07dc28cd27c57ce4f2f27ceadf35c8527a8
04996d3dc776ffaa7921e5412586bf519f5c868e
refs/heads/main
2023-03-05T09:49:22.703497
2022-03-01T15:34:14
2022-03-01T15:34:14
209,676,262
0
0
Apache-2.0
2021-03-12T21:52:35
2019-09-20T01:06:51
Java
UTF-8
Java
false
false
1,972
java
/* * (C) Copyright IBM Corp. 2021 * * SPDX-License-Identifier: Apache-2.0 */ package com.ibm.fhir.database.utils.postgres; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import com.ibm.fhir.database.utils.api.IDatabaseSupplier; import com.ibm.fhir.database.utils.api.IDatabaseTranslator; import com.ibm.fhir.database.utils.common.DataDefinitionUtil; /** * Check the catalog to see if the named view exists */ public class PostgresDoesViewExist implements IDatabaseSupplier<Boolean> { // The schema of the table private final String schemaName; // The name of the view private final String viewName; /** * Public constructor * @param schemaName * @param tableName */ public PostgresDoesViewExist(String schemaName, String viewName) { this.schemaName = DataDefinitionUtil.assertValidName(schemaName.toLowerCase()); this.viewName = DataDefinitionUtil.assertValidName(viewName.toLowerCase()); } @Override public Boolean run(IDatabaseTranslator translator, Connection c) { Boolean result = false; // For PostgreSQL, identifier names are always in lowercase unless they are surround with double quotes. final String sql = "" + "SELECT 1 FROM information_schema.views " + " WHERE table_schema = ? " + " AND table_name = ? "; try (PreparedStatement ps = c.prepareStatement(sql)) { ps.setString(1, schemaName); ps.setString(2, viewName); ResultSet rs = ps.executeQuery(); if (rs.next()) { // if we get a row, we know the table exists result = true; } } catch (SQLException x) { if (translator.isConnectionError(x)) { throw translator.translate(x); } } return result; } }
[ "noreply@github.com" ]
prb112.noreply@github.com
9bb21ca3a7f5fa3c76aad3a91f8aee444e2e94f6
27bbc6199d14adecce8724ab7eb29a1ad9cd1507
/01mvc-tests-solution/src/main/java/com/way2learnonline/MvcConfig.java
c0daa0f7d865cd49b68772676beb46657ccbdf09
[]
no_license
vinayakbaddi/SpringMVC
22a0471346ce2b47b21cd60ba8c1ecb44221681e
0e30b0a7cf85556324a0026728cbd98c9a54c208
refs/heads/master
2020-12-02T21:21:27.814860
2017-07-06T10:32:07
2017-07-06T10:32:07
96,299,135
1
0
null
null
null
null
UTF-8
Java
false
false
2,924
java
package com.way2learnonline; import java.util.List; import java.util.Properties; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Profile; import org.springframework.format.FormatterRegistry; import org.springframework.web.servlet.HandlerExceptionResolver; import org.springframework.web.servlet.ViewResolver; import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; import org.springframework.web.servlet.handler.SimpleMappingExceptionResolver; import org.springframework.web.servlet.view.tiles3.TilesConfigurer; import org.springframework.web.servlet.view.tiles3.TilesViewResolver; import com.way2learnonline.controllers.SSNFormatter; //@EnableWebMvc @ComponentScan(basePackages={"com.way2learnonline.controllers"}) @Configuration @EnableAutoConfiguration public class MvcConfig extends WebMvcConfigurerAdapter { @Override public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) { configurer.enable(); } @Override public void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers) { SimpleMappingExceptionResolver simpleMappingExceptionResolver= new SimpleMappingExceptionResolver(); Properties exceptionMappings= new Properties(); exceptionMappings.put("com.way2learnonline.exceptions.CourseNotFoundException", "coursenotfound"); exceptionMappings.put("com.way2learnonline.exceptions.InvalidRequestException", "invalidrequest"); simpleMappingExceptionResolver.setExceptionMappings(exceptionMappings); simpleMappingExceptionResolver.setExceptionAttribute("ex"); simpleMappingExceptionResolver.setDefaultErrorView("defaultErrorPage"); exceptionResolvers.add(simpleMappingExceptionResolver); super.configureHandlerExceptionResolvers(exceptionResolvers); } @Override public void addFormatters(FormatterRegistry registry) { registry.addFormatter(new SSNFormatter()); super.addFormatters(registry); } @Bean public ViewResolver viewResolver(){ TilesViewResolver viewResolver= new TilesViewResolver(); viewResolver.setOrder(1); return viewResolver; } @Bean public TilesConfigurer tilesConfigurer(){ TilesConfigurer tilesConfigurer= new TilesConfigurer(); //tilesConfigurer.set tilesConfigurer.setDefinitions("WEB-INF/tiles.xml"); return tilesConfigurer; } @Bean @Profile("test") public TilesConfigurer testTilesConfigurer(){ TilesConfigurer tilesConfigurer= new TilesConfigurer(); //tilesConfigurer.set tilesConfigurer.setDefinitions("file:src/main/webapp/WEB-INF/tiles.xml"); return tilesConfigurer; } }
[ "vinayakbaddi@gmail.com" ]
vinayakbaddi@gmail.com
d3069c506eda7c25eb07a3c3e79affbdf309d9c4
be7a8e693a7eefcd5a66d24244e7204b8fa164ae
/practice/com.advantest.threadLearn/src/com/advantest/chapter1/t14/test/Run.java
771ff37b6b7921a76760da7864dfc6ca3e6815a2
[]
no_license
zhanglin2018/thread
b7e6619446c6e04fb9eb14e4e433d5552ec9d714
83512e06b481ca784cb108d1629ddeaf7662c568
refs/heads/master
2020-06-18T00:41:06.299062
2019-07-17T10:56:34
2019-07-17T10:56:34
196,112,877
0
0
null
null
null
null
UTF-8
Java
false
false
411
java
package com.advantest.chapter1.t14.test; import com.advantest.chapter1.t14.exthread.MyThread; public class Run { public static void main(String[] args) { try { MyThread thread = new MyThread(); thread.start(); Thread.sleep(2000); thread.interrupt(); } catch (InterruptedException e) { System.out.println("main catch"); e.printStackTrace(); } System.out.println("main end!"); } }
[ "lin.zhang@advantest.com" ]
lin.zhang@advantest.com
3091a465eb7bd646ee09a101cbd2e72070429a13
ba02d4574b92b16304d59d7a820ef4870f6e2a3a
/challenge2/src/challenge2/Challenge2.java
6aa0b2d44f3dade5227a26822352f38a31a1b9e0
[]
no_license
Lep89/code-challeng1
ed803e0a7fe1a4834c40a5fba431a721ec967abe
b61328fe0856e2abf4a2b046fe1ee691938aca2f
refs/heads/master
2020-05-26T03:50:32.797335
2019-05-24T22:18:24
2019-05-24T22:18:24
188,096,752
0
0
null
null
null
null
UTF-8
Java
false
false
299
java
package challenge2; public class Challenge2 { String StringReverse(String s) { StringBuilder sb = new StringBuilder(); for(int i = s.length();i>=0;i--) { sb.append(s.charAt(i)); } return sb.toString(); } boolean isPalindrome(String s) { return s.equals(StringReverse(s)); } }
[ "laoxai211@gmail.com" ]
laoxai211@gmail.com
466aee6ca55573d31cb9060e83b85fc008446f85
32389f761a8bdfe3bf2d694d3778521e05ea890e
/food-order-service/src/main/java/demo/service/impl/DefaultOrderServiceImpl.java
ffb8790c496c9fb526b0b9cfbddfc8fdb7d57e34
[]
no_license
zjuzhanxf/food-delivery-app
5f13212e3232a15cdd6d91c19d2604af5e5e56d6
e9c814d849b030e402bfaf69c32cc61582f3cecd
refs/heads/master
2021-05-07T09:13:16.970933
2017-11-09T22:13:31
2017-11-09T22:13:31
109,515,651
1
3
null
null
null
null
UTF-8
Java
false
false
4,372
java
package demo.service.impl; import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand; import demo.domain.*; import demo.service.OrderService; import demo.service.RestaurantInfoService; import lombok.extern.slf4j.Slf4j; import org.fluttercode.datafactory.impl.DataFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.springframework.web.client.RestTemplate; import java.util.Date; import java.util.List; import java.util.Random; @Service @Slf4j public class DefaultOrderServiceImpl implements OrderService { private RestaurantInfoService restaurantInfoService; private OrderRepository orderRepository; // eureka uses client side load balancing, called com.netflix.ribbon @Autowired private RestTemplate restTemplate; // @Value("${com.toby.order.processing.service}") // private String orderProcessingService; @Autowired public DefaultOrderServiceImpl(RestaurantInfoService service, OrderRepository orderRepository) { this.restaurantInfoService = service; this.orderRepository = orderRepository; } @Override public Order generateOrder() { Restaurant restaurant = restaurantInfoService.findOneRandomRestaurant(); List<MenuItem> dishList = restaurant.getMenuItemList(); Order order = new Order(); int size = dishList.size(); Random rand = new Random(); int numDishes = rand.nextInt(size) + 1; // set restaurant name for order order.setFromRestaurant(restaurant.getName()); // add menu item to the order for (int i = 0; i < numDishes; i++) { order.addItemToOrder(dishList.get(i)); } // set total price order.setTotalPrice(order.calculateTotal()); // set order time order.setOrderTime(new Date()); String cardNumSegment1 = String.format("%04d", rand.nextInt(10000)); String cardNumSegment2 = String.format("%04d", rand.nextInt(10000)); String cardNumSegment3 = String.format("%04d", rand.nextInt(10000)); String cardNumSegment4 = String.format("%04d", rand.nextInt(10000)); String cardNumber = cardNumSegment1 + "-" + cardNumSegment2 + "-" + cardNumSegment3 + "-" + cardNumSegment4; String expMonth = String.format("%02d", 1 + rand.nextInt(12)); String expYear = String.format("%02d", 17 + rand.nextInt(5)); String expMonthYear = expMonth +"/" +expYear; String securityCode = String.format("%03d", rand.nextInt(1000)); CreditCardInfo cardInfo = new CreditCardInfo(cardNumber, expMonthYear, securityCode); // set credit card info order.setCreditCardInfo(cardInfo); // set note order.setNote(generateDietRestrictionNote()); // set delivery address order.setDeliverAddress(generateAddress()); return order; } private String generateDietRestrictionNote() { String[] notes = {"No special note", "Gluten-free", "No Peanut", "No Onion"}; int size = notes.length; Random rand = new Random(); return notes[rand.nextInt(size)]; } private String generateAddress() { DataFactory df = new DataFactory(); //format: 155 Bison St, Carson, FE 29098 return df.getAddress()+", "+df.getCity()+", " + df.getCity().substring(0,2).toUpperCase() +" "+ df.getNumberText(5); } @HystrixCommand(fallbackMethod = "processOrderFallBack") @Override public Order processOrder(Order newOrder) { String orderProcessingService = "http://order-processing-service"; // Save the order to order database Order savedOrder = saveOrder(newOrder); // send newOrder to order-processing-service restTemplate.postForLocation(orderProcessingService + "/api/orders", savedOrder); log.info(String.format("Order is placed: %s", savedOrder)); return newOrder; } public Order processOrderFallBack (Order newOrder) { log.error("Unable to process order!"); return null; } @Override public Order saveOrder(Order order) { Order savedOrder = orderRepository.save(order); return savedOrder; } }
[ "zjuzhanxf@gmail.com" ]
zjuzhanxf@gmail.com
8a9e4a188e349679f7e00f68884fbf4ff53821fd
c2e064c99f627cbf8b5cb1447325a3e18c1e64be
/Spring Boot Security/security1/src/main/java/com/cos/security1/config/oauth/provider/OAuth2UserInfo.java
f245fb2462f101d129f94cfb2df6967bb7bf306c
[]
no_license
DongGeon0908/Spring-Boot
965ddf421ed9510a679eca5ffa655f2d4dc963e1
7d49c4c42b0cbbf9979bd9801e80b117f0517cb7
refs/heads/master
2023-07-28T02:09:16.336966
2021-09-15T13:09:45
2021-09-15T13:09:45
329,270,098
2
0
null
null
null
null
UTF-8
Java
false
false
173
java
package com.cos.security1.config.oauth.provider; public interface OAuth2UserInfo { String getProviderId(); String getProvider(); String getEmail(); String getName(); }
[ "wrjssmjdhappy@gmail.com" ]
wrjssmjdhappy@gmail.com
013b8a7fad3850f714f1acf060c7cb4cce780aaf
4c6adf0ce6ef3f02dcef9c345e0e5e4ff139d886
/Core/fi-webgate/src/main/java/com/pay/gateway/validate/crosspay/rule/ReturnUrlCheckRule.java
f0e594e7b650adde3ff7bb3af13676e884dce0ea
[]
no_license
happyjianguo/pay-1
8631906be62707316f0ed3eb6b2337c90d213bc0
40ae79738cfe4e5d199ca66468f3a33e9d8f2007
refs/heads/master
2020-07-27T19:51:54.958859
2016-12-19T07:34:24
2016-12-19T07:34:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,227
java
package com.pay.gateway.validate.crosspay.rule; import com.pay.fi.commons.TradeTypeEnum; import com.pay.gateway.dto.CrosspayRequest; import com.pay.gateway.dto.CrosspayResponse; import com.pay.inf.rule.MessageRule; import com.pay.util.StringUtil; public class ReturnUrlCheckRule extends MessageRule { /* * (non-Javadoc) * * @see com.pay.ruleengine.AbstractRule#makeDecision(java.lang.Object) */ @Override protected boolean makeDecision(Object validateBean) throws Exception { CrosspayRequest crosspayApiRequest = (CrosspayRequest) validateBean; CrosspayResponse crosspayApiResponse = crosspayApiRequest.getCrosspayResponse(); String returnUrl = crosspayApiRequest.getReturnUrl(); String tradeType = crosspayApiRequest.getTradeType(); if(TradeTypeEnum.REALTIME_CASH.getCode().equals(tradeType)){ if(StringUtil.isEmpty(returnUrl)) { crosspayApiResponse.setResultCode(getMessageId()); crosspayApiResponse.setResultMsg(getMessage());//商户回调地址为空 return false; }else{ if(returnUrl.trim().length()>256) { crosspayApiResponse.setResultCode(getMessageId()); crosspayApiResponse.setResultMsg(getMessage()); return false; } } } return true; } }
[ "stanley.zou@hrocloud.com" ]
stanley.zou@hrocloud.com
8d544e3c708b13500a64ca093947d7ee85663c28
0009865a07e47395f982309e6972789e0b9b79cb
/src/main/java/com/win/big/service/dto/UserDTO.java
c4096dbcca1ca92c3ddab8f1ed2f4d4b83993a0b
[]
no_license
aLanhoho/hkjc
59993110f568cf075bd4fcf1e8c4b232f885bba8
876dd545eae681b9d38576be3de5308cb85bd92e
refs/heads/master
2023-05-10T23:00:11.776648
2020-06-21T09:51:25
2020-06-21T09:51:25
248,028,874
0
0
null
2023-05-09T00:38:01
2020-03-17T17:13:31
Java
UTF-8
Java
false
false
4,505
java
package com.win.big.service.dto; import com.win.big.config.Constants; import com.win.big.domain.Authority; import com.win.big.domain.User; import javax.validation.constraints.*; import java.time.Instant; import java.util.Set; import java.util.stream.Collectors; /** * A DTO representing a user, with his authorities. */ public class UserDTO { private Long id; @NotBlank @Pattern(regexp = Constants.LOGIN_REGEX) @Size(min = 1, max = 50) private String login; @Size(max = 50) private String firstName; @Size(max = 50) private String lastName; @Email @Size(min = 5, max = 254) private String email; @Size(max = 256) private String imageUrl; private boolean activated = false; @Size(min = 2, max = 10) private String langKey; private String createdBy; private Instant createdDate; private String lastModifiedBy; private Instant lastModifiedDate; private Set<String> authorities; public UserDTO() { // Empty constructor needed for Jackson. } public UserDTO(User user) { this.id = user.getId(); this.login = user.getLogin(); this.firstName = user.getFirstName(); this.lastName = user.getLastName(); this.email = user.getEmail(); this.activated = user.getActivated(); this.imageUrl = user.getImageUrl(); this.langKey = user.getLangKey(); this.createdBy = user.getCreatedBy(); this.createdDate = user.getCreatedDate(); this.lastModifiedBy = user.getLastModifiedBy(); this.lastModifiedDate = user.getLastModifiedDate(); this.authorities = user.getAuthorities().stream() .map(Authority::getName) .collect(Collectors.toSet()); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getLogin() { return login; } public void setLogin(String login) { this.login = login; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getImageUrl() { return imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } public boolean isActivated() { return activated; } public void setActivated(boolean activated) { this.activated = activated; } public String getLangKey() { return langKey; } public void setLangKey(String langKey) { this.langKey = langKey; } public String getCreatedBy() { return createdBy; } public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } public Instant getCreatedDate() { return createdDate; } public void setCreatedDate(Instant createdDate) { this.createdDate = createdDate; } public String getLastModifiedBy() { return lastModifiedBy; } public void setLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; } public Instant getLastModifiedDate() { return lastModifiedDate; } public void setLastModifiedDate(Instant lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } public Set<String> getAuthorities() { return authorities; } public void setAuthorities(Set<String> authorities) { this.authorities = authorities; } @Override public String toString() { return "UserDTO{" + "login='" + login + '\'' + ", firstName='" + firstName + '\'' + ", lastName='" + lastName + '\'' + ", email='" + email + '\'' + ", imageUrl='" + imageUrl + '\'' + ", activated=" + activated + ", langKey='" + langKey + '\'' + ", createdBy=" + createdBy + ", createdDate=" + createdDate + ", lastModifiedBy='" + lastModifiedBy + '\'' + ", lastModifiedDate=" + lastModifiedDate + ", authorities=" + authorities + "}"; } }
[ "alan.ho.ky.923@gmail.com" ]
alan.ho.ky.923@gmail.com
da50d2b25ad1ba500620eb134f230b6326dc99f0
fba8af31d5d36d8a6cf0c341faed98b6cd5ec0cb
/src/main/java/com/alipay/api/response/AlipaySecurityRiskAuthenticationQueryResponse.java
eaee47538ceceb1b0dc67e331282bb51b5fb6ef9
[ "Apache-2.0" ]
permissive
planesweep/alipay-sdk-java-all
b60ea1437e3377582bd08c61f942018891ce7762
637edbcc5ed137c2b55064521f24b675c3080e37
refs/heads/master
2020-12-12T09:23:19.133661
2020-01-09T11:04:31
2020-01-09T11:04:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
698
java
package com.alipay.api.response; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.security.risk.authentication.query response. * * @author auto create * @since 1.0, 2019-06-28 15:19:58 */ public class AlipaySecurityRiskAuthenticationQueryResponse extends AlipayResponse { private static final long serialVersionUID = 3757269447329382333L; /** * 身份安全业务相关查询业务信息 */ @ApiField("biz_result") private String bizResult; public void setBizResult(String bizResult) { this.bizResult = bizResult; } public String getBizResult( ) { return this.bizResult; } }
[ "ben.zy@antfin.com" ]
ben.zy@antfin.com
53b80d4166c9cdce35e27c512d598b8849ecd57c
084e29d082f21108ea9f5595c28b36b30e746b82
/Deliverable/PizzaSize.java
e653332a708852e16f24160489a73f5719f843f7
[]
no_license
Pforpeetar/157BAssignment1
cfa2d11c751ee0090a30c3ff8143d57d9b8006fa
9aa5ff09b59f9225cf783f660180ed9cfcc0dada
HEAD
2016-08-12T14:59:45.034257
2016-03-15T05:55:56
2016-03-15T05:55:56
53,852,303
0
0
null
null
null
null
UTF-8
Java
false
false
212
java
package edu.cs157b.hibernate; public enum PizzaSize { SMALL(3), MEDIUM(5), LARGE(7); private int price; private PizzaSize(int price) { this.price = price; } public int getPrice() { return price; } }
[ "phamanpeter@gmail.com" ]
phamanpeter@gmail.com
a3dc3599f6b5619ecb1747004129178cbd820451
89874d4863a8e46ed2e4d06db0494a2c6a2898a5
/PBO3-10117107-Latihan53-Rabbit/src/pbo3/pkg10117107/latihan53/rabbit/Animal.java
383a10fa7490910139e95a63fd88fc5210a4d1f1
[]
no_license
muhammadbariq/PBO-Tugas
a71b381635af40c2f0fddb93e77aef27c2115262
d83d85dcc9499c61f2a971755ccf6d10f7e83e09
refs/heads/master
2020-03-29T13:38:07.845944
2018-12-22T12:06:37
2018-12-22T12:06:37
149,973,728
0
0
null
null
null
null
UTF-8
Java
false
false
776
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 pbo3.pkg10117107.latihan53.rabbit; /** * * @author */ public class Animal { protected boolean vegetarian; protected String eats; protected int noOfLegs; public Animal(boolean vegetarian, String food, int legs){ this.vegetarian = vegetarian; this.eats = food; this.noOfLegs = legs; } public boolean isVegetarian(){ return false; } public String getEats() { return eats; } public int getNoOfLegs() { return noOfLegs; } }
[ "noreply@github.com" ]
muhammadbariq.noreply@github.com
1063471d0e2089e18ea66f66619650ea378901b8
82ef899d18f7b2050869df84fec91a9989057944
/app/src/test/java/com/mikefontaine/program/encompassoapi/ExampleUnitTest.java
b493dd94bb2b49bf57fa08ebf87387de5e1e68a6
[]
no_license
mikefontaine/EncompassOAPI
c6cb59f237f3d264d87286ba609ef8f4fd6ff40e
db1ac19691d319b2e4f57a6df99f02124fdeef26
refs/heads/master
2020-03-30T02:54:03.564691
2018-09-27T22:32:17
2018-09-27T22:32:17
150,625,695
0
0
null
null
null
null
UTF-8
Java
false
false
399
java
package com.mikefontaine.program.encompassoapi; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "me@mikefontaine.com" ]
me@mikefontaine.com
79c70718253e00c21a4eb84bc1420231c3c912e0
5e7730cb188eb42184028ddd7050e1a2bdd45cca
/Test.java
fec89fecd7d8e19e98f996c967db31f0b5e4c543
[]
no_license
bagreen/Random-Java
9aac336a876c110d6d61f6817bc96bcc4c13e9de
4eaef3d156dc0698513f7fe5cee69cc8497f425d
refs/heads/master
2020-03-17T15:26:14.688398
2018-11-13T20:43:39
2018-11-13T20:43:39
133,710,774
0
0
null
null
null
null
UTF-8
Java
false
false
351
java
public class Test { public static void main(String[] args) { //String a = "1"; //a += " "; //a += "2"; //String b = "1"; String expression = "6 "; System.out.println("Expression is /" + expression + "/"); System.out.println("Expression substring is /" + expression.substring(1, expression.length()) + "/"); } }
[ "noreply@github.com" ]
bagreen.noreply@github.com
cc49cd7ca16fd5bbbab5bf250e966d824917367c
a175c7fa1eb6dad4288e06a8fd62c944590d8790
/src/main/java/top/liuqi321/server/LoginServerImpl.java
eca6634353a83c4fc3d244d55180f8c3b55e4d2f
[]
no_license
liuqi2442654843/dzsc_user
62eef5e7dac03cb2fc36019c47d35735ed37218d
6a520f0908c88d779f9d5a529fb9957e6eceea9f
refs/heads/master
2020-04-11T07:52:06.954553
2018-12-13T10:45:25
2018-12-13T10:45:25
161,624,498
1
0
null
null
null
null
UTF-8
Java
false
false
749
java
package top.liuqi321.server; import com.google.gson.Gson; import org.springframework.beans.factory.annotation.Autowired; import top.liuqi321.bean.T_MALL_USER_ACCOUNT; import top.liuqi321.mapper.LoginMapper; import top.liuqi321.service.LoginServiceInf; import javax.jws.WebService; /** * @author : 刘琦 http://www.liuqi321.top * @version : 1.0 * @description : top.liuqi321.server * @date : 2018/12/13 */ @WebService public class LoginServerImpl implements LoginServerInf { @Autowired LoginServiceInf loginServiceInf; @Override public String select_user(T_MALL_USER_ACCOUNT user) { T_MALL_USER_ACCOUNT login = loginServiceInf.login(user); Gson gson = new Gson(); return gson.toJson(login); } }
[ "2442654843@qq.com" ]
2442654843@qq.com
8e897374ceaf5de28997ec4c267ee70c9c92c5b4
e061144c2518e4805be74eea8f1e6d43b6ed9465
/idealistabot-bot/src/main/java/es/qopuir/idealistabot/internal/CommandHandlerImpl.java
985965d8d0c10a0f321d213ffa124e10c98ff926
[]
no_license
dicastro/idealistabot
d17d10019b95469aa9b807ab156c7a4ab53635c2
97b3f17704ba929734d9a16afd0f75bb0a6e797d
refs/heads/master
2016-09-12T15:12:50.509696
2016-04-23T16:54:12
2016-04-23T16:54:12
56,507,755
1
0
null
null
null
null
UTF-8
Java
false
false
9,570
java
package es.qopuir.idealistabot.internal; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.attribute.FileAttribute; import javax.imageio.ImageIO; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.util.StringUtils; import es.qopuir.idealistabot.Command; import es.qopuir.idealistabot.CommandHandler; import es.qopuir.idealistabot.CommandType; import es.qopuir.idealistabot.Methods; import es.qopuir.idealistabot.back.DmiRest; import es.qopuir.idealistabot.back.IdealistaRest; import es.qopuir.idealistabot.back.WeatherImageMode; import es.qopuir.idealistabot.back.model.DmiCityModel; import es.qopuir.idealistabot.back.model.IdealistaBuildingModel; import es.qopuir.idealistabot.model.Chat; import es.qopuir.idealistabot.repo.ChatRepository; import es.qopuir.telegrambot.model.Update; @Component public class CommandHandlerImpl implements CommandHandler { private static final Logger LOG = LoggerFactory.getLogger(CommandHandlerImpl.class); @Autowired private Methods methods; @Autowired // TODO (dcastro): crear un servicio transaccional para acceder al repositorio private ChatRepository chatRepository; @Autowired private DmiRest dmiRest; @Autowired private IdealistaRest idealistaRest; @Override public void handleCommand(Update update, Command command) throws MalformedURLException, IOException { switch (command.getCommand()) { case HELP: sendIntroductionMessage(update); break; case START: if (!StringUtils.isEmpty(command.getArgs())) { // TODO (dcastro): validate received buildingId Chat chat = new Chat(); chat.setChatId(update.getMessage().getChat().getId()); chat.setBuildingId(command.getArgs().trim()); chatRepository.save(chat); } sendIntroductionMessage(update); break; case UNKNOWN: sendInformationMessage(update); break; default: handleIdealistaCommand(update, command); break; } } private void sendIntroductionMessage(Update update) { methods.sendMessage(update.getMessage().getChat().getId(), "You like the weather charts from the dmi.dk site?" + System.lineSeparator() + "This bot can show you the weather forecast graphs for your desired city." + System.lineSeparator() + "The following commands can be used:" + System.lineSeparator() + System.lineSeparator() + "/now cityname - showing the two day weather" + System.lineSeparator() + "/week cityname - showing furhter weather of the week" + System.lineSeparator() + System.lineSeparator() + "This bot project can be found at https://github.com/SimonScholz/telegram-bot"); } private void sendInformationMessage(Update update) { methods.sendMessage(update.getMessage().getChat().getId(), "Command received (" + update.getMessage().getText() + ") is not well formatted." + System.lineSeparator() + "We are sorry to not be able to process it." + System.lineSeparator() + "The following commands can be used:" + System.lineSeparator() + System.lineSeparator() + "/now cityname - showing the two day weather" + System.lineSeparator() + "/week cityname - showing furhter weather of the week" + System.lineSeparator() + System.lineSeparator() + "This bot project can be found at https://github.com/SimonScholz/telegram-bot"); } private void handleIdealistaCommand(Update update, Command command) throws MalformedURLException, IOException { switch (command.getCommand()) { case INMUEBLE: if (StringUtils.isEmpty(command.getArgs())) { if (chatRepository.exists(update.getMessage().getChat().getId())) { Chat chat = chatRepository.findOne(update.getMessage().getChat().getId()); IdealistaBuildingModel idealistaBuilding = idealistaRest.findBuildingById(chat.getBuildingId()); if (idealistaBuilding == null) { LOG.debug("Idealista building {} not found", chat.getBuildingId()); methods.sendMessage(update.getMessage().getChat().getId(), "Lo lamentamos mucho, pero no hemos conseguido localizar ningun inmueble con el identificador facilitado (" + chat.getBuildingId() + ")" + System.lineSeparator() + "¿Esta seguro de que es correcto?"); } else { LOG.debug("Idealista building {} found with (title, photo) -> ({}, {})", chat.getBuildingId(), idealistaBuilding.getTitle(), idealistaBuilding.getMainPhotoUrl().toString()); Path createTempFile = Files.createTempFile("", ".png", new FileAttribute[0]); File file = createTempFile.toFile(); methods.sendPhoto(update.getMessage().getChat().getId(), idealistaBuilding.getMainPhotoUrl(), file, idealistaBuilding.getTitle()); methods.sendMessage(update.getMessage().getChat().getId(), "Para seleccionar otro inmueble, envie el comando:" + System.lineSeparator() + "/inmueble identificador - seleccionar un inmueble"); file.delete(); } } else { LOG.debug("Idealista building not selected yet"); methods.sendMessage(update.getMessage().getChat().getId(), "Todavia no se ha seleccionado ningun inmueble." + System.lineSeparator() + "Para seleccionar un inmueble envie el comando:" + System.lineSeparator() + "/inmueble identificador - seleccionar un inmueble"); } } else { LOG.debug("Idealista building {} selected", command.getArgs().trim()); // TODO (dcastro): validate received inmuebleId Chat chat = new Chat(); chat.setChatId(update.getMessage().getChat().getId()); chat.setBuildingId(command.getArgs().trim()); chatRepository.save(chat); methods.sendMessage(update.getMessage().getChat().getId(), "Inmueble modificado a " + command.getArgs().trim()); } break; case CITA: String[] colTitles = new String[] { "LU-01", "MA-02", "MI-03", "JU-04", "VI-05", "SA-06", "DO-07" }; String[] rowTitles = new String[] { "18:00", "18:30", "19:00", "19:00" }; String[][] tableContent = new String[][] { {"/1"}, {}, {}, {} }; GraphicTable graphicTable = new GraphicTable(colTitles, rowTitles, tableContent); Path timetableTmpDir = Paths.get("target", "tmp", "img"); if (!timetableTmpDir.toFile().exists()) { timetableTmpDir.toFile().mkdirs(); } Path timetableTempFilePath = Files.createTempFile(timetableTmpDir, "timetable-week", ".png", new FileAttribute[0]); File timetableTempFile = timetableTempFilePath.toFile(); FileOutputStream os = new FileOutputStream(timetableTempFile); ImageIO.write(graphicTable.getImage(), "png", os); os.close(); methods.sendPhoto(update.getMessage().getChat().getId(), timetableTempFile, "Horario de visitas"); timetableTempFile.delete(); break; default: WeatherImageMode imageType = WeatherImageMode.NOW; if (command.getCommand() == CommandType.WEEK_WHEATHER) { imageType = WeatherImageMode.WEEK; } DmiCityModel cityModel = dmiRest.findCityId(command.getArgs()); URL weatherImageURL = dmiRest.getWeatherImageURL(cityModel, imageType); if (null == weatherImageURL) { methods.sendMessage(update.getMessage().getChat().getId(), "Please use /now + cityname or /week + cityname"); return; } Path tmpDir = Paths.get("target", "tmp", "img"); if (!tmpDir.toFile().exists()) { tmpDir.toFile().mkdirs(); } Path createTempFile = Files.createTempFile(tmpDir, "prediction", ".png", new FileAttribute[0]); File file = createTempFile.toFile(); methods.sendPhoto(update.getMessage().getChat().getId(), weatherImageURL, file, "DMI weather in " + cityModel.getLabel()); file.delete(); } } }
[ "diegocastroviadero19@gmail.com" ]
diegocastroviadero19@gmail.com
345a6093a8e28b3c81a4f3f74b3e12a3b7e16f96
76c254354a4ba9b6c0e24cd5209dff75909933d6
/src/com/baoluo/im/util/FileCode.java
0558c8c15ab264b1e4918589d611c4b28d91cc73
[]
no_license
ComNewman/Android_BaoLuo_Community
c1cb6a61643fba4c8c7dd35c4f28625d07891d32
8c83235eef27ac4743a4c694ae291d53165ff797
refs/heads/master
2021-01-10T18:17:59.295566
2016-02-24T06:14:07
2016-02-24T06:14:07
52,418,933
0
0
null
null
null
null
UTF-8
Java
false
false
1,508
java
package com.baoluo.im.util; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import org.apaches.commons.codec.binary.Base64; import com.baoluo.community.util.L; public class FileCode { private static final String TAG = "FileSave"; private static FileCode instance; public static FileCode getInstance(){ if(instance == null){ instance = new FileCode(); } return instance; } public String file2Base64Str(String filePath){ StringBuffer sb = new StringBuffer(); try{ File file = new File(filePath); FileInputStream in = new FileInputStream(file); byte[] data = new byte[in.available()]; in.read(data); in.close(); data = Base64.encodeBase64(data); for (byte bt : data) { sb.append((char) bt); } }catch(IOException e){ L.e(TAG, "file to base64Str error!"); } return new String(sb); } public boolean base64Str2File(String str,String filePath){ FileOutputStream fos = null; try{ byte[] da = Base64.decodeBase64(str); File file = new File(filePath); fos = new FileOutputStream(file); fos.write(da); fos.flush(); return true; }catch(IOException e){ e.printStackTrace(); L.e(TAG, "base64Str to File error!"); return false; }finally{ try { fos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
[ "com_cai@sina.com" ]
com_cai@sina.com
3f4601b674da27eb9a36c283c11bddc809f45bcb
15737a9f72a22320093520ce91bf075bf0057956
/gcp-function-http/src/main/java/io/micronaut/gcp/function/http/jackson/GoogleJacksonConfiguration.java
670fd5cd0bae8356f473f85f0012408f6e5b511c
[ "Apache-2.0" ]
permissive
viniciusccarvalho/micronaut-gcp
63c68385880248ee40c812d075ed3aa9194258e8
d08f1ec0ec22bbb87df15bdd08bc2ea97fc631ff
refs/heads/master
2023-01-23T13:47:32.637476
2020-11-19T15:44:20
2020-11-19T15:44:20
271,624,518
0
1
Apache-2.0
2023-01-23T00:02:37
2020-06-11T18:54:53
Java
UTF-8
Java
false
false
1,411
java
/* * Copyright 2017-2020 original authors * * 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 * * https://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 io.micronaut.gcp.function.http.jackson; import io.micronaut.context.event.BeanCreatedEvent; import io.micronaut.context.event.BeanCreatedEventListener; import io.micronaut.jackson.JacksonConfiguration; import javax.inject.Singleton; /** * Disables module scan for Jackson which is slow in function context. * * @author graemerocher * @since 1.2.0 */ @Singleton public class GoogleJacksonConfiguration implements BeanCreatedEventListener<JacksonConfiguration> { @Override public JacksonConfiguration onCreated(BeanCreatedEvent<JacksonConfiguration> event) { JacksonConfiguration jacksonConfiguration = event.getBean(); jacksonConfiguration.setModuleScan(false); jacksonConfiguration.setBeanIntrospectionModule(true); return jacksonConfiguration; } }
[ "graeme.rocher@gmail.com" ]
graeme.rocher@gmail.com
32d33cd241c456a68a4e3abf3dff425414ffb04f
9bc1c35c02e05d140fa39383e847f7e05d906e96
/users-test/src/main/java/com/example/demo/UserDataDao.java
4650b305125c3b5b0d37ebe1fbb41e5a7f1ef139
[]
no_license
t-uehra/test
f3c452347e1f48ca3e73887c925f5c99dc8dd9b2
63aeea4b73b7eb737bb5900a0093d82b26c1753e
refs/heads/main
2023-06-08T03:14:26.143171
2021-06-23T07:34:48
2021-06-23T07:34:48
379,585,686
0
0
null
2021-06-23T11:51:52
2021-06-23T11:51:51
null
UTF-8
Java
false
false
420
java
package com.example.demo; import org.seasar.doma.Dao; import org.seasar.doma.Select; import org.seasar.doma.Delete; import org.seasar.doma.Insert; import org.seasar.doma.Update; import org.seasar.doma.boot.ConfigAutowireable; import org.springframework.stereotype.Component; import java.util.List; @ConfigAutowireable @Dao public interface UserDataDao { @Select List<UserData> findAll(); }
[ "noreply@github.com" ]
t-uehra.noreply@github.com
c84999c1190921530cc73589293a7ee27c27a7b6
27e5ee715936504710d6090b75cf1f42806067af
/src/main/java/com/newhans/dao/ShopDao.java
c5e4cb8683e4c78ace59d9efffcdd2040faeeb6d
[ "MIT" ]
permissive
newhans/o2o_takeout
161f64cbecb7c52295377c6e39f2d7d962dc2304
4a7e0104595ad8c11fb6f42bbd87b4e9eef449db
refs/heads/master
2022-12-15T02:31:54.007549
2020-09-17T14:09:06
2020-09-17T14:09:41
296,337,794
0
0
null
null
null
null
UTF-8
Java
false
false
1,099
java
package com.newhans.dao; import java.util.List; import org.apache.ibatis.annotations.Param; import com.newhans.entity.Shop; public interface ShopDao { /** * 新增店铺 * @param shop * @return 1 插入成功 * @return -1 插入失败 --- Mybatis返回的 */ int insertShop(Shop shop); /** * 更新店铺信息 * @param shop * @return */ int updateShop(Shop shop); /** * 通过shop id 查询店铺 * @param shopId * @return */ Shop queryByShopId(long shopId); /** * 分页查询店铺,可输入的条件:店铺名(模糊),店铺状态,店铺类别,区域id,owner * @param shopCondition * @param rowIndex 从第几行开始取 * @param pageSize 返回的条数 * @return */ List<Shop> queryShopList(@Param("shopCondition") Shop shopCondition, @Param("rowIndex") int rowIndex, @Param("pageSize") int pageSize); /** * 返回queryShopList总数 * 因为entity里没有shopCondition,所以要写成参数 * @param shopCondition * * @return */ int queryShopCount(@Param("shopCondition") Shop shopCondition); }
[ "847135006@qq.com" ]
847135006@qq.com
0ea51370d26e84ebac38bb34c98ba75620dbab03
82674ee6761c97390bb5c322c243662ffa808729
/merging-communities.java
5aed9a72c9904896ac9b3c08f4c4aad783962c46
[]
no_license
sanket-tadigital/HackerRank_Sanket_Repo
e0fc741fbcc5203b3e3a3a87f5dafde8ef3c4480
ee6ded8eae5baa666378aa53eefdd22426a63f42
refs/heads/master
2020-05-07T08:12:52.791841
2019-06-18T10:32:24
2019-06-18T10:32:24
180,315,847
0
0
null
null
null
null
UTF-8
Java
false
false
1,458
java
import java.util.Scanner; public class Solution { public static void main(String[] args) throws Throwable { Scanner in = new Scanner(System.in); int N = in.nextInt(); int Q = in.nextInt(); Person[] persons = new Person[N + 1]; for (int i = 1; i <= N; i++) { persons[i] = new Person(); } for (int i = 0; i < Q; i++) { String command = in.next(); if (command.equals("M")) { int I = in.nextInt(); int J = in.nextInt(); int rootI = findRoot(persons, I); int rootJ = findRoot(persons, J); if (rootI != rootJ) { persons[rootJ].parent = rootI; persons[rootI].size += persons[rootJ].size; } } else if (command.equals("Q")) { int I = in.nextInt(); System.out.println(persons[findRoot(persons, I)].size); } } in.close(); } static int findRoot(Person[] persons, int index) { int root = index; while (persons[root].parent != -1) { root = persons[root].parent; } int p = index; while (p != root) { int nextP = persons[p].parent; persons[p].parent = root; p = nextP; } return root; } } class Person { int parent = -1; int size = 1; }
[ "training.project.sanket@gmail.com" ]
training.project.sanket@gmail.com
fd9517fac43d75b3e3cbe1ea35ccf8508767b71a
6649a4234c74baaf7229214c1052e18d28116fab
/HelpDesk/app/src/main/java/com/micro/helpdesk/api/ChamadoTask.java
561dc5f0c7c647a5b48c2bd68a79a3d8c8620542
[]
no_license
CarlosVitorRibeiro/HelpDesk
302d5f89d8a301c39482eab9b6f4fa9ca2ebb35c
c3ad4535ae764263d05e250f9dd32e93066a158f
refs/heads/master
2020-08-14T11:06:34.315155
2019-10-14T22:29:46
2019-10-14T22:29:46
215,156,191
0
0
null
null
null
null
UTF-8
Java
false
false
2,078
java
package com.micro.helpdesk.api; import android.content.Context; import android.os.AsyncTask; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class ChamadoTask extends AsyncTask<Void, Void, String> { private OnEventListener<String> mCallBack; private Context mContext; public Exception mException; public ChamadoTask(Context context, OnEventListener callback) { mCallBack = callback; mContext = context; } @Override protected String doInBackground(Void... voids) { HttpURLConnection urlConnection = null; BufferedReader reader = null; try { URL url = new URL("http://10.0.2.2:8080/chamados"); urlConnection = (HttpURLConnection) url.openConnection(); urlConnection.setRequestMethod("GET"); urlConnection.connect(); InputStream inputStream = urlConnection.getInputStream(); reader = new BufferedReader(new InputStreamReader(inputStream)); String linha; StringBuffer buffer = new StringBuffer(); while((linha = reader.readLine()) != null) { buffer.append(linha); buffer.append("\n"); } return buffer.toString(); } catch (Exception e) { e.printStackTrace(); if (urlConnection != null) { urlConnection.disconnect(); } if (reader != null) { try { reader.close(); } catch (IOException e1) { e1.printStackTrace(); } } } return null; } @Override protected void onPostExecute(String result) { if (mCallBack != null) { if (mException == null) { mCallBack.onSuccess(result); } else { mCallBack.onFailure(mException); } } } }
[ "arthurfernandesdealmeida@hotmail.com" ]
arthurfernandesdealmeida@hotmail.com
8b5bc96e1e322ecb9f37fa77bead218b21335d51
ccf8e7be2757202c8dd42707d4f8ea47487ebb41
/java4/Smart Toic tac toe player/HumanPlayer.java
63325766c65829457023d3768b39c7f9b7f23875
[]
no_license
aktheraja/Java_Boot_Camp
7c75cbe474660f509b86243ab795ef575aa6b67a
8f287624dcd10a812a5481989c44034ca010d6cd
refs/heads/master
2020-07-02T14:37:08.594351
2019-08-10T00:51:30
2019-08-10T00:51:30
201,559,381
1
0
null
null
null
null
UTF-8
Java
false
false
961
java
import java.util.Scanner; public class HumanPlayer extends Player { private Board board; public HumanPlayer(String name, char p) { super(name, p); } public void play() { if (( board.xWins()==false) &&(board.isFull()==false)&&(board.oWins()==false) ) { makeMove();} } public void makeMove() { System.out.print(" Player "+getMark()+ " :enter your row number "); Scanner row1 = new Scanner(System.in); String row2=row1.nextLine(); System.out.print(" Player "+getMark()+ " :enter your column number "); Scanner column1 = new Scanner(System.in); String column2=column1.nextLine(); int row = Integer.parseInt(row2); int col = Integer.parseInt(column2); board.addMark( row, col,getMark()); board.display(); if ((board.isFull()==true && board.xWins() == false && board.oWins() == false)){ System.out.println("the game is the tie"); } } public void setBoard(Board theBoard) { board=theBoard; } }
[ "noreply@github.com" ]
aktheraja.noreply@github.com
4d90eb64b5e2624e6770aaabbe15a0e3066f41d8
4332dd4c50894ffe77c2fd8d75f727abfa3697fc
/src/com/akjava/gwt/gthapetest/client/cardemo/SwingDoor.java
c57eeda5f3c994c8e72e5d218ed9c910282d0122
[ "MIT" ]
permissive
akjava/gthape
9cadcc776a5b3723a55ec22bf49cce6013acc10f
2538a704d8e69a9999dcc1b21854770c518574f3
refs/heads/master
2021-01-01T15:58:58.073657
2014-01-14T07:08:46
2014-01-14T07:08:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,482
java
package com.akjava.gwt.gthapetest.client.cardemo; import com.akjava.gwt.gthape.client.ape.CircleParticle; import com.akjava.gwt.gthape.client.ape.Group; import com.akjava.gwt.gthape.client.ape.RectangleParticle; import com.akjava.gwt.gthape.client.ape.SpringConstraint; public class SwingDoor extends Group{ public SwingDoor(){ super(false); collideInternal ( true ); CircleParticle swingDoorP1 = new CircleParticle( 543,55,7, false, 1, 0.3, 0); swingDoorP1.mass ( 0.001 ); addParticle(swingDoorP1); CircleParticle swingDoorP2 = new CircleParticle( 620,55,7,true, 1, 0.3, 0); addParticle(swingDoorP2); SpringConstraint swingDoor = new SpringConstraint( swingDoorP1, swingDoorP2, 1, true, 13, 1, false); addConstraint(swingDoor); CircleParticle swingDoorAnchor = new CircleParticle( 543,5,2,true, 1, 0.3, 0); swingDoorAnchor.visible ( false ); swingDoorAnchor.collidable ( false ); addParticle(swingDoorAnchor); SpringConstraint swingDoorSpring = new SpringConstraint( swingDoorP1, swingDoorAnchor, 0.02, false, 1, 1, false); swingDoorSpring.restLength ( 40 ); swingDoorSpring.visible ( false ); addConstraint(swingDoorSpring); CircleParticle stopperA = new CircleParticle( 550,-60,70,true, 1, 0.3, 0); stopperA.visible ( false ); addParticle(stopperA); RectangleParticle stopperB = new RectangleParticle( 650,130,42,70,0,true, 1, 0.3, 0); stopperB.visible ( false ); addParticle(stopperB); } }
[ "aki@xps" ]
aki@xps
15c1fdff81ea6c56306c87c630cb3376c36b4cb8
1d78cb962bd83c1842b23de6c0918dcccfee0efe
/src/com/baibei/btrace/AllMethods.java
19a47efc4a931f639ce32d5a4d67ce798d669af7
[]
no_license
tonytanCoder/btrace_demo
1867acc88811f4ec10b571775854e25f1657d898
ba4008ae0277709da62004b3da9e86beb7150a17
refs/heads/master
2021-01-21T16:15:44.851947
2017-06-26T04:01:35
2017-06-26T04:01:35
95,403,993
0
0
null
null
null
null
UTF-8
Java
false
false
714
java
package com.baibei.btrace; import static com.sun.btrace.BTraceUtils.print; import static com.sun.btrace.BTraceUtils.println; import com.sun.btrace.BTraceUtils.Strings; import com.sun.btrace.annotations.BTrace; import com.sun.btrace.annotations.OnMethod; import com.sun.btrace.annotations.ProbeClassName; import com.sun.btrace.annotations.ProbeMethodName; @BTrace public class AllMethods { @OnMethod( clazz="/javax\\.swing\\..*/", method="/.*/" ) public static void m(@ProbeClassName String probeClass, @ProbeMethodName String probeMethod) { print(Strings.strcat("entered ", probeClass)); println(Strings.strcat(".", probeMethod)); } }
[ "tanzanlong@100bei.com" ]
tanzanlong@100bei.com
1dcecbf00150751a65f8f965858a6520c9562abb
abb5b20f08c51af45d9e879e38e022d3dbdf9035
/src/newClass.java
df3c107d4bb3e329b00816d8cc292e3ae300ef6f
[]
no_license
aliya-guliyeva/SelfPractice
9ca41a52cf5377b7d7002a39e6bcd4fe46d02a9c
5d96066e1c66fc76ab3fc422fd2bbcf1e3993816
refs/heads/master
2023-01-19T18:51:13.097104
2020-11-19T05:17:22
2020-11-19T05:17:22
314,119,128
0
0
null
2020-11-19T05:17:23
2020-11-19T02:52:35
Java
UTF-8
Java
false
false
90
java
public class newClass { //i want to be great //i will be great //i will be sdet }
[ "aliya.1988@gmail.com" ]
aliya.1988@gmail.com
a1799f8fdb94da081d0b0199847b4f7f6818ae3a
f6ec0e492b707d23a941440febb848cf8b256ced
/src/web/servlet/SuccessServlet.java
770944e705a61f58091783e8ff050dbdf7bf9b61
[]
no_license
zhang0924/le
47644aa10b3055ea89719411e9dc0ff683f466d0
fa9f71033c89a5d0b19a32a8008034e2faa5c5e7
refs/heads/master
2021-05-21T13:26:42.831432
2020-04-03T08:32:04
2020-04-03T08:32:04
252,666,689
1
0
null
null
null
null
UTF-8
Java
false
false
1,603
java
package web.servlet; import domain.user.User; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @WebServlet("/successServlet") public class SuccessServlet extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //获取request域中共享的user对象 User user = (User) request.getAttribute("user"); if (user != null) { //转发到成功登录的过渡界面 int id = user.getId(); String username = user.getUsername(); String password = user.getPassword(); String email = user.getEmail(); String datetime = user.getDatetime(); request.setCharacterEncoding("utf-8"); request.setAttribute("id", id); request.setAttribute("username", username); request.setAttribute("password", password); request.setAttribute("email", email); request.setAttribute("datetime", datetime); request.getRequestDispatcher("./htmls/successLogin.jsp").forward(request, response); }else{ System.out.println(user); } } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doPost(request, response); } }
[ "noreply@github.com" ]
zhang0924.noreply@github.com
83ebc21c6f42e865090609ec5b1c51bfe700a390
e619827d063a258b7f9b932030cbc379e63869ff
/src/com/classnet/dao/impl/suzuki/CoolantDurrDaoImpl.java
f46676dca030cb78ac2bec9944daa82229541644
[]
no_license
uwitec/caDataColl
5fb4a487c610a2a1c761e580b8a2bb471c37c669
e51a8925a3a9e75024a5d458fcab5a24dbee7f9d
refs/heads/master
2021-06-11T08:03:43.504138
2017-03-10T09:46:19
2017-03-12T03:22:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
301
java
package com.classnet.dao.impl.suzuki; import com.classnet.dao.impl.HibernateSupportDao; import com.classnet.dao.suzuki.CoolantDurrDao; import com.classnet.entity.suzuki.CoolantDurrEntity; public class CoolantDurrDaoImpl extends HibernateSupportDao<CoolantDurrEntity> implements CoolantDurrDao { }
[ "lhbthanks@163.com" ]
lhbthanks@163.com
aec2b8ab69e32c1f827db5f714a3987c0212e9dd
757e9f542847384698c5a622ecaccf7fa663ae96
/programming/adaptive-java/section01/task194/src/main/java/section01/task194/Main.java
87d0b5ad80271c0a3f9880b5ed1976e67f49a9e2
[]
no_license
vpetrigo/courses
90580357f3ae57be8ca177bbc3ad0e38e5c9ccac
406f20cf1a14e2a4da992b4cb6d5690a20568096
refs/heads/master
2021-06-14T15:26:52.546264
2021-04-25T14:04:08
2021-04-25T14:04:08
60,792,538
17
13
null
2021-04-25T14:04:09
2016-06-09T17:13:59
C++
UTF-8
Java
false
false
2,060
java
package section01.task194; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; import java.util.stream.Collectors; class Main { private static List<List<Integer>> outputDecompositions; public static void main(String[] args) { Scanner reader = new Scanner(System.in); int inputNum = reader.nextInt(); outputDecompositions = new ArrayList<>(); decomposition(inputNum, new ArrayList<>()); outputDecompositions.sort((o1, o2) -> { for (int i = 0; i < Integer.min(o1.size(), o2.size()); ++i) { int c = o1.get(i).compareTo(o2.get(i)); if (c != 0) { return c; } } return Integer.compare(o1.size(), o2.size()); }); outputDecompositions.forEach(list -> System.out.println( list.stream().map(String::valueOf) .collect(Collectors.joining(" ")))); } public static void decomposition(int num, List<Integer> decompositionList) { if (num == 0) { Collections.reverse(decompositionList); outputDecompositions.add(decompositionList); } else { if (decompositionList.isEmpty() || num >= decompositionList.get(decompositionList.size() - 1)) { int leftBorder = Integer.max(1, !decompositionList.isEmpty() ? decompositionList .get(decompositionList .size() - 1) : 0); for (int i = leftBorder; i < num + 1; ++i) { List<Integer> temporary = new ArrayList<>(decompositionList); temporary.add(i); decomposition(num - i, temporary); } } } } }
[ "taenaru@gmail.com" ]
taenaru@gmail.com
f2ac82b996b0f5e44095fce52572726c3f6ad347
ecc5865fa7728033afc1700bc22a6096b3ac76a6
/app/src/main/java/com/example/myschedule/MainActivity.java
15ba55186e29ac33d5bfc02d78137be66a8115bc
[]
no_license
yt-zero/mySchedule
1aac221071ae218beb8fddd4bbf2e2b7bcca3679
0b4a3a2090ce0d8424021b02563028a4ed8be232
refs/heads/master
2020-08-14T14:32:16.399676
2019-10-15T02:07:54
2019-10-15T02:07:54
215,184,337
1
0
null
null
null
null
UTF-8
Java
false
false
1,139
java
package com.example.myschedule; import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Rect; import android.os.Bundle; import android.util.Log; import android.view.View; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(new MyView(this)); } public class MyView extends View { public MyView(Context context) { super(context); //int x = 100; //int y = 100; //int sideLength = 200; } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); Paint paint=new Paint(); paint.setStyle(Paint.Style.STROKE); paint.setStrokeWidth(3); paint.setColor(Color.BLACK); Period.loadPeriods(); //Period.drawPeriods(canvas); Period.drawTodayP(canvas); } } }
[ "Skyyu,yt@gmail.com" ]
Skyyu,yt@gmail.com
a248dbb2a9c6c07337d00fdaf2c978f02cf7d9cf
038ee6b20cae51169a2ed4ed64a7b8e99b5cbaad
/schemaOrgGson/src/org/kyojo/schemaOrg/m3n3/gson/core/clazz/ChildCareDeserializer.java
3a385e2ae0db0b29fd6bd8b636459d4c457398f0
[ "Apache-2.0" ]
permissive
nagaikenshin/schemaOrg
3dec1626781913930da5585884e3484e0b525aea
4c9d6d098a2741c2dc2a814f1c708ee55c36e9a8
refs/heads/master
2021-06-25T04:52:49.995840
2019-05-12T06:22:37
2019-05-12T06:22:37
134,319,974
1
0
null
null
null
null
UTF-8
Java
false
false
2,044
java
package org.kyojo.schemaorg.m3n3.gson.core.clazz; import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map.Entry; import org.kyojo.gson.JsonDeserializationContext; import org.kyojo.gson.JsonDeserializer; import org.kyojo.gson.JsonElement; import org.kyojo.gson.JsonObject; import org.kyojo.gson.JsonParseException; import org.kyojo.gson.reflect.TypeToken; import org.kyojo.schemaorg.m3n3.core.impl.CHILD_CARE; import org.kyojo.schemaorg.m3n3.core.Clazz.ChildCare; public class ChildCareDeserializer implements JsonDeserializer<ChildCare> { @Override public ChildCare deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext context) throws JsonParseException { if(jsonElement.isJsonPrimitive()) { return new CHILD_CARE(jsonElement.getAsString()); } JsonObject jsonObject = jsonElement.getAsJsonObject(); ChildCare obj = new CHILD_CARE(); HashMap<String, Field> fldMap = new HashMap<>(); Field[] flds = CHILD_CARE.class.getFields(); for(Field fld : flds) { fldMap.put(fld.getName(), fld); } for(Entry<String, JsonElement> ent : jsonObject.entrySet()) { if(fldMap.containsKey(ent.getKey())) { Field fld = fldMap.get(ent.getKey()); JsonElement elm = ent.getValue(); try { if(fld.getType().equals(List.class)) { ParameterizedType gType = (ParameterizedType)fld.getGenericType(); Type[] aTypes = gType.getActualTypeArguments(); Type listType = TypeToken.getParameterized(ArrayList.class, (Class<?>)aTypes[0]).getType(); List<?> list = context.deserialize(elm, listType); fld.set(obj, list); } else { Object val = context.deserialize(elm, fld.getType()); fld.set(obj, val); } } catch(IllegalArgumentException iae) { throw new JsonParseException(iae); } catch(IllegalAccessException iae) { throw new JsonParseException(iae); } } } return obj; } }
[ "nagai@nagaikenshin.com" ]
nagai@nagaikenshin.com
1d39da916f077f1546ba60780a81a07801cf8554
3d0a91cbfbac4b0b985a6e15a0af1134d70bfc05
/simpletest/src/simpletest/StringMethodExam.java
3cd5dbe22f74b13a120c6a2d0622d6e5900c397d
[]
no_license
jaein-tech/test
8e8aaa252ede00619760cc0406b952736607c951
417820b79ef5ce09cc595e8921360a7307b0cc0d
refs/heads/master
2021-01-13T23:09:56.838423
2020-02-29T15:10:59
2020-02-29T15:10:59
242,523,997
0
0
null
null
null
null
UHC
Java
false
false
1,189
java
package simpletest; public class StringMethodExam { public static void main(String[] args) { // Java에서 String Class는 워낙 많이 사용되기 때문에 아래와 같이 작성해도 동일하다. // String class는 이미 만들어놓은 다양한 method들이 제공된다. // String str = new String("something"); == String str = "something"; System.out.println(str.length()); System.out.println(str.concat(" lalala")); // lalala라는 문자를 붙혔지만 이번 한번에만 붙혀진다. System.out.println(str); // 객체가 만들어지면 str이 그 객체를 참조 // 스트링 클래스는 str이 혼자 매서드를 수행한다고 해서 스트링 객체자체를 바꿔버린다면 // 다른 참조하고 있는 변수들에게 문제가 생길 수도 있기때문ㅇ // 한번 만들어진 객체를 바꾸지 않는다 = 불변 클래스 str = str.concat(" lalala"); System.out.println(str); System.out.println(str.substring(8)); // 8번째 글자부터 잘라라 = something lalala -> g lalala System.out.println(str.substring(2, 7)); // 2번째 부터 7글자까지 잘라라 = something lalala -> methi } }
[ "dvpin0102@gmail.com" ]
dvpin0102@gmail.com
e3bb57ff1698c4d9b29277a530e75dc79ff12c1e
ce1daaabef22d9a370352da23840c63ddfb15c31
/BookCatalog/src/main/java/com/tdmehmet/catalog/domain/Account.java
65330ad5d319b9d86313841f8aff196538ac2f34
[]
no_license
tdmehmet/bookcatalog
0c93f6dc18012b77252adca660b095c99ba18b89
4f6c078108d77ff072b969dbef07dff9dc0d62fa
refs/heads/master
2021-01-22T08:13:14.301784
2017-05-27T19:57:39
2017-05-27T19:57:39
92,605,946
0
0
null
null
null
null
UTF-8
Java
false
false
1,163
java
package com.tdmehmet.catalog.domain; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "ACCOUNT") public class Account implements Serializable{ private static final long serialVersionUID = 4938668143382559901L; @Id @Column(name = "ID", nullable = false) @GeneratedValue private long id; @Column(name = "USERNAME", nullable = false) private String username; @Column(name = "PASSWORD", nullable = false) private String password; public Account(){} public Account(String username, String password) { this.username = username; this.password = password; } public long getId() { return id; } public void setId(long id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }
[ "mehdede@daimler.com" ]
mehdede@daimler.com
f4813d5530436f5406760b35fce444045e3bfa72
b6d8dc5cfcadb582e22fa5fb47782245fb113283
/neosoft1/mainclass.java
857dbb4e035f8e03d9c93f4e5cc99f18c38f2215
[]
no_license
vasanthakumarmx94/MyRepos
fe5f0a94695dc193e3aa9d50ad7a03eb842961ff
80be47990f80a7ea0a120a042f635ee2f51fddd7
refs/heads/master
2023-08-03T18:49:22.780611
2021-09-17T10:01:32
2021-09-17T10:01:32
406,628,752
0
0
null
2021-09-17T10:01:32
2021-09-15T05:45:05
Java
UTF-8
Java
false
false
145
java
package neosoft1; public class mainclass { public static void main(String[] args) { System.out.println("welcome ,Git is nice55!!"); } }
[ "vasanthakumarmx94@gmail.com" ]
vasanthakumarmx94@gmail.com
500c0e39f8071a35cb2d9279709c76cb660bb3e0
2b5d790da7cc5775326ab48dd31aea2a333dbab4
/src/esocial-jt-service/src/test/java/br/jus/tst/esocialjt/xml/XmlToolsTest.java
a094e4dd840dcd23acd5af8bd54d2dbfddbd6002
[]
no_license
edipojuan/esocial
93854a78b7d25cd524d1b5ac71bf97940ce143d6
b5dbbd48e3266f5344c06706fc770250e5d8707a
refs/heads/master
2020-03-27T01:54:41.540941
2018-08-17T20:46:32
2018-08-17T20:46:32
145,753,063
1
0
null
null
null
null
UTF-8
Java
false
false
1,056
java
package br.jus.tst.esocialjt.xml; import static org.junit.Assert.assertEquals; import java.io.ByteArrayInputStream; import java.io.IOException; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import org.junit.Test; import org.w3c.dom.Element; import org.xml.sax.SAXException; public class XmlToolsTest { @Test public void deveRetornarTextoEntreTags() { String texto = "<inicio>RESPOSTA TESTE</inicio>"; String retorno = XmlTools.retornaValor("<inicio>", "</inicio>", texto); assertEquals("RESPOSTA TESTE", retorno); } public void deveTransformarXmlemString() { Element node = null; try { node = DocumentBuilderFactory.newInstance().newDocumentBuilder() .parse(new ByteArrayInputStream("<inicio>RESPOSTA TESTE</inicio>".getBytes())).getDocumentElement(); } catch (SAXException | IOException | ParserConfigurationException e) { e.printStackTrace(); } String retorno = XmlTools.asString(node); assertEquals("<inicio>RESPOSTA TESTE</inicio>", retorno); } }
[ "calimaborges@gmail.com" ]
calimaborges@gmail.com
0ea765f5bc4c6cce6fbcbf656a5be39fbb59986b
fe874a091080326dd485126d3b9b4901d5142946
/src/main/java/xmlLoader/TableLoader.java
f492eea544d7bb17d1d9e5529339f4815e353189
[]
no_license
slavosarik/Database-Translator
4cec74a928a45df1005e0a2c8ee12aeb5927b771
a51b4292d293a944baf7b6c8a39b984f6309300e
refs/heads/master
2020-04-26T01:40:53.309120
2014-11-28T23:25:23
2014-11-28T23:25:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,107
java
package xmlLoader; import java.io.IOException; import java.io.InputStream; import java.util.List; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Unmarshaller; import javax.xml.transform.stream.StreamSource; //trieda pomocou ktorej nacitavam tabulky a ich parametre a atributy - z XML suboru public class TableLoader { private final String xmlFileLocation = "/config/tables.xml"; private static TableLoader instance; private List<Table> tables; private StreamSource xmlStream; private TableLoader() { } public static TableLoader getInstance() { if (instance == null) instance = new TableLoader(); return instance; } // otvorenie streamu private StreamSource openXmlStream(String FILE) { InputStream is = this.getClass().getResourceAsStream(FILE); xmlStream = new StreamSource(is); return xmlStream; } // zatvorenie streamu private void closeXmlStream(StreamSource xmlStream) { try { xmlStream.getInputStream().close(); } catch (IOException e) { e.printStackTrace(); } } // nacitavanie objektov zo suboru a obalovanie do wrapperu @SuppressWarnings("unchecked") private Wrapper<Table> fillWrapper(StreamSource xmlStream) { JAXBContext jaxbContext = null; try { jaxbContext = JAXBContext.newInstance(Wrapper.class, Table.class); } catch (JAXBException e) { e.printStackTrace(); } Unmarshaller jaxbUnmarshaller = null; try { jaxbUnmarshaller = jaxbContext.createUnmarshaller(); } catch (JAXBException e) { e.printStackTrace(); } try { return jaxbUnmarshaller.unmarshal(xmlStream, Wrapper.class) .getValue(); } catch (JAXBException e) { e.printStackTrace(); // v pripade zlyhania vratim prazdny wrapper return null; } } // nacitavanie objektov - tabuliek zo suboru public void loadTables() { // obalim do Wrapperu vsetky objekty z XML suboru Wrapper<Table> JAXBWrapper = fillWrapper(openXmlStream(xmlFileLocation)); tables = JAXBWrapper.getItems(); closeXmlStream(xmlStream); } public List<Table> getTables() { return tables; } }
[ "slavosarik@gmail.com" ]
slavosarik@gmail.com
3cfca5370d9b4c160d4bbbc50a951447bfa9356c
623edcf7ada83bbedc3fe577b1d3ddaf28209896
/CustomDialogView/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/example/dialogspinner/R.java
b332eeacfb5fba133a9bcdc7defbdcf320cdb113
[]
no_license
CapRobin/AsDemoProject
742ba96bc00ac80db991b1703a106d33a3b78d30
40132956ad675b7de5472df246f884380a3c04df
refs/heads/master
2020-03-21T04:35:06.406758
2018-10-27T08:58:26
2018-10-27T09:02:43
138,116,186
1
0
null
null
null
null
UTF-8
Java
false
false
533,583
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.dialogspinner; public final class R { public static final class anim { public static final int abc_fade_in=0x7f010000; public static final int abc_fade_out=0x7f010001; public static final int abc_grow_fade_in_from_bottom=0x7f010002; public static final int abc_popup_enter=0x7f010003; public static final int abc_popup_exit=0x7f010004; public static final int abc_shrink_fade_out_from_bottom=0x7f010005; public static final int abc_slide_in_bottom=0x7f010006; public static final int abc_slide_in_top=0x7f010007; public static final int abc_slide_out_bottom=0x7f010008; public static final int abc_slide_out_top=0x7f010009; public static final int abc_tooltip_enter=0x7f01000a; public static final int abc_tooltip_exit=0x7f01000b; } public static final class attr { /** * Custom divider drawable to use for elements in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarDivider=0x7f020000; /** * Custom item state list drawable background for action bar items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f020001; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f020002; /** * Size of the Action Bar, including the contextual * bar used to present Action Modes. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> */ public static final int actionBarSize=0x7f020003; /** * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f020004; /** * Reference to a style for the Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarStyle=0x7f020005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f020006; /** * Default style for tabs within an action bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f020007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f020008; /** * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTheme=0x7f020009; /** * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f02000a; /** * Default action button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionButtonStyle=0x7f02000b; /** * Default ActionBar dropdown style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f02000c; /** * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionLayout=0x7f02000d; /** * TextAppearance style that will be applied to text that * appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f02000e; /** * Color for text that appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f02000f; /** * Background drawable to use for action mode UI * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeBackground=0x7f020010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f020011; /** * Drawable to use for the close action mode button * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f020012; /** * Drawable to use for the Copy action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f020013; /** * Drawable to use for the Cut action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f020014; /** * Drawable to use for the Find action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f020015; /** * Drawable to use for the Paste action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f020016; /** * PopupWindow style to use for action modes when showing as a window overlay. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f020017; /** * Drawable to use for the Select all action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f020018; /** * Drawable to use for the Share action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f020019; /** * Background drawable to use for action mode UI in the lower split bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f02001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeStyle=0x7f02001b; /** * Drawable to use for the Web Search action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f02001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f02001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f02001e; /** * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f02001f; /** * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f020020; /** * Default ActivityChooserView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f020021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f020022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f020023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogStyle=0x7f020024; /** * Theme to use for alert dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogTheme=0x7f020025; /** * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f020026; /** * Alpha multiplier applied to the base color. * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f020027; /** * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int alphabeticModifiers=0x7f020028; /** * The length of the arrow head when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowHeadLength=0x7f020029; /** * The length of the shaft when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowShaftLength=0x7f02002a; /** * Default AutoCompleteTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f02002b; /** * The maximum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMaxTextSize=0x7f02002c; /** * The minimum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMinTextSize=0x7f02002d; /** * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f02002e; /** * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeStepGranularity=0x7f02002f; /** * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> */ public static final int autoSizeTextType=0x7f020030; /** * Specifies a background drawable for the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int background=0x7f020031; /** * Specifies a background drawable for the bottom component of a split action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f020032; /** * Specifies a background drawable for a second stacked row of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f020033; /** * Tint to apply to the background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundTint=0x7f020034; /** * Blending mode used to apply the background tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int backgroundTintMode=0x7f020035; /** * The length of the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int barLength=0x7f020036; /** * Style for buttons without an explicit border, often used in groups. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f020037; /** * Style for buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f020038; /** * Style for the "negative" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f020039; /** * Style for the "neutral" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f02003a; /** * Style for the "positive" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f02003b; /** * Style for button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarStyle=0x7f02003c; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int buttonGravity=0x7f02003d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int buttonIconDimen=0x7f02003e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f02003f; /** * Normal Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyle=0x7f020040; /** * Small Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f020041; /** * Tint to apply to the button drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int buttonTint=0x7f020042; /** * Blending mode used to apply the button tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int buttonTintMode=0x7f020043; /** * Default Checkbox style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkboxStyle=0x7f020044; /** * Default CheckedTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f020045; /** * Close button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeIcon=0x7f020046; /** * Specifies a layout to use for the "close" item at the starting edge. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeItemLayout=0x7f020047; /** * Text to set as the content description for the collapse button. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f020048; /** * Icon drawable to use for the collapse button. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapseIcon=0x7f020049; /** * The drawing color for the bars * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int color=0x7f02004a; /** * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorAccent=0x7f02004b; /** * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorBackgroundFloating=0x7f02004c; /** * The color applied to framework buttons in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorButtonNormal=0x7f02004d; /** * The color applied to framework controls in their activated (ex. checked) state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlActivated=0x7f02004e; /** * The color applied to framework control highlights (ex. ripples, list selectors). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlHighlight=0x7f02004f; /** * The color applied to framework controls in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlNormal=0x7f020050; /** * Color used for error states and things that need to be drawn to * the user's attention. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f020051; /** * The primary branding color for the app. By default, this is the color applied to the * action bar background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimary=0x7f020052; /** * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimaryDark=0x7f020053; /** * The color applied to framework switch thumbs in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSwitchThumbNormal=0x7f020054; /** * Commit icon shown in the query suggestion row * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int commitIcon=0x7f020055; /** * The content description associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f020056; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEnd=0x7f020057; /** * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEndWithActions=0x7f020058; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetLeft=0x7f020059; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetRight=0x7f02005a; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStart=0x7f02005b; /** * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStartWithNavigation=0x7f02005c; /** * The background used by framework controls. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int controlBackground=0x7f02005d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int coordinatorLayoutStyle=0x7f02005e; /** * Specifies a layout for custom navigation. Overrides navigationMode. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int customNavigationLayout=0x7f02005f; /** * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f020060; /** * Preferred corner radius of dialogs. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogCornerRadius=0x7f020061; /** * Preferred padding for dialog content. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogPreferredPadding=0x7f020062; /** * Theme to use for dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dialogTheme=0x7f020063; /** * Options affecting how the action bar is displayed. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> */ public static final int displayOptions=0x7f020064; /** * Specifies the drawable used for item dividers. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int divider=0x7f020065; /** * A drawable that may be used as a horizontal divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerHorizontal=0x7f020066; /** * Size of padding on either end of a divider. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dividerPadding=0x7f020067; /** * A drawable that may be used as a vertical divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerVertical=0x7f020068; /** * The total size of the drawable * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int drawableSize=0x7f020069; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f02006a; /** * ListPopupWindow compatibility * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f02006b; /** * The preferred item height for dropdown lists. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dropdownListPreferredItemHeight=0x7f02006c; /** * EditText background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextBackground=0x7f02006d; /** * EditText text foreground color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f02006e; /** * Default EditText style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextStyle=0x7f02006f; /** * Elevation for the action bar itself * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int elevation=0x7f020070; /** * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f020071; /** * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int firstBaselineToTopHeight=0x7f020072; /** * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int font=0x7f020073; /** * The attribute for the font family. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f020074; /** * The authority of the Font Provider to be used for the request. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f020075; /** * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fontProviderCerts=0x7f020076; /** * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f020077; /** * The length of the timeout during fetching. * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f020078; /** * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f020079; /** * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f02007a; /** * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fontStyle=0x7f02007b; /** * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontVariationSettings=0x7f02007c; /** * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f02007d; /** * The max gap between the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int gapBetweenBars=0x7f02007e; /** * Go button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int goIcon=0x7f02007f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int height=0x7f020080; /** * Set true to hide the action bar on a vertical nested scroll of content. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f020081; /** * Specifies a drawable to use for the 'home as up' indicator. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f020082; /** * Specifies a layout to use for the "home" section of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeLayout=0x7f020083; /** * Specifies the drawable used for the application icon. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int icon=0x7f020084; /** * Tint to apply to the icon. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int iconTint=0x7f020085; /** * Blending mode used to apply the icon tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int iconTintMode=0x7f020086; /** * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f020087; /** * ImageButton background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int imageButtonStyle=0x7f020088; /** * Specifies a style resource to use for an indeterminate progress spinner. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f020089; /** * The maximal number of items initially shown in the activity list. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f02008a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f02008b; /** * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemPadding=0x7f02008c; /** * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int keylines=0x7f02008d; /** * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lastBaselineToBottomHeight=0x7f02008e; /** * The layout to use for the search view. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout=0x7f02008f; /** * The id of an anchor view that this view should position relative to. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_anchor=0x7f020090; /** * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int layout_anchorGravity=0x7f020091; /** * The class name of a Behavior class defining special runtime behavior * for this child view. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_behavior=0x7f020092; /** * Specifies how this view dodges the inset edges of the CoordinatorLayout. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> */ public static final int layout_dodgeInsetEdges=0x7f020093; /** * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> */ public static final int layout_insetEdge=0x7f020094; /** * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_keyline=0x7f020095; /** * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lineHeight=0x7f020096; /** * Drawable used as a background for selected list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f020097; /** * The list divider used in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f020098; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listItemLayout=0x7f020099; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listLayout=0x7f02009a; /** * Default menu-style ListView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f02009b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f02009c; /** * The preferred list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeight=0x7f02009d; /** * A larger, more robust list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightLarge=0x7f02009e; /** * A smaller, sleeker list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightSmall=0x7f02009f; /** * The preferred padding along the left edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingLeft=0x7f0200a0; /** * The preferred padding along the right edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingRight=0x7f0200a1; /** * Specifies the drawable used for the application logo. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int logo=0x7f0200a2; /** * A content description string to describe the appearance of the * associated logo image. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f0200a3; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxButtonHeight=0x7f0200a4; /** * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f0200a5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f0200a6; /** * Text to set as the content description for the navigation button * located at the start of the toolbar. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f0200a7; /** * Icon drawable to use for the navigation button located at * the start of the toolbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationIcon=0x7f0200a8; /** * The type of navigation to use. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> */ public static final int navigationMode=0x7f0200a9; /** * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int numericModifiers=0x7f0200aa; /** * Whether the popup window should overlap its anchor view. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f0200ab; /** * Bottom padding to use when no buttons are present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingBottomNoButtons=0x7f0200ac; /** * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingEnd=0x7f0200ad; /** * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingStart=0x7f0200ae; /** * Top padding to use when no title is present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingTopNoTitle=0x7f0200af; /** * The background of a panel when it is inset from the left and right edges of the screen. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelBackground=0x7f0200b0; /** * Default Panel Menu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0200b1; /** * Default Panel Menu width. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int panelMenuListWidth=0x7f0200b2; /** * Default PopupMenu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupMenuStyle=0x7f0200b3; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupTheme=0x7f0200b4; /** * Default PopupWindow style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupWindowStyle=0x7f0200b5; /** * Whether space should be reserved in layout when an icon is missing. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f0200b6; /** * Specifies the horizontal padding on either end for an embedded progress bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int progressBarPadding=0x7f0200b7; /** * Specifies a style resource to use for an embedded progress bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int progressBarStyle=0x7f0200b8; /** * Background for the section containing the search query * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int queryBackground=0x7f0200b9; /** * An optional user-defined query hint string to be displayed in the empty query field. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f0200ba; /** * Default RadioButton style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0200bb; /** * Default RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0200bc; /** * Indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f0200bd; /** * Small indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0200be; /** * Search icon displayed as a text field hint * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchHintIcon=0x7f0200bf; /** * Search icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchIcon=0x7f0200c0; /** * Style for the search query widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchViewStyle=0x7f0200c1; /** * Default SeekBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int seekBarStyle=0x7f0200c2; /** * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackground=0x7f0200c3; /** * Background drawable for borderless standalone items that need focus/pressed states. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f0200c4; /** * How this item should display in the Action Bar, if present. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> */ public static final int showAsAction=0x7f0200c5; /** * Setting for which dividers to show. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int showDividers=0x7f0200c6; /** * Whether to draw on/off text. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f0200c7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f0200c8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f0200c9; /** * Whether bars should rotate or not during transition * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f0200ca; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f0200cb; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerStyle=0x7f0200cc; /** * Whether to split the track and leave a gap for the thumb drawable. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f0200cd; /** * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int srcCompat=0x7f0200ce; /** * State identifier indicating the popup will be above the anchor. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f0200cf; /** * Drawable to display behind the status bar when the view is set to draw behind it. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarBackground=0x7f0200d0; /** * Drawable for the arrow icon indicating a particular item is a submenu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subMenuArrow=0x7f0200d1; /** * Background for the section containing the action (e.g. voice search) * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int submitBackground=0x7f0200d2; /** * Specifies subtitle text used for navigationMode="normal" * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f0200d3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0200d4; /** * A color to apply to the subtitle string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int subtitleTextColor=0x7f0200d5; /** * Specifies a style to use for subtitle text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f0200d6; /** * Layout for query suggestion rows * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f0200d7; /** * Minimum width for the switch component * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchMinWidth=0x7f0200d8; /** * Minimum space between the switch and caption text * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchPadding=0x7f0200d9; /** * Default style for the Switch widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchStyle=0x7f0200da; /** * TextAppearance style for text displayed on the switch thumb. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0200db; /** * Present the text in ALL CAPS. This may use a small-caps form when available. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int textAllCaps=0x7f0200dc; /** * Text color, typeface, size, and style for the text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f0200dd; /** * The preferred TextAppearance for the primary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0200de; /** * The preferred TextAppearance for the secondary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f0200df; /** * The preferred TextAppearance for the primary text of small list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0200e0; /** * Text color, typeface, size, and style for header text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f0200e1; /** * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0200e2; /** * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0200e3; /** * Text color, typeface, size, and style for small text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f0200e4; /** * Color of list item text in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0200e5; /** * Text color for urls in search suggestions, used by things like global search * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f0200e6; /** * Deprecated. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int theme=0x7f0200e7; /** * The thickness (stroke size) for the bar paint * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thickness=0x7f0200e8; /** * Amount of padding on either side of text within the switch thumb. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thumbTextPadding=0x7f0200e9; /** * Tint to apply to the thumb drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int thumbTint=0x7f0200ea; /** * Blending mode used to apply the thumb tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int thumbTintMode=0x7f0200eb; /** * Drawable displayed at each progress position on a seekbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tickMark=0x7f0200ec; /** * Tint to apply to the tick mark drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tickMarkTint=0x7f0200ed; /** * Blending mode used to apply the tick mark tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tickMarkTintMode=0x7f0200ee; /** * Tint to apply to the image source. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tint=0x7f0200ef; /** * Blending mode used to apply the image source tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tintMode=0x7f0200f0; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f0200f1; /** * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMargin=0x7f0200f2; /** * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginBottom=0x7f0200f3; /** * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginEnd=0x7f0200f4; /** * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginStart=0x7f0200f5; /** * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginTop=0x7f0200f6; /** * {@deprecated Use titleMargin} * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ @Deprecated public static final int titleMargins=0x7f0200f7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0200f8; /** * A color to apply to the title string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int titleTextColor=0x7f0200f9; /** * Specifies a style to use for title text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextStyle=0x7f0200fa; /** * Default Toolar NavigationButtonStyle * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f0200fb; /** * Default Toolbar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarStyle=0x7f0200fc; /** * Foreground color to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f0200fd; /** * Background to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f0200fe; /** * The tooltip text associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f0200ff; /** * Drawable to use as the "track" that the switch thumb slides within. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int track=0x7f020100; /** * Tint to apply to the track. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int trackTint=0x7f020101; /** * Blending mode used to apply the track tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int trackTintMode=0x7f020102; /** * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * <p>May be an integer value, such as "<code>100</code>". */ public static final int ttcIndex=0x7f020103; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int viewInflaterClass=0x7f020104; /** * Voice button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int voiceIcon=0x7f020105; /** * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f020106; /** * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f020107; /** * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f020108; /** * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMajor=0x7f020109; /** * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMinor=0x7f02010a; /** * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMajor=0x7f02010b; /** * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMinor=0x7f02010c; /** * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMajor=0x7f02010d; /** * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMinor=0x7f02010e; /** * Flag indicating whether there should be no title on this window. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f02010f; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f030000; public static final int abc_allow_stacked_button_bar=0x7f030001; public static final int abc_config_actionMenuItemAllCaps=0x7f030002; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; public static final int abc_background_cache_hint_selector_material_light=0x7f040001; public static final int abc_btn_colored_borderless_text_material=0x7f040002; public static final int abc_btn_colored_text_material=0x7f040003; public static final int abc_color_highlight_material=0x7f040004; public static final int abc_hint_foreground_material_dark=0x7f040005; public static final int abc_hint_foreground_material_light=0x7f040006; public static final int abc_input_method_navigation_guard=0x7f040007; public static final int abc_primary_text_disable_only_material_dark=0x7f040008; public static final int abc_primary_text_disable_only_material_light=0x7f040009; public static final int abc_primary_text_material_dark=0x7f04000a; public static final int abc_primary_text_material_light=0x7f04000b; public static final int abc_search_url_text=0x7f04000c; public static final int abc_search_url_text_normal=0x7f04000d; public static final int abc_search_url_text_pressed=0x7f04000e; public static final int abc_search_url_text_selected=0x7f04000f; public static final int abc_secondary_text_material_dark=0x7f040010; public static final int abc_secondary_text_material_light=0x7f040011; public static final int abc_tint_btn_checkable=0x7f040012; public static final int abc_tint_default=0x7f040013; public static final int abc_tint_edittext=0x7f040014; public static final int abc_tint_seek_thumb=0x7f040015; public static final int abc_tint_spinner=0x7f040016; public static final int abc_tint_switch_track=0x7f040017; public static final int accent_material_dark=0x7f040018; public static final int accent_material_light=0x7f040019; public static final int background_floating_material_dark=0x7f04001a; public static final int background_floating_material_light=0x7f04001b; public static final int background_material_dark=0x7f04001c; public static final int background_material_light=0x7f04001d; public static final int bright_foreground_disabled_material_dark=0x7f04001e; public static final int bright_foreground_disabled_material_light=0x7f04001f; public static final int bright_foreground_inverse_material_dark=0x7f040020; public static final int bright_foreground_inverse_material_light=0x7f040021; public static final int bright_foreground_material_dark=0x7f040022; public static final int bright_foreground_material_light=0x7f040023; public static final int button_material_dark=0x7f040024; public static final int button_material_light=0x7f040025; public static final int dim_foreground_disabled_material_dark=0x7f040026; public static final int dim_foreground_disabled_material_light=0x7f040027; public static final int dim_foreground_material_dark=0x7f040028; public static final int dim_foreground_material_light=0x7f040029; public static final int error_color_material_dark=0x7f04002a; public static final int error_color_material_light=0x7f04002b; public static final int foreground_material_dark=0x7f04002c; public static final int foreground_material_light=0x7f04002d; public static final int highlighted_text_material_dark=0x7f04002e; public static final int highlighted_text_material_light=0x7f04002f; public static final int material_blue_grey_800=0x7f040030; public static final int material_blue_grey_900=0x7f040031; public static final int material_blue_grey_950=0x7f040032; public static final int material_deep_teal_200=0x7f040033; public static final int material_deep_teal_500=0x7f040034; public static final int material_grey_100=0x7f040035; public static final int material_grey_300=0x7f040036; public static final int material_grey_50=0x7f040037; public static final int material_grey_600=0x7f040038; public static final int material_grey_800=0x7f040039; public static final int material_grey_850=0x7f04003a; public static final int material_grey_900=0x7f04003b; public static final int notification_action_color_filter=0x7f04003c; public static final int notification_icon_bg_color=0x7f04003d; public static final int notification_material_background_media_default_color=0x7f04003e; public static final int primary_dark_material_dark=0x7f04003f; public static final int primary_dark_material_light=0x7f040040; public static final int primary_material_dark=0x7f040041; public static final int primary_material_light=0x7f040042; public static final int primary_text_default_material_dark=0x7f040043; public static final int primary_text_default_material_light=0x7f040044; public static final int primary_text_disabled_material_dark=0x7f040045; public static final int primary_text_disabled_material_light=0x7f040046; public static final int ripple_material_dark=0x7f040047; public static final int ripple_material_light=0x7f040048; public static final int secondary_text_default_material_dark=0x7f040049; public static final int secondary_text_default_material_light=0x7f04004a; public static final int secondary_text_disabled_material_dark=0x7f04004b; public static final int secondary_text_disabled_material_light=0x7f04004c; public static final int switch_thumb_disabled_material_dark=0x7f04004d; public static final int switch_thumb_disabled_material_light=0x7f04004e; public static final int switch_thumb_material_dark=0x7f04004f; public static final int switch_thumb_material_light=0x7f040050; public static final int switch_thumb_normal_material_dark=0x7f040051; public static final int switch_thumb_normal_material_light=0x7f040052; public static final int tooltip_background_dark=0x7f040053; public static final int tooltip_background_light=0x7f040054; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f050000; public static final int abc_action_bar_content_inset_with_nav=0x7f050001; public static final int abc_action_bar_default_height_material=0x7f050002; public static final int abc_action_bar_default_padding_end_material=0x7f050003; public static final int abc_action_bar_default_padding_start_material=0x7f050004; public static final int abc_action_bar_elevation_material=0x7f050005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; public static final int abc_action_bar_stacked_max_height=0x7f050009; public static final int abc_action_bar_stacked_tab_max_width=0x7f05000a; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000b; public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000c; public static final int abc_action_button_min_height_material=0x7f05000d; public static final int abc_action_button_min_width_material=0x7f05000e; public static final int abc_action_button_min_width_overflow_material=0x7f05000f; public static final int abc_alert_dialog_button_bar_height=0x7f050010; public static final int abc_alert_dialog_button_dimen=0x7f050011; public static final int abc_button_inset_horizontal_material=0x7f050012; public static final int abc_button_inset_vertical_material=0x7f050013; public static final int abc_button_padding_horizontal_material=0x7f050014; public static final int abc_button_padding_vertical_material=0x7f050015; public static final int abc_cascading_menus_min_smallest_width=0x7f050016; public static final int abc_config_prefDialogWidth=0x7f050017; public static final int abc_control_corner_material=0x7f050018; public static final int abc_control_inset_material=0x7f050019; public static final int abc_control_padding_material=0x7f05001a; public static final int abc_dialog_corner_radius_material=0x7f05001b; public static final int abc_dialog_fixed_height_major=0x7f05001c; public static final int abc_dialog_fixed_height_minor=0x7f05001d; public static final int abc_dialog_fixed_width_major=0x7f05001e; public static final int abc_dialog_fixed_width_minor=0x7f05001f; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f050020; public static final int abc_dialog_list_padding_top_no_title=0x7f050021; public static final int abc_dialog_min_width_major=0x7f050022; public static final int abc_dialog_min_width_minor=0x7f050023; public static final int abc_dialog_padding_material=0x7f050024; public static final int abc_dialog_padding_top_material=0x7f050025; public static final int abc_dialog_title_divider_material=0x7f050026; public static final int abc_disabled_alpha_material_dark=0x7f050027; public static final int abc_disabled_alpha_material_light=0x7f050028; public static final int abc_dropdownitem_icon_width=0x7f050029; public static final int abc_dropdownitem_text_padding_left=0x7f05002a; public static final int abc_dropdownitem_text_padding_right=0x7f05002b; public static final int abc_edit_text_inset_bottom_material=0x7f05002c; public static final int abc_edit_text_inset_horizontal_material=0x7f05002d; public static final int abc_edit_text_inset_top_material=0x7f05002e; public static final int abc_floating_window_z=0x7f05002f; public static final int abc_list_item_padding_horizontal_material=0x7f050030; public static final int abc_panel_menu_list_width=0x7f050031; public static final int abc_progress_bar_height_material=0x7f050032; public static final int abc_search_view_preferred_height=0x7f050033; public static final int abc_search_view_preferred_width=0x7f050034; public static final int abc_seekbar_track_background_height_material=0x7f050035; public static final int abc_seekbar_track_progress_height_material=0x7f050036; public static final int abc_select_dialog_padding_start_material=0x7f050037; public static final int abc_switch_padding=0x7f050038; public static final int abc_text_size_body_1_material=0x7f050039; public static final int abc_text_size_body_2_material=0x7f05003a; public static final int abc_text_size_button_material=0x7f05003b; public static final int abc_text_size_caption_material=0x7f05003c; public static final int abc_text_size_display_1_material=0x7f05003d; public static final int abc_text_size_display_2_material=0x7f05003e; public static final int abc_text_size_display_3_material=0x7f05003f; public static final int abc_text_size_display_4_material=0x7f050040; public static final int abc_text_size_headline_material=0x7f050041; public static final int abc_text_size_large_material=0x7f050042; public static final int abc_text_size_medium_material=0x7f050043; public static final int abc_text_size_menu_header_material=0x7f050044; public static final int abc_text_size_menu_material=0x7f050045; public static final int abc_text_size_small_material=0x7f050046; public static final int abc_text_size_subhead_material=0x7f050047; public static final int abc_text_size_subtitle_material_toolbar=0x7f050048; public static final int abc_text_size_title_material=0x7f050049; public static final int abc_text_size_title_material_toolbar=0x7f05004a; public static final int activity_horizontal_margin=0x7f05004b; public static final int activity_vertical_margin=0x7f05004c; public static final int compat_button_inset_horizontal_material=0x7f05004d; public static final int compat_button_inset_vertical_material=0x7f05004e; public static final int compat_button_padding_horizontal_material=0x7f05004f; public static final int compat_button_padding_vertical_material=0x7f050050; public static final int compat_control_corner_material=0x7f050051; public static final int compat_notification_large_icon_max_height=0x7f050052; public static final int compat_notification_large_icon_max_width=0x7f050053; public static final int disabled_alpha_material_dark=0x7f050054; public static final int disabled_alpha_material_light=0x7f050055; public static final int highlight_alpha_material_colored=0x7f050056; public static final int highlight_alpha_material_dark=0x7f050057; public static final int highlight_alpha_material_light=0x7f050058; public static final int hint_alpha_material_dark=0x7f050059; public static final int hint_alpha_material_light=0x7f05005a; public static final int hint_pressed_alpha_material_dark=0x7f05005b; public static final int hint_pressed_alpha_material_light=0x7f05005c; public static final int notification_action_icon_size=0x7f05005d; public static final int notification_action_text_size=0x7f05005e; public static final int notification_big_circle_margin=0x7f05005f; public static final int notification_content_margin_start=0x7f050060; public static final int notification_large_icon_height=0x7f050061; public static final int notification_large_icon_width=0x7f050062; public static final int notification_main_column_padding_top=0x7f050063; public static final int notification_media_narrow_margin=0x7f050064; public static final int notification_right_icon_size=0x7f050065; public static final int notification_right_side_padding_top=0x7f050066; public static final int notification_small_icon_background_padding=0x7f050067; public static final int notification_small_icon_size_as_large=0x7f050068; public static final int notification_subtext_size=0x7f050069; public static final int notification_top_pad=0x7f05006a; public static final int notification_top_pad_large_text=0x7f05006b; public static final int subtitle_corner_radius=0x7f05006c; public static final int subtitle_outline_width=0x7f05006d; public static final int subtitle_shadow_offset=0x7f05006e; public static final int subtitle_shadow_radius=0x7f05006f; public static final int tooltip_corner_radius=0x7f050070; public static final int tooltip_horizontal_padding=0x7f050071; public static final int tooltip_margin=0x7f050072; public static final int tooltip_precise_anchor_extra_offset=0x7f050073; public static final int tooltip_precise_anchor_threshold=0x7f050074; public static final int tooltip_vertical_padding=0x7f050075; public static final int tooltip_y_offset_non_touch=0x7f050076; public static final int tooltip_y_offset_touch=0x7f050077; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; public static final int abc_action_bar_item_background_material=0x7f060001; public static final int abc_btn_borderless_material=0x7f060002; public static final int abc_btn_check_material=0x7f060003; public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; public static final int abc_btn_colored_material=0x7f060006; public static final int abc_btn_default_mtrl_shape=0x7f060007; public static final int abc_btn_radio_material=0x7f060008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; public static final int abc_cab_background_internal_bg=0x7f06000d; public static final int abc_cab_background_top_material=0x7f06000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; public static final int abc_control_background_material=0x7f060010; public static final int abc_dialog_material_background=0x7f060011; public static final int abc_edit_text_material=0x7f060012; public static final int abc_ic_ab_back_material=0x7f060013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; public static final int abc_ic_clear_material=0x7f060015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; public static final int abc_ic_go_search_api_material=0x7f060017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; public static final int abc_ic_menu_overflow_material=0x7f06001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; public static final int abc_ic_search_api_material=0x7f06001e; public static final int abc_ic_star_black_16dp=0x7f06001f; public static final int abc_ic_star_black_36dp=0x7f060020; public static final int abc_ic_star_black_48dp=0x7f060021; public static final int abc_ic_star_half_black_16dp=0x7f060022; public static final int abc_ic_star_half_black_36dp=0x7f060023; public static final int abc_ic_star_half_black_48dp=0x7f060024; public static final int abc_ic_voice_search_api_material=0x7f060025; public static final int abc_item_background_holo_dark=0x7f060026; public static final int abc_item_background_holo_light=0x7f060027; public static final int abc_list_divider_material=0x7f060028; public static final int abc_list_divider_mtrl_alpha=0x7f060029; public static final int abc_list_focused_holo=0x7f06002a; public static final int abc_list_longpressed_holo=0x7f06002b; public static final int abc_list_pressed_holo_dark=0x7f06002c; public static final int abc_list_pressed_holo_light=0x7f06002d; public static final int abc_list_selector_background_transition_holo_dark=0x7f06002e; public static final int abc_list_selector_background_transition_holo_light=0x7f06002f; public static final int abc_list_selector_disabled_holo_dark=0x7f060030; public static final int abc_list_selector_disabled_holo_light=0x7f060031; public static final int abc_list_selector_holo_dark=0x7f060032; public static final int abc_list_selector_holo_light=0x7f060033; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060034; public static final int abc_popup_background_mtrl_mult=0x7f060035; public static final int abc_ratingbar_indicator_material=0x7f060036; public static final int abc_ratingbar_material=0x7f060037; public static final int abc_ratingbar_small_material=0x7f060038; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060039; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f06003a; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003b; public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003c; public static final int abc_scrubber_track_mtrl_alpha=0x7f06003d; public static final int abc_seekbar_thumb_material=0x7f06003e; public static final int abc_seekbar_tick_mark_material=0x7f06003f; public static final int abc_seekbar_track_material=0x7f060040; public static final int abc_spinner_mtrl_am_alpha=0x7f060041; public static final int abc_spinner_textfield_background_material=0x7f060042; public static final int abc_switch_thumb_material=0x7f060043; public static final int abc_switch_track_mtrl_alpha=0x7f060044; public static final int abc_tab_indicator_material=0x7f060045; public static final int abc_tab_indicator_mtrl_alpha=0x7f060046; public static final int abc_text_cursor_material=0x7f060047; public static final int abc_text_select_handle_left_mtrl_dark=0x7f060048; public static final int abc_text_select_handle_left_mtrl_light=0x7f060049; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f06004a; public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004b; public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004c; public static final int abc_text_select_handle_right_mtrl_light=0x7f06004d; public static final int abc_textfield_activated_mtrl_alpha=0x7f06004e; public static final int abc_textfield_default_mtrl_alpha=0x7f06004f; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f060050; public static final int abc_textfield_search_default_mtrl_alpha=0x7f060051; public static final int abc_textfield_search_material=0x7f060052; public static final int abc_vector_test=0x7f060053; public static final int commom_title=0x7f060054; public static final int commom_title1=0x7f060055; public static final int commom_title2=0x7f060056; public static final int ic_launcher=0x7f060057; public static final int notification_action_background=0x7f060058; public static final int notification_bg=0x7f060059; public static final int notification_bg_low=0x7f06005a; public static final int notification_bg_low_normal=0x7f06005b; public static final int notification_bg_low_pressed=0x7f06005c; public static final int notification_bg_normal=0x7f06005d; public static final int notification_bg_normal_pressed=0x7f06005e; public static final int notification_icon_background=0x7f06005f; public static final int notification_template_icon_bg=0x7f060060; public static final int notification_template_icon_low_bg=0x7f060061; public static final int notification_tile_bg=0x7f060062; public static final int notify_panel_notification_icon_bg=0x7f060063; public static final int title_background=0x7f060064; public static final int tooltip_frame_dark=0x7f060065; public static final int tooltip_frame_light=0x7f060066; } public static final class id { public static final int ALT=0x7f070000; public static final int CTRL=0x7f070001; public static final int FUNCTION=0x7f070002; public static final int META=0x7f070003; public static final int SHIFT=0x7f070004; public static final int SYM=0x7f070005; public static final int action0=0x7f070006; public static final int action_bar=0x7f070007; public static final int action_bar_activity_content=0x7f070008; public static final int action_bar_container=0x7f070009; public static final int action_bar_root=0x7f07000a; public static final int action_bar_spinner=0x7f07000b; public static final int action_bar_subtitle=0x7f07000c; public static final int action_bar_title=0x7f07000d; public static final int action_container=0x7f07000e; public static final int action_context_bar=0x7f07000f; public static final int action_divider=0x7f070010; public static final int action_image=0x7f070011; public static final int action_menu_divider=0x7f070012; public static final int action_menu_presenter=0x7f070013; public static final int action_mode_bar=0x7f070014; public static final int action_mode_bar_stub=0x7f070015; public static final int action_mode_close_button=0x7f070016; public static final int action_settings=0x7f070017; public static final int action_text=0x7f070018; public static final int actions=0x7f070019; public static final int activity_chooser_view_content=0x7f07001a; public static final int add=0x7f07001b; public static final int alertTitle=0x7f07001c; public static final int all=0x7f07001d; public static final int always=0x7f07001e; public static final int async=0x7f07001f; public static final int beginning=0x7f070020; public static final int blocking=0x7f070021; public static final int bottom=0x7f070022; public static final int btn_list=0x7f070023; public static final int buttonPanel=0x7f070024; public static final int cancel_action=0x7f070025; public static final int center=0x7f070026; public static final int center_horizontal=0x7f070027; public static final int center_vertical=0x7f070028; public static final int checkbox=0x7f070029; public static final int chronometer=0x7f07002a; public static final int clip_horizontal=0x7f07002b; public static final int clip_vertical=0x7f07002c; public static final int collapseActionView=0x7f07002d; public static final int content=0x7f07002e; public static final int contentPanel=0x7f07002f; public static final int custom=0x7f070030; public static final int customPanel=0x7f070031; public static final int decor_content_parent=0x7f070032; public static final int default_activity_button=0x7f070033; public static final int disableHome=0x7f070034; public static final int edit_query=0x7f070035; public static final int end=0x7f070036; public static final int end_padder=0x7f070037; public static final int expand_activities_button=0x7f070038; public static final int expanded_menu=0x7f070039; public static final int fill=0x7f07003a; public static final int fill_horizontal=0x7f07003b; public static final int fill_vertical=0x7f07003c; public static final int forever=0x7f07003d; public static final int formcustomspinner_list=0x7f07003e; public static final int group_divider=0x7f07003f; public static final int home=0x7f070040; public static final int homeAsUp=0x7f070041; public static final int icon=0x7f070042; public static final int icon_group=0x7f070043; public static final int ifRoom=0x7f070044; public static final int image=0x7f070045; public static final int info=0x7f070046; public static final int italic=0x7f070047; public static final int label=0x7f070048; public static final int layout_myview=0x7f070049; public static final int left=0x7f07004a; public static final int line1=0x7f07004b; public static final int line3=0x7f07004c; public static final int listMode=0x7f07004d; public static final int list_item=0x7f07004e; public static final int media_actions=0x7f07004f; public static final int message=0x7f070050; public static final int middle=0x7f070051; public static final int multiply=0x7f070052; public static final int never=0x7f070053; public static final int none=0x7f070054; public static final int normal=0x7f070055; public static final int notification_background=0x7f070056; public static final int notification_main_column=0x7f070057; public static final int notification_main_column_container=0x7f070058; public static final int parentPanel=0x7f070059; public static final int progress_circular=0x7f07005a; public static final int progress_horizontal=0x7f07005b; public static final int radio=0x7f07005c; public static final int right=0x7f07005d; public static final int right_icon=0x7f07005e; public static final int right_side=0x7f07005f; public static final int screen=0x7f070060; public static final int scrollIndicatorDown=0x7f070061; public static final int scrollIndicatorUp=0x7f070062; public static final int scrollView=0x7f070063; public static final int search_badge=0x7f070064; public static final int search_bar=0x7f070065; public static final int search_button=0x7f070066; public static final int search_close_btn=0x7f070067; public static final int search_edit_frame=0x7f070068; public static final int search_go_btn=0x7f070069; public static final int search_mag_icon=0x7f07006a; public static final int search_plate=0x7f07006b; public static final int search_src_text=0x7f07006c; public static final int search_voice_btn=0x7f07006d; public static final int select_dialog_listview=0x7f07006e; public static final int shortcut=0x7f07006f; public static final int showCustom=0x7f070070; public static final int showHome=0x7f070071; public static final int showTitle=0x7f070072; public static final int spacer=0x7f070073; public static final int split_action_bar=0x7f070074; public static final int src_atop=0x7f070075; public static final int src_in=0x7f070076; public static final int src_over=0x7f070077; public static final int start=0x7f070078; public static final int status_bar_latest_event_content=0x7f070079; public static final int submenuarrow=0x7f07007a; public static final int submit_area=0x7f07007b; public static final int tabMode=0x7f07007c; public static final int tag_transition_group=0x7f07007d; public static final int tag_unhandled_key_event_manager=0x7f07007e; public static final int tag_unhandled_key_listeners=0x7f07007f; public static final int text=0x7f070080; public static final int text2=0x7f070081; public static final int textSpacerNoButtons=0x7f070082; public static final int textSpacerNoTitle=0x7f070083; public static final int time=0x7f070084; public static final int title=0x7f070085; public static final int titleDividerNoCustom=0x7f070086; public static final int title_template=0x7f070087; public static final int top=0x7f070088; public static final int topPanel=0x7f070089; public static final int tvDeviceName2=0x7f07008a; public static final int tv_name=0x7f07008b; public static final int uniform=0x7f07008c; public static final int up=0x7f07008d; public static final int useLogo=0x7f07008e; public static final int withText=0x7f07008f; public static final int wrap_content=0x7f070090; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f080000; public static final int abc_config_activityShortDur=0x7f080001; public static final int cancel_button_image_alpha=0x7f080002; public static final int config_tooltipAnimTime=0x7f080003; public static final int status_bar_notification_info_maxnum=0x7f080004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f090000; public static final int abc_action_bar_up_container=0x7f090001; public static final int abc_action_menu_item_layout=0x7f090002; public static final int abc_action_menu_layout=0x7f090003; public static final int abc_action_mode_bar=0x7f090004; public static final int abc_action_mode_close_item_material=0x7f090005; public static final int abc_activity_chooser_view=0x7f090006; public static final int abc_activity_chooser_view_list_item=0x7f090007; public static final int abc_alert_dialog_button_bar_material=0x7f090008; public static final int abc_alert_dialog_material=0x7f090009; public static final int abc_alert_dialog_title_material=0x7f09000a; public static final int abc_cascading_menu_item_layout=0x7f09000b; public static final int abc_dialog_title_material=0x7f09000c; public static final int abc_expanded_menu_layout=0x7f09000d; public static final int abc_list_menu_item_checkbox=0x7f09000e; public static final int abc_list_menu_item_icon=0x7f09000f; public static final int abc_list_menu_item_layout=0x7f090010; public static final int abc_list_menu_item_radio=0x7f090011; public static final int abc_popup_menu_header_item_layout=0x7f090012; public static final int abc_popup_menu_item_layout=0x7f090013; public static final int abc_screen_content_include=0x7f090014; public static final int abc_screen_simple=0x7f090015; public static final int abc_screen_simple_overlay_action_mode=0x7f090016; public static final int abc_screen_toolbar=0x7f090017; public static final int abc_search_dropdown_item_icons_2line=0x7f090018; public static final int abc_search_view=0x7f090019; public static final int abc_select_dialog_material=0x7f09001a; public static final int abc_tooltip=0x7f09001b; public static final int activity_main=0x7f09001c; public static final int formcommonlist=0x7f09001d; public static final int notification_action=0x7f09001e; public static final int notification_action_tombstone=0x7f09001f; public static final int notification_media_action=0x7f090020; public static final int notification_media_cancel_action=0x7f090021; public static final int notification_template_big_media=0x7f090022; public static final int notification_template_big_media_custom=0x7f090023; public static final int notification_template_big_media_narrow=0x7f090024; public static final int notification_template_big_media_narrow_custom=0x7f090025; public static final int notification_template_custom_big=0x7f090026; public static final int notification_template_icon_group=0x7f090027; public static final int notification_template_lines_media=0x7f090028; public static final int notification_template_media=0x7f090029; public static final int notification_template_media_custom=0x7f09002a; public static final int notification_template_part_chronometer=0x7f09002b; public static final int notification_template_part_time=0x7f09002c; public static final int rtu_item=0x7f09002d; public static final int select_dialog_item_material=0x7f09002e; public static final int select_dialog_multichoice_material=0x7f09002f; public static final int select_dialog_singlechoice_material=0x7f090030; public static final int support_simple_spinner_dropdown_item=0x7f090031; } public static final class menu { public static final int main=0x7f0a0000; } public static final class string { public static final int abc_action_bar_home_description=0x7f0b0000; public static final int abc_action_bar_up_description=0x7f0b0001; public static final int abc_action_menu_overflow_description=0x7f0b0002; public static final int abc_action_mode_done=0x7f0b0003; public static final int abc_activity_chooser_view_see_all=0x7f0b0004; public static final int abc_activitychooserview_choose_application=0x7f0b0005; public static final int abc_capital_off=0x7f0b0006; public static final int abc_capital_on=0x7f0b0007; public static final int abc_font_family_body_1_material=0x7f0b0008; public static final int abc_font_family_body_2_material=0x7f0b0009; public static final int abc_font_family_button_material=0x7f0b000a; public static final int abc_font_family_caption_material=0x7f0b000b; public static final int abc_font_family_display_1_material=0x7f0b000c; public static final int abc_font_family_display_2_material=0x7f0b000d; public static final int abc_font_family_display_3_material=0x7f0b000e; public static final int abc_font_family_display_4_material=0x7f0b000f; public static final int abc_font_family_headline_material=0x7f0b0010; public static final int abc_font_family_menu_material=0x7f0b0011; public static final int abc_font_family_subhead_material=0x7f0b0012; public static final int abc_font_family_title_material=0x7f0b0013; public static final int abc_menu_alt_shortcut_label=0x7f0b0014; public static final int abc_menu_ctrl_shortcut_label=0x7f0b0015; public static final int abc_menu_delete_shortcut_label=0x7f0b0016; public static final int abc_menu_enter_shortcut_label=0x7f0b0017; public static final int abc_menu_function_shortcut_label=0x7f0b0018; public static final int abc_menu_meta_shortcut_label=0x7f0b0019; public static final int abc_menu_shift_shortcut_label=0x7f0b001a; public static final int abc_menu_space_shortcut_label=0x7f0b001b; public static final int abc_menu_sym_shortcut_label=0x7f0b001c; public static final int abc_prepend_shortcut_label=0x7f0b001d; public static final int abc_search_hint=0x7f0b001e; public static final int abc_searchview_description_clear=0x7f0b001f; public static final int abc_searchview_description_query=0x7f0b0020; public static final int abc_searchview_description_search=0x7f0b0021; public static final int abc_searchview_description_submit=0x7f0b0022; public static final int abc_searchview_description_voice=0x7f0b0023; public static final int abc_shareactionprovider_share_with=0x7f0b0024; public static final int abc_shareactionprovider_share_with_application=0x7f0b0025; public static final int abc_toolbar_collapse_description=0x7f0b0026; public static final int action_settings=0x7f0b0027; public static final int app_name=0x7f0b0028; public static final int hello_world=0x7f0b0029; public static final int search_menu_title=0x7f0b002a; public static final int status_bar_notification_info_overflow=0x7f0b002b; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0c0000; public static final int AlertDialog_AppCompat_Light=0x7f0c0001; public static final int Animation_AppCompat_Dialog=0x7f0c0002; public static final int Animation_AppCompat_DropDownUp=0x7f0c0003; public static final int Animation_AppCompat_Tooltip=0x7f0c0004; public static final int AppBaseTheme=0x7f0c0005; public static final int AppTheme=0x7f0c0006; public static final int Base_AlertDialog_AppCompat=0x7f0c0007; public static final int Base_AlertDialog_AppCompat_Light=0x7f0c0008; public static final int Base_Animation_AppCompat_Dialog=0x7f0c0009; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c000a; public static final int Base_Animation_AppCompat_Tooltip=0x7f0c000b; public static final int Base_DialogWindowTitle_AppCompat=0x7f0c000c; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c000d; public static final int Base_TextAppearance_AppCompat=0x7f0c000e; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c000f; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c0010; public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0011; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c0012; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c0013; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c0014; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c0015; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c0016; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0017; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c0018; public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0019; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001a; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c001b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c001c; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c001d; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001e; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c001f; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c0020; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0021; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0022; public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0023; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c0024; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0025; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c0026; public static final int Base_TextAppearance_AppCompat_Title=0x7f0c0027; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c0028; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c0029; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c002a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c002b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c002f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0030; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0031; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c0032; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c0033; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0034; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0035; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0036; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0037; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0038; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0039; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c003a; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c003b; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c003c; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c003d; public static final int Base_Theme_AppCompat=0x7f0c003e; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c003f; public static final int Base_Theme_AppCompat_Dialog=0x7f0c0040; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0041; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c0042; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0043; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0044; public static final int Base_Theme_AppCompat_Light=0x7f0c0045; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c0046; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0047; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0048; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c0049; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c004a; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c004b; public static final int Base_ThemeOverlay_AppCompat=0x7f0c004c; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c004d; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c004e; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c004f; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0050; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0051; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c0052; public static final int Base_V21_Theme_AppCompat=0x7f0c0053; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c0054; public static final int Base_V21_Theme_AppCompat_Light=0x7f0c0055; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c0056; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c0057; public static final int Base_V22_Theme_AppCompat=0x7f0c0058; public static final int Base_V22_Theme_AppCompat_Light=0x7f0c0059; public static final int Base_V23_Theme_AppCompat=0x7f0c005a; public static final int Base_V23_Theme_AppCompat_Light=0x7f0c005b; public static final int Base_V26_Theme_AppCompat=0x7f0c005c; public static final int Base_V26_Theme_AppCompat_Light=0x7f0c005d; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c005e; public static final int Base_V28_Theme_AppCompat=0x7f0c005f; public static final int Base_V28_Theme_AppCompat_Light=0x7f0c0060; public static final int Base_V7_Theme_AppCompat=0x7f0c0061; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c0062; public static final int Base_V7_Theme_AppCompat_Light=0x7f0c0063; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c0064; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c0065; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c0066; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c0067; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c0068; public static final int Base_Widget_AppCompat_ActionBar=0x7f0c0069; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c006a; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c006b; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c006c; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c006d; public static final int Base_Widget_AppCompat_ActionButton=0x7f0c006e; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c006f; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0070; public static final int Base_Widget_AppCompat_ActionMode=0x7f0c0071; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c0072; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0073; public static final int Base_Widget_AppCompat_Button=0x7f0c0074; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0075; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0076; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0077; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c0078; public static final int Base_Widget_AppCompat_Button_Small=0x7f0c0079; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0c007a; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c007b; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007c; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007d; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c007e; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c007f; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c0080; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c0081; public static final int Base_Widget_AppCompat_EditText=0x7f0c0082; public static final int Base_Widget_AppCompat_ImageButton=0x7f0c0083; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c0084; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0085; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0086; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0087; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0088; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0089; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c008a; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c008b; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c008c; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c008d; public static final int Base_Widget_AppCompat_ListView=0x7f0c008e; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c008f; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c0090; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0091; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0092; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c0093; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c0094; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0095; public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0096; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c0097; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c0098; public static final int Base_Widget_AppCompat_SearchView=0x7f0c0099; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c009a; public static final int Base_Widget_AppCompat_SeekBar=0x7f0c009b; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c009c; public static final int Base_Widget_AppCompat_Spinner=0x7f0c009d; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c009e; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c009f; public static final int Base_Widget_AppCompat_Toolbar=0x7f0c00a0; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c00a1; public static final int Platform_AppCompat=0x7f0c00a2; public static final int Platform_AppCompat_Light=0x7f0c00a3; public static final int Platform_ThemeOverlay_AppCompat=0x7f0c00a4; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c00a5; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c00a6; public static final int Platform_V21_AppCompat=0x7f0c00a7; public static final int Platform_V21_AppCompat_Light=0x7f0c00a8; public static final int Platform_V25_AppCompat=0x7f0c00a9; public static final int Platform_V25_AppCompat_Light=0x7f0c00aa; public static final int Platform_Widget_AppCompat_Spinner=0x7f0c00ab; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c00ac; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c00ad; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c00ae; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c00af; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c00b0; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0c00b1; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0c00b2; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c00b3; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0c00b4; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c00b5; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c00b6; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c00b7; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c00b8; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c00b9; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c00ba; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c00bb; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c00bc; public static final int TextAppearance_AppCompat=0x7f0c00bd; public static final int TextAppearance_AppCompat_Body1=0x7f0c00be; public static final int TextAppearance_AppCompat_Body2=0x7f0c00bf; public static final int TextAppearance_AppCompat_Button=0x7f0c00c0; public static final int TextAppearance_AppCompat_Caption=0x7f0c00c1; public static final int TextAppearance_AppCompat_Display1=0x7f0c00c2; public static final int TextAppearance_AppCompat_Display2=0x7f0c00c3; public static final int TextAppearance_AppCompat_Display3=0x7f0c00c4; public static final int TextAppearance_AppCompat_Display4=0x7f0c00c5; public static final int TextAppearance_AppCompat_Headline=0x7f0c00c6; public static final int TextAppearance_AppCompat_Inverse=0x7f0c00c7; public static final int TextAppearance_AppCompat_Large=0x7f0c00c8; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00c9; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00ca; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00cb; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00cc; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00cd; public static final int TextAppearance_AppCompat_Medium=0x7f0c00ce; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00cf; public static final int TextAppearance_AppCompat_Menu=0x7f0c00d0; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00d1; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00d2; public static final int TextAppearance_AppCompat_Small=0x7f0c00d3; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00d4; public static final int TextAppearance_AppCompat_Subhead=0x7f0c00d5; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00d6; public static final int TextAppearance_AppCompat_Title=0x7f0c00d7; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00d8; public static final int TextAppearance_AppCompat_Tooltip=0x7f0c00d9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00da; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00db; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00dc; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00dd; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00de; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00df; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00e0; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00e1; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00e2; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00e3; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00e4; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00e5; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00e6; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00e7; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c00e8; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c00e9; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c00ea; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c00eb; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c00ec; public static final int TextAppearance_Compat_Notification=0x7f0c00ed; public static final int TextAppearance_Compat_Notification_Info=0x7f0c00ee; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0c00ef; public static final int TextAppearance_Compat_Notification_Line2=0x7f0c00f0; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0c00f1; public static final int TextAppearance_Compat_Notification_Media=0x7f0c00f2; public static final int TextAppearance_Compat_Notification_Time=0x7f0c00f3; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0c00f4; public static final int TextAppearance_Compat_Notification_Title=0x7f0c00f5; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0c00f6; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00f7; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c00f8; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c00f9; public static final int Theme_AppCompat=0x7f0c00fa; public static final int Theme_AppCompat_CompactMenu=0x7f0c00fb; public static final int Theme_AppCompat_DayNight=0x7f0c00fc; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c00fd; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c00fe; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c00ff; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0100; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0101; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0102; public static final int Theme_AppCompat_Dialog=0x7f0c0103; public static final int Theme_AppCompat_Dialog_Alert=0x7f0c0104; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c0105; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c0106; public static final int Theme_AppCompat_Light=0x7f0c0107; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c0108; public static final int Theme_AppCompat_Light_Dialog=0x7f0c0109; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c010a; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c010b; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c010c; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c010d; public static final int Theme_AppCompat_NoActionBar=0x7f0c010e; public static final int ThemeOverlay_AppCompat=0x7f0c010f; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c0110; public static final int ThemeOverlay_AppCompat_Dark=0x7f0c0111; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c0112; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c0113; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0114; public static final int ThemeOverlay_AppCompat_Light=0x7f0c0115; public static final int Widget_AppCompat_ActionBar=0x7f0c0116; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c0117; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c0118; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0119; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c011a; public static final int Widget_AppCompat_ActionButton=0x7f0c011b; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c011c; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c011d; public static final int Widget_AppCompat_ActionMode=0x7f0c011e; public static final int Widget_AppCompat_ActivityChooserView=0x7f0c011f; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c0120; public static final int Widget_AppCompat_Button=0x7f0c0121; public static final int Widget_AppCompat_Button_Borderless=0x7f0c0122; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c0123; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0124; public static final int Widget_AppCompat_Button_Colored=0x7f0c0125; public static final int Widget_AppCompat_Button_Small=0x7f0c0126; public static final int Widget_AppCompat_ButtonBar=0x7f0c0127; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c0128; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0129; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c012a; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c012b; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c012c; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c012d; public static final int Widget_AppCompat_EditText=0x7f0c012e; public static final int Widget_AppCompat_ImageButton=0x7f0c012f; public static final int Widget_AppCompat_Light_ActionBar=0x7f0c0130; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0131; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0132; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0133; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c0134; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0135; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0136; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0137; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c0138; public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0139; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c013a; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c013b; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c013c; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c013d; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c013e; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c013f; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0140; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0141; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c0142; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0143; public static final int Widget_AppCompat_Light_SearchView=0x7f0c0144; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c0145; public static final int Widget_AppCompat_ListMenuView=0x7f0c0146; public static final int Widget_AppCompat_ListPopupWindow=0x7f0c0147; public static final int Widget_AppCompat_ListView=0x7f0c0148; public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0149; public static final int Widget_AppCompat_ListView_Menu=0x7f0c014a; public static final int Widget_AppCompat_PopupMenu=0x7f0c014b; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c014c; public static final int Widget_AppCompat_PopupWindow=0x7f0c014d; public static final int Widget_AppCompat_ProgressBar=0x7f0c014e; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c014f; public static final int Widget_AppCompat_RatingBar=0x7f0c0150; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c0151; public static final int Widget_AppCompat_RatingBar_Small=0x7f0c0152; public static final int Widget_AppCompat_SearchView=0x7f0c0153; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c0154; public static final int Widget_AppCompat_SeekBar=0x7f0c0155; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c0156; public static final int Widget_AppCompat_Spinner=0x7f0c0157; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c0158; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0159; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c015a; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c015b; public static final int Widget_AppCompat_Toolbar=0x7f0c015c; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c015d; public static final int Widget_Compat_NotificationActionContainer=0x7f0c015e; public static final int Widget_Compat_NotificationActionText=0x7f0c015f; public static final int Widget_Support_CoordinatorLayout=0x7f0c0160; } public static final class styleable { /** * Attributes that can be used with a ActionBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBar_background com.example.dialogspinner:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.example.dialogspinner:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.example.dialogspinner:backgroundStacked}</code></td><td>Specifies a background drawable for a second stacked row of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.dialogspinner:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.dialogspinner:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.dialogspinner:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.example.dialogspinner:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.example.dialogspinner:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.dialogspinner:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.dialogspinner:customNavigationLayout}</code></td><td>Specifies a layout for custom navigation.</td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.example.dialogspinner:displayOptions}</code></td><td>Options affecting how the action bar is displayed.</td></tr> * <tr><td><code>{@link #ActionBar_divider com.example.dialogspinner:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #ActionBar_elevation com.example.dialogspinner:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #ActionBar_height com.example.dialogspinner:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.dialogspinner:hideOnContentScroll}</code></td><td>Set true to hide the action bar on a vertical nested scroll of content.</td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.dialogspinner:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.example.dialogspinner:homeLayout}</code></td><td>Specifies a layout to use for the "home" section of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_icon com.example.dialogspinner:icon}</code></td><td>Specifies the drawable used for the application icon.</td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.dialogspinner:indeterminateProgressStyle}</code></td><td>Specifies a style resource to use for an indeterminate progress spinner.</td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.example.dialogspinner:itemPadding}</code></td><td>Specifies padding that should be applied to the left and right sides of * system-provided items in the bar.</td></tr> * <tr><td><code>{@link #ActionBar_logo com.example.dialogspinner:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.example.dialogspinner:navigationMode}</code></td><td>The type of navigation to use.</td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.example.dialogspinner:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.example.dialogspinner:progressBarPadding}</code></td><td>Specifies the horizontal padding on either end for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.example.dialogspinner:progressBarStyle}</code></td><td>Specifies a style resource to use for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.example.dialogspinner:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.dialogspinner:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionBar_title com.example.dialogspinner:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.example.dialogspinner:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionBar_background * @see #ActionBar_backgroundSplit * @see #ActionBar_backgroundStacked * @see #ActionBar_contentInsetEnd * @see #ActionBar_contentInsetEndWithActions * @see #ActionBar_contentInsetLeft * @see #ActionBar_contentInsetRight * @see #ActionBar_contentInsetStart * @see #ActionBar_contentInsetStartWithNavigation * @see #ActionBar_customNavigationLayout * @see #ActionBar_displayOptions * @see #ActionBar_divider * @see #ActionBar_elevation * @see #ActionBar_height * @see #ActionBar_hideOnContentScroll * @see #ActionBar_homeAsUpIndicator * @see #ActionBar_homeLayout * @see #ActionBar_icon * @see #ActionBar_indeterminateProgressStyle * @see #ActionBar_itemPadding * @see #ActionBar_logo * @see #ActionBar_navigationMode * @see #ActionBar_popupTheme * @see #ActionBar_progressBarPadding * @see #ActionBar_progressBarStyle * @see #ActionBar_subtitle * @see #ActionBar_subtitleTextStyle * @see #ActionBar_title * @see #ActionBar_titleTextStyle */ public static final int[] ActionBar={ 0x7f020031, 0x7f020032, 0x7f020033, 0x7f020057, 0x7f020058, 0x7f020059, 0x7f02005a, 0x7f02005b, 0x7f02005c, 0x7f02005f, 0x7f020064, 0x7f020065, 0x7f020070, 0x7f020080, 0x7f020081, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020089, 0x7f02008c, 0x7f0200a2, 0x7f0200a9, 0x7f0200b4, 0x7f0200b7, 0x7f0200b8, 0x7f0200d3, 0x7f0200d6, 0x7f0200f1, 0x7f0200fa }; /** * <p> * @attr description * Specifies a background drawable for the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:background */ public static final int ActionBar_background=0; /** * <p> * @attr description * Specifies a background drawable for the bottom component of a split action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p> * @attr description * Specifies a background drawable for a second stacked row of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p> * @attr description * Specifies a layout for custom navigation. Overrides navigationMode. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p> * @attr description * Options affecting how the action bar is displayed. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.dialogspinner:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p> * @attr description * Specifies the drawable used for item dividers. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:divider */ public static final int ActionBar_divider=11; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:elevation */ public static final int ActionBar_elevation=12; /** * <p> * @attr description * Specifies a fixed height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:height */ public static final int ActionBar_height=13; /** * <p> * @attr description * Set true to hide the action bar on a vertical nested scroll of content. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p> * @attr description * Up navigation glyph * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p> * @attr description * Specifies a layout to use for the "home" section of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p> * @attr description * Specifies the drawable used for the application icon. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:icon */ public static final int ActionBar_icon=17; /** * <p> * @attr description * Specifies a style resource to use for an indeterminate progress spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p> * @attr description * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p> * @attr description * Specifies the drawable used for the application logo. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:logo */ public static final int ActionBar_logo=20; /** * <p> * @attr description * The type of navigation to use. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> * * @attr name com.example.dialogspinner:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p> * @attr description * Specifies the horizontal padding on either end for an embedded progress bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p> * @attr description * Specifies a style resource to use for an embedded progress bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:subtitle */ public static final int ActionBar_subtitle=25; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p> * @attr description * Specifies title text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:title */ public static final int ActionBar_title=27; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * Attributes that can be used with a ActionBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * </table> * @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout={ 0x010100b3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #ActionBarLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity=0; /** * Attributes that can be used with a ActionMenuItemView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> * </table> * @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView={ 0x0101013f }; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ActionMenuItemView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth=0; public static final int[] ActionMenuView={ }; /** * Attributes that can be used with a ActionMode. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMode_background com.example.dialogspinner:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.example.dialogspinner:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.example.dialogspinner:closeItemLayout}</code></td><td>Specifies a layout to use for the "close" item at the starting edge.</td></tr> * <tr><td><code>{@link #ActionMode_height com.example.dialogspinner:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.dialogspinner:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.example.dialogspinner:titleTextStyle}</code></td><td>Specifies a style to use for title text.</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={ 0x7f020031, 0x7f020032, 0x7f020047, 0x7f020080, 0x7f0200d6, 0x7f0200fa }; /** * <p> * @attr description * Specifies a background for the action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:background */ public static final int ActionMode_background=0; /** * <p> * @attr description * Specifies a background for the split action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p> * @attr description * Specifies a layout to use for the "close" item at the starting edge. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p> * @attr description * Specifies a fixed height for the action mode bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:height */ public static final int ActionMode_height=3; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:titleTextStyle */ public static final int ActionMode_titleTextStyle=5; /** * Attributes that can be used with a ActivityChooserView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.dialogspinner:expandActivityOverflowButtonDrawable}</code></td><td>The drawable to show in the button for expanding the activities overflow popup.</td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.dialogspinner:initialActivityCount}</code></td><td>The maximal number of items initially shown in the activity list.</td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f020071, 0x7f02008a }; /** * <p> * @attr description * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p> * @attr description * The maximal number of items initially shown in the activity list. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount=1; /** * Attributes that can be used with a AlertDialog. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonIconDimen com.example.dialogspinner:buttonIconDimen}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.example.dialogspinner:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.example.dialogspinner:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.example.dialogspinner:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.dialogspinner:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.example.dialogspinner:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.dialogspinner:singleChoiceItemLayout}</code></td><td></td></tr> * </table> * @see #AlertDialog_android_layout * @see #AlertDialog_buttonIconDimen * @see #AlertDialog_buttonPanelSideLayout * @see #AlertDialog_listItemLayout * @see #AlertDialog_listLayout * @see #AlertDialog_multiChoiceItemLayout * @see #AlertDialog_showTitle * @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog={ 0x010100f2, 0x7f02003e, 0x7f02003f, 0x7f020099, 0x7f02009a, 0x7f0200a6, 0x7f0200c8, 0x7f0200c9 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int AlertDialog_android_layout=0; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#buttonIconDimen} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:buttonIconDimen */ public static final int AlertDialog_buttonIconDimen=1; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#buttonPanelSideLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=2; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#listItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:listItemLayout */ public static final int AlertDialog_listItemLayout=3; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#listLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:listLayout */ public static final int AlertDialog_listLayout=4; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#multiChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=5; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#showTitle} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:showTitle */ public static final int AlertDialog_showTitle=6; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#singleChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=7; /** * Attributes that can be used with a AnimatedStateListDrawableCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableCompat_android_dither * @see #AnimatedStateListDrawableCompat_android_visible * @see #AnimatedStateListDrawableCompat_android_variablePadding * @see #AnimatedStateListDrawableCompat_android_constantSize * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration */ public static final int[] AnimatedStateListDrawableCompat={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int AnimatedStateListDrawableCompat_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int AnimatedStateListDrawableCompat_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int AnimatedStateListDrawableCompat_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; /** * Attributes that can be used with a AnimatedStateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableItem_android_id * @see #AnimatedStateListDrawableItem_android_drawable */ public static final int[] AnimatedStateListDrawableItem={ 0x010100d0, 0x01010199 }; /** * <p> * @attr description * Keyframe identifier for use in specifying transitions. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int AnimatedStateListDrawableItem_android_id=0; /** * <p> * @attr description * Reference to a drawable resource to use for the frame. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableItem_android_drawable=1; /** * Attributes that can be used with a AnimatedStateListDrawableTransition. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableTransition_android_drawable * @see #AnimatedStateListDrawableTransition_android_toId * @see #AnimatedStateListDrawableTransition_android_fromId * @see #AnimatedStateListDrawableTransition_android_reversible */ public static final int[] AnimatedStateListDrawableTransition={ 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; /** * <p> * @attr description * Reference to a animation drawable resource to use for the frame. If not * given, the animation drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableTransition_android_drawable=0; /** * <p> * @attr description * Keyframe identifier for the ending state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:toId */ public static final int AnimatedStateListDrawableTransition_android_toId=1; /** * <p> * @attr description * Keyframe identifier for the starting state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:fromId */ public static final int AnimatedStateListDrawableTransition_android_fromId=2; /** * <p> * @attr description * Whether this transition is reversible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:reversible */ public static final int AnimatedStateListDrawableTransition_android_reversible=3; /** * Attributes that can be used with a AppCompatImageView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_srcCompat com.example.dialogspinner:srcCompat}</code></td><td>Sets a drawable as the content of this ImageView.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.example.dialogspinner:tint}</code></td><td>Tint to apply to the image source.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.example.dialogspinner:tintMode}</code></td><td>Blending mode used to apply the image source tint.</td></tr> * </table> * @see #AppCompatImageView_android_src * @see #AppCompatImageView_srcCompat * @see #AppCompatImageView_tint * @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView={ 0x01010119, 0x7f0200ce, 0x7f0200ef, 0x7f0200f0 }; /** * <p>This symbol is the offset where the {@link android.R.attr#src} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:src */ public static final int AppCompatImageView_android_src=0; /** * <p> * @attr description * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p> * @attr description * Tint to apply to the image source. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:tint */ public static final int AppCompatImageView_tint=2; /** * <p> * @attr description * Blending mode used to apply the image source tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:tintMode */ public static final int AppCompatImageView_tintMode=3; /** * Attributes that can be used with a AppCompatSeekBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMark com.example.dialogspinner:tickMark}</code></td><td>Drawable displayed at each progress position on a seekbar.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.dialogspinner:tickMarkTint}</code></td><td>Tint to apply to the tick mark drawable.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.dialogspinner:tickMarkTintMode}</code></td><td>Blending mode used to apply the tick mark tint.</td></tr> * </table> * @see #AppCompatSeekBar_android_thumb * @see #AppCompatSeekBar_tickMark * @see #AppCompatSeekBar_tickMarkTint * @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar={ 0x01010142, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee }; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb=0; /** * <p> * @attr description * Drawable displayed at each progress position on a seekbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p> * @attr description * Tint to apply to the tick mark drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p> * @attr description * Blending mode used to apply the tick mark tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode=3; /** * Attributes that can be used with a AppCompatTextHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> * </table> * @see #AppCompatTextHelper_android_textAppearance * @see #AppCompatTextHelper_android_drawableTop * @see #AppCompatTextHelper_android_drawableBottom * @see #AppCompatTextHelper_android_drawableLeft * @see #AppCompatTextHelper_android_drawableRight * @see #AppCompatTextHelper_android_drawableStart * @see #AppCompatTextHelper_android_drawableEnd */ public static final int[] AppCompatTextHelper={ 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableTop} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop=1; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom=2; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft=3; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableRight} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight=4; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableStart} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart=5; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd=6; /** * Attributes that can be used with a AppCompatTextView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.example.dialogspinner:autoSizeMaxTextSize}</code></td><td>The maximum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.example.dialogspinner:autoSizeMinTextSize}</code></td><td>The minimum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.example.dialogspinner:autoSizePresetSizes}</code></td><td>Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.example.dialogspinner:autoSizeStepGranularity}</code></td><td>Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.example.dialogspinner:autoSizeTextType}</code></td><td>Specify the type of auto-size.</td></tr> * <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight com.example.dialogspinner:firstBaselineToTopHeight}</code></td><td>Distance from the top of the TextView to the first text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.example.dialogspinner:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight com.example.dialogspinner:lastBaselineToBottomHeight}</code></td><td>Distance from the bottom of the TextView to the last text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lineHeight com.example.dialogspinner:lineHeight}</code></td><td>Explicit height between lines of text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.dialogspinner:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #AppCompatTextView_android_textAppearance * @see #AppCompatTextView_autoSizeMaxTextSize * @see #AppCompatTextView_autoSizeMinTextSize * @see #AppCompatTextView_autoSizePresetSizes * @see #AppCompatTextView_autoSizeStepGranularity * @see #AppCompatTextView_autoSizeTextType * @see #AppCompatTextView_firstBaselineToTopHeight * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_lastBaselineToBottomHeight * @see #AppCompatTextView_lineHeight * @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020072, 0x7f020074, 0x7f02008e, 0x7f020096, 0x7f0200dc }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance=0; /** * <p> * @attr description * The maximum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p> * @attr description * The minimum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p> * @attr description * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p> * @attr description * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p> * @attr description * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> * * @attr name com.example.dialogspinner:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p> * @attr description * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:firstBaselineToTopHeight */ public static final int AppCompatTextView_firstBaselineToTopHeight=6; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:fontFamily */ public static final int AppCompatTextView_fontFamily=7; /** * <p> * @attr description * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:lastBaselineToBottomHeight */ public static final int AppCompatTextView_lastBaselineToBottomHeight=8; /** * <p> * @attr description * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:lineHeight */ public static final int AppCompatTextView_lineHeight=9; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:textAllCaps */ public static final int AppCompatTextView_textAllCaps=10; /** * Attributes that can be used with a AppCompatTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.example.dialogspinner:actionBarDivider}</code></td><td>Custom divider drawable to use for elements in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.dialogspinner:actionBarItemBackground}</code></td><td>Custom item state list drawable background for action bar items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.dialogspinner:actionBarPopupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.dialogspinner:actionBarSize}</code></td><td>Size of the Action Bar, including the contextual * bar used to present Action Modes.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.dialogspinner:actionBarSplitStyle}</code></td><td>Reference to a style for the split Action Bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.dialogspinner:actionBarStyle}</code></td><td>Reference to a style for the Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.dialogspinner:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.dialogspinner:actionBarTabStyle}</code></td><td>Default style for tabs within an action bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.dialogspinner:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.dialogspinner:actionBarTheme}</code></td><td>Reference to a theme that should be used to inflate the * action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.dialogspinner:actionBarWidgetTheme}</code></td><td>Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.dialogspinner:actionButtonStyle}</code></td><td>Default action button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.dialogspinner:actionDropDownStyle}</code></td><td>Default ActionBar dropdown style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.dialogspinner:actionMenuTextAppearance}</code></td><td>TextAppearance style that will be applied to text that * appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.dialogspinner:actionMenuTextColor}</code></td><td>Color for text that appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.dialogspinner:actionModeBackground}</code></td><td>Background drawable to use for action mode UI</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.dialogspinner:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.dialogspinner:actionModeCloseDrawable}</code></td><td>Drawable to use for the close action mode button</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.dialogspinner:actionModeCopyDrawable}</code></td><td>Drawable to use for the Copy action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.dialogspinner:actionModeCutDrawable}</code></td><td>Drawable to use for the Cut action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.dialogspinner:actionModeFindDrawable}</code></td><td>Drawable to use for the Find action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.dialogspinner:actionModePasteDrawable}</code></td><td>Drawable to use for the Paste action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.dialogspinner:actionModePopupWindowStyle}</code></td><td>PopupWindow style to use for action modes when showing as a window overlay.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.dialogspinner:actionModeSelectAllDrawable}</code></td><td>Drawable to use for the Select all action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.dialogspinner:actionModeShareDrawable}</code></td><td>Drawable to use for the Share action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.dialogspinner:actionModeSplitBackground}</code></td><td>Background drawable to use for action mode UI in the lower split bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.dialogspinner:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.dialogspinner:actionModeWebSearchDrawable}</code></td><td>Drawable to use for the Web Search action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.dialogspinner:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.dialogspinner:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.dialogspinner:activityChooserViewStyle}</code></td><td>Default ActivityChooserView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.dialogspinner:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.dialogspinner:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.dialogspinner:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.dialogspinner:alertDialogTheme}</code></td><td>Theme to use for alert dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.dialogspinner:autoCompleteTextViewStyle}</code></td><td>Default AutoCompleteTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.dialogspinner:borderlessButtonStyle}</code></td><td>Style for buttons without an explicit border, often used in groups.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.dialogspinner:buttonBarButtonStyle}</code></td><td>Style for buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.dialogspinner:buttonBarNegativeButtonStyle}</code></td><td>Style for the "negative" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.dialogspinner:buttonBarNeutralButtonStyle}</code></td><td>Style for the "neutral" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.dialogspinner:buttonBarPositiveButtonStyle}</code></td><td>Style for the "positive" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.dialogspinner:buttonBarStyle}</code></td><td>Style for button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.dialogspinner:buttonStyle}</code></td><td>Normal Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.dialogspinner:buttonStyleSmall}</code></td><td>Small Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.dialogspinner:checkboxStyle}</code></td><td>Default Checkbox style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.dialogspinner:checkedTextViewStyle}</code></td><td>Default CheckedTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.dialogspinner:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.dialogspinner:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.dialogspinner:colorButtonNormal}</code></td><td>The color applied to framework buttons in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.dialogspinner:colorControlActivated}</code></td><td>The color applied to framework controls in their activated (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.dialogspinner:colorControlHighlight}</code></td><td>The color applied to framework control highlights (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.dialogspinner:colorControlNormal}</code></td><td>The color applied to framework controls in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.example.dialogspinner:colorError}</code></td><td>Color used for error states and things that need to be drawn to * the user's attention.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.dialogspinner:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.dialogspinner:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.dialogspinner:colorSwitchThumbNormal}</code></td><td>The color applied to framework switch thumbs in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.dialogspinner:controlBackground}</code></td><td>The background used by framework controls.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius com.example.dialogspinner:dialogCornerRadius}</code></td><td>Preferred corner radius of dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.dialogspinner:dialogPreferredPadding}</code></td><td>Preferred padding for dialog content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.dialogspinner:dialogTheme}</code></td><td>Theme to use for dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.dialogspinner:dividerHorizontal}</code></td><td>A drawable that may be used as a horizontal divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.dialogspinner:dividerVertical}</code></td><td>A drawable that may be used as a vertical divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.dialogspinner:dropDownListViewStyle}</code></td><td>ListPopupWindow compatibility</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.dialogspinner:dropdownListPreferredItemHeight}</code></td><td>The preferred item height for dropdown lists.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.dialogspinner:editTextBackground}</code></td><td>EditText background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.dialogspinner:editTextColor}</code></td><td>EditText text foreground color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.dialogspinner:editTextStyle}</code></td><td>Default EditText style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.dialogspinner:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.dialogspinner:imageButtonStyle}</code></td><td>ImageButton background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.dialogspinner:listChoiceBackgroundIndicator}</code></td><td>Drawable used as a background for selected list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.dialogspinner:listDividerAlertDialog}</code></td><td>The list divider used in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.dialogspinner:listMenuViewStyle}</code></td><td>Default menu-style ListView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.dialogspinner:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.dialogspinner:listPreferredItemHeight}</code></td><td>The preferred list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.dialogspinner:listPreferredItemHeightLarge}</code></td><td>A larger, more robust list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.dialogspinner:listPreferredItemHeightSmall}</code></td><td>A smaller, sleeker list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.dialogspinner:listPreferredItemPaddingLeft}</code></td><td>The preferred padding along the left edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.dialogspinner:listPreferredItemPaddingRight}</code></td><td>The preferred padding along the right edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.dialogspinner:panelBackground}</code></td><td>The background of a panel when it is inset from the left and right edges of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.dialogspinner:panelMenuListTheme}</code></td><td>Default Panel Menu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.dialogspinner:panelMenuListWidth}</code></td><td>Default Panel Menu width.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.dialogspinner:popupMenuStyle}</code></td><td>Default PopupMenu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.dialogspinner:popupWindowStyle}</code></td><td>Default PopupWindow style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.dialogspinner:radioButtonStyle}</code></td><td>Default RadioButton style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.dialogspinner:ratingBarStyle}</code></td><td>Default RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.dialogspinner:ratingBarStyleIndicator}</code></td><td>Indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.dialogspinner:ratingBarStyleSmall}</code></td><td>Small indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.dialogspinner:searchViewStyle}</code></td><td>Style for the search query widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.dialogspinner:seekBarStyle}</code></td><td>Default SeekBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.dialogspinner:selectableItemBackground}</code></td><td>A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.dialogspinner:selectableItemBackgroundBorderless}</code></td><td>Background drawable for borderless standalone items that need focus/pressed states.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.dialogspinner:spinnerDropDownItemStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.dialogspinner:spinnerStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.dialogspinner:switchStyle}</code></td><td>Default style for the Switch widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.dialogspinner:textAppearanceLargePopupMenu}</code></td><td>Text color, typeface, size, and style for the text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.dialogspinner:textAppearanceListItem}</code></td><td>The preferred TextAppearance for the primary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.example.dialogspinner:textAppearanceListItemSecondary}</code></td><td>The preferred TextAppearance for the secondary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.dialogspinner:textAppearanceListItemSmall}</code></td><td>The preferred TextAppearance for the primary text of small list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.dialogspinner:textAppearancePopupMenuHeader}</code></td><td>Text color, typeface, size, and style for header text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.dialogspinner:textAppearanceSearchResultSubtitle}</code></td><td>Text color, typeface, size, and style for system search result subtitle.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.dialogspinner:textAppearanceSearchResultTitle}</code></td><td>Text color, typeface, size, and style for system search result title.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.dialogspinner:textAppearanceSmallPopupMenu}</code></td><td>Text color, typeface, size, and style for small text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.dialogspinner:textColorAlertDialogListItem}</code></td><td>Color of list item text in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.dialogspinner:textColorSearchUrl}</code></td><td>Text color for urls in search suggestions, used by things like global search</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.dialogspinner:toolbarNavigationButtonStyle}</code></td><td>Default Toolar NavigationButtonStyle</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.dialogspinner:toolbarStyle}</code></td><td>Default Toolbar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.example.dialogspinner:tooltipForegroundColor}</code></td><td>Foreground color to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.example.dialogspinner:tooltipFrameBackground}</code></td><td>Background to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.example.dialogspinner:viewInflaterClass}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.dialogspinner:windowActionBar}</code></td><td>Flag indicating whether this window should have an Action Bar * in place of the usual title bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.dialogspinner:windowActionBarOverlay}</code></td><td>Flag indicating whether this window's Action Bar should overlay * application content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.dialogspinner:windowActionModeOverlay}</code></td><td>Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar).</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.dialogspinner:windowFixedHeightMajor}</code></td><td>A fixed height for the window along the major axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.dialogspinner:windowFixedHeightMinor}</code></td><td>A fixed height for the window along the minor axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.dialogspinner:windowFixedWidthMajor}</code></td><td>A fixed width for the window along the major axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.dialogspinner:windowFixedWidthMinor}</code></td><td>A fixed width for the window along the minor axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.dialogspinner:windowMinWidthMajor}</code></td><td>The minimum width the window is allowed to be, along the major * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.dialogspinner:windowMinWidthMinor}</code></td><td>The minimum width the window is allowed to be, along the minor * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.dialogspinner:windowNoTitle}</code></td><td>Flag indicating whether there should be no title on this window.</td></tr> * </table> * @see #AppCompatTheme_android_windowIsFloating * @see #AppCompatTheme_android_windowAnimationStyle * @see #AppCompatTheme_actionBarDivider * @see #AppCompatTheme_actionBarItemBackground * @see #AppCompatTheme_actionBarPopupTheme * @see #AppCompatTheme_actionBarSize * @see #AppCompatTheme_actionBarSplitStyle * @see #AppCompatTheme_actionBarStyle * @see #AppCompatTheme_actionBarTabBarStyle * @see #AppCompatTheme_actionBarTabStyle * @see #AppCompatTheme_actionBarTabTextStyle * @see #AppCompatTheme_actionBarTheme * @see #AppCompatTheme_actionBarWidgetTheme * @see #AppCompatTheme_actionButtonStyle * @see #AppCompatTheme_actionDropDownStyle * @see #AppCompatTheme_actionMenuTextAppearance * @see #AppCompatTheme_actionMenuTextColor * @see #AppCompatTheme_actionModeBackground * @see #AppCompatTheme_actionModeCloseButtonStyle * @see #AppCompatTheme_actionModeCloseDrawable * @see #AppCompatTheme_actionModeCopyDrawable * @see #AppCompatTheme_actionModeCutDrawable * @see #AppCompatTheme_actionModeFindDrawable * @see #AppCompatTheme_actionModePasteDrawable * @see #AppCompatTheme_actionModePopupWindowStyle * @see #AppCompatTheme_actionModeSelectAllDrawable * @see #AppCompatTheme_actionModeShareDrawable * @see #AppCompatTheme_actionModeSplitBackground * @see #AppCompatTheme_actionModeStyle * @see #AppCompatTheme_actionModeWebSearchDrawable * @see #AppCompatTheme_actionOverflowButtonStyle * @see #AppCompatTheme_actionOverflowMenuStyle * @see #AppCompatTheme_activityChooserViewStyle * @see #AppCompatTheme_alertDialogButtonGroupStyle * @see #AppCompatTheme_alertDialogCenterButtons * @see #AppCompatTheme_alertDialogStyle * @see #AppCompatTheme_alertDialogTheme * @see #AppCompatTheme_autoCompleteTextViewStyle * @see #AppCompatTheme_borderlessButtonStyle * @see #AppCompatTheme_buttonBarButtonStyle * @see #AppCompatTheme_buttonBarNegativeButtonStyle * @see #AppCompatTheme_buttonBarNeutralButtonStyle * @see #AppCompatTheme_buttonBarPositiveButtonStyle * @see #AppCompatTheme_buttonBarStyle * @see #AppCompatTheme_buttonStyle * @see #AppCompatTheme_buttonStyleSmall * @see #AppCompatTheme_checkboxStyle * @see #AppCompatTheme_checkedTextViewStyle * @see #AppCompatTheme_colorAccent * @see #AppCompatTheme_colorBackgroundFloating * @see #AppCompatTheme_colorButtonNormal * @see #AppCompatTheme_colorControlActivated * @see #AppCompatTheme_colorControlHighlight * @see #AppCompatTheme_colorControlNormal * @see #AppCompatTheme_colorError * @see #AppCompatTheme_colorPrimary * @see #AppCompatTheme_colorPrimaryDark * @see #AppCompatTheme_colorSwitchThumbNormal * @see #AppCompatTheme_controlBackground * @see #AppCompatTheme_dialogCornerRadius * @see #AppCompatTheme_dialogPreferredPadding * @see #AppCompatTheme_dialogTheme * @see #AppCompatTheme_dividerHorizontal * @see #AppCompatTheme_dividerVertical * @see #AppCompatTheme_dropDownListViewStyle * @see #AppCompatTheme_dropdownListPreferredItemHeight * @see #AppCompatTheme_editTextBackground * @see #AppCompatTheme_editTextColor * @see #AppCompatTheme_editTextStyle * @see #AppCompatTheme_homeAsUpIndicator * @see #AppCompatTheme_imageButtonStyle * @see #AppCompatTheme_listChoiceBackgroundIndicator * @see #AppCompatTheme_listDividerAlertDialog * @see #AppCompatTheme_listMenuViewStyle * @see #AppCompatTheme_listPopupWindowStyle * @see #AppCompatTheme_listPreferredItemHeight * @see #AppCompatTheme_listPreferredItemHeightLarge * @see #AppCompatTheme_listPreferredItemHeightSmall * @see #AppCompatTheme_listPreferredItemPaddingLeft * @see #AppCompatTheme_listPreferredItemPaddingRight * @see #AppCompatTheme_panelBackground * @see #AppCompatTheme_panelMenuListTheme * @see #AppCompatTheme_panelMenuListWidth * @see #AppCompatTheme_popupMenuStyle * @see #AppCompatTheme_popupWindowStyle * @see #AppCompatTheme_radioButtonStyle * @see #AppCompatTheme_ratingBarStyle * @see #AppCompatTheme_ratingBarStyleIndicator * @see #AppCompatTheme_ratingBarStyleSmall * @see #AppCompatTheme_searchViewStyle * @see #AppCompatTheme_seekBarStyle * @see #AppCompatTheme_selectableItemBackground * @see #AppCompatTheme_selectableItemBackgroundBorderless * @see #AppCompatTheme_spinnerDropDownItemStyle * @see #AppCompatTheme_spinnerStyle * @see #AppCompatTheme_switchStyle * @see #AppCompatTheme_textAppearanceLargePopupMenu * @see #AppCompatTheme_textAppearanceListItem * @see #AppCompatTheme_textAppearanceListItemSecondary * @see #AppCompatTheme_textAppearanceListItemSmall * @see #AppCompatTheme_textAppearancePopupMenuHeader * @see #AppCompatTheme_textAppearanceSearchResultSubtitle * @see #AppCompatTheme_textAppearanceSearchResultTitle * @see #AppCompatTheme_textAppearanceSmallPopupMenu * @see #AppCompatTheme_textColorAlertDialogListItem * @see #AppCompatTheme_textColorSearchUrl * @see #AppCompatTheme_toolbarNavigationButtonStyle * @see #AppCompatTheme_toolbarStyle * @see #AppCompatTheme_tooltipForegroundColor * @see #AppCompatTheme_tooltipFrameBackground * @see #AppCompatTheme_viewInflaterClass * @see #AppCompatTheme_windowActionBar * @see #AppCompatTheme_windowActionBarOverlay * @see #AppCompatTheme_windowActionModeOverlay * @see #AppCompatTheme_windowFixedHeightMajor * @see #AppCompatTheme_windowFixedHeightMinor * @see #AppCompatTheme_windowFixedWidthMajor * @see #AppCompatTheme_windowFixedWidthMinor * @see #AppCompatTheme_windowMinWidthMajor * @see #AppCompatTheme_windowMinWidthMinor * @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme={ 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020037, 0x7f020038, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f020040, 0x7f020041, 0x7f020044, 0x7f020045, 0x7f02004b, 0x7f02004c, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f02005d, 0x7f020061, 0x7f020062, 0x7f020063, 0x7f020066, 0x7f020068, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02006e, 0x7f02006f, 0x7f020082, 0x7f020088, 0x7f020097, 0x7f020098, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b5, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200cb, 0x7f0200cc, 0x7f0200da, 0x7f0200dd, 0x7f0200de, 0x7f0200df, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e3, 0x7f0200e4, 0x7f0200e5, 0x7f0200e6, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f0200fe, 0x7f020104, 0x7f020106, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f }; /** * <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating=0; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle=1; /** * <p> * @attr description * Custom divider drawable to use for elements in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p> * @attr description * Custom item state list drawable background for action bar items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p> * @attr description * Size of the Action Bar, including the contextual * bar used to present Action Modes. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.dialogspinner:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p> * @attr description * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p> * @attr description * Reference to a style for the Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#actionBarTabBarStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p> * @attr description * Default style for tabs within an action bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#actionBarTabTextStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p> * @attr description * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p> * @attr description * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p> * @attr description * Default action button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p> * @attr description * Default ActionBar dropdown style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p> * @attr description * TextAppearance style that will be applied to text that * appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p> * @attr description * Color for text that appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p> * @attr description * Background drawable to use for action mode UI * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#actionModeCloseButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p> * @attr description * Drawable to use for the close action mode button * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p> * @attr description * Drawable to use for the Copy action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p> * @attr description * Drawable to use for the Cut action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p> * @attr description * Drawable to use for the Find action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p> * @attr description * Drawable to use for the Paste action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p> * @attr description * PopupWindow style to use for action modes when showing as a window overlay. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p> * @attr description * Drawable to use for the Select all action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p> * @attr description * Drawable to use for the Share action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p> * @attr description * Background drawable to use for action mode UI in the lower split bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#actionModeStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p> * @attr description * Drawable to use for the Web Search action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#actionOverflowButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#actionOverflowMenuStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p> * @attr description * Default ActivityChooserView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#alertDialogButtonGroupStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#alertDialogCenterButtons} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#alertDialogStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p> * @attr description * Theme to use for alert dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <p> * @attr description * Default AutoCompleteTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p> * @attr description * Style for buttons without an explicit border, often used in groups. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p> * @attr description * Style for buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p> * @attr description * Style for the "negative" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p> * @attr description * Style for the "neutral" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p> * @attr description * Style for the "positive" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p> * @attr description * Style for button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p> * @attr description * Normal Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p> * @attr description * Small Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p> * @attr description * Default Checkbox style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p> * @attr description * Default CheckedTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p> * @attr description * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p> * @attr description * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p> * @attr description * The color applied to framework buttons in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p> * @attr description * The color applied to framework controls in their activated (ex. checked) state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p> * @attr description * The color applied to framework control highlights (ex. ripples, list selectors). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p> * @attr description * The color applied to framework controls in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p> * @attr description * Color used for error states and things that need to be drawn to * the user's attention. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p> * @attr description * The primary branding color for the app. By default, this is the color applied to the * action bar background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p> * @attr description * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p> * @attr description * The color applied to framework switch thumbs in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p> * @attr description * The background used by framework controls. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p> * @attr description * Preferred corner radius of dialogs. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:dialogCornerRadius */ public static final int AppCompatTheme_dialogCornerRadius=59; /** * <p> * @attr description * Preferred padding for dialog content. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=60; /** * <p> * @attr description * Theme to use for dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:dialogTheme */ public static final int AppCompatTheme_dialogTheme=61; /** * <p> * @attr description * A drawable that may be used as a horizontal divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=62; /** * <p> * @attr description * A drawable that may be used as a vertical divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:dividerVertical */ public static final int AppCompatTheme_dividerVertical=63; /** * <p> * @attr description * ListPopupWindow compatibility * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=64; /** * <p> * @attr description * The preferred item height for dropdown lists. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; /** * <p> * @attr description * EditText background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:editTextBackground */ public static final int AppCompatTheme_editTextBackground=66; /** * <p> * @attr description * EditText text foreground color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:editTextColor */ public static final int AppCompatTheme_editTextColor=67; /** * <p> * @attr description * Default EditText style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:editTextStyle */ public static final int AppCompatTheme_editTextStyle=68; /** * <p> * @attr description * Specifies a drawable to use for the 'home as up' indicator. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=69; /** * <p> * @attr description * ImageButton background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=70; /** * <p> * @attr description * Drawable used as a background for selected list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; /** * <p> * @attr description * The list divider used in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=72; /** * <p> * @attr description * Default menu-style ListView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=73; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#listPopupWindowStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=74; /** * <p> * @attr description * The preferred list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=75; /** * <p> * @attr description * A larger, more robust list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=76; /** * <p> * @attr description * A smaller, sleeker list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=77; /** * <p> * @attr description * The preferred padding along the left edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; /** * <p> * @attr description * The preferred padding along the right edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=79; /** * <p> * @attr description * The background of a panel when it is inset from the left and right edges of the screen. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:panelBackground */ public static final int AppCompatTheme_panelBackground=80; /** * <p> * @attr description * Default Panel Menu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=81; /** * <p> * @attr description * Default Panel Menu width. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=82; /** * <p> * @attr description * Default PopupMenu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=83; /** * <p> * @attr description * Default PopupWindow style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=84; /** * <p> * @attr description * Default RadioButton style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=85; /** * <p> * @attr description * Default RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=86; /** * <p> * @attr description * Indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=87; /** * <p> * @attr description * Small indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=88; /** * <p> * @attr description * Style for the search query widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=89; /** * <p> * @attr description * Default SeekBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=90; /** * <p> * @attr description * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=91; /** * <p> * @attr description * Background drawable for borderless standalone items that need focus/pressed states. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=93; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=94; /** * <p> * @attr description * Default style for the Switch widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:switchStyle */ public static final int AppCompatTheme_switchStyle=95; /** * <p> * @attr description * Text color, typeface, size, and style for the text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; /** * <p> * @attr description * The preferred TextAppearance for the primary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=97; /** * <p> * @attr description * The preferred TextAppearance for the secondary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=98; /** * <p> * @attr description * The preferred TextAppearance for the primary text of small list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=99; /** * <p> * @attr description * Text color, typeface, size, and style for header text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; /** * <p> * @attr description * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; /** * <p> * @attr description * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; /** * <p> * @attr description * Text color, typeface, size, and style for small text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; /** * <p> * @attr description * Color of list item text in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=104; /** * <p> * @attr description * Text color for urls in search suggestions, used by things like global search * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=105; /** * <p> * @attr description * Default Toolar NavigationButtonStyle * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; /** * <p> * @attr description * Default Toolbar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=107; /** * <p> * @attr description * Foreground color to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=108; /** * <p> * @attr description * Background to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=109; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#viewInflaterClass} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:viewInflaterClass */ public static final int AppCompatTheme_viewInflaterClass=110; /** * <p> * @attr description * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:windowActionBar */ public static final int AppCompatTheme_windowActionBar=111; /** * <p> * @attr description * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=112; /** * <p> * @attr description * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=113; /** * <p> * @attr description * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.example.dialogspinner:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=114; /** * <p> * @attr description * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.example.dialogspinner:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=115; /** * <p> * @attr description * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.example.dialogspinner:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=116; /** * <p> * @attr description * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.example.dialogspinner:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=117; /** * <p> * @attr description * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.example.dialogspinner:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=118; /** * <p> * @attr description * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.example.dialogspinner:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=119; /** * <p> * @attr description * Flag indicating whether there should be no title on this window. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=120; /** * Attributes that can be used with a ButtonBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ButtonBarLayout_allowStacking com.example.dialogspinner:allowStacking}</code></td><td>Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side.</td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f020026 }; /** * <p> * @attr description * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:allowStacking */ public static final int ButtonBarLayout_allowStacking=0; /** * Attributes that can be used with a ColorStateListItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_alpha com.example.dialogspinner:alpha}</code></td><td>Alpha multiplier applied to the base color.</td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f020027 }; /** * <p> * @attr description * Base color for this state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int ColorStateListItem_android_color=0; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ColorStateListItem_android_alpha=1; /** * <p> * @attr description * Alpha multiplier applied to the base color. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.dialogspinner:alpha */ public static final int ColorStateListItem_alpha=2; /** * Attributes that can be used with a CompoundButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTint com.example.dialogspinner:buttonTint}</code></td><td>Tint to apply to the button drawable.</td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.dialogspinner:buttonTintMode}</code></td><td>Blending mode used to apply the button tint.</td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f020042, 0x7f020043 }; /** * <p>This symbol is the offset where the {@link android.R.attr#button} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:button */ public static final int CompoundButton_android_button=0; /** * <p> * @attr description * Tint to apply to the button drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p> * @attr description * Blending mode used to apply the button tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:buttonTintMode */ public static final 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 com.example.dialogspinner:keylines}</code></td><td>A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.example.dialogspinner:statusBarBackground}</code></td><td>Drawable to display behind the status bar when the view is set to draw behind it.</td></tr> * </table> * @see #CoordinatorLayout_keylines * @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout={ 0x7f02008d, 0x7f0200d0 }; /** * <p> * @attr description * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:keylines */ public static final int CoordinatorLayout_keylines=0; /** * <p> * @attr description * Drawable to display behind the status bar when the view is set to draw behind it. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground=1; /** * Attributes that can be used with a CoordinatorLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.example.dialogspinner:layout_anchor}</code></td><td>The id of an anchor view that this view should position relative to.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.example.dialogspinner:layout_anchorGravity}</code></td><td>Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.example.dialogspinner:layout_behavior}</code></td><td>The class name of a Behavior class defining special runtime behavior * for this child view.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.example.dialogspinner:layout_dodgeInsetEdges}</code></td><td>Specifies how this view dodges the inset edges of the CoordinatorLayout.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.example.dialogspinner:layout_insetEdge}</code></td><td>Specifies how this view insets the CoordinatorLayout and make some other views * dodge it.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.example.dialogspinner:layout_keyline}</code></td><td>The index of a keyline this view should position relative to.</td></tr> * </table> * @see #CoordinatorLayout_Layout_android_layout_gravity * @see #CoordinatorLayout_Layout_layout_anchor * @see #CoordinatorLayout_Layout_layout_anchorGravity * @see #CoordinatorLayout_Layout_layout_behavior * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges * @see #CoordinatorLayout_Layout_layout_insetEdge * @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout={ 0x010100b3, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity=0; /** * <p> * @attr description * The id of an anchor view that this view should position relative to. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor=1; /** * <p> * @attr description * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name com.example.dialogspinner:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; /** * <p> * @attr description * The class name of a Behavior class defining special runtime behavior * for this child view. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior=3; /** * <p> * @attr description * Specifies how this view dodges the inset edges of the CoordinatorLayout. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> * * @attr name com.example.dialogspinner:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; /** * <p> * @attr description * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> * * @attr name com.example.dialogspinner:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge=5; /** * <p> * @attr description * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.dialogspinner:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline=6; /** * Attributes that can be used with a DrawerArrowToggle. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.example.dialogspinner:arrowHeadLength}</code></td><td>The length of the arrow head when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.dialogspinner:arrowShaftLength}</code></td><td>The length of the shaft when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.dialogspinner:barLength}</code></td><td>The length of the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.example.dialogspinner:color}</code></td><td>The drawing color for the bars</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.dialogspinner:drawableSize}</code></td><td>The total size of the drawable</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.dialogspinner:gapBetweenBars}</code></td><td>The max gap between the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.dialogspinner:spinBars}</code></td><td>Whether bars should rotate or not during transition</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.dialogspinner:thickness}</code></td><td>The thickness (stroke size) for the bar paint</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={ 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004a, 0x7f020069, 0x7f02007e, 0x7f0200ca, 0x7f0200e8 }; /** * <p> * @attr description * The length of the arrow head when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p> * @attr description * The length of the shaft when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p> * @attr description * The length of the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p> * @attr description * The drawing color for the bars * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:color */ public static final int DrawerArrowToggle_color=3; /** * <p> * @attr description * The total size of the drawable * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p> * @attr description * The max gap between the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p> * @attr description * Whether bars should rotate or not during transition * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p> * @attr description * The thickness (stroke size) for the bar paint * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:thickness */ public static final int DrawerArrowToggle_thickness=7; /** * Attributes that can be used with a FontFamily. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamily_fontProviderAuthority com.example.dialogspinner:fontProviderAuthority}</code></td><td>The authority of the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.example.dialogspinner:fontProviderCerts}</code></td><td>The sets of hashes for the certificates the provider should be signed with.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.example.dialogspinner:fontProviderFetchStrategy}</code></td><td>The strategy to be used when fetching font data from a font provider in XML layouts.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.example.dialogspinner:fontProviderFetchTimeout}</code></td><td>The length of the timeout during fetching.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.example.dialogspinner:fontProviderPackage}</code></td><td>The package for the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.example.dialogspinner:fontProviderQuery}</code></td><td>The query to be sent over to the provider.</td></tr> * </table> * @see #FontFamily_fontProviderAuthority * @see #FontFamily_fontProviderCerts * @see #FontFamily_fontProviderFetchStrategy * @see #FontFamily_fontProviderFetchTimeout * @see #FontFamily_fontProviderPackage * @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily={ 0x7f020075, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f020079, 0x7f02007a }; /** * <p> * @attr description * The authority of the Font Provider to be used for the request. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p> * @attr description * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p> * @attr description * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> * * @attr name com.example.dialogspinner:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p> * @attr description * The length of the timeout during fetching. * * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> * * @attr name com.example.dialogspinner:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p> * @attr description * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p> * @attr description * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * Attributes that can be used with a FontFamilyFont. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_font com.example.dialogspinner:font}</code></td><td>The reference to the font file to be used.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.example.dialogspinner:fontStyle}</code></td><td>The style of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontVariationSettings com.example.dialogspinner:fontVariationSettings}</code></td><td>The variation settings to be applied to the font.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.example.dialogspinner:fontWeight}</code></td><td>The weight of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_ttcIndex com.example.dialogspinner:ttcIndex}</code></td><td>The index of the font in the tcc font file.</td></tr> * </table> * @see #FontFamilyFont_android_font * @see #FontFamilyFont_android_fontWeight * @see #FontFamilyFont_android_fontStyle * @see #FontFamilyFont_android_ttcIndex * @see #FontFamilyFont_android_fontVariationSettings * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontVariationSettings * @see #FontFamilyFont_fontWeight * @see #FontFamilyFont_ttcIndex */ public static final int[] FontFamilyFont={ 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f020073, 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f020103 }; /** * <p>This symbol is the offset where the {@link android.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:font */ public static final int FontFamilyFont_android_font=0; /** * <p>This symbol is the offset where the {@link android.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight=1; /** * <p> * @attr description * References to the framework attrs * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#ttcIndex} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:ttcIndex */ public static final int FontFamilyFont_android_ttcIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontVariationSettings */ public static final int FontFamilyFont_android_fontVariationSettings=4; /** * <p> * @attr description * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:font */ public static final int FontFamilyFont_font=5; /** * <p> * @attr description * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.dialogspinner:fontStyle */ public static final int FontFamilyFont_fontStyle=6; /** * <p> * @attr description * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:fontVariationSettings */ public static final int FontFamilyFont_fontVariationSettings=7; /** * <p> * @attr description * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.dialogspinner:fontWeight */ public static final int FontFamilyFont_fontWeight=8; /** * <p> * @attr description * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.dialogspinner:ttcIndex */ public static final int FontFamilyFont_ttcIndex=9; /** * Attributes that can be used with a GradientColor. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColor_android_startColor android:startColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td></td></tr> * </table> * @see #GradientColor_android_startColor * @see #GradientColor_android_endColor * @see #GradientColor_android_type * @see #GradientColor_android_centerX * @see #GradientColor_android_centerY * @see #GradientColor_android_gradientRadius * @see #GradientColor_android_tileMode * @see #GradientColor_android_centerColor * @see #GradientColor_android_startX * @see #GradientColor_android_startY * @see #GradientColor_android_endX * @see #GradientColor_android_endY */ public static final int[] GradientColor={ 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; /** * <p> * @attr description * Start color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:startColor */ public static final int GradientColor_android_startColor=0; /** * <p> * @attr description * End color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:endColor */ public static final int GradientColor_android_endColor=1; /** * <p> * @attr description * Type of gradient. The default type is linear. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>linear</td><td>0</td><td></td></tr> * <tr><td>radial</td><td>1</td><td></td></tr> * <tr><td>sweep</td><td>2</td><td></td></tr> * </table> * * @attr name android:type */ public static final int GradientColor_android_type=2; /** * <p> * @attr description * X coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerX */ public static final int GradientColor_android_centerX=3; /** * <p> * @attr description * Y coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerY */ public static final int GradientColor_android_centerY=4; /** * <p> * @attr description * Radius of the gradient, used only with radial gradient. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:gradientRadius */ public static final int GradientColor_android_gradientRadius=5; /** * <p> * @attr description * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>clamp</td><td>0</td><td></td></tr> * <tr><td>disabled</td><td>ffffffff</td><td></td></tr> * <tr><td>mirror</td><td>2</td><td></td></tr> * <tr><td>repeat</td><td>1</td><td></td></tr> * </table> * * @attr name android:tileMode */ public static final int GradientColor_android_tileMode=6; /** * <p> * @attr description * Optional center color. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:centerColor */ public static final int GradientColor_android_centerColor=7; /** * <p> * @attr description * X coordinate of the start point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startX */ public static final int GradientColor_android_startX=8; /** * <p> * @attr description * Y coordinate of the start point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startY */ public static final int GradientColor_android_startY=9; /** * <p> * @attr description * X coordinate of the end point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endX */ public static final int GradientColor_android_endX=10; /** * <p> * @attr description * Y coordinate of the end point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endY */ public static final int GradientColor_android_endY=11; /** * Attributes that can be used with a GradientColorItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColorItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td></td></tr> * </table> * @see #GradientColorItem_android_color * @see #GradientColorItem_android_offset */ public static final int[] GradientColorItem={ 0x010101a5, 0x01010514 }; /** * <p> * @attr description * The current color for the offset inside the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int GradientColorItem_android_color=0; /** * <p> * @attr description * The offset (or ratio) of this current color item inside the gradient. * The value is only meaningful when it is between 0 and 1. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:offset */ public static final int GradientColorItem_android_offset=1; /** * Attributes that can be used with a LinearLayoutCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_divider com.example.dialogspinner:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.dialogspinner:dividerPadding}</code></td><td>Size of padding on either end of a divider.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.dialogspinner:measureWithLargestChild}</code></td><td>When set to true, all children with a weight will be considered having * the minimum size of the largest child.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.dialogspinner:showDividers}</code></td><td>Setting for which dividers to show.</td></tr> * </table> * @see #LinearLayoutCompat_android_gravity * @see #LinearLayoutCompat_android_orientation * @see #LinearLayoutCompat_android_baselineAligned * @see #LinearLayoutCompat_android_baselineAlignedChildIndex * @see #LinearLayoutCompat_android_weightSum * @see #LinearLayoutCompat_divider * @see #LinearLayoutCompat_dividerPadding * @see #LinearLayoutCompat_measureWithLargestChild * @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat={ 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020065, 0x7f020067, 0x7f0200a5, 0x7f0200c6 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity=0; /** * <p> * @attr description * Should the layout be a column or a row? Use "horizontal" * for a row, "vertical" for a column. The default is * horizontal. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation=1; /** * <p> * @attr description * When set to false, prevents the layout from aligning its children's * baselines. This attribute is particularly useful when the children * use different values for gravity. The default value is true. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned=2; /** * <p> * @attr description * When a linear layout is part of another layout that is baseline * aligned, it can specify which of its children to baseline align to * (that is, which child TextView). * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; /** * <p> * @attr description * Defines the maximum weight sum. If unspecified, the sum is computed * by adding the layout_weight of all of the children. This can be * used for instance to give a single child 50% of the total available * space by giving it a layout_weight of 0.5 and setting the weightSum * to 1.0. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum=4; /** * <p> * @attr description * Drawable to use as a vertical divider between buttons. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p> * @attr description * Size of padding on either end of a divider. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p> * @attr description * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p> * @attr description * Setting for which dividers to show. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.dialogspinner:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * Attributes that can be used with a LinearLayoutCompat_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> * </table> * @see #LinearLayoutCompat_Layout_android_layout_gravity * @see #LinearLayoutCompat_Layout_android_layout_width * @see #LinearLayoutCompat_Layout_android_layout_height * @see #LinearLayoutCompat_Layout_android_layout_weight */ public static final int[] LinearLayoutCompat_Layout={ 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width=1; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_weight} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight=3; /** * Attributes that can be used with a ListPopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> * </table> * @see #ListPopupWindow_android_dropDownHorizontalOffset * @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow={ 0x010102ac, 0x010102ad }; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset horizontally. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset vertically. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset=1; /** * Attributes that can be used with a MenuGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> * </table> * @see #MenuGroup_android_enabled * @see #MenuGroup_android_id * @see #MenuGroup_android_visible * @see #MenuGroup_android_menuCategory * @see #MenuGroup_android_orderInCategory * @see #MenuGroup_android_checkableBehavior */ public static final int[] MenuGroup={ 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** * <p> * @attr description * Whether the items are enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuGroup_android_enabled=0; /** * <p> * @attr description * The ID of the group. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuGroup_android_id=1; /** * <p> * @attr description * Whether the items are shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuGroup_android_visible=2; /** * <p> * @attr description * The category applied to all items within this group. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory=3; /** * <p> * @attr description * The order within the category applied to all items within this group. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory=4; /** * <p> * @attr description * Whether the items are capable of displaying a check mark. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>single</td><td>2</td><td></td></tr> * </table> * * @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior=5; /** * Attributes that can be used with a MenuItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionLayout com.example.dialogspinner:actionLayout}</code></td><td>An optional layout to be used as an action view.</td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.example.dialogspinner:actionProviderClass}</code></td><td>The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item.</td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.example.dialogspinner:actionViewClass}</code></td><td>The name of an optional View class to instantiate and use as an * action view.</td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.example.dialogspinner:alphabeticModifiers}</code></td><td>The alphabetic modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.example.dialogspinner:contentDescription}</code></td><td>The content description associated with the item.</td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.example.dialogspinner:iconTint}</code></td><td>Tint to apply to the icon.</td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.example.dialogspinner:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.example.dialogspinner:numericModifiers}</code></td><td>The numeric modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.example.dialogspinner:showAsAction}</code></td><td>How this item should display in the Action Bar, if present.</td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.example.dialogspinner:tooltipText}</code></td><td>The tooltip text associated with the item.</td></tr> * </table> * @see #MenuItem_android_icon * @see #MenuItem_android_enabled * @see #MenuItem_android_id * @see #MenuItem_android_checked * @see #MenuItem_android_visible * @see #MenuItem_android_menuCategory * @see #MenuItem_android_orderInCategory * @see #MenuItem_android_title * @see #MenuItem_android_titleCondensed * @see #MenuItem_android_alphabeticShortcut * @see #MenuItem_android_numericShortcut * @see #MenuItem_android_checkable * @see #MenuItem_android_onClick * @see #MenuItem_actionLayout * @see #MenuItem_actionProviderClass * @see #MenuItem_actionViewClass * @see #MenuItem_alphabeticModifiers * @see #MenuItem_contentDescription * @see #MenuItem_iconTint * @see #MenuItem_iconTintMode * @see #MenuItem_numericModifiers * @see #MenuItem_showAsAction * @see #MenuItem_tooltipText */ public static final int[] MenuItem={ 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f020056, 0x7f020085, 0x7f020086, 0x7f0200aa, 0x7f0200c5, 0x7f0200ff }; /** * <p> * @attr description * The icon associated with this item. This icon will not always be shown, so * the title should be sufficient in describing this item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int MenuItem_android_icon=0; /** * <p> * @attr description * Whether the item is enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuItem_android_enabled=1; /** * <p> * @attr description * The ID of the item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuItem_android_id=2; /** * <p> * @attr description * Whether the item is checked. Note that you must first have enabled checking with * the checkable attribute or else the check mark will not appear. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checked */ public static final int MenuItem_android_checked=3; /** * <p> * @attr description * Whether the item is shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuItem_android_visible=4; /** * <p> * @attr description * The category applied to the item. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory=5; /** * <p> * @attr description * The order within the category applied to the item. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory=6; /** * <p> * @attr description * The title associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:title */ public static final int MenuItem_android_title=7; /** * <p> * @attr description * The condensed title associated with the item. This is used in situations where the * normal title may be too long to be displayed. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed=8; /** * <p> * @attr description * The alphabetic shortcut key. This is the shortcut when using a keyboard * with alphabetic keys. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut=9; /** * <p> * @attr description * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) * keyboard. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut=10; /** * <p> * @attr description * Whether the item is capable of displaying a check mark. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int MenuItem_android_checkable=11; /** * <p> * @attr description * Name of a method on the Context used to inflate the menu that will be * called when the item is clicked. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:onClick */ public static final int MenuItem_android_onClick=12; /** * <p> * @attr description * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p> * @attr description * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p> * @attr description * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p> * @attr description * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.example.dialogspinner:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p> * @attr description * The content description associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p> * @attr description * Tint to apply to the icon. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:iconTint */ public static final int MenuItem_iconTint=18; /** * <p> * @attr description * Blending mode used to apply the icon tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p> * @attr description * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.example.dialogspinner:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p> * @attr description * How this item should display in the Action Bar, if present. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> * * @attr name com.example.dialogspinner:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p> * @attr description * The tooltip text associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:tooltipText */ public static final int MenuItem_tooltipText=22; /** * Attributes that can be used with a MenuView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_preserveIconSpacing com.example.dialogspinner:preserveIconSpacing}</code></td><td>Whether space should be reserved in layout when an icon is missing.</td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.example.dialogspinner:subMenuArrow}</code></td><td>Drawable for the arrow icon indicating a particular item is a submenu.</td></tr> * </table> * @see #MenuView_android_windowAnimationStyle * @see #MenuView_android_itemTextAppearance * @see #MenuView_android_horizontalDivider * @see #MenuView_android_verticalDivider * @see #MenuView_android_headerBackground * @see #MenuView_android_itemBackground * @see #MenuView_android_itemIconDisabledAlpha * @see #MenuView_preserveIconSpacing * @see #MenuView_subMenuArrow */ public static final int[] MenuView={ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200b6, 0x7f0200d1 }; /** * <p> * @attr description * Default animations for the menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle=0; /** * <p> * @attr description * Default appearance of menu item text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance=1; /** * <p> * @attr description * Default horizontal divider between rows of menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider=2; /** * <p> * @attr description * Default vertical divider between menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider=3; /** * <p> * @attr description * Default background for the menu header. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:headerBackground */ public static final int MenuView_android_headerBackground=4; /** * <p> * @attr description * Default background for each menu item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:itemBackground */ public static final int MenuView_android_itemBackground=5; /** * <p> * @attr description * Default disabled icon alpha for each menu item that shows an icon. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha=6; /** * <p> * @attr description * Whether space should be reserved in layout when an icon is missing. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p> * @attr description * Drawable for the arrow icon indicating a particular item is a submenu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:subMenuArrow */ public static final int MenuView_subMenuArrow=8; /** * Attributes that can be used with a PopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_overlapAnchor com.example.dialogspinner:overlapAnchor}</code></td><td>Whether the popup window should overlap its anchor view.</td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f0200ab }; /** * <p>This symbol is the offset where the {@link android.R.attr#popupBackground} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground=0; /** * <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle=1; /** * <p> * @attr description * Whether the popup window should overlap its anchor view. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:overlapAnchor */ public static final int PopupWindow_overlapAnchor=2; /** * Attributes that can be used with a PopupWindowBackgroundState. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.dialogspinner:state_above_anchor}</code></td><td>State identifier indicating the popup will be above the anchor.</td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f0200cf }; /** * <p> * @attr description * State identifier indicating the popup will be above the anchor. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor=0; /** * Attributes that can be used with a RecycleListView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.example.dialogspinner:paddingBottomNoButtons}</code></td><td>Bottom padding to use when no buttons are present.</td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.example.dialogspinner:paddingTopNoTitle}</code></td><td>Top padding to use when no title is present.</td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f0200ac, 0x7f0200af }; /** * <p> * @attr description * Bottom padding to use when no buttons are present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p> * @attr description * Top padding to use when no title is present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle=1; /** * Attributes that can be used with a SearchView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_closeIcon com.example.dialogspinner:closeIcon}</code></td><td>Close button icon</td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.example.dialogspinner:commitIcon}</code></td><td>Commit icon shown in the query suggestion row</td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.example.dialogspinner:defaultQueryHint}</code></td><td>Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint.</td></tr> * <tr><td><code>{@link #SearchView_goIcon com.example.dialogspinner:goIcon}</code></td><td>Go button icon</td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.dialogspinner:iconifiedByDefault}</code></td><td>The default state of the SearchView.</td></tr> * <tr><td><code>{@link #SearchView_layout com.example.dialogspinner:layout}</code></td><td>The layout to use for the search view.</td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.example.dialogspinner:queryBackground}</code></td><td>Background for the section containing the search query</td></tr> * <tr><td><code>{@link #SearchView_queryHint com.example.dialogspinner:queryHint}</code></td><td>An optional user-defined query hint string to be displayed in the empty query field.</td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.example.dialogspinner:searchHintIcon}</code></td><td>Search icon displayed as a text field hint</td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.example.dialogspinner:searchIcon}</code></td><td>Search icon</td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.example.dialogspinner:submitBackground}</code></td><td>Background for the section containing the action (e.g.</td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.dialogspinner:suggestionRowLayout}</code></td><td>Layout for query suggestion rows</td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.example.dialogspinner:voiceIcon}</code></td><td>Voice button icon</td></tr> * </table> * @see #SearchView_android_focusable * @see #SearchView_android_maxWidth * @see #SearchView_android_inputType * @see #SearchView_android_imeOptions * @see #SearchView_closeIcon * @see #SearchView_commitIcon * @see #SearchView_defaultQueryHint * @see #SearchView_goIcon * @see #SearchView_iconifiedByDefault * @see #SearchView_layout * @see #SearchView_queryBackground * @see #SearchView_queryHint * @see #SearchView_searchHintIcon * @see #SearchView_searchIcon * @see #SearchView_submitBackground * @see #SearchView_suggestionRowLayout * @see #SearchView_voiceIcon */ public static final int[] SearchView={ 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020046, 0x7f020055, 0x7f020060, 0x7f02007f, 0x7f020087, 0x7f02008f, 0x7f0200b9, 0x7f0200ba, 0x7f0200bf, 0x7f0200c0, 0x7f0200d2, 0x7f0200d7, 0x7f020105 }; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int SearchView_android_focusable=0; /** * <p> * @attr description * An optional maximum width of the SearchView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SearchView_android_maxWidth=1; /** * <p> * @attr description * The input type to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>date</td><td>14</td><td></td></tr> * <tr><td>datetime</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>number</td><td>2</td><td></td></tr> * <tr><td>numberDecimal</td><td>2002</td><td></td></tr> * <tr><td>numberPassword</td><td>12</td><td></td></tr> * <tr><td>numberSigned</td><td>1002</td><td></td></tr> * <tr><td>phone</td><td>3</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * <tr><td>textAutoComplete</td><td>10001</td><td></td></tr> * <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr> * <tr><td>textCapCharacters</td><td>1001</td><td></td></tr> * <tr><td>textCapSentences</td><td>4001</td><td></td></tr> * <tr><td>textCapWords</td><td>2001</td><td></td></tr> * <tr><td>textEmailAddress</td><td>21</td><td></td></tr> * <tr><td>textEmailSubject</td><td>31</td><td></td></tr> * <tr><td>textFilter</td><td>b1</td><td></td></tr> * <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr> * <tr><td>textLongMessage</td><td>51</td><td></td></tr> * <tr><td>textMultiLine</td><td>20001</td><td></td></tr> * <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr> * <tr><td>textPassword</td><td>81</td><td></td></tr> * <tr><td>textPersonName</td><td>61</td><td></td></tr> * <tr><td>textPhonetic</td><td>c1</td><td></td></tr> * <tr><td>textPostalAddress</td><td>71</td><td></td></tr> * <tr><td>textShortMessage</td><td>41</td><td></td></tr> * <tr><td>textUri</td><td>11</td><td></td></tr> * <tr><td>textVisiblePassword</td><td>91</td><td></td></tr> * <tr><td>textWebEditText</td><td>a1</td><td></td></tr> * <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr> * <tr><td>textWebPassword</td><td>e1</td><td></td></tr> * <tr><td>time</td><td>24</td><td></td></tr> * </table> * * @attr name android:inputType */ public static final int SearchView_android_inputType=2; /** * <p> * @attr description * The IME options to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>actionDone</td><td>6</td><td></td></tr> * <tr><td>actionGo</td><td>2</td><td></td></tr> * <tr><td>actionNext</td><td>5</td><td></td></tr> * <tr><td>actionNone</td><td>1</td><td></td></tr> * <tr><td>actionPrevious</td><td>7</td><td></td></tr> * <tr><td>actionSearch</td><td>3</td><td></td></tr> * <tr><td>actionSend</td><td>4</td><td></td></tr> * <tr><td>actionUnspecified</td><td>0</td><td></td></tr> * <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr> * <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr> * <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr> * <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr> * <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr> * <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr> * <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr> * <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:imeOptions */ public static final int SearchView_android_imeOptions=3; /** * <p> * @attr description * Close button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p> * @attr description * Commit icon shown in the query suggestion row * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p> * @attr description * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p> * @attr description * Go button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:goIcon */ public static final int SearchView_goIcon=7; /** * <p> * @attr description * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p> * @attr description * The layout to use for the search view. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:layout */ public static final int SearchView_layout=9; /** * <p> * @attr description * Background for the section containing the search query * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p> * @attr description * An optional user-defined query hint string to be displayed in the empty query field. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:queryHint */ public static final int SearchView_queryHint=11; /** * <p> * @attr description * Search icon displayed as a text field hint * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p> * @attr description * Search icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p> * @attr description * Background for the section containing the action (e.g. voice search) * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p> * @attr description * Layout for query suggestion rows * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p> * @attr description * Voice button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * Attributes that can be used with a Spinner. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_popupTheme com.example.dialogspinner:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * </table> * @see #Spinner_android_entries * @see #Spinner_android_popupBackground * @see #Spinner_android_prompt * @see #Spinner_android_dropDownWidth * @see #Spinner_popupTheme */ public static final int[] Spinner={ 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200b4 }; /** * <p> * @attr description * Reference to an array resource that will populate the Spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:entries */ public static final int Spinner_android_entries=0; /** * <p> * @attr description * Background drawable to use for the dropdown in spinnerMode="dropdown". * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int Spinner_android_popupBackground=1; /** * <p> * @attr description * The prompt to display when the spinner's dialog is shown. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:prompt */ public static final int Spinner_android_prompt=2; /** * <p> * @attr description * Width of the dropdown in spinnerMode="dropdown". * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth=3; /** * <p> * @attr description * Theme to use for the drop-down or dialog popup window. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:popupTheme */ public static final int Spinner_popupTheme=4; /** * Attributes that can be used with a StateListDrawable. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawable_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #StateListDrawable_android_dither * @see #StateListDrawable_android_visible * @see #StateListDrawable_android_variablePadding * @see #StateListDrawable_android_constantSize * @see #StateListDrawable_android_enterFadeDuration * @see #StateListDrawable_android_exitFadeDuration */ public static final int[] StateListDrawable={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int StateListDrawable_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int StateListDrawable_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int StateListDrawable_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int StateListDrawable_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int StateListDrawable_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int StateListDrawable_android_exitFadeDuration=5; /** * Attributes that can be used with a StateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #StateListDrawableItem_android_drawable */ public static final int[] StateListDrawableItem={ 0x01010199 }; /** * <p> * @attr description * Reference to a drawable resource to use for the state. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int StateListDrawableItem_android_drawable=0; /** * Attributes that can be used with a SwitchCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_showText com.example.dialogspinner:showText}</code></td><td>Whether to draw on/off text.</td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.example.dialogspinner:splitTrack}</code></td><td>Whether to split the track and leave a gap for the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.dialogspinner:switchMinWidth}</code></td><td>Minimum width for the switch component</td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.example.dialogspinner:switchPadding}</code></td><td>Minimum space between the switch and caption text</td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.dialogspinner:switchTextAppearance}</code></td><td>TextAppearance style for text displayed on the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.dialogspinner:thumbTextPadding}</code></td><td>Amount of padding on either side of text within the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.example.dialogspinner:thumbTint}</code></td><td>Tint to apply to the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.dialogspinner:thumbTintMode}</code></td><td>Blending mode used to apply the thumb tint.</td></tr> * <tr><td><code>{@link #SwitchCompat_track com.example.dialogspinner:track}</code></td><td>Drawable to use as the "track" that the switch thumb slides within.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.example.dialogspinner:trackTint}</code></td><td>Tint to apply to the track.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.dialogspinner:trackTintMode}</code></td><td>Blending mode used to apply the track tint.</td></tr> * </table> * @see #SwitchCompat_android_textOn * @see #SwitchCompat_android_textOff * @see #SwitchCompat_android_thumb * @see #SwitchCompat_showText * @see #SwitchCompat_splitTrack * @see #SwitchCompat_switchMinWidth * @see #SwitchCompat_switchPadding * @see #SwitchCompat_switchTextAppearance * @see #SwitchCompat_thumbTextPadding * @see #SwitchCompat_thumbTint * @see #SwitchCompat_thumbTintMode * @see #SwitchCompat_track * @see #SwitchCompat_trackTint * @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat={ 0x01010124, 0x01010125, 0x01010142, 0x7f0200c7, 0x7f0200cd, 0x7f0200d8, 0x7f0200d9, 0x7f0200db, 0x7f0200e9, 0x7f0200ea, 0x7f0200eb, 0x7f020100, 0x7f020101, 0x7f020102 }; /** * <p> * @attr description * Text to use when the switch is in the checked/"on" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOn */ public static final int SwitchCompat_android_textOn=0; /** * <p> * @attr description * Text to use when the switch is in the unchecked/"off" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOff */ public static final int SwitchCompat_android_textOff=1; /** * <p> * @attr description * Drawable to use as the "thumb" that switches back and forth. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int SwitchCompat_android_thumb=2; /** * <p> * @attr description * Whether to draw on/off text. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:showText */ public static final int SwitchCompat_showText=3; /** * <p> * @attr description * Whether to split the track and leave a gap for the thumb drawable. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p> * @attr description * Minimum width for the switch component * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p> * @attr description * Minimum space between the switch and caption text * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p> * @attr description * TextAppearance style for text displayed on the switch thumb. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p> * @attr description * Amount of padding on either side of text within the switch thumb. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p> * @attr description * Tint to apply to the thumb drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p> * @attr description * Blending mode used to apply the thumb tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p> * @attr description * Drawable to use as the "track" that the switch thumb slides within. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:track */ public static final int SwitchCompat_track=11; /** * <p> * @attr description * Tint to apply to the track. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p> * @attr description * Blending mode used to apply the track tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * Attributes that can be used with a TextAppearance. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontFamily com.example.dialogspinner:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.example.dialogspinner:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #TextAppearance_android_textSize * @see #TextAppearance_android_typeface * @see #TextAppearance_android_textStyle * @see #TextAppearance_android_textColor * @see #TextAppearance_android_textColorHint * @see #TextAppearance_android_textColorLink * @see #TextAppearance_android_shadowColor * @see #TextAppearance_android_shadowDx * @see #TextAppearance_android_shadowDy * @see #TextAppearance_android_shadowRadius * @see #TextAppearance_android_fontFamily * @see #TextAppearance_fontFamily * @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance={ 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020074, 0x7f0200dc }; /** * <p>This symbol is the offset where the {@link android.R.attr#textSize} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:textSize */ public static final int TextAppearance_android_textSize=0; /** * <p>This symbol is the offset where the {@link android.R.attr#typeface} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>monospace</td><td>3</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>sans</td><td>1</td><td></td></tr> * <tr><td>serif</td><td>2</td><td></td></tr> * </table> * * @attr name android:typeface */ public static final int TextAppearance_android_typeface=1; /** * <p>This symbol is the offset where the {@link android.R.attr#textStyle} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bold</td><td>1</td><td></td></tr> * <tr><td>italic</td><td>2</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:textStyle */ public static final int TextAppearance_android_textStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#textColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColor */ public static final int TextAppearance_android_textColor=3; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint=4; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorLink} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink=5; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor=6; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDx} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx=7; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDy} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy=8; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius=9; /** * <p>This symbol is the offset where the {@link android.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily=10; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.dialogspinner:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * Attributes that can be used with a Toolbar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_buttonGravity com.example.dialogspinner:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.dialogspinner:collapseContentDescription}</code></td><td>Text to set as the content description for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.example.dialogspinner:collapseIcon}</code></td><td>Icon drawable to use for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.dialogspinner:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.dialogspinner:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.dialogspinner:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.example.dialogspinner:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.example.dialogspinner:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.dialogspinner:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #Toolbar_logo com.example.dialogspinner:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.example.dialogspinner:logoDescription}</code></td><td>A content description string to describe the appearance of the * associated logo image.</td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.dialogspinner:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.dialogspinner:navigationContentDescription}</code></td><td>Text to set as the content description for the navigation button * located at the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.example.dialogspinner:navigationIcon}</code></td><td>Icon drawable to use for the navigation button located at * the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.example.dialogspinner:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.example.dialogspinner:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.dialogspinner:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.dialogspinner:subtitleTextColor}</code></td><td>A color to apply to the subtitle string.</td></tr> * <tr><td><code>{@link #Toolbar_title com.example.dialogspinner:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.example.dialogspinner:titleMargin}</code></td><td>Specifies extra space on the left, start, right and end sides * of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.dialogspinner:titleMarginBottom}</code></td><td>Specifies extra space on the bottom side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.dialogspinner:titleMarginEnd}</code></td><td>Specifies extra space on the end side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.example.dialogspinner:titleMarginStart}</code></td><td>Specifies extra space on the start side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.example.dialogspinner:titleMarginTop}</code></td><td>Specifies extra space on the top side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.example.dialogspinner:titleMargins}</code></td><td>{@deprecated Use titleMargin}</td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.dialogspinner:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.example.dialogspinner:titleTextColor}</code></td><td>A color to apply to the title string.</td></tr> * </table> * @see #Toolbar_android_gravity * @see #Toolbar_android_minHeight * @see #Toolbar_buttonGravity * @see #Toolbar_collapseContentDescription * @see #Toolbar_collapseIcon * @see #Toolbar_contentInsetEnd * @see #Toolbar_contentInsetEndWithActions * @see #Toolbar_contentInsetLeft * @see #Toolbar_contentInsetRight * @see #Toolbar_contentInsetStart * @see #Toolbar_contentInsetStartWithNavigation * @see #Toolbar_logo * @see #Toolbar_logoDescription * @see #Toolbar_maxButtonHeight * @see #Toolbar_navigationContentDescription * @see #Toolbar_navigationIcon * @see #Toolbar_popupTheme * @see #Toolbar_subtitle * @see #Toolbar_subtitleTextAppearance * @see #Toolbar_subtitleTextColor * @see #Toolbar_title * @see #Toolbar_titleMargin * @see #Toolbar_titleMarginBottom * @see #Toolbar_titleMarginEnd * @see #Toolbar_titleMarginStart * @see #Toolbar_titleMarginTop * @see #Toolbar_titleMargins * @see #Toolbar_titleTextAppearance * @see #Toolbar_titleTextColor */ @Deprecated public static final int[] Toolbar={ 0x010100af, 0x01010140, 0x7f02003d, 0x7f020048, 0x7f020049, 0x7f020057, 0x7f020058, 0x7f020059, 0x7f02005a, 0x7f02005b, 0x7f02005c, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a7, 0x7f0200a8, 0x7f0200b4, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, 0x7f0200f4, 0x7f0200f5, 0x7f0200f6, 0x7f0200f7, 0x7f0200f8, 0x7f0200f9 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int Toolbar_android_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int Toolbar_android_minHeight=1; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#buttonGravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name com.example.dialogspinner:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p> * @attr description * Text to set as the content description for the collapse button. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p> * @attr description * Icon drawable to use for the collapse button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p> * @attr description * Drawable to set as the logo that appears at the starting side of * the Toolbar, just after the navigation button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:logo */ public static final int Toolbar_logo=11; /** * <p> * @attr description * A content description string to describe the appearance of the * associated logo image. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#maxButtonHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p> * @attr description * Text to set as the content description for the navigation button * located at the start of the toolbar. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p> * @attr description * Icon drawable to use for the navigation button located at * the start of the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#subtitleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p> * @attr description * A color to apply to the subtitle string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#title} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.dialogspinner:title */ public static final int Toolbar_title=20; /** * <p> * @attr description * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p> * @attr description * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p> * @attr description * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p> * @attr description * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p> * @attr description * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p> * @attr description * {@deprecated Use titleMargin} * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:titleMargins */ @Deprecated public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link com.example.dialogspinner.R.attr#titleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p> * @attr description * A color to apply to the title string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:titleTextColor */ public static final int Toolbar_titleTextColor=28; /** * Attributes that can be used with a View. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> * <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingEnd com.example.dialogspinner:paddingEnd}</code></td><td>Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_paddingStart com.example.dialogspinner:paddingStart}</code></td><td>Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_theme com.example.dialogspinner:theme}</code></td><td>Deprecated.</td></tr> * </table> * @see #View_android_theme * @see #View_android_focusable * @see #View_paddingEnd * @see #View_paddingStart * @see #View_theme */ public static final int[] View={ 0x01010000, 0x010100da, 0x7f0200ad, 0x7f0200ae, 0x7f0200e7 }; /** * <p> * @attr description * Specifies a theme override for a view. When a theme override is set, the * view will be inflated using a {@link android.content.Context} themed with * the specified resource. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:theme */ public static final int View_android_theme=0; /** * <p> * @attr description * Boolean that controls whether a view can take focus. By default the user can not * move focus to a view; by setting this attribute to true the view is * allowed to take focus. This value does not impact the behavior of * directly calling {@link android.view.View#requestFocus}, which will * always request focus regardless of this view. It only impacts where * focus navigation will try to move focus. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int View_android_focusable=1; /** * <p> * @attr description * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:paddingEnd */ public static final int View_paddingEnd=2; /** * <p> * @attr description * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.dialogspinner:paddingStart */ public static final int View_paddingStart=3; /** * <p> * @attr description * Deprecated. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.dialogspinner:theme */ public static final int View_theme=4; /** * Attributes that can be used with a ViewBackgroundHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.example.dialogspinner:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.dialogspinner:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f020034, 0x7f020035 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int ViewBackgroundHelper_android_background=0; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.dialogspinner:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.example.dialogspinner:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode=2; /** * Attributes that can be used with a ViewStubCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> * </table> * @see #ViewStubCompat_android_id * @see #ViewStubCompat_android_layout * @see #ViewStubCompat_android_inflatedId */ public static final int[] ViewStubCompat={ 0x010100d0, 0x010100f2, 0x010100f3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ViewStubCompat_android_id=0; /** * <p> * @attr description * Supply an identifier for the layout resource to inflate when the ViewStub * becomes visible or when forced to do so. The layout resource must be a * valid reference to a layout. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int ViewStubCompat_android_layout=1; /** * <p> * @attr description * Overrides the id of the inflated View with this value. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId=2; } }
[ "CapRobin@yeah.net" ]
CapRobin@yeah.net
56e71bff9cdc9fd188425109f3d9f2aac9138b7c
1d928c3f90d4a0a9a3919a804597aa0a4aab19a3
/java/neo4j/2018/4/DbStructureVisitor.java
5b5fc716bb9120a335ef8a890e45a56074ac9d9e
[]
no_license
rosoareslv/SED99
d8b2ff5811e7f0ffc59be066a5a0349a92cbb845
a062c118f12b93172e31e8ca115ce3f871b64461
refs/heads/main
2023-02-22T21:59:02.703005
2021-01-28T19:40:51
2021-01-28T19:40:51
306,497,459
1
1
null
2020-11-24T20:56:18
2020-10-23T01:18:07
null
UTF-8
Java
false
false
2,274
java
/* * Copyright (c) 2002-2018 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * Neo4j is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.neo4j.kernel.impl.util.dbstructure; import org.neo4j.kernel.api.schema.constaints.NodeExistenceConstraintDescriptor; import org.neo4j.kernel.api.schema.constaints.NodeKeyConstraintDescriptor; import org.neo4j.kernel.api.schema.constaints.RelExistenceConstraintDescriptor; import org.neo4j.kernel.api.schema.constaints.UniquenessConstraintDescriptor; import org.neo4j.kernel.api.schema.index.SchemaIndexDescriptor; public interface DbStructureVisitor { void visitLabel( int labelId, String labelName ); void visitPropertyKey( int propertyKeyId, String propertyKeyName ); void visitRelationshipType( int relTypeId, String relTypeName ); void visitIndex( SchemaIndexDescriptor descriptor, String userDescription, double uniqueValuesPercentage, long size ); void visitUniqueConstraint( UniquenessConstraintDescriptor constraint, String userDescription ); void visitNodePropertyExistenceConstraint( NodeExistenceConstraintDescriptor constraint, String userDescription ); void visitRelationshipPropertyExistenceConstraint( RelExistenceConstraintDescriptor constraint, String userDescription ); void visitNodeKeyConstraint( NodeKeyConstraintDescriptor constraint, String userDescription ); void visitAllNodesCount( long nodeCount ); void visitNodeCount( int labelId, String labelName, long nodeCount ); void visitRelCount( int startLabelId, int relTypeId, int endLabelId, String relCountQuery, long relCount ); }
[ "rodrigosoaresilva@gmail.com" ]
rodrigosoaresilva@gmail.com
ee3bb261ddbdc0bec3a31ac9037c9b1defa10038
e49cafc42823971c6e4aa3fdc327a564abfc01f1
/src/main/java/hachi/javaplayground/newJava8/RunSomthing.java
261ab48902db5eeaca55a0caffe37ca2794f0fd0
[]
no_license
eojin312/java-playground
deb0f42fac48465b30f87a9af799bd6baecc6934
9d573886aebf4e0a2d72c22f46d73caefd6220fd
refs/heads/master
2021-09-22T22:05:46.229062
2021-09-12T10:13:22
2021-09-12T10:13:22
237,970,841
0
0
null
null
null
null
UTF-8
Java
false
false
116
java
package hachi.javaplayground.newJava8; @FunctionalInterface public interface RunSomthing { void printAge(); }
[ "ejlee@hanatour.com" ]
ejlee@hanatour.com
eda1d65510528ae228132e35e1c2eafc9886ea7f
4fbc4b96e13ae6dffe484e8844384bbd9cabe214
/app/src/main/java/com/example/brahma/yummybot/RestaurantDownloadJsonAsyncTask.java
8307e00ad0706d1fa519918fa4546da21eab4510
[]
no_license
brahmachaithanya/YummyBot
a61e5ba605e42b4cc766c65c60bbe12e027bb159
addf1d535d6b954393435e0a583d2458fcb241d4
refs/heads/master
2021-01-01T06:48:04.132497
2017-11-03T02:48:32
2017-11-03T02:48:32
97,518,612
1
0
null
null
null
null
UTF-8
Java
false
false
2,570
java
package com.example.brahma.yummybot; import android.os.AsyncTask; import android.util.Log; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; public class RestaurantDownloadJsonAsyncTask extends AsyncTask<String, Void, RestaurantDataJson> { private APIListener listener; public RestaurantDownloadJsonAsyncTask(APIListener listener) { this.listener = listener; } protected void onPreExecute() { super.onPreExecute(); this.listener.onStartlisten(); } protected RestaurantDataJson doInBackground(String... urls) { RestaurantDataJson threadMovieData = new RestaurantDataJson(); for (String url : urls) { String server = MyUtility.downloadJSONusingHTTPGetRequest(url); if (server != null) { try { //JSONArray addmovie = new JSONArray(server); JSONObject responseCuisines = new JSONObject(server); JSONArray addmovie = responseCuisines.getJSONArray("restaurants"); if (addmovie == null) { Log.d("Test", "res"); } for (int i = 0; i < addmovie.length(); i++) { JSONObject newpart = addmovie.getJSONObject(i).getJSONObject("restaurant"); //JSONObject newpart_loc = addmovie.getJSONObject(i).getJSONObject("location"); String addname = newpart.getString("name"); String addstreetAddress = newpart.getJSONObject("location").getString("address"); String addcity = newpart.getJSONObject("location").getString("city"); String addzip = newpart.getJSONObject("location").getString("zipcode"); String addlat = newpart.getJSONObject("location").getString("latitude"); String addlong = newpart.getJSONObject("location").getString("longitude"); threadMovieData.restaurantList.add(i, threadMovieData.createRestaurant(addname,addstreetAddress,addcity,addzip,addlat,addlong)); } } catch (JSONException exception) { exception.printStackTrace(); this.listener.onFailure(); } } } return threadMovieData; } protected void onPostExecute(RestaurantDataJson threadMovieData) { this.listener.onSuccess(threadMovieData); } }
[ "brahmachaithanya@gmail.com" ]
brahmachaithanya@gmail.com
45fdfec2b2bc8f5f497aa5650114c111ec126cb5
84e75a15bcd0eec085814a94e965270cf1ced8ca
/discovery-plugin-strategy/discovery-plugin-strategy-starter/src/main/java/com/nepxion/discovery/plugin/strategy/aop/FeignStrategyInterceptor.java
954c789caf7110f04720a8c25e85eebe84372d06
[ "Apache-2.0" ]
permissive
gilbertguan2385/Discovery
685c5b1cf669b8476249e65c305ab3a28d5b78a4
de2de61b42c2f4c0ad029fcc22490c42a1c88328
refs/heads/master
2023-03-09T00:41:57.556990
2023-02-03T12:51:35
2023-02-03T12:51:35
165,604,607
0
0
Apache-2.0
2019-01-14T06:07:15
2019-01-14T06:07:15
null
UTF-8
Java
false
false
12,226
java
package com.nepxion.discovery.plugin.strategy.aop; /** * <p>Title: Nepxion Discovery</p> * <p>Description: Nepxion Discovery</p> * <p>Copyright: Copyright (c) 2017-2050</p> * <p>Company: Nepxion</p> * @author Haojun Ren * @author Fengfeng Li * @version 1.0 */ import feign.RequestInterceptor; import feign.RequestTemplate; import java.util.Collection; import java.util.Enumeration; import java.util.Map; import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import com.nepxion.discovery.common.constant.DiscoveryConstant; import com.nepxion.discovery.common.entity.InterceptorType; import com.nepxion.discovery.plugin.strategy.constant.StrategyConstant; import com.nepxion.discovery.plugin.strategy.context.StrategyContextHolder; import com.nepxion.discovery.plugin.strategy.util.StrategyUtil; public class FeignStrategyInterceptor extends AbstractStrategyInterceptor implements RequestInterceptor { private static final Logger LOG = LoggerFactory.getLogger(FeignStrategyInterceptor.class); @Autowired protected StrategyContextHolder strategyContextHolder; // Feign上核心策略Header是否传递。当全局订阅启动时,可以关闭核心策略Header传递,这样可以节省传递数据的大小,一定程度上可以提升性能 // 核心策略Header指n-d-开头的Header(不包括n-d-env,因为环境路由隔离,必须传递该Header),不包括n-d-service开头的Header @Value("${" + StrategyConstant.SPRING_APPLICATION_STRATEGY_FEIGN_CORE_HEADER_TRANSMISSION_ENABLED + ":true}") protected Boolean feignCoreHeaderTransmissionEnabled; @Override public void apply(RequestTemplate requestTemplate) { // 拦截打印输入的Header interceptInputHeader(); // 处理内部Header的转发 applyInnerHeader(requestTemplate); // 处理外部Header的转发 applyOuterHeader(requestTemplate); // 拦截打印输出的Header interceptOutputHeader(requestTemplate); } // 处理内部Header的转发,即把本地服务的相关属性封装成Header转发到下游服务去 private void applyInnerHeader(RequestTemplate requestTemplate) { requestTemplate.header(DiscoveryConstant.N_D_SERVICE_GROUP, pluginAdapter.getGroup()); requestTemplate.header(DiscoveryConstant.N_D_SERVICE_TYPE, pluginAdapter.getServiceType()); String serviceAppId = pluginAdapter.getServiceAppId(); if (StringUtils.isNotEmpty(serviceAppId)) { requestTemplate.header(DiscoveryConstant.N_D_SERVICE_APP_ID, serviceAppId); } requestTemplate.header(DiscoveryConstant.N_D_SERVICE_ID, pluginAdapter.getServiceId()); requestTemplate.header(DiscoveryConstant.N_D_SERVICE_ADDRESS, pluginAdapter.getHost() + ":" + pluginAdapter.getPort()); String version = pluginAdapter.getVersion(); if (StringUtils.isNotEmpty(version) && !StringUtils.equals(version, DiscoveryConstant.DEFAULT)) { requestTemplate.header(DiscoveryConstant.N_D_SERVICE_VERSION, version); } String region = pluginAdapter.getRegion(); if (StringUtils.isNotEmpty(region) && !StringUtils.equals(region, DiscoveryConstant.DEFAULT)) { requestTemplate.header(DiscoveryConstant.N_D_SERVICE_REGION, region); } String environment = pluginAdapter.getEnvironment(); if (StringUtils.isNotEmpty(environment) && !StringUtils.equals(environment, DiscoveryConstant.DEFAULT)) { requestTemplate.header(DiscoveryConstant.N_D_SERVICE_ENVIRONMENT, environment); } String zone = pluginAdapter.getZone(); if (StringUtils.isNotEmpty(zone) && !StringUtils.equals(zone, DiscoveryConstant.DEFAULT)) { requestTemplate.header(DiscoveryConstant.N_D_SERVICE_ZONE, zone); } } // 处理外部Header的转发,即外部服务传递过来的Header,中继转发到下游服务去 private void applyOuterHeader(RequestTemplate requestTemplate) { Enumeration<String> headerNames = strategyContextHolder.getHeaderNames(); if (headerNames != null) { while (headerNames.hasMoreElements()) { String headerName = headerNames.nextElement(); String headerValue = strategyContextHolder.getHeader(headerName); boolean isHeaderContains = isHeaderContainsExcludeInner(headerName.toLowerCase()); if (isHeaderContains) { if (feignCoreHeaderTransmissionEnabled) { requestTemplate.header(headerName, headerValue); } else { boolean isCoreHeaderContains = StrategyUtil.isCoreHeaderContains(headerName); if (!isCoreHeaderContains) { requestTemplate.header(headerName, headerValue); } } } } } if (feignCoreHeaderTransmissionEnabled) { Map<String, Collection<String>> headers = requestTemplate.headers(); if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_VERSION))) { String routeVersion = strategyContextHolder.getRouteVersion(); if (StringUtils.isNotEmpty(routeVersion)) { requestTemplate.header(DiscoveryConstant.N_D_VERSION, routeVersion); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_REGION))) { String routeRegion = strategyContextHolder.getRouteRegion(); if (StringUtils.isNotEmpty(routeRegion)) { requestTemplate.header(DiscoveryConstant.N_D_REGION, routeRegion); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ENVIRONMENT))) { String routeEnvironment = strategyContextHolder.getRouteEnvironment(); if (StringUtils.isNotEmpty(routeEnvironment)) { requestTemplate.header(DiscoveryConstant.N_D_ENVIRONMENT, routeEnvironment); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ADDRESS))) { String routeAddress = strategyContextHolder.getRouteAddress(); if (StringUtils.isNotEmpty(routeAddress)) { requestTemplate.header(DiscoveryConstant.N_D_ADDRESS, routeAddress); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_VERSION_WEIGHT))) { String routeVersionWeight = strategyContextHolder.getRouteVersionWeight(); if (StringUtils.isNotEmpty(routeVersionWeight)) { requestTemplate.header(DiscoveryConstant.N_D_VERSION_WEIGHT, routeVersionWeight); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_REGION_WEIGHT))) { String routeRegionWeight = strategyContextHolder.getRouteRegionWeight(); if (StringUtils.isNotEmpty(routeRegionWeight)) { requestTemplate.header(DiscoveryConstant.N_D_REGION_WEIGHT, routeRegionWeight); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_VERSION_PREFER))) { String routeVersionPrefer = strategyContextHolder.getRouteVersionPrefer(); if (StringUtils.isNotEmpty(routeVersionPrefer)) { requestTemplate.header(DiscoveryConstant.N_D_VERSION_PREFER, routeVersionPrefer); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_VERSION_FAILOVER))) { String routeVersionFailover = strategyContextHolder.getRouteVersionFailover(); if (StringUtils.isNotEmpty(routeVersionFailover)) { requestTemplate.header(DiscoveryConstant.N_D_VERSION_FAILOVER, routeVersionFailover); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_REGION_TRANSFER))) { String routeRegionTransfer = strategyContextHolder.getRouteRegionTransfer(); if (StringUtils.isNotEmpty(routeRegionTransfer)) { requestTemplate.header(DiscoveryConstant.N_D_REGION_TRANSFER, routeRegionTransfer); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_REGION_FAILOVER))) { String routeRegionFailover = strategyContextHolder.getRouteRegionFailover(); if (StringUtils.isNotEmpty(routeRegionFailover)) { requestTemplate.header(DiscoveryConstant.N_D_REGION_FAILOVER, routeRegionFailover); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ENVIRONMENT_FAILOVER))) { String routeEnvironmentFailover = strategyContextHolder.getRouteEnvironmentFailover(); if (StringUtils.isNotEmpty(routeEnvironmentFailover)) { requestTemplate.header(DiscoveryConstant.N_D_ENVIRONMENT_FAILOVER, routeEnvironmentFailover); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ZONE_FAILOVER))) { String routeZoneFailover = strategyContextHolder.getRouteZoneFailover(); if (StringUtils.isNotEmpty(routeZoneFailover)) { requestTemplate.header(DiscoveryConstant.N_D_ZONE_FAILOVER, routeZoneFailover); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ADDRESS_FAILOVER))) { String routeAddressFailover = strategyContextHolder.getRouteAddressFailover(); if (StringUtils.isNotEmpty(routeAddressFailover)) { requestTemplate.header(DiscoveryConstant.N_D_ADDRESS_FAILOVER, routeAddressFailover); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ID_BLACKLIST))) { String routeIdBlacklist = strategyContextHolder.getRouteIdBlacklist(); if (StringUtils.isNotEmpty(routeIdBlacklist)) { requestTemplate.header(DiscoveryConstant.N_D_ID_BLACKLIST, routeIdBlacklist); } } if (CollectionUtils.isEmpty(headers.get(DiscoveryConstant.N_D_ADDRESS_BLACKLIST))) { String routeAddressBlacklist = strategyContextHolder.getRouteAddressBlacklist(); if (StringUtils.isNotEmpty(routeAddressBlacklist)) { requestTemplate.header(DiscoveryConstant.N_D_ADDRESS_BLACKLIST, routeAddressBlacklist); } } } } private void interceptOutputHeader(RequestTemplate requestTemplate) { if (!interceptDebugEnabled) { return; } StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("\n"); stringBuilder.append("-------- Feign Intercept Output Header Information ---------").append("\n"); Map<String, Collection<String>> headers = requestTemplate.headers(); for (Map.Entry<String, Collection<String>> entry : headers.entrySet()) { String headerName = entry.getKey(); boolean isHeaderContains = isHeaderContains(headerName.toLowerCase()); if (isHeaderContains) { Collection<String> headerValue = entry.getValue(); stringBuilder.append(headerName + "=" + headerValue).append("\n"); } } stringBuilder.append("------------------------------------------------------------"); LOG.info(stringBuilder.toString()); } @Override protected InterceptorType getInterceptorType() { return InterceptorType.FEIGN; } @Override protected Logger getInterceptorLogger() { return LOG; } }
[ "1394997@qq.com" ]
1394997@qq.com
494f07569e6d3194e2974433b6c1b5d1e5efa584
5c7ccd4671de1db3cbe0060ea0afe3ce661b0d16
/src/main/java/com/mmall/dao/OrderItemMapper.java
af323fe5f18f82b8fcea5996edbc96076218ca28
[]
no_license
xi329/Shopping
a9ea364d2a45e288a4c2c68d9464f0febf9e243c
ef2cc6f2ed5cf6bc45feb0688a66717b10b53118
refs/heads/master
2021-01-21T12:16:12.788712
2017-06-01T11:37:05
2017-06-01T11:37:05
91,784,881
0
0
null
2017-06-01T02:27:20
2017-05-19T08:37:09
Java
UTF-8
Java
false
false
704
java
package com.mmall.dao; import com.mmall.pojo.OrderItem; import org.apache.ibatis.annotations.Param; import java.util.List; public interface OrderItemMapper { int deleteByPrimaryKey(Integer id); int insert(OrderItem record); int insertSelective(OrderItem record); OrderItem selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(OrderItem record); int updateByPrimaryKey(OrderItem record); List<OrderItem> getByOrderNoUserId(@Param("orderNo")Long orderNo, @Param("userId")Integer userId); void batchInsert(@Param("orderItemList") List<OrderItem> orderItemList); List<OrderItem> getByOrderNo(@Param("orderNo")Long orderNo); }
[ "501271665@qq.com" ]
501271665@qq.com
ab8bdfdee5b14f17fa7b60ed9978b48a67b426ad
392c1a87c74be309849f92d34cee7e7afd8c3261
/EBazaar/business/externalinterfaces/IRules.java
326021f4864e70e022cad7a1126c1e2ac05f64d3
[]
no_license
avishekworld/ebazaar
999aa9abb8f75560d0f5a6238c8b5d1ce662cfe2
b7c6fa74e0865a3d6d47f3ead66c609c366b4c4d
refs/heads/master
2020-12-25T14:13:18.682950
2016-10-23T22:42:57
2016-10-23T22:42:57
67,876,213
1
0
null
null
null
null
UTF-8
Java
false
false
464
java
package business.externalinterfaces; import java.util.*; import business.RuleException; import middleware.EBazaarException; public interface IRules { String getModuleName(); String getRulesFile(); void prepareData(); HashMap<String,DynamicBean> getTable(); void runRules() throws EBazaarException, RuleException; void populateEntities(List<String> updates); //updates are placed in a List -- object types may vary List getUpdates(); }
[ "avishek.ahmed@gmail.com" ]
avishek.ahmed@gmail.com
daae1e78e8ffc68695599e075f74358076c2f5a5
440ef423f4456cf6f00f15bae9b5cdfb21301709
/src/main/java/com/techtouhid/springcrud/SpringCrudApplication.java
691d529bcc03f15ba4121a1e49d4f1bdca4d468a
[]
no_license
TechTouhid/SpringBootCrud
9b63cc20202e4f1d9975d568b2b8781e3900bd63
88059c40fc00414e2d397e3f7186277914b61adf
refs/heads/main
2023-05-05T04:05:07.321896
2021-05-28T19:43:00
2021-05-28T19:43:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
338
java
package com.techtouhid.springcrud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SpringCrudApplication { public static void main(String[] args) { SpringApplication.run(SpringCrudApplication.class, args); } }
[ "touhidalamin123@gmail.com" ]
touhidalamin123@gmail.com
ccc5f1af64b2fed59a84c24007a11508a7fa4901
e1e7d156796b74f0f5f7f84d1baec54df32a694d
/src/main/java/com/example/other/CalcLogic.java
2a590c8f43b47d11caae2fd353aeb86b627826db
[]
no_license
KAZUYA215074/di-sample
24bf097b96f136878723f72051feb2da2dfa0f09
2e9605683d2eb76cf8a00e6f2fd3007a7d9119d9
refs/heads/master
2020-06-05T12:23:52.688571
2019-06-18T00:40:32
2019-06-18T00:40:32
192,438,099
0
0
null
null
null
null
UTF-8
Java
false
false
372
java
package com.example.other; import org.springframework.stereotype.Component; @Component public class CalcLogic { public int add(int num1, int num2) { return num1 + num2; } public int sub(int num1, int num2) { return num1 - num2; } public int multi(int num1, int num2) { return num1 * num2; } public int div(int num1, int num2) { return num1 / num2; } }
[ "nrtgntm@me.com" ]
nrtgntm@me.com
cae7a22c728b559e67495eca5f63313c6151be92
bb6a1872f52d62f933999a3f4ba8cc3c88125be7
/src/main/java/com/tvs/sms/security/jwt/AuthEntryPointJwt.java
61d63fb7b6713487d693513a7ec897c5a5508523
[]
no_license
thiruvensan/RecipeManagementApp
1d9fb37fcf1e0b71aca41455cb789224b023f940
5a864d9fd04acf0e1710ff2d601cb53eb34248cf
refs/heads/master
2022-10-22T06:07:03.031685
2020-06-18T13:31:28
2020-06-18T13:31:28
273,170,553
0
0
null
2020-06-18T13:32:25
2020-06-18T07:26:54
Java
UTF-8
Java
false
false
913
java
package com.tvs.sms.security.jwt; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.security.core.AuthenticationException; import org.springframework.security.web.AuthenticationEntryPoint; import org.springframework.stereotype.Component; @Component public class AuthEntryPointJwt implements AuthenticationEntryPoint { private static final Logger logger = LoggerFactory.getLogger(AuthEntryPointJwt.class); @Override public void commence(HttpServletRequest arg0, HttpServletResponse arg1, AuthenticationException arg2) throws IOException, ServletException { logger.error("Unauthorized error: {}", arg2.getMessage()); arg1.sendError(HttpServletResponse.SC_UNAUTHORIZED, "Error: Unauthorized"); } }
[ "makechange1997@gmail.com" ]
makechange1997@gmail.com
bba77b998af644f6849c87ba93ef2beb9404d6fc
cf73b0c9f93a0a96f8f676b42c8e2a6016822b05
/protocol/src/main/java/io/atomix/copycat/client/request/KeepAliveRequest.java
465f58b8ace88e91717c519ec3f10577670b29ad
[ "Apache-2.0" ]
permissive
moyun/copycat
2a09b8456bf2d313173df10bb805bb092b908273
59be863d31c30f7df9d47a105bc175e3a44256a9
refs/heads/master
2021-01-21T15:26:50.273978
2015-09-29T09:13:45
2015-09-29T09:13:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,901
java
/* * Copyright 2015 the original author or authors. * * 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 io.atomix.copycat.client.request; import io.atomix.catalyst.buffer.BufferInput; import io.atomix.catalyst.buffer.BufferOutput; import io.atomix.catalyst.serializer.SerializeWith; import io.atomix.catalyst.serializer.Serializer; import io.atomix.catalyst.util.Assert; import io.atomix.catalyst.util.BuilderPool; import io.atomix.catalyst.util.ReferenceManager; import java.util.Objects; /** * Protocol keep alive request. * * @author <a href="http://github.com/kuujo">Jordan Halterman</a> */ @SerializeWith(id=262) public class KeepAliveRequest extends SessionRequest<KeepAliveRequest> { private static final BuilderPool<Builder, KeepAliveRequest> POOL = new BuilderPool<>(Builder::new); /** * Returns a new keep alive request builder. * * @return A new keep alive request builder. */ public static Builder builder() { return POOL.acquire(); } /** * Returns a keep alive request builder for an existing request. * * @param request The request to build. * @return The keep alive request builder. * @throws NullPointerException if {@code request} is null */ public static Builder builder(KeepAliveRequest request) { return POOL.acquire(Assert.notNull(request, "request")); } private long commandSequence; private long eventVersion; private long eventSequence; /** * @throws NullPointerException if {@code referenceManager} is null */ public KeepAliveRequest(ReferenceManager<KeepAliveRequest> referenceManager) { super(referenceManager); } /** * Returns the command sequence number. * * @return The command sequence number. */ public long commandSequence() { return commandSequence; } /** * Returns the event version number. * * @return The event version number. */ public long eventVersion() { return eventVersion; } /** * Returns the event sequence number. * * @return The event sequence number. */ public long eventSequence() { return eventSequence; } @Override public void readObject(BufferInput buffer, Serializer serializer) { super.readObject(buffer, serializer); commandSequence = buffer.readLong(); eventVersion = buffer.readLong(); eventSequence = buffer.readLong(); } @Override public void writeObject(BufferOutput buffer, Serializer serializer) { super.writeObject(buffer, serializer); buffer.writeLong(commandSequence); buffer.writeLong(eventVersion); buffer.writeLong(eventSequence); } @Override public int hashCode() { return Objects.hash(getClass(), session, commandSequence); } @Override public boolean equals(Object object) { if (object instanceof KeepAliveRequest) { KeepAliveRequest request = (KeepAliveRequest) object; return request.session == session && request.commandSequence == commandSequence && request.eventVersion == eventVersion && request.eventSequence == eventSequence; } return false; } @Override public String toString() { return String.format("%s[session=%d, commandSequence=%d, eventVersion=%d, eventSequence=%d]", getClass().getSimpleName(), session, commandSequence, eventVersion, eventSequence); } /** * Keep alive request builder. */ public static class Builder extends SessionRequest.Builder<Builder, KeepAliveRequest> { /** * @throws NullPointerException if {@code pool} is null */ protected Builder(BuilderPool<Builder, KeepAliveRequest> pool) { super(pool, KeepAliveRequest::new); } @Override protected void reset() { super.reset(); request.commandSequence = 0; request.eventVersion = 0; request.eventSequence = 0; } /** * Sets the command sequence number. * * @param commandSequence The command sequence number. * @return The request builder. * @throws IllegalArgumentException if {@code commandSequence} is less than 0 */ public Builder withCommandSequence(long commandSequence) { request.commandSequence = Assert.argNot(commandSequence, commandSequence < 0, "commandSequence cannot be negative"); return this; } /** * Sets the event version number. * * @param eventVersion The event version number. * @return The request builder. * @throws IllegalArgumentException if {@code eventVersion} is less than 0 */ public Builder withEventVersion(long eventVersion) { request.eventVersion = Assert.argNot(eventVersion, eventVersion < 0, "eventSequence cannot be negative"); return this; } /** * Sets the event sequence number. * * @param eventSequence The event sequence number. * @return The request builder. * @throws IllegalArgumentException if {@code eventSequence} is less than 0 */ public Builder withEventSequence(long eventSequence) { request.eventSequence = Assert.argNot(eventSequence, eventSequence < 0, "eventSequence cannot be negative"); return this; } /** * @throws IllegalStateException is session is not positive */ @Override public KeepAliveRequest build() { super.build(); Assert.state(request.session > 0, "session must be positive"); return request; } } }
[ "jordan.halterman@gmail.com" ]
jordan.halterman@gmail.com
fa0a40a8e156e80a4226cac2111c3672c4cd71b4
6cae5b4a2e67841d09332c618a936c8ab3e0baa4
/aws-java-sdk-servicecatalog/src/main/java/com/amazonaws/services/servicecatalog/model/transform/ListPortfoliosForProductResultJsonUnmarshaller.java
5f59c888c5494baa37646b6c5b1a26b475bd4a7b
[ "Apache-2.0" ]
permissive
Carey-AWS/aws-sdk-java
1acf693c1c10b2a16d25e80225c00a4e2c303ca9
77b9d46aa281e2db7134e743337f98509029cd3d
refs/heads/master
2022-11-09T01:24:59.030331
2020-06-22T20:55:41
2020-06-22T20:55:41
274,238,406
0
0
Apache-2.0
2020-06-22T20:44:55
2020-06-22T20:44:54
null
UTF-8
Java
false
false
3,311
java
/* * Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.servicecatalog.model.transform; import java.math.*; import javax.annotation.Generated; import com.amazonaws.services.servicecatalog.model.*; import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*; import com.amazonaws.transform.*; import com.fasterxml.jackson.core.JsonToken; import static com.fasterxml.jackson.core.JsonToken.*; /** * ListPortfoliosForProductResult JSON Unmarshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ListPortfoliosForProductResultJsonUnmarshaller implements Unmarshaller<ListPortfoliosForProductResult, JsonUnmarshallerContext> { public ListPortfoliosForProductResult unmarshall(JsonUnmarshallerContext context) throws Exception { ListPortfoliosForProductResult listPortfoliosForProductResult = new ListPortfoliosForProductResult(); int originalDepth = context.getCurrentDepth(); String currentParentElement = context.getCurrentParentElement(); int targetDepth = originalDepth + 1; JsonToken token = context.getCurrentToken(); if (token == null) token = context.nextToken(); if (token == VALUE_NULL) { return listPortfoliosForProductResult; } while (true) { if (token == null) break; if (token == FIELD_NAME || token == START_OBJECT) { if (context.testExpression("PortfolioDetails", targetDepth)) { context.nextToken(); listPortfoliosForProductResult.setPortfolioDetails(new ListUnmarshaller<PortfolioDetail>(PortfolioDetailJsonUnmarshaller.getInstance()) .unmarshall(context)); } if (context.testExpression("NextPageToken", targetDepth)) { context.nextToken(); listPortfoliosForProductResult.setNextPageToken(context.getUnmarshaller(String.class).unmarshall(context)); } } else if (token == END_ARRAY || token == END_OBJECT) { if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) { if (context.getCurrentDepth() <= originalDepth) break; } } token = context.nextToken(); } return listPortfoliosForProductResult; } private static ListPortfoliosForProductResultJsonUnmarshaller instance; public static ListPortfoliosForProductResultJsonUnmarshaller getInstance() { if (instance == null) instance = new ListPortfoliosForProductResultJsonUnmarshaller(); return instance; } }
[ "" ]
0e8b7c2f3be8f9b04d81aa2c30069506bc54a3f1
c6fc0e9a437958bc0fe7ba48935fa9911fd7d523
/Client/src/org/client/SerializeController.java
42cfef2b0f18cbc02c9625886d004d3a2514bf0b
[]
no_license
KingIsulgard/Java-Cloud-Computing-Auto-Scaling-Servers
ec1b9bcd3b7a939bfa88c433781476052c9d1642
dd80efa46a6b4b791c74f6ef95e48ad58b53aff3
refs/heads/master
2021-01-10T21:00:13.991697
2015-03-25T15:31:48
2015-03-25T15:31:48
32,870,715
0
0
null
null
null
null
UTF-8
Java
false
false
682
java
package org.client; import java.io.*; import org.client.SimpleRunnable; import org.apache.commons.codec.DecoderException; import org.apache.commons.codec.binary.Hex; /* * Deze klasse wordt gebruikt voor het serializeren van SimpleRunnable objecten voor te versturen naar de load balancer. */ public class SerializeController { public static String serialize(SimpleRunnable object) throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(baos); oos.writeObject(object); oos.flush(); byte[] bytes = baos.toByteArray(); char[] chars = Hex.encodeHex(bytes); return new String(chars); } }
[ "gilles.Lesire@gmail.com" ]
gilles.Lesire@gmail.com
6cbd2ed521898d3c37df8dd2241073137d799101
f6539477076aad7a37a18915531f6cae701d0484
/java/config/config-service-client/src/main/java/org/nhind/config/provider/DefaultRESTServiceProvider.java
ade378d2aa77b3d12a2a6a6b6b9daec509e4cabc
[]
no_license
ssavarala/nhin-d
bf3a4f4773479875972fb52f4b3aae434d7665f8
4208b12ba138d50c25d80849585d4b18dd5df491
refs/heads/master
2020-05-29T11:40:19.748872
2016-09-15T18:45:34
2016-09-15T18:45:34
67,622,081
1
1
null
2016-09-07T15:56:12
2016-09-07T15:56:12
null
UTF-8
Java
false
false
2,796
java
package org.nhind.config.provider; import java.lang.reflect.Constructor; import org.apache.http.client.HttpClient; import org.nhindirect.common.rest.AbstractSecuredService; import org.nhindirect.common.rest.HttpClientFactory; import org.nhindirect.common.rest.ServiceSecurityManager; import com.google.inject.Provider; public class DefaultRESTServiceProvider<T> implements Provider<T> { protected final String serviceURL; protected final HttpClient client; protected final ServiceSecurityManager securityManager; protected final Class<? extends AbstractSecuredService> clazz; protected static ServiceSecurityManager getInitiziedSecurityManager(Provider<ServiceSecurityManager> securityManagerProvider) { final ServiceSecurityManager retVal = securityManagerProvider.get(); retVal.init(); return retVal; } public DefaultRESTServiceProvider(String serviceURL, Provider<ServiceSecurityManager> securityManagerProvider, Class<? extends AbstractSecuredService> clazz) { this(serviceURL, HttpClientFactory.createHttpClient(), getInitiziedSecurityManager(securityManagerProvider), clazz); } public DefaultRESTServiceProvider(String serviceURL, ServiceSecurityManager securityManager, Class<? extends AbstractSecuredService> clazz) { this(serviceURL, HttpClientFactory.createHttpClient(), securityManager, clazz); } @SuppressWarnings("static-access") public DefaultRESTServiceProvider(String serviceURL, HttpClientFactory factory, Provider<ServiceSecurityManager> securityManagerProvider, Class<? extends AbstractSecuredService> clazz) { this(serviceURL, factory.createHttpClient(), getInitiziedSecurityManager(securityManagerProvider), clazz); } @SuppressWarnings("static-access") public DefaultRESTServiceProvider(String serviceURL, HttpClientFactory factory, ServiceSecurityManager securityManager, Class<? extends AbstractSecuredService> clazz) { this(serviceURL, factory.createHttpClient(), securityManager, clazz); } public DefaultRESTServiceProvider(String serviceURL, HttpClient client, ServiceSecurityManager securityManager, Class<? extends AbstractSecuredService> clazz) { this.serviceURL = serviceURL; this.client = client; this.securityManager = securityManager; this.clazz = clazz; } @SuppressWarnings("unchecked") @Override public T get() { AbstractSecuredService retVal = null; try { final Constructor<?> ctr = clazz.getDeclaredConstructor(String.class, HttpClient.class, ServiceSecurityManager.class); retVal = (AbstractSecuredService)ctr.newInstance(serviceURL, client, securityManager); } catch (Exception e) { throw new IllegalStateException("REST service provider is not configured correctly."); } return (T)retVal; } }
[ "marcusm@localhost" ]
marcusm@localhost
0cbe2bdaf05ddaa77314722978c931df7b12be2b
2b00534a6224c3ea5ffadddebd58aed6b228a32c
/app/src/main/java/cc/duduhuo/simpler/activity/DisplaySettingsActivity.java
61b14f094d341d0b797038c61f686c4cfb54ad32
[ "Apache-2.0" ]
permissive
lancao008/Simpler
17291767591bf0bd3324ec1751afe4f69ac459c8
530cdea301f897836daadf75eef4fcad0b84ea15
refs/heads/master
2021-05-08T14:17:47.372713
2017-06-15T05:30:02
2017-06-15T05:30:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,606
java
package cc.duduhuo.simpler.activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.widget.TextView; import java.util.List; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; import cc.duduhuo.simpler.R; import cc.duduhuo.simpler.adapter.OptionsAdapter; import cc.duduhuo.simpler.app.App; import cc.duduhuo.simpler.base.BaseActivity; import cc.duduhuo.simpler.config.BaseSettings; import cc.duduhuo.simpler.dialog.OptionsDialog; import cc.duduhuo.simpler.bean.Option; import cc.duduhuo.simpler.config.PicQuality; import cc.duduhuo.simpler.util.OptionUtil; import cc.duduhuo.simpler.util.SettingsUtil; public class DisplaySettingsActivity extends BaseActivity { @BindView(R.id.tvCount) TextView mTvCount; @BindView(R.id.tvAutoRefresh) TextView mTvAutoRefresh; @BindView(R.id.tvPicQuality) TextView mTvPicQuality; @BindView(R.id.tvUploadQuality) TextView mTvUploadQuality; @BindView(R.id.tvFontSize) TextView mTvFontSize; private OptionsDialog dialog; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_display_settings); ButterKnife.bind(this); dialog = new OptionsDialog(this); init(); } private void init() { mTvCount.setText(String.valueOf(BaseSettings.sSettings.refreshCount)); if (BaseSettings.sSettings.autoRefresh) { mTvAutoRefresh.setText("是"); } else { mTvAutoRefresh.setText("否"); } switch (BaseSettings.sSettings.picQuality) { case PicQuality.NO_PIC: mTvPicQuality.setText("无图"); break; case PicQuality.INTELLIGENT: mTvPicQuality.setText("智能无图"); break; case PicQuality.THUMBNAIL: mTvPicQuality.setText("小图"); break; case PicQuality.MIDDLE: mTvPicQuality.setText("中图"); break; case PicQuality.ORIGINAL: mTvPicQuality.setText("原始大图"); break; } switch (BaseSettings.sSettings.uploadQuality) { case PicQuality.THUMBNAIL: mTvUploadQuality.setText("小图"); break; case PicQuality.MIDDLE: mTvUploadQuality.setText("中图"); break; case PicQuality.ORIGINAL: mTvUploadQuality.setText("原始大图"); break; } mTvFontSize.setText(BaseSettings.sSettings.fontSize + "pt"); } public static Intent newIntent(Context context) { Intent intent = new Intent(context, DisplaySettingsActivity.class); return intent; } @OnClick(R.id.rlStatusCount) void selectCount() { final List<Option> options = OptionUtil.getRefreshCountOptions(); dialog.setTitle("每次刷新微博数"); dialog.setOptions(options); dialog.show(); dialog.setOnOptionItemSelectListener(new OptionsAdapter.OnOptionItemSelectListener() { @Override public void onSelect(int position) { mTvCount.setText(options.get(position).name); SettingsUtil.updateRefreshCount((int) options.get(position).value); dialog.dismiss(); } }); } @OnClick(R.id.rlAutoRefresh) void selectAutoRefresh() { final List<Option> options = OptionUtil.getAutoRefreshOptions(); dialog.setTitle("每次打开自动刷新微博"); dialog.setOptions(options); dialog.show(); dialog.setOnOptionItemSelectListener(new OptionsAdapter.OnOptionItemSelectListener() { @Override public void onSelect(int position) { mTvAutoRefresh.setText(options.get(position).name); SettingsUtil.updateAutoRefresh((boolean) options.get(position).value); dialog.dismiss(); } }); } @OnClick(R.id.rlPicQuality) void selectPicQuality() { final List<Option> options = OptionUtil.getPicQualityOptions(); dialog.setTitle("微博图片显示质量"); dialog.setOptions(options); dialog.show(); dialog.setOnOptionItemSelectListener(new OptionsAdapter.OnOptionItemSelectListener() { @Override public void onSelect(int position) { mTvPicQuality.setText(options.get(position).name); SettingsUtil.updatePicQuality((int) options.get(position).value); dialog.dismiss(); if (App.getInstance().mSettingsChangeListener != null) { App.getInstance().mSettingsChangeListener.onPicQualityChange(); } } }); } @OnClick(R.id.rlUploadQuality) void selectUploadQuality() { final List<Option> options = OptionUtil.getUploadQualityOptions(); dialog.setTitle("图片上传质量"); dialog.setOptions(options); dialog.show(); dialog.setOnOptionItemSelectListener(new OptionsAdapter.OnOptionItemSelectListener() { @Override public void onSelect(int position) { mTvUploadQuality.setText(options.get(position).name); SettingsUtil.updateUploadQuality((int) options.get(position).value); dialog.dismiss(); } }); } @OnClick(R.id.rlFontSize) void selectFontSize() { final List<Option> options = OptionUtil.getFontSizeOptions(); dialog.setTitle("微博字体大小"); dialog.setOptions(options); dialog.show(); dialog.setOnOptionItemSelectListener(new OptionsAdapter.OnOptionItemSelectListener() { @Override public void onSelect(int position) { mTvFontSize.setText(options.get(position).name); SettingsUtil.updateFontSize((int) options.get(position).value); dialog.dismiss(); if (App.getInstance().mSettingsChangeListener != null) { App.getInstance().mSettingsChangeListener.onTextSizeChange((int) options.get(position).value); } } }); } @OnClick(R.id.tvBack) void back() { this.finish(); } @Override protected void onDestroy() { super.onDestroy(); dialog = null; } }
[ "liruoer2008@yeah.net" ]
liruoer2008@yeah.net
7cf82c2959253e502e238e59890c55af0b76fb52
d7cfc92727507f0a4e842f85b57003d1a9e0fa5f
/src/main/me/amyhong/pieces/King.java
b5319d55acbd259be7b357f5cfa6b40049f75552
[]
no_license
AmyHong0502/Chess
4fc9a86e556e826ead9cc2194e01690c34d5cac1
ec69b3b96af05b6db88881af35fa5073552680ae
refs/heads/master
2021-03-22T05:04:29.671008
2018-03-21T08:23:37
2018-03-21T08:23:37
120,399,698
0
0
null
null
null
null
UTF-8
Java
false
false
2,283
java
package me.amyhong.pieces; import java.util.ArrayList; public class King extends Piece { /** * Black king character in Unicode. Black characters are used for design * purpose, regardless of actual colour of each piece. */ private final char type = '\u265A'; public King(boolean white, int colIndex, int rowIndex, int verticalLevel) { super(white, '\u265A', colIndex, rowIndex, verticalLevel, true); setText(Character.toString(type)); } public King(boolean white, int colIndex, int rowIndex, int verticalLevel, boolean neverMoved) { super(white, '\u265A', colIndex, rowIndex, verticalLevel, neverMoved); setText(Character.toString(type)); } @Override public int[][] capturable() { return movable(); } @Override int[][] movableThisBoard() { return new int[0][]; } @Override int[][] movableOtherBoards() { return new int[0][]; } @Override public int[][] movable() { ArrayList<int[]> move = new ArrayList<>(); final int columnIndex = super.getColumnIndex(); final int rowIndex = super.getRowIndex(); if (rowIndex != 7) { move.add(new int[]{columnIndex, rowIndex + 1}); if (columnIndex != 7) { move.add(new int[]{columnIndex + 1, rowIndex + 1}); } if (columnIndex != 0) { move.add(new int[]{columnIndex - 1, rowIndex + 1}); } } if (rowIndex != 0) { move.add(new int[]{columnIndex, rowIndex - 1}); if (columnIndex != 7) { move.add(new int[]{columnIndex + 1, rowIndex - 1}); } if (columnIndex != 0) { move.add(new int[]{columnIndex - 1, rowIndex - 1}); } } if (columnIndex != 7) { move.add(new int[]{columnIndex + 1, rowIndex}); } if (columnIndex != 0) { move.add(new int[]{columnIndex - 1, rowIndex}); } return move.toArray(new int[move.size()][2]); } @Override public int[][] searchPath(final int destColumnIndex, final int destRowIndex) { return new int[0][0]; } }
[ "amyhong0502@gmail.com" ]
amyhong0502@gmail.com
d22e913da7c2b350a91ef742b5816cf39233ca5b
3e1da6be0bf00ec678e0a59adcc3b12ab90dc946
/src/test/java/com/epam/spring/dao/impl/NewsDAOImplTest.java
4b8490363a58abd1d619c68a00cb38f2abf05d5b
[]
no_license
WitcherTraining/news-app
da9644c13eabccf1b2f4cd72056b8d9f559c3f47
bce920bd9dce9b15a7be146954a5a9676e8eaa52
refs/heads/master
2023-02-01T04:27:35.855943
2020-12-21T05:52:36
2020-12-21T05:52:36
309,987,635
0
0
null
null
null
null
UTF-8
Java
false
false
2,496
java
package com.epam.spring.dao.impl; import com.epam.spring.dao.NewsDAO; import com.epam.spring.model.News; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import java.util.ArrayList; import java.util.Date; import java.util.List; import static org.junit.Assert.*; import static org.mockito.Mockito.*; import static org.mockito.Mockito.times; public class NewsDAOImplTest { @Mock private NewsDAO newsDAO; public News news; List<News> newsList; News news1; News news2; @Before public void setUp() { MockitoAnnotations.initMocks(this); news1 = new News(); news1.setId(1L); news1.setTitle("Title"); news1.setBriefContent("Brief content"); news1.setContent("Content"); news1.setDate(new Date()); news2 = new News(); news2.setId(2L); news2.setTitle("Title"); news2.setBriefContent("Brief content"); news2.setContent("Content"); news2.setDate(new Date()); newsList = new ArrayList<>(); newsList.add(news1); newsList.add(news2); } @Test public void findAll() { when(newsDAO.findAll()).thenReturn(newsList); List<News> news = newsDAO.findAll(); Assert.assertEquals(news, newsList); verify(newsDAO, times(1)).findAll(); } @Test public void findById() { when(newsDAO.findById(news1.getId())).thenReturn(news1); News foundedNews = newsDAO.findById(news1.getId()); Assert.assertEquals(foundedNews, news1); verify(newsDAO, times(1)).findById(news1.getId()); } @Test public void save() { when(newsDAO.save(news)).thenReturn(news); News savedNews = newsDAO.save(news); Assert.assertEquals(savedNews, news); } @Test public void saveOrUpdateNews() { when(newsDAO.saveOrUpdateNews(news)).thenReturn(news); News savedNews = newsDAO.saveOrUpdateNews(news); Assert.assertEquals(savedNews, news); } @Test public void update() { newsDAO.update(news); verify(newsDAO, times(1)).update(news); } @Test public void delete() { newsDAO.delete(news1); verify(newsDAO, times(1)).delete(news1); } @Test public void deleteById() { newsDAO.deleteById(news1.getId()); verify(newsDAO, times(1)).deleteById(anyLong()); } }
[ "witcher236@gmail.com" ]
witcher236@gmail.com
40dcdef9fa52edc46549631382210c61de1f4c57
82af43f81ac5f78ebd536bfd54da215e7aeececa
/day9/java/Solution.java
1349469cb4c58347935c859bfb5af44728a57157
[]
no_license
Razor-Sec/30-Days-of-Code-Hackerrank
40a36d503676d0051350b327083ff3739569af64
b68fb2f29027cf0532b3527cdfd2b8b8c1949091
refs/heads/main
2023-03-18T01:48:47.388350
2021-03-03T16:26:08
2021-03-03T16:26:08
344,188,932
0
0
null
null
null
null
UTF-8
Java
false
false
888
java
import java.io.*; import java.math.*; import java.security.*; import java.text.*; import java.util.*; import java.util.concurrent.*; import java.util.regex.*; public class Solution { // Complete the factorial function below. static int factorial(int n) { int s=1; for(int i = 1; i<=n;i++){ s*=i; } return s; } private static final Scanner scanner = new Scanner(System.in); public static void main(String[] args) throws IOException { BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH"))); int n = scanner.nextInt(); scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); int result = factorial(n); bufferedWriter.write(String.valueOf(result)); bufferedWriter.newLine(); bufferedWriter.close(); scanner.close(); } }
[ "markoyanfyan12@gmail.com" ]
markoyanfyan12@gmail.com
58ed7b6c54d16fe7b8e06a7e68cbaa27a5b75746
1129422eeb41af510f29a74086387866521b32ba
/src/BodyDetector.java
6bf29f559bb9f1f76d03d4997285c0e8b6b114fb
[]
no_license
huangy10/PoemOfSun
a95a14f4a6507754b003e0f72fcb16b877aabf62
074c32dd045f621d0eb32c28e926ac5b2797ffba
refs/heads/master
2021-04-25T16:15:17.438415
2017-11-26T11:08:49
2017-11-26T11:08:49
109,561,684
1
1
null
null
null
null
UTF-8
Java
false
false
4,902
java
import processing.core.*; import org.openkinect.processing.*; import blobDetection.*; import java.util.ArrayList; public class BodyDetector { final static float MIN_BLOB_AREA_NORMALIZED = 0.02f; private Kinect kinect; private BlobDetection blobDetection; private PImage depthImage; private PApplet sk; private ArrayList<BodyTarget> targets; private float blobDetectionThreshold = 0.6f; // render options boolean showDepthImage = true; boolean showBlob = true; // debug options private boolean enableDebug = false; private boolean enableCalibration = false; float groundDistance = 0; BodyDetector(PApplet sk) { this.sk = sk; initKinect(); initBlobDetection(); targets = new ArrayList<>(); depthImage = new PImage(kinect.width, kinect.height); } private void initKinect() { kinect = new Kinect(sk); kinect.initDepth(); kinect.enableMirror(false); } private void initBlobDetection() { blobDetection = new BlobDetection(kinect.width, kinect.height); // true for bright area blobDetection.setPosDiscrimination(true); blobDetection.setThreshold(blobDetectionThreshold); } public void setBlobDetectionThreshold(float blobDetectionThreshold) { this.blobDetectionThreshold = blobDetectionThreshold; blobDetection.setThreshold(blobDetectionThreshold); } void update() { if (enableDebug) { debugUpdate(); return; } // PApplet.println("read"); // extract raw depth data from kinect, which ranges from 0 to 2047 // we should map it to color value range (0 - 255) int[] rawDepthData = kinect.getRawDepth(); groundDistance = 0; for (int i = 0; i < rawDepthData.length; i += 1) { if(rawDepthData[i] > 930) depthImage.pixels[i] = sk.color(0); else { depthImage.pixels[i] = sk.lerpColor(sk.color(255), sk.color(0), rawDepthData[i] / 2048f); } if (enableCalibration && rawDepthData[i] > groundDistance) { groundDistance = rawDepthData[i]; } } depthImage.updatePixels(); blobDetection.computeBlobs(depthImage.pixels); if (enableCalibration) { if (sk.frameCount % 10 == 0) { PApplet.println("Maximal depth value: " + groundDistance); } } processBlobs(); } private void debugUpdate() { BodyTarget t; if (targets.isEmpty()) { t = new BodyTarget(new PVector(sk.mouseX, sk.mouseY), sk); targets.add(t); } else { t = targets.get(0); } t.updateLocationForced(sk.mouseX, sk.mouseY); } void render() { if (showDepthImage) sk.image(depthImage, 0, 0); if (showBlob) { PVector pos; sk.fill(255, 0, 0); sk.noStroke(); for (BodyTarget t: targets) { if (!t.isVisible()) continue; pos = t.getCurrentScreenLocation(); sk.ellipse(pos.x, pos.y, 10, 10); } } } private void processBlobs() { Blob b; for (int i = 0; i < blobDetection.getBlobNb(); i += 1) { b = blobDetection.getBlob(i); if (b.w * b.h < MIN_BLOB_AREA_NORMALIZED) continue; // PApplet.println("test"); boolean accepted = false; for (BodyTarget t : targets) { if (t.updateLocation(b.x * kinect.width, b.y * kinect.height)) { accepted = true; break; } } if (!accepted) { targets.add(newTargetFromBlob(b)); } } weepOutOldTargets(); } private BodyTarget newTargetFromBlob(Blob b) { PApplet.println("Add new target"); return new BodyTarget(new PVector(b.x * kinect.width, b.y * kinect.height), sk); } private void weepOutOldTargets() { ArrayList<BodyTarget> remove = new ArrayList<>(); for (BodyTarget t : targets) if (!t.isAlive()) { if (t.fireFlare != null) t.fireFlare.deactivate(); remove.add(t); } if (remove.size() != 0) PApplet.println("Remove: " + remove.size()); targets.removeAll(remove); } ArrayList<BodyTarget> getTargets() { return targets; } void disableRendering() { showBlob = false; showDepthImage = false; } void setEnableDebug() { enableDebug = true; PApplet.println("Body detector enable debug mode"); } void setEnableCalibration() { enableCalibration = true; } }
[ "woody1573@163.com" ]
woody1573@163.com