blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 7 5.41M | extension stringclasses 11
values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9e5d7fc8633ac67b55e1bbf8ff5377010ff74b98 | 03dafd319f0aa6ce24b1ede91f07eb63337947be | /kieker.architecture.visualization/model-gen/kieker/model/analysismodel/assembly/impl/EStringToAssemblyProvidedInterfaceMapEntryImpl.java | a3f8cbce7935f20c4431e2e0f2dd9c37dcc79d6d | [] | no_license | kieker-monitoring/instrumentation-languages | 1cab3fd0f38b28a80efaabb8c74a819466d9cdde | d6c95049072bd89f66511ff0dffec8211a41d493 | refs/heads/master | 2023-06-09T03:08:01.357821 | 2023-03-08T08:44:28 | 2023-06-03T17:51:14 | 35,327,353 | 6 | 4 | null | 2023-03-29T08:25:06 | 2015-05-09T12:13:25 | Java | UTF-8 | Java | false | false | 8,637 | java | /**
*/
package kieker.model.analysismodel.assembly.impl;
import kieker.model.analysismodel.assembly.AssemblyPackage;
import kieker.model.analysismodel.assembly.AssemblyProvidedInterface;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.BasicEMap;
import org.eclipse.emf.common.util.EMap;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>EString To Assembly Provided Interface Map Entry</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link kieker.model.analysismodel.assembly.impl.EStringToAssemblyProvidedInterfaceMapEntryImpl#getTypedKey <em>Key</em>}</li>
* <li>{@link kieker.model.analysismodel.assembly.impl.EStringToAssemblyProvidedInterfaceMapEntryImpl#getTypedValue <em>Value</em>}</li>
* </ul>
*
* @generated
*/
public class EStringToAssemblyProvidedInterfaceMapEntryImpl extends MinimalEObjectImpl.Container implements BasicEMap.Entry<String,AssemblyProvidedInterface> {
/**
* The default value of the '{@link #getTypedKey() <em>Key</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTypedKey()
* @generated
* @ordered
*/
protected static final String KEY_EDEFAULT = null;
/**
* The cached value of the '{@link #getTypedKey() <em>Key</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTypedKey()
* @generated
* @ordered
*/
protected String key = KEY_EDEFAULT;
/**
* The cached value of the '{@link #getTypedValue() <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTypedValue()
* @generated
* @ordered
*/
protected AssemblyProvidedInterface value;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EStringToAssemblyProvidedInterfaceMapEntryImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return AssemblyPackage.Literals.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getTypedKey() {
return key;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setTypedKey(String newKey) {
String oldKey = key;
key = newKey;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__KEY, oldKey, key));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public AssemblyProvidedInterface getTypedValue() {
return value;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetTypedValue(AssemblyProvidedInterface newValue, NotificationChain msgs) {
AssemblyProvidedInterface oldValue = value;
value = newValue;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE, oldValue, newValue);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setTypedValue(AssemblyProvidedInterface newValue) {
if (newValue != value) {
NotificationChain msgs = null;
if (value != null)
msgs = ((InternalEObject)value).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE, null, msgs);
if (newValue != null)
msgs = ((InternalEObject)newValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE, null, msgs);
msgs = basicSetTypedValue(newValue, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE, newValue, newValue));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE:
return basicSetTypedValue(null, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__KEY:
return getTypedKey();
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE:
return getTypedValue();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__KEY:
setTypedKey((String)newValue);
return;
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE:
setTypedValue((AssemblyProvidedInterface)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__KEY:
setTypedKey(KEY_EDEFAULT);
return;
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE:
setTypedValue((AssemblyProvidedInterface)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__KEY:
return KEY_EDEFAULT == null ? key != null : !KEY_EDEFAULT.equals(key);
case AssemblyPackage.ESTRING_TO_ASSEMBLY_PROVIDED_INTERFACE_MAP_ENTRY__VALUE:
return value != null;
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuilder result = new StringBuilder(super.toString());
result.append(" (key: ");
result.append(key);
result.append(')');
return result.toString();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected int hash = -1;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int getHash() {
if (hash == -1) {
Object theKey = getKey();
hash = (theKey == null ? 0 : theKey.hashCode());
}
return hash;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setHash(int hash) {
this.hash = hash;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String getKey() {
return getTypedKey();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setKey(String key) {
setTypedKey(key);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public AssemblyProvidedInterface getValue() {
return getTypedValue();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public AssemblyProvidedInterface setValue(AssemblyProvidedInterface value) {
AssemblyProvidedInterface oldValue = getValue();
setTypedValue(value);
return oldValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
public EMap<String, AssemblyProvidedInterface> getEMap() {
EObject container = eContainer();
return container == null ? null : (EMap<String, AssemblyProvidedInterface>)container.eGet(eContainmentFeature());
}
} //EStringToAssemblyProvidedInterfaceMapEntryImpl
| [
"reiner.jung@email.uni-kiel.de"
] | reiner.jung@email.uni-kiel.de |
25bbf2086969e089bf54c49df8bf5f6d8081fa0b | 664e765fd55859df93ebbef4cec2bcea237534c7 | /src/main/java/org/anhcraft/aquawarp/Util/OnCommands.java | a5e81ec39cc58e115edb1f468bf701248b889502 | [] | no_license | Juessa/AquaWarp | a7c126a046bfa42b6757b9eace57cd7a856326fe | 6a24dfd4f63619cbd1b2821709df4fd39e15415b | refs/heads/master | 2021-01-21T15:58:09.994760 | 2017-05-08T03:16:26 | 2017-05-08T03:16:26 | 91,868,049 | 0 | 0 | null | 2017-05-20T05:42:17 | 2017-05-20T05:42:16 | null | UTF-8 | Java | false | false | 10,113 | java | package org.anhcraft.aquawarp.Util;
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.anhcraft.aquawarp.API.SoftDepends.MVdWPlaceholderAPI;
import org.anhcraft.aquawarp.API.SoftDepends.PlaceHolderAPI;
import org.anhcraft.aquawarp.AquaWarp;
import org.anhcraft.aquawarp.Commands.*;
import org.anhcraft.aquawarp.Converter.ExportSetup;
import org.anhcraft.aquawarp.Converter.ImportSetup;
import org.anhcraft.aquawarp.GUI.WarpGUI;
import org.anhcraft.aquawarp.Options;
/**
* Copyright (c) by Anh Craft. All rights reserved.
* Licensed under the apache license v2.0.
*/
public class OnCommands implements CommandExecutor {
@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
if (cmd.getName().equals("warp")) {
if(1 < args.length){
TpWarp.main(args[0], args[1], sender, true);
return true;
}
else if(args.length == 1){
TpWarp.main(args[0], sender.getName(), sender, false);
return true;
} else {
if(!(sender instanceof Player) || !Configuration.config.getBoolean("tpWarp.useGUI")) {
new ListWarps().run(sender);
return true;
} else {
WarpGUI.show((Player) sender, 0);
return true;
}
}
}
/** MOST COMMAND
*
* /warps <sub> <arg...>
*
**/
if (cmd.getName().equals("warps")) {
if(args.length < 1){
for(String s : Configuration.config.getStringList("helpWarp")){
Strings.sendSenderNoPrefix(s, sender);
}
return true;
} else{
if(args[0].equals(Configuration.commands.getString("warps.setwarp"))){
if(args.length < 8){
if(sender instanceof Player) {
if(args.length == 2) {
SetWarp.main(sender, args[1], ((Player) sender).getLocation());
return true;
} else {
Strings.sendSender(Configuration.message.getString("setwarp_syntax_error")
.replace("@cmd",Configuration.commands.getString("warps.setwarp")),sender);
return false;
}
} else {
Strings.sendSender(Configuration.message.getString("sender_must_a_player"),sender);
return false;
}
} else {
Location loc = SetWarp.toLocation(args[2],args[3],args[4],args[5],args[6],args[7]);
if(loc != null) {
SetWarp.main(sender, args[1], loc);
return true;
} else {
Strings.sendSender(Configuration.message.getString("world_not_found"),sender);
return false;
}
}
}
else if(args[0].equals(Configuration.commands.getString("warps.delwarp"))){
if(1 < args.length){
new DelWarp(sender, args[1]);
return true;
} else {
Strings.sendSender(Configuration.message.getString("delwarp_syntax_error")
.replace("@cmd",Configuration.commands.getString("warps.delwarp")),sender);
return false;
}
}
else if(args[0].equals(Configuration.commands.getString("warps.lockwarp"))){
if(2 < args.length){
new LockWarp(sender, args[1], args[2]);
return true;
} else {
Strings.sendSender(Configuration.message.getString("lockwarp_syntax_error")
.replace("@cmd",Configuration.commands.getString("warps.lockwarp")),sender);
return false;
}
}
else if(args[0].equals(Configuration.commands.getString("warps.unlockwarp"))){
if(1 < args.length){
new UnlockWarp(sender, args[1]);
return true;
} else {
Strings.sendSender(Configuration.message.getString("unlockwarp_syntax_error")
.replace("@cmd",Configuration.commands.getString("warps.unlockwarp")),sender);
return false;
}
}
else if(args[0].equals(Configuration.commands.getString("warps.fee"))){
if(3 < args.length){
new Fee(sender, args[1], args[2], args[3]);
return true;
} else {
Strings.sendSender(Configuration.message.getString("fee_syntax_error")
.replace("@cmd",Configuration.commands.getString("warps.fee")),sender);
return false;
}
}
else if(args[0].equals(Configuration.commands.getString("warps.gui"))){
if(sender instanceof Player){
WarpGUI.show((Player) sender, 0);
} else {
Strings.sendSender(Configuration.message.getString("sender_must_a_player"),sender);
return false;
}
}
else {
Strings.sendSender(Configuration.message.getString("cmd_not_found"),sender);
return false;
}
}
}
/**
* 1.4.0
* Aqua Warp
*/
if (cmd.getName().equals("aquawarp")) {
Strings.sendSenderNoPrefix(
"&b&lAquaWarp&r &5v"+ Options.pluginVersion+".&r &6Created by&r &6&lAnh Craft.", sender);
return true;
}
/**
* 1.3.0
* Warp Admin
*/
if (cmd.getName().equals("warpadmin")) {
/** 1.3.0 **/
if(0 < args.length){
if(args[0].equals(Configuration.commands.getString("warpadmin.reload"))){
String[] reload = PermissionsManager.getPermission("warpadmin.reload");
if(sender.hasPermission(reload[0]) ||
sender.hasPermission(reload[0]) ||
sender.hasPermission(reload[0]) ||
PermissionsManager.hasAll(sender)
){
Configuration.load();
ConnectDatabase.setup();
MVdWPlaceholderAPI.setup(true); // + register placeholders
PlaceHolderAPI.setup(true); // + register placeholders
// schedulers
Bukkit.getServer().getScheduler().cancelTasks(AquaWarp.plugin);
AquaWarp.setup_SchedulersEveryTime();
//--------------------------
Strings.sendSender(Configuration.message.getString("reloaded_configuration"),sender);
return true;
} else {
Strings.sendSender(Configuration.message.getString("require_permission"),sender);
return false;
}
}
else if(args[0].equals(Configuration.commands.getString("warpadmin.export"))){
if(sender instanceof Player){
String[] export = PermissionsManager.getPermission("warpadmin.export");
if(sender.hasPermission(export[0]) || PermissionsManager.hasAll(sender)){
ExportSetup.addPlayer((Player) sender);
return true;
} else {
Strings.sendSender(Configuration.message.getString("require_permission"),sender);
return false;
}
} else {
Strings.sendSender(Configuration.message.getString("sender_must_a_player"),sender);
return false;
}
} else if(args[0].equals(Configuration.commands.getString("warpadmin.import"))){
if(sender instanceof Player){
String[] import_ = PermissionsManager.getPermission("warpadmin.import");
if(sender.hasPermission(import_[0]) || PermissionsManager.hasAll(sender)){
ImportSetup.addPlayer((Player) sender);
return true;
} else {
Strings.sendSender(Configuration.message.getString("require_permission"),sender);
return false;
}
} else {
Strings.sendSender(Configuration.message.getString("sender_must_a_player"),sender);
return false;
}
} else {
Strings.sendSender(Configuration.message.getString("cmd_not_found"),sender);
return false;
}
} else {
for(String str : Options.listWarpAdminCommandMessages){
Strings.sendSenderNoPrefix(str, sender);
}
return true;
}
}
return false;
}
}
| [
"huynhduyanh123123@gmail.com"
] | huynhduyanh123123@gmail.com |
0c8bfefedbd924f2ef9fe9c546ea494c8157fc94 | e6e8b2b4492b521f971534649b503c2c5e76fd31 | /trunk/packages/internal/oneClassClassifier/src/main/java/weka/classifiers/meta/generators/UniformDataGenerator.java | 61565880948bdaa64e842138a1cb0e148bc6c24a | [] | no_license | rsuman21/WekaTesting | 95b7c16d5ad741704b5df78e0b151e30810ef62c | 7b5c267ae4679b51a5ea3a89a39273545d1037aa | refs/heads/master | 2021-01-23T06:39:13.370364 | 2014-03-11T05:02:03 | 2014-03-11T05:02:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,568 | java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 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/>.
*/
/**
* UniformDataGenerator.java
* Copyright (C) 2008 K.Hempstalk, University of Waikato, Hamilton, New Zealand.
*/
package weka.classifiers.meta.generators;
/**
* <!-- globalinfo-start --> A uniform artificial data generator.<br/>
* <br/>
* This generator uses a uniform data model - all values have the same
* probability, and generated values must fall within the range given to the
* generator.
* <p/>
* <!-- globalinfo-end -->
*
* <!-- options-start --> Valid options are:
* <p/>
*
* <pre>
* -S <seed>
* Sets the seed of the random number generator of the generator (default: 1)
* </pre>
*
* <pre>
* -L <num>
* Sets the lower range of the generator
* (default: 0)
* </pre>
*
* <pre>
* -U <num>
* Sets the upper range of the generator
* (default: 1)
* </pre>
*
* <!-- options-end -->
*
* @author Kathryn Hempstalk (kah18 at cs.waikato.ac.nz)
* @version $Revision: 10374 $
*/
public class UniformDataGenerator extends RandomizableRangedGenerator implements
NumericAttributeGenerator {
/** for serialization. */
private static final long serialVersionUID = -6390354660638644832L;
/**
* Returns a string describing this class' ability.
*
* @return A description of the class.
*/
@Override
public String globalInfo() {
return "A uniform artificial data generator.\n" + "\n"
+ "This generator uses a uniform data model - all values have "
+ "the same probability, and generated values must fall within "
+ "the range given to the generator.";
}
/**
* Generates a value that falls under this distribution.
*
* @return A generated value.
*/
@Override
public double generate() {
double range = (m_UpperRange - m_LowerRange);
return (m_Random.nextDouble() * range) + m_LowerRange;
}
/**
* Gets the probability that a value falls under this distribution.
*
*
* @param somedata The value to get the probability of.
* @return The probability of the given value.
*/
@Override
public double getProbabilityOf(double somedata) {
double range = (m_UpperRange - m_LowerRange);
if (range <= 0 || somedata > m_UpperRange || somedata < m_LowerRange) {
return Double.MIN_VALUE;
}
return 1 / (range);
}
/**
* Gets the (natural) log of the probability of a given value.
*
* @param somedata The value to get the log probability of.
* @return The (natural) log of the probability.
*/
@Override
public double getLogProbabilityOf(double somedata) {
double range = (m_UpperRange - m_LowerRange);
if ((range <= 0)
|| (((somedata < m_LowerRange) || (somedata > m_UpperRange)))) {
return Math.log(Double.MIN_VALUE);
}
return -Math.log(range);
}
}
| [
"ritasuman21@gmail.com"
] | ritasuman21@gmail.com |
d249d09f07c7133c21d6be781106939acb1200b3 | b858cc68f55695ea0c1f92c4bd4d2563c8290022 | /src/main/java/ru/mail/park/domain/User.java | 2f4c801561548988b46e61028619178361b4887d | [] | no_license | java-park-mail-ru/42-09-2017 | 0cac1bffcaee2c6106d3e36374d4d2a627e7e559 | 8b16ed13b37c425974949580fa5342ca95b925e0 | refs/heads/master | 2021-09-07T14:59:36.242891 | 2018-02-24T12:56:55 | 2018-02-24T12:56:55 | 103,254,106 | 0 | 1 | null | 2018-02-24T12:56:56 | 2017-09-12T10:00:30 | Java | UTF-8 | Java | false | false | 1,669 | java | package ru.mail.park.domain;
import javax.persistence.*;
@Entity
@Table(name = "player")
public class User {
@javax.persistence.Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String username;
private String email;
private String password;
private Long scores = 0L;
private Integer level = 1;
private Integer vkId;
private String vkToken;
@SuppressWarnings("RedundantNoArgConstructor")
public User() { }
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 getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Long getScores() {
return scores;
}
public void setScores(Long scores) {
this.scores = scores;
}
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
@SuppressWarnings("unused")
public Integer getVkId() {
return vkId;
}
public void setVkId(Integer vkId) {
this.vkId = vkId;
}
@SuppressWarnings("unused")
public String getVkToken() {
return vkToken;
}
public void setVkToken(String vkToken) {
this.vkToken = vkToken;
}
}
| [
"artur050711@gmail.com"
] | artur050711@gmail.com |
14626780e6ec090bdc7f6cbede8345559e5ae421 | e06b2253a56377d9c76255a7833a8eb32abf20ad | /src/main/java/com/mingsoft/basic/dao/IColumnDao.java | 9de4b7e595011734fa1dad7241211954b8a2a3f3 | [
"MIT"
] | permissive | tom110/MyMcms | 0e7a19bb7dca96c06132e4e520609ed6bc99bee7 | ad57678cdb8eac21856df9e7f4338bfed732d8b3 | refs/heads/master | 2020-06-30T23:38:26.260482 | 2018-10-09T05:50:55 | 2018-10-09T05:50:55 | 74,343,526 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,172 | java | /**
The MIT License (MIT) * Copyright (c) 2016 铭飞科技(mingsoft.net)
* 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 com.mingsoft.basic.dao;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.mingsoft.base.dao.IBaseDao;
import com.mingsoft.basic.entity.BasicEntity;
import com.mingsoft.basic.entity.ColumnEntity;
/**
*
*
* <p>
* <b>铭飞CMS-铭飞内容管理系统</b>
* </p>
*
* <p>
* Copyright: Copyright (c) 2014 - 2015
* </p>
*
* <p>
* Company:景德镇铭飞科技有限公司
* </p>
*
* @author 刘继平
*
* @version 300-001-001
*
* <p>
* 版权所有 铭飞科技
* </p>
*
* <p>
* Comments: 栏目持久化层接口,继承IBaseDao接口
* </p>
*
* <p>
* Create Date:2014-7-14
* </p>
*
* <p>
* Modification history:
* </p>
*/
public interface IColumnDao extends IBaseDao {
/**
* 根据站点ID查询该站点下的栏目集合
* @param columnWebsiteId 站点Id
* @return 栏目集合
*/
public List<ColumnEntity> queryColumnListByWebsiteId(@Param("columnWebsiteId")int columnWebsiteId);
/**
* 根据站点Id查询该站点下的栏目的父栏目Id为categoryCategoryId的子栏目集合
* @param categoryCategoryId 父栏目ID
* @param columnWebsiteId 站点Id
* @return 栏目集合
*/
public List<ColumnEntity> queryColumnByCategoryIdAndWebsiteIdAndModelId(@Param("categoryCategoryId")int categoryCategoryId,@Param("columnWebsiteId")int columnWebsiteId,@Param("modelId")Integer modelId,@Param("size")Integer size);
/**
* 根据栏目ID查询其子栏目ID集合
* @param categoryId 栏目ID
* @param appId 栏目ID
* @return 子栏目ID集合
*/
public List<Integer> queryColumnChildIdList(@Param("categoryId")int categoryId,@Param("appId")int appId);
/**
* 根据栏目属性和栏目模块编码查询栏目站点id为columnWebsiteId的栏目集合
* @param columnType 栏目属性
* @param columnWebsiteId 栏目所属站点ID
* @return 栏目对象
*/
public List <ColumnEntity> queryColumnListBycolumnType(@Param("columnType")int columnType,@Param("columnWebsiteId")int columnWebsiteId);
/**
* 根据站点Id查询该站点下的栏目的父栏目Id为categoryCategoryId的子栏目集合数目统计
* @param categoryCategoryId 父栏目ID
* @param columnWebsiteId 站点ID
* @return 子栏目统计数目
*/
public int queryColumnChildListCountByWebsiteId(@Param("categoryCategoryId")int categoryCategoryId,@Param("columnWebsiteId")int columnWebsiteId);
/**
* 通过管理员ID和模块ID查询订单类型集合
* @param categoryManagerId 管理员ID
* @param categoryModelId 模块ID
* @return 返回订单集合
*/
public List<BasicEntity> queryCategoryByManagerIdAndModelId(@Param("categoryManagerId")int categoryManagerId, @Param("categoryModelId")int categoryModelId);
/**
* 获取当前应用下面对应模块的所以栏目分类
* @param columnWebsiteId 站点信息
* @param modelId 模块信息
* @return 记录集合
*/
public List<ColumnEntity> queryByAppIdAndModelId(@Param("appId")int appId, @Param("modelId")int modelId);
} | [
"254449149@qq.com"
] | 254449149@qq.com |
9ac1c021fc0ab6eee7f9fcd70080c30d10bc9b9e | b6853189c7acd93f4b0812ee7c5dbbc59ae749db | /1904/mulitithread_spring/spring_aop/src/main/java/com/wangrui/spring/aop/base/DynamicProxyService.java | bd75f67a2d65b8959ed9cde19884e2cfe03b4f96 | [] | no_license | Blackshirt99/1902 | d4932d882ee7246d9c517086089fcfe2820dd780 | 79c50624db6102353ce8df815c9bc33e177cb6d8 | refs/heads/master | 2021-03-20T22:38:10.008189 | 2020-02-14T08:31:00 | 2020-02-14T08:31:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,462 | java | package com.wangrui.spring.aop.base;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import com.wangrui.spring.aop.base.entity.A;
import com.wangrui.spring.aop.base.service.ReportService;
import com.wangrui.spring.aop.base.service.Service;
import com.wangrui.spring.aop.base.service.ValidateReview;
public class DynamicProxyService {
public static Service getProxyServer(ReportService serviceObj, ValidateReview addone, String addoneMethod, Class ... paramargs) {
Service s = null;
ClassLoader loader = serviceObj.getClass().getClassLoader();
Class[] interfaces = serviceObj.getClass().getInterfaces();
InvocationHandler h = new InvocationHandler() {
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
ValidateReview vr = new ValidateReview();
A areport = null;
if("service".equals(method.getName())){
Method m = addone.getClass().getDeclaredMethod(addoneMethod, paramargs);
if((boolean) m.invoke(addone, args)) {
areport = (A) method.invoke(serviceObj, args);
}
}
return areport;
}
};
s = (Service)Proxy.newProxyInstance(loader, interfaces, h);
return s;
}
public static void main(String[] args) {
Service s = DynamicProxyService.getProxyServer(new ReportService(), new ValidateReview(), "validate", Integer.class);
s.service(2);
}
}
| [
"jkwangrui@126.com"
] | jkwangrui@126.com |
93c84631dfc4aa18bdca6676b0df0251ffea7516 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_318f0fea6d0b02bc5665a53f2622c42a0825a0eb/Panels/2_318f0fea6d0b02bc5665a53f2622c42a0825a0eb_Panels_s.java | 0d52a342b7bbfab9ae3c779fd556b4e966976f7f | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 6,215 | java | /*
* Copyright 2007 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.sample.kitchensink.client;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.CheckBox;
import com.google.gwt.user.client.ui.DisclosurePanel;
import com.google.gwt.user.client.ui.DockPanel;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Grid;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.HorizontalSplitPanel;
import com.google.gwt.user.client.ui.ScrollPanel;
import com.google.gwt.user.client.ui.TabPanel;
import com.google.gwt.user.client.ui.VerticalPanel;
/**
* Demonstrates various panels and the way they lay widgets out.
*/
public class Panels extends Sink {
public static SinkInfo init(final Sink.Images images) {
return new SinkInfo(
"Panels",
"<h2>Panels</h2><p>This page demonstrates some of the basic GWT panels, each of which "
+ "arranges its contained widgets differently. "
+ "These panels are designed to take advantage of the browser's "
+ "built-in layout mechanics, which keeps the user interface snappy "
+ "and helps your AJAX code play nicely with existing HTML. "
+ "On the other hand, if you need pixel-perfect control, "
+ "you can tweak things at a low level using the "
+ "<code>DOM</code> class.</p>") {
public Sink createInstance() {
return new Panels(images);
}
public String getColor() {
return "#fe9915";
}
};
}
public Panels(Sink.Images images) {
HTML contents = new HTML("This is a <code>ScrollPanel</code> contained at "
+ "the center of a <code>DockPanel</code>. "
+ "By putting some fairly large contents "
+ "in the middle and setting its size explicitly, it becomes a "
+ "scrollable area within the page, but without requiring the use of "
+ "an IFRAME."
+ "Here's quite a bit more meaningless text that will serve primarily "
+ "to make this thing scroll off the bottom of its visible area. "
+ "Otherwise, you might have to make it really, really small in order "
+ "to see the nifty scroll bars!");
ScrollPanel scroller = new ScrollPanel(contents);
scroller.setStyleName("ks-layouts-Scroller");
DockPanel dock = new DockPanel();
dock.setHorizontalAlignment(DockPanel.ALIGN_CENTER);
HTML north0 = new HTML("This is the <i>first</i> north component", true);
HTML east = new HTML(
"<center>This<br>is<br>the<br>east<br>component</center>", true);
HTML south = new HTML("This is the south component");
HTML west = new HTML(
"<center>This<br>is<br>the<br>west<br>component</center>", true);
HTML north1 = new HTML("This is the <b>second</b> north component", true);
dock.add(north0, DockPanel.NORTH);
dock.add(east, DockPanel.EAST);
dock.add(south, DockPanel.SOUTH);
dock.add(west, DockPanel.WEST);
dock.add(north1, DockPanel.NORTH);
dock.add(scroller, DockPanel.CENTER);
DisclosurePanel disc = new DisclosurePanel("Click to disclose something:");
disc.setContent(new HTML("This widget is is shown and hidden<br>by the "
+ "disclosure panel that wraps it."));
FlowPanel flow = new FlowPanel();
for (int i = 0; i < 8; ++i) {
flow.add(new CheckBox("Flow " + i));
}
HorizontalPanel horz = new HorizontalPanel();
horz.setVerticalAlignment(VerticalPanel.ALIGN_MIDDLE);
horz.add(new Button("Button"));
horz.add(new HTML("<center>This is a<br>very<br>tall thing</center>", true));
horz.add(new Button("Button"));
VerticalPanel vert = new VerticalPanel();
vert.setHorizontalAlignment(VerticalPanel.ALIGN_CENTER);
vert.add(new Button("Small"));
vert.add(new Button("--- BigBigBigBig ---"));
vert.add(new Button("tiny"));
VerticalPanel vp = new VerticalPanel();
vp.setHorizontalAlignment(VerticalPanel.ALIGN_CENTER);
vp.setSpacing(8);
vp.add(makeLabel("Disclosure Panel"));
vp.add(disc);
vp.add(makeLabel("Flow Panel"));
vp.add(flow);
vp.add(makeLabel("Horizontal Panel"));
vp.add(horz);
vp.add(makeLabel("Vertical Panel"));
vp.add(vert);
Grid grid = new Grid(4, 4);
for (int r = 0; r < 4; ++r) {
for (int c = 0; c < 4; ++c) {
grid.setWidget(r, c, images.gwtLogo().createImage());
}
}
TabPanel tabs = new TabPanel();
tabs.add(vp, "Basic Panels");
tabs.add(dock, "Dock Panel");
tabs.add(grid, "Tables");
tabs.setWidth("100%");
tabs.selectTab(0);
HorizontalSplitPanel hSplit = new HorizontalSplitPanel();
hSplit.setLeftWidget(tabs);
hSplit.setRightWidget(new HTML(
"This is some text to make the right side of this " +
"splitter look a bit more interesting... " +
"This is some text to make the right side of this " +
"splitter look a bit more interesting... " +
"This is some text to make the right side of this " +
"splitter look a bit more interesting... " +
"This is some text to make the right side of this " +
"splitter look a bit more interesting... "));
initWidget(hSplit);
hSplit.setWidth("100%");
}
public void onShow() {
}
private HTML makeLabel(String caption) {
HTML html = new HTML(caption);
html.setStyleName("ks-layouts-Label");
return html;
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
1d3d9b738f9b0c52bf3ba812685ab5a696b6369b | b0df06d86cdbd1a616ed80c7654d151a91234b1b | /crowfunding-admin/crowfunding03-admin-entity/src/main/java/com/it/crowd/entity/Role.java | 712453455c20b3504d8e60f0299058e7e67265d5 | [] | no_license | wangyjstart/crowfunding | 13f1d603a528e214adb78e08c94eda21a2eaca00 | ac4855cf2094d7d185b9d00670aee9b6456412e7 | refs/heads/master | 2023-02-15T06:02:11.177584 | 2021-01-14T09:38:34 | 2021-01-14T09:38:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,891 | java | package com.it.crowd.entity;
import lombok.Data;
@Data
public class Role {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_role.id
*
* @mbg.generated Fri Dec 11 10:13:17 CST 2020
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_role.name
*
* @mbg.generated Fri Dec 11 10:13:17 CST 2020
*/
private String name;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_role.id
*
* @return the value of t_role.id
* @mbg.generated Fri Dec 11 10:13:17 CST 2020
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_role.id
*
* @param id the value for t_role.id
* @mbg.generated Fri Dec 11 10:13:17 CST 2020
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_role.name
*
* @return the value of t_role.name
* @mbg.generated Fri Dec 11 10:13:17 CST 2020
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_role.name
*
* @param name the value for t_role.name
* @mbg.generated Fri Dec 11 10:13:17 CST 2020
*/
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public Role() {
super();
}
public Role(Integer id, String name) {
this.id = id;
this.name = name;
}
} | [
"486943041@qq.com"
] | 486943041@qq.com |
bee8984aabd746a8b6a45e0913744ee6649a5e0d | c9eab2d5b5e827cf5534080fb742b82da578adeb | /app/src/main/java/com/example/intentsproj/MainActivity.java | f9669abe2cdbb0a9ac87dc67cc7666edf9b2e4c2 | [] | no_license | chamodya99/Tutorial-IT19013206 | 4530d7052f6b444fc90f7523beb9f25b1c561bfa | 632ba4f62732afb4e5e0761c34615f5e722ae04b | refs/heads/master | 2022-11-30T23:29:52.039460 | 2020-08-18T11:24:32 | 2020-08-18T11:24:32 | 288,434,837 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,752 | java | package com.example.intentsproj;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import static android.view.Gravity.*;
public class MainActivity extends AppCompatActivity {
EditText num01;
EditText num02;
TextView lblsum;
private Object SecondActivity;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//defining the text objects
num01 = findViewById(R.id.num01);
num02 = findViewById(R.id.num02);
lblsum = findViewById(R.id.lblsum);
}
public void openSecond(View view) {
Intent intent = new Intent(this,SecondActivity.class);
intent.putExtra("n1",num01.getText().toString());
intent.putExtra("n2",num02.getText().toString());
//Toast.makeText(this, "opening calculator...", Toast.LENGTH_SHORT).show();
//Creating the LayoutInflater instance
LayoutInflater li = getLayoutInflater();
//Getting the View object as defined in the customtoast.xml file
View layout = li.inflate(R.layout.customtoast,(ViewGroup)
findViewById(R.id.custom_toast_layout));
//Creating the Toast object
Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_SHORT);
toast.setGravity(CENTER_VERTICAL, 0, 0);
toast.setView(layout);//setting the view of custom toast layout
// toast.show();
startActivity(intent);
}
}
| [
"trcjayashanki1999@gmail.com"
] | trcjayashanki1999@gmail.com |
2a45ec23f9fe5fa20070d3ddaf422da37ca680db | 8572c91b73fb4b791e27d712af70497fd319266e | /leakcanary-1.6.3/leakcanary-analyzer/src/test/java/com/squareup/leakcanary/AsyncTaskLeakTest.java | f9bad67c1ff0cb26a190831aaac0e37ee54d9677 | [
"Apache-2.0"
] | permissive | yuchuangu85/AndroidCommonLibrary | 7908a0dce11e4e32cd5386b62354da2432e727a0 | 86b30a7b049b1f76e532197e58b185322b70a810 | refs/heads/master | 2022-10-15T22:49:52.834171 | 2021-05-17T15:51:16 | 2021-05-17T15:51:16 | 192,298,435 | 16 | 6 | null | 2022-10-04T23:55:02 | 2019-06-17T07:41:12 | Java | UTF-8 | Java | false | false | 4,547 | java | /*
* Copyright (C) 2015 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.squareup.leakcanary;
import java.lang.ref.PhantomReference;
import java.lang.ref.WeakReference;
import java.util.Collection;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import static com.squareup.leakcanary.LeakTraceElement.Holder.THREAD;
import static com.squareup.leakcanary.LeakTraceElement.Type.STATIC_FIELD;
import static com.squareup.leakcanary.TestUtil.HeapDumpFile.ASYNC_TASK_M;
import static com.squareup.leakcanary.TestUtil.HeapDumpFile.ASYNC_TASK_O;
import static com.squareup.leakcanary.TestUtil.HeapDumpFile.ASYNC_TASK_PRE_M;
import static com.squareup.leakcanary.TestUtil.analyze;
import static java.util.Arrays.asList;
import static org.hamcrest.core.StringContains.containsString;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
@RunWith(Parameterized.class) //
public class AsyncTaskLeakTest {
static final String ASYNC_TASK_THREAD = "AsyncTask #1";
static final String ASYNC_TASK_CLASS = "android.os.AsyncTask";
static final String EXECUTOR_FIELD_1 = "SERIAL_EXECUTOR";
static final String EXECUTOR_FIELD_2 = "sDefaultExecutor";
@Parameterized.Parameters
public static Collection<Object[]> data() {
return asList(new Object[][]{
{ASYNC_TASK_PRE_M}, //
{ASYNC_TASK_M}, //
{ASYNC_TASK_O} //
});
}
private final TestUtil.HeapDumpFile heapDumpFile;
ExcludedRefs.BuilderWithParams excludedRefs;
public AsyncTaskLeakTest(TestUtil.HeapDumpFile heapDumpFile) {
this.heapDumpFile = heapDumpFile;
}
@Before
public void setUp() {
excludedRefs = new ExcludedRefs.BuilderWithParams() //
.clazz(WeakReference.class.getName())
.alwaysExclude()
.clazz("java.lang.ref.FinalizerReference")
.alwaysExclude()
.clazz(PhantomReference.class.getName())
.alwaysExclude();
}
@Test
public void leakFound() {
AnalysisResult result = analyze(heapDumpFile, excludedRefs);
assertTrue(result.leakFound);
assertFalse(result.excludedLeak);
LeakTraceElement gcRoot = result.leakTrace.elements.get(0);
assertEquals(Thread.class.getName(), gcRoot.className);
assertEquals(THREAD, gcRoot.holder);
assertThat(gcRoot.extra, containsString(ASYNC_TASK_THREAD));
}
@Test
public void excludeThread() {
excludedRefs.thread(ASYNC_TASK_THREAD);
AnalysisResult result = analyze(heapDumpFile, excludedRefs);
assertTrue(result.leakFound);
assertFalse(result.excludedLeak);
LeakTraceElement gcRoot = result.leakTrace.elements.get(0);
assertEquals(ASYNC_TASK_CLASS, gcRoot.className);
assertEquals(STATIC_FIELD, gcRoot.type);
assertTrue(gcRoot.referenceName.equals(EXECUTOR_FIELD_1) || gcRoot.referenceName.equals(
EXECUTOR_FIELD_2));
}
@Test
public void excludeStatic() {
excludedRefs.thread(ASYNC_TASK_THREAD).named(ASYNC_TASK_THREAD);
excludedRefs.staticField(ASYNC_TASK_CLASS, EXECUTOR_FIELD_1).named(EXECUTOR_FIELD_1);
excludedRefs.staticField(ASYNC_TASK_CLASS, EXECUTOR_FIELD_2).named(EXECUTOR_FIELD_2);
AnalysisResult result = analyze(heapDumpFile, excludedRefs);
assertTrue(result.leakFound);
assertTrue(result.excludedLeak);
LeakTrace leakTrace = result.leakTrace;
List<LeakTraceElement> elements = leakTrace.elements;
Exclusion exclusion = elements.get(0).exclusion;
List<String> expectedExclusions = asList(ASYNC_TASK_THREAD, EXECUTOR_FIELD_1, EXECUTOR_FIELD_2);
assertTrue(expectedExclusions.contains(exclusion.name));
}
}
| [
"guyc@gionee.com"
] | guyc@gionee.com |
e35b468573095354911b26c0c52326f69a78f161 | a7117c3b00bb3808100023041f4fef7fc86c63b3 | /supermarket1.7/src/cn/dc/supermarket/service/SellRecordServiceImp.java | a0210f61a7c92cc61656fb064d8be1221078991a | [] | no_license | cYouGH/Supermarket1.7 | c938968317083a9153e8030da9a2892941eb3d41 | 7969c3fd265197aef4582a1febd1651c56613674 | refs/heads/master | 2021-01-20T02:38:08.934732 | 2017-04-26T03:29:59 | 2017-04-26T03:29:59 | 89,433,249 | 0 | 0 | null | 2017-04-26T03:30:00 | 2017-04-26T03:23:20 | JavaScript | UTF-8 | Java | false | false | 625 | java | package cn.dc.supermarket.service;
import cn.dc.supermarket.dao.SellRecordDao;
import cn.dc.supermarket.entity.SellRecord;
import cn.dc.supermarket.utils.QueryPage;
public class SellRecordServiceImp implements SellRecordService {
private SellRecordDao sellRecordDao;
public void setSellRecordDao(SellRecordDao sellRecordDao) {
this.sellRecordDao = sellRecordDao;
}
@Override
public void save(SellRecord sellRecord) {
sellRecordDao.save(sellRecord);
}
@Override
public QueryPage<SellRecord> findAll(int page, int limit) {
QueryPage<SellRecord> qp = sellRecordDao.findAll(page,limit);
return qp;
}
}
| [
"cdlaugh@qq.com"
] | cdlaugh@qq.com |
4cb28aafa95389f50dcf479039879b46ab0f8e24 | 627b5fa45456a81a5fc65f4b04c280bba0e17b01 | /code-maven-plugin/trunk/aili/aili-cache/src/main/java/org/hbhk/aili/cache/server/cluster/JedisClusterFactory.java | da2272f8858b44ba6deaff6b115d00f43fd68384 | [] | no_license | zgdkik/aili | 046e051b65936c4271dd01b866a3c263cfb884aa | e47e3c62afcc7bec9409aff952b11600572a8329 | refs/heads/master | 2020-03-25T01:29:14.798728 | 2018-04-07T06:58:45 | 2018-04-07T06:58:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,077 | java | //package org.hbhk.aili.cache.server.cluster;
//
//import java.util.HashSet;
//import java.util.Properties;
//import java.util.Set;
//import java.util.regex.Pattern;
//
//import org.apache.commons.pool2.impl.GenericObjectPoolConfig;
//import org.springframework.beans.factory.FactoryBean;
//import org.springframework.beans.factory.InitializingBean;
//import org.springframework.core.io.Resource;
//
//import redis.clients.jedis.HostAndPort;
//import redis.clients.jedis.JedisCluster;
//
//public class JedisClusterFactory implements FactoryBean<JedisCluster>,
// InitializingBean {
//
// private Resource addressConfig;
// private String addressKeyPrefix;
//
// private JedisCluster jedisCluster;
// private Integer timeout;
// private Integer maxRedirections;
// private GenericObjectPoolConfig genericObjectPoolConfig;
//
// private Pattern p = Pattern.compile("^.+[:]\\d{1,5}\\s*$");
//
// @Override
// public JedisCluster getObject() throws Exception {
// return jedisCluster;
// }
//
// @Override
// public Class<? extends JedisCluster> getObjectType() {
// return (this.jedisCluster != null ? this.jedisCluster.getClass()
// : JedisCluster.class);
// }
//
// @Override
// public boolean isSingleton() {
// return true;
// }
//
// private Set<HostAndPort> parseHostAndPort() throws Exception {
// try {
// Properties prop = new Properties();
// prop.load(this.addressConfig.getInputStream());
//
// Set<HostAndPort> haps = new HashSet<HostAndPort>();
// for (Object key : prop.keySet()) {
//
// if (!((String) key).startsWith(addressKeyPrefix)) {
// continue;
// }
//
// String val = (String) prop.get(key);
//
// boolean isIpPort = p.matcher(val).matches();
//
// if (!isIpPort) {
// throw new IllegalArgumentException("ip 或 port 不合法");
// }
// String[] ipAndPort = val.split(":");
//
// HostAndPort hap = new HostAndPort(ipAndPort[0],
// Integer.parseInt(ipAndPort[1]));
// haps.add(hap);
// }
//
// return haps;
// } catch (IllegalArgumentException ex) {
// throw ex;
// } catch (Exception ex) {
// throw new Exception("解析 jedis 配置文件失败", ex);
// }
// }
//
// @Override
// public void afterPropertiesSet() throws Exception {
// Set<HostAndPort> haps = this.parseHostAndPort();
//
// jedisCluster = new JedisCluster(haps, timeout, maxRedirections,
// genericObjectPoolConfig);
//
// }
//
// public void setAddressConfig(Resource addressConfig) {
// this.addressConfig = addressConfig;
// }
//
// public void setTimeout(int timeout) {
// this.timeout = timeout;
// }
//
// public void setMaxRedirections(int maxRedirections) {
// this.maxRedirections = maxRedirections;
// }
//
// public void setAddressKeyPrefix(String addressKeyPrefix) {
// this.addressKeyPrefix = addressKeyPrefix;
// }
//
// public void setGenericObjectPoolConfig(
// GenericObjectPoolConfig genericObjectPoolConfig) {
// this.genericObjectPoolConfig = genericObjectPoolConfig;
// }
//
//} | [
"1024784402@qq.com"
] | 1024784402@qq.com |
0aedb5e82042e71ac30b0e449eeb976a39b62ab6 | a5ff289b7aee1829f1f6cbd4e7870355266656fc | /src/com/newlecture/javaweb/dao/jdbc/JdbcNoticeDao.java | 442bfadfae5fc1c2796abc1ad79f881b552080e9 | [] | no_license | Jiwone/dd | 32f5a705687e7ef34b684961f9ef9edeba0e27a2 | fd7735d52b440b3bbcbb2bf9fd16e0e1134a26a1 | refs/heads/master | 2021-01-20T03:53:23.299701 | 2017-09-04T05:04:08 | 2017-09-04T05:04:08 | 101,371,562 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 5,378 | java | package com.newlecture.javaweb.dao.jdbc;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import com.newlecture.javaweb.dao.NoticeDao;
import com.newlecture.javaweb.entity.Notice;
import com.newlecture.javaweb.entity.NoticeView;
public class JdbcNoticeDao implements NoticeDao{
public List<NoticeView> getList(int page,String query) {
List<NoticeView> list = null;
int offset =(page-1) *10;
String url = "jdbc:mysql://211.238.142.247/newlecture?autoReconnect=true&useSSL=false&characterEncoding=UTF-8";
String sql = "SELECT * FROM NoticeView WHERE title like ? order by regDate DESC limit ?, 10";
// Jdbc 드라이버 로드
try {
Class.forName("com.mysql.jdbc.Driver");
// 연결 / 인증
Connection conn = DriverManager.getConnection(url, "sist", "cclass"); // dclass
// 실행
/* Statement st = conn.createStatement();*/
PreparedStatement st = (PreparedStatement) conn.prepareStatement(sql);
st.setString(1, "%"+query+"%");
st.setInt(2, offset);
// 결과 가져오기
ResultSet rs = st.executeQuery();
list = new ArrayList<>();
while (rs.next()) {
NoticeView n = new NoticeView();
n.setId(rs.getString("ID"));
n.setTitle(rs.getString("TITLE"));
n.setContent(rs.getString("CONTENT"));
n.setWriterId(rs.getString("writerId"));
n.setWriterName(rs.getString("writerName"));
n.setHit(rs.getInt("hit"));
n.setCountCmt(rs.getInt("countCmt"));
list.add(n);
}
rs.close();
st.close();
conn.close();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
public int getCount() {
int count = 0;
String url = "jdbc:mysql://211.238.142.247/newlecture?autoReconnect=true&useSSL=false&characterEncoding=UTF-8";
String sqlcount = "SELECT COUNT(id) count FROM Notice ";
// Jdbc 드라이버 로드
try {
Class.forName("com.mysql.jdbc.Driver");
// 연결 / 인증
Connection conn = DriverManager.getConnection(url, "sist", "cclass"); // dclass
// 실행
/* 전체 갯수를 알기 위해 sql문 한번 더 씀*/
Statement stCount =conn.createStatement();
ResultSet rsCount = stCount.executeQuery(sqlcount);
rsCount.next();
count = rsCount.getInt("count");
rsCount.close();
stCount.close();
conn.close();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return count;
}
@Override
public NoticeView get(String id) {
NoticeView n = null;
String url = "jdbc:mysql://211.238.142.247/newlecture?autoReconnect=true&useSSL=false&characterEncoding=UTF-8";
String sql = "SELECT * FROM NoticeView WHERE id like ?";
try {
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection(url, "sist", "cclass");
// Statement st = conn.createStatement();
PreparedStatement st = conn.prepareStatement(sql);
st.setString(1, id);
ResultSet rs = st.executeQuery();
if (rs.next()) {
n = new NoticeView();
n.setId(rs.getString("ID"));
n.setTitle(rs.getString("TITLE"));
n.setWriterId(rs.getString("WRITERID"));
n.setContent(rs.getString("CONTENT"));
n.setHit(rs.getInt("HIT"));
n.setRegDate(rs.getDate("REGDATE"));
}
rs.close();
st.close();
conn.close();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return n;
}
@Override
public int update(String id, String title, String content) {
int result = 0;
String url = "jdbc:mysql://211.238.142.247/newlecture?autoReconnect=true&useSSL=false&characterEncoding=UTF-8";
String sql = "UPDATE Notice SET title=?, content=? where id=?";
try {
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection(url, "sist", "cclass");
// Statement st = conn.createStatement();
PreparedStatement st = conn.prepareStatement(sql);
st.setString(1, title);
st.setString(2, content);
st.setString(3, id);
result = st.executeUpdate();
/* 업데이트 된 row갯수를 알려줌. st.executeUpdate*/
st.close();
conn.close();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return result;
}
}
| [
"DK@user91"
] | DK@user91 |
79460cc8455a8b6a798f8a95d7ea3d9b57fe9bf9 | 4de5ad40b7eea9b3df09deed88eece15d1cac582 | /cache-service/src/main/java/org/yejt/cacheservice/cache/CacheManager.java | 36fabedd8eeddedfb1ebbfcbae22a852ca1d9c39 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | keys961/DistributedCache | 551e93d3c4ffaf85429f43a8e83e8bc5ec4edbe1 | 79a9bd4703a85b1145c5b3a60e663bbed36887fb | refs/heads/master | 2020-03-26T16:16:14.988856 | 2018-12-29T03:16:25 | 2018-12-29T03:16:25 | 145,090,890 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,535 | java | package org.yejt.cacheservice.cache;
import org.yejt.cacheservice.properties.CacheManagerProperties;
import org.yejt.cacheservice.properties.CacheProperties;
import java.io.Closeable;
/**
* An cache manager interface that manages number of {@link Cache}s.
*
* @param <K>: Key type
* @param <V>: Value type
* @author keys961
*/
public interface CacheManager<K, V> extends Closeable {
/**
* Get the specified cache.
*
* @param cacheName: Specified cache name
* @return Specified cache
*/
Cache<K, V> getCache(String cacheName);
/**
* Get all the cache names of the caches in it
* @return All the cache names
*/
Iterable<String> getCacheNames();
/**
* Create cache with specified name and properties
* @param cacheName: Cache name
* @param cacheProperties: Given cache properties
* @return Created cache
*/
Cache<K, V> createCache(String cacheName, CacheProperties cacheProperties);
/**
* Destroy a cache with given cache name.
* @param cacheName: Cache name
*/
void destroyCache(String cacheName);
/**
* Get cache management properties
* @return Cache management properties
*/
CacheManagerProperties getProperties();
/**
* Close the cache management module, it will close all the caches it has.
*/
@Override
void close();
/**
* Test whether the cache manager is closed.
* @return Whether the cache manager is closed
*/
boolean isClosed();
}
| [
"keys961@hotmail.com"
] | keys961@hotmail.com |
5cfec89f902a057ec7d9b1d5629447e0bff450f5 | b4bb3bb8e550bce1505a0e2846efc35536dc3ba4 | /backend/src/main/java/com/devsuperior/dspesquisa/services/RecordService.java | 748a80be95678e91c7f6c904c70e51ed4843a454 | [] | no_license | vtsound/sds1 | 3fdaa8e62685b0deb575f9d098499a8ff59d7463 | 78eddf5bdabc20e75df276b1c85d19579de78496 | refs/heads/master | 2022-12-22T16:45:35.634555 | 2020-10-01T17:58:31 | 2020-10-01T17:58:31 | 296,480,712 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,412 | java | package com.devsuperior.dspesquisa.services;
import java.time.Instant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.devsuperior.dspesquisa.dto.RecordDTO;
import com.devsuperior.dspesquisa.dto.RecordInsertDTO;
import com.devsuperior.dspesquisa.entities.Game;
import com.devsuperior.dspesquisa.entities.Record;
import com.devsuperior.dspesquisa.repositories.GameRepository;
import com.devsuperior.dspesquisa.repositories.RecordRepository;
@Service
public class RecordService {
@Autowired
private RecordRepository repository;
@Autowired
private GameRepository gameRepository;
@Transactional
public RecordDTO insert(RecordInsertDTO dto) {
Record entity = new Record();
entity.setName(dto.getName());
entity.setAge(dto.getAge());
entity.setMoment(Instant.now());
Game game = gameRepository.getOne(dto.getGameId());
entity.setGame(game);
entity = repository.save(entity);
return new RecordDTO(entity);
}
@Transactional(readOnly = true)
public Page<RecordDTO> findByMoments(Instant minDate, Instant maxDate, PageRequest pageRequest) {
return repository.findByMoments(minDate, maxDate, pageRequest).map(x -> new RecordDTO(x));
}
}
| [
"vinicius_burzum@hotmail.com"
] | vinicius_burzum@hotmail.com |
787907ad043f9c488783926b8ec900401a770a2c | 3afdc5cfe56af7d34e8405e4487dce00b7b38a75 | /src/Height/Converter/heightconverter.java | 42ed0074acd996f1d29900cf004c3a8c41057197 | [] | no_license | EtudianteUPS/HeightConversion | 3fabedaedc15de711a95b3b440af988431edb11e | 3b06aec7d74c0b21ab355d2b0755ac80fad175a3 | refs/heads/master | 2023-02-05T03:03:49.108357 | 2020-12-20T13:49:46 | 2020-12-20T13:49:46 | 323,048,980 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,743 | 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 Height.Converter;
/**
*
* @author sophia
*/
public class heightconverter extends javax.swing.JFrame {
/**
* Creates new form heightconverter
*/
public heightconverter() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
ftLabel = new javax.swing.JLabel();
ftTextField = new javax.swing.JTextField();
inchesLabel = new javax.swing.JLabel();
inchesTextField = new javax.swing.JTextField();
convertTextField = new javax.swing.JButton();
cmTextField = new javax.swing.JTextField();
clearBtn = new javax.swing.JButton();
exitBtn = new javax.swing.JButton();
cmLabel = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
TitleLabel = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Conversion from feet-inches to centimeters");
jPanel1.setBackground(new java.awt.Color(255, 255, 255));
jPanel1.setForeground(new java.awt.Color(255, 255, 255));
ftLabel.setFont(new java.awt.Font("Century Gothic", 0, 20)); // NOI18N
ftLabel.setText("Feet");
ftTextField.setFont(new java.awt.Font("Century Gothic", 0, 20)); // NOI18N
ftTextField.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(153, 153, 153), 1, true));
ftTextField.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
ftTextFieldActionPerformed(evt);
}
});
inchesLabel.setFont(new java.awt.Font("Century Gothic", 0, 20)); // NOI18N
inchesLabel.setText("Inches");
inchesTextField.setFont(new java.awt.Font("Century Gothic", 0, 20)); // NOI18N
inchesTextField.setToolTipText("");
inchesTextField.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(153, 153, 153), 1, true));
convertTextField.setBackground(new java.awt.Color(102, 0, 102));
convertTextField.setFont(new java.awt.Font("Century Gothic", 1, 30)); // NOI18N
convertTextField.setForeground(new java.awt.Color(255, 255, 255));
convertTextField.setText("Convert to");
convertTextField.setBorder(null);
convertTextField.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
convertTextFieldActionPerformed(evt);
}
});
cmTextField.setFont(new java.awt.Font("Century Gothic", 0, 20)); // NOI18N
cmTextField.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(153, 153, 153), 1, true));
cmTextField.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmTextFieldActionPerformed(evt);
}
});
clearBtn.setBackground(new java.awt.Color(193, 93, 160));
clearBtn.setFont(new java.awt.Font("Century Gothic", 1, 22)); // NOI18N
clearBtn.setText("Clear");
clearBtn.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
clearBtnActionPerformed(evt);
}
});
exitBtn.setBackground(new java.awt.Color(255, 0, 0));
exitBtn.setFont(new java.awt.Font("Century Gothic", 1, 22)); // NOI18N
exitBtn.setText("Exit");
exitBtn.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
exitBtnActionPerformed(evt);
}
});
cmLabel.setFont(new java.awt.Font("Century Gothic", 0, 20)); // NOI18N
cmLabel.setText("Centimeters");
jPanel2.setBackground(new java.awt.Color(102, 0, 102));
TitleLabel.setFont(new java.awt.Font("Century Gothic", 1, 35)); // NOI18N
TitleLabel.setForeground(new java.awt.Color(255, 255, 255));
TitleLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
TitleLabel.setText("Mesures Converter");
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel2Layout.createSequentialGroup()
.addContainerGap(55, Short.MAX_VALUE)
.addComponent(TitleLabel)
.addGap(55, 55, 55))
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(22, 22, 22)
.addComponent(TitleLabel)
.addContainerGap(22, Short.MAX_VALUE))
);
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(50, 50, 50)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel1Layout.createSequentialGroup()
.addComponent(clearBtn, javax.swing.GroupLayout.PREFERRED_SIZE, 109, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(exitBtn, javax.swing.GroupLayout.PREFERRED_SIZE, 106, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel1Layout.createSequentialGroup()
.addComponent(inchesLabel)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(inchesTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 181, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(ftLabel)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(ftTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 181, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(cmLabel)
.addGap(29, 29, 29)
.addComponent(cmTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 181, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(103, 103, 103)
.addComponent(convertTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 224, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(50, 50, 50)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(ftLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 48, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(ftTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 48, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(35, 35, 35)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(inchesLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 48, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(inchesTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 48, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(45, 45, 45)
.addComponent(convertTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 68, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(45, 45, 45)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(cmLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 48, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(cmTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 48, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(60, 60, 60)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(clearBtn, javax.swing.GroupLayout.PREFERRED_SIZE, 50, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(exitBtn, javax.swing.GroupLayout.PREFERRED_SIZE, 50, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap(50, Short.MAX_VALUE))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, 426, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 0, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 0, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void exitBtnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_exitBtnActionPerformed
System.exit(0);//0 -> normal exit, if the exit is different than 0, then there is an abonormal exit
}//GEN-LAST:event_exitBtnActionPerformed
private void clearBtnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_clearBtnActionPerformed
//If Clear button is pressed, text Field will be cleared
ftTextField.setText("");
inchesTextField.setText("");
cmTextField.setText("");
}//GEN-LAST:event_clearBtnActionPerformed
private void cmTextFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmTextFieldActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_cmTextFieldActionPerformed
private void convertTextFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_convertTextFieldActionPerformed
//declaration of 3 variables
double feet, inches, centimetres;
feet = Double.parseDouble(ftTextField.getText());
inches = Double.parseDouble(inchesTextField.getText());
centimetres = (feet * 12 + inches) * 2.54;
cmTextField.setText(String.valueOf(centimetres)); //we put centimeters in the text field, but first, it needs to be converted to a string
}//GEN-LAST:event_convertTextFieldActionPerformed
private void ftTextFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ftTextFieldActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_ftTextFieldActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(heightconverter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(heightconverter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(heightconverter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(heightconverter.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new heightconverter().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel TitleLabel;
private javax.swing.JButton clearBtn;
private javax.swing.JLabel cmLabel;
private javax.swing.JTextField cmTextField;
private javax.swing.JButton convertTextField;
private javax.swing.JButton exitBtn;
private javax.swing.JLabel ftLabel;
private javax.swing.JTextField ftTextField;
private javax.swing.JLabel inchesLabel;
private javax.swing.JTextField inchesTextField;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
// End of variables declaration//GEN-END:variables
}
| [
"nachinsophia@gmail.com"
] | nachinsophia@gmail.com |
ff6ee3e74db2bb57c711cfe59b523d0dc895541f | fd734c871956a510b75ab2ea03c3fa4575f06cb8 | /cake-cache/tags/cake-cache-parent-0.1/cake-cache-test/cake-cache-test-tck/src/main/java/org/codehaus/cake/cache/test/tck/core/keyset/KeySetToArray.java | 7c8d66e1e0a3e6e0529c0267064e1751769d0b99 | [] | no_license | codehaus/cake | 5a7a5e5fe70a36baf27240982012e5e0150a96c0 | cbc5ad30f4b37b50bc37b156b94ffc7d99f4e6f4 | refs/heads/master | 2023-07-20T01:34:07.321515 | 2009-08-16T12:27:41 | 2009-08-16T12:27:41 | 36,528,602 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,224 | java | /*
* Copyright 2008 Kasper Nielsen.
*
* 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://cake.codehaus.org/LICENSE
*
* 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.codehaus.cake.cache.test.tck.core.keyset;
import static org.codehaus.cake.test.util.CollectionTestUtil.M1_TO_M5_KEY_SET;
import java.util.Arrays;
import java.util.HashSet;
import org.codehaus.cake.cache.Cache;
import org.codehaus.cake.cache.test.tck.AbstractCacheTCKTest;
import org.junit.Test;
/**
*
*
* @author <a href="mailto:kasper@codehaus.org">Kasper Nielsen</a>
* @version $Id: KeySetToArray.java 526 2007-12-27 01:32:16Z kasper $
*/
public class KeySetToArray extends AbstractCacheTCKTest {
@SuppressWarnings("unchecked")
@Test
public void toArray() {
init();
assertEquals(new HashSet(), new HashSet(Arrays.asList(c.keySet().toArray())));
assertEquals(new HashSet(), new HashSet(Arrays.asList(c.keySet().toArray(new Integer[0]))));
c = newCache(5);
assertEquals(new HashSet(M1_TO_M5_KEY_SET), new HashSet(Arrays.asList(c.keySet().toArray())));
assertEquals(new HashSet(M1_TO_M5_KEY_SET), new HashSet(Arrays.asList(c.keySet().toArray(new Integer[0]))));
assertEquals(new HashSet(M1_TO_M5_KEY_SET), new HashSet(Arrays.asList(c.keySet().toArray(new Integer[5]))));
}
/**
* {@link Cache#isEmpty()} lazy starts the cache.
*/
@Test
public void toArrayLazyStart() {
c = newCache(0);
assertFalse(c.isStarted());
c.keySet().toArray();
checkLazystart();
}
/**
* {@link Cache#isEmpty()} lazy starts the cache.
*/
@Test
public void toArrayLazyStart1() {
c = newCache(0);
assertFalse(c.isStarted());
c.keySet().toArray(new Integer[5]);
checkLazystart();
}
/**
* {@link Cache#isEmpty()} should not fail when cache is shutdown.
*
* @throws InterruptedException
* was interrupted
*/
@Test
public void toArrayShutdown() {
c = newCache(5);
assertTrue(c.isStarted());
c.shutdown();
// should not fail, but result is undefined until terminated
assertEquals(0, c.keySet().toArray().length);
}
/**
* {@link Cache#isEmpty()} should not fail when cache is shutdown.
*
* @throws InterruptedException
* was interrupted
*/
@Test
public void toArrayShutdown1() {
c = newCache(5);
assertTrue(c.isStarted());
c.shutdown();
// should not fail, but result is undefined until terminated
assertEquals(5, c.keySet().toArray(new Integer[5]).length);
}
}
| [
"nobody@3b99cd06-704a-0410-9335-aa0d59a2a4ad"
] | nobody@3b99cd06-704a-0410-9335-aa0d59a2a4ad |
097f1f0197d9ee3c2313d44b2ce5ca466cf5bbdd | c91622a61c05d2e8cd049af154c79c0dcee7c6da | /src/editormacro/Activator.java | 0d3d4a5b41534699b804941b1b2266cd13ef07c0 | [] | no_license | nimonit1/EditerMacro | d1b5098bbdd88badb322b033be983d57dcee72d2 | af74e361dee70f574ab90b222753c48287fa3461 | refs/heads/master | 2021-05-14T01:48:14.710621 | 2018-01-13T14:11:43 | 2018-01-13T14:11:43 | 116,575,269 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,405 | java | package editormacro;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class Activator extends AbstractUIPlugin {
// The plug-in ID
public static final String PLUGIN_ID = "EditerMacro"; //$NON-NLS-1$
// The shared instance
private static Activator plugin;
/**
* The constructor
*/
public Activator() {
}
/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static Activator getDefault() {
return plugin;
}
/**
* Returns an image descriptor for the image file at the given
* plug-in relative path
*
* @param path the path
* @return the image descriptor
*/
public static ImageDescriptor getImageDescriptor(String path) {
return imageDescriptorFromPlugin(PLUGIN_ID, path);
}
}
| [
"jun_-@DESKTOP-Q8Q5KMI"
] | jun_-@DESKTOP-Q8Q5KMI |
76b2a2c1815c4d562bc9b5034d908de792613221 | 1ff3dac161619f2f3274f8775761f8001c64a49d | /jmsDemo/src/main/java/cn/itcast/demo/TopicProducer.java | 16aa2c982a4f3f9cdb4cb1b7c362611cd2f8b556 | [] | no_license | jzh167521/repo1 | 3113e2a093f1344ccf21650790c46a8779559b48 | e7c4571882bb9ac266c7d5ab821055bed7a73d6c | refs/heads/master | 2020-05-02T04:03:01.340453 | 2019-03-26T07:38:16 | 2019-03-26T07:38:16 | 177,741,315 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 910 | java | package cn.itcast.demo;
import org.apache.activemq.ActiveMQConnectionFactory;
import javax.jms.*;
/**
* 创建生产者
*/
public class TopicProducer {
public static void main(String[] args) throws JMSException {
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://192.168.25.128:61616");
Connection connection = factory.createConnection();
connection.start();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Topic topic = session.createTopic("itcast_topic");
MessageProducer producer = session.createProducer(topic);
MapMessage mapMessage = session.createMapMessage();
mapMessage.setString("username","jzh");
mapMessage.setString("password","123456");
producer.send(mapMessage);
producer.close();
session.close();
connection.close();
}
}
| [
"ji6665757@163.com"
] | ji6665757@163.com |
f4ccaeee1193263f417b9e15c2e3a076ff1c2a6a | f4bb882d5f7bde306a166de33b31cb2d52d29f7a | /TD11a - DemoIHM/src/fr/eni/cours/dal/jdbc/DAOEleveOrclImpl.java | 10eecfce543d9555179ee46cb8c6901aadf2db71 | [] | no_license | Masamune42/workspace_jse | c2afb323f81e76aeab7ebdca2d9e15f3968b972f | 3e9afad6c087759c22c6279dfe6a5766d2658d52 | refs/heads/master | 2021-01-16T08:10:55.312658 | 2020-02-25T15:39:48 | 2020-02-25T15:39:48 | 243,036,682 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 6,017 | java | package fr.eni.cours.dal.jdbc;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import fr.eni.cours.bo.Eleve;
import fr.eni.cours.dal.DALException;
import fr.eni.cours.dal.DAOEleve;
import fr.eni.cours.util.DBConnexion;
public class DAOEleveOrclImpl implements DAOEleve{
//declaration des constantes
/*
private final static String SELECT_ALL = "EXEC dbo.listerEleve";
private final static String RECHERCHER= "EXEC dbo.rechercherEleve @nom=?, @prenom=?";
private final static String INSERER = "EXEC dbo.insererEleve @nom=?, @prenom=? @adresse=?";
private final static String SUPPRIMER = "EXEC dbo.supprimerEleve @nom=?, @prenom=?";
private final static String MODIFIER = "EXEC dbo.modifierEleve @nom=?, @prenom=? @adresse=?";
private final static String COMPTER = "@nbre=? EXEC dbo.compterEleve";
*/
/**
* Methode qui permet de lister tous les élèves present en BDD
* @return La liste peut être vide mais jamais <code>null</code>
* @throws DALException : propage l'exception en DALException
* @finally ferme les connexions ouvertes
*/
@Override
public ArrayList<Eleve> lister() throws DALException {
//declaration des variables et objets et initialisation
Connection cnx=null;
CallableStatement callstmt=null;//on l'utilise lorsqu'il n'y a pas de parametre dans la requete
ResultSet rs=null;
ArrayList<Eleve> listeEleves = new ArrayList<Eleve>(); //on instancie la liste, donc elle ne sera pas null
Eleve eleve= null;
cnx = DBConnexion.seConnecter();
try{
callstmt=cnx.prepareCall("{call listerEleve }"); //creation du statement
rs=callstmt.executeQuery(); //execution de la requete. Ici la methode executeQuery nous ramène un resultat
//qui est integré à l'objet de type ResultSet
while (rs.next()){
eleve = new Eleve();
eleve.setNom(rs.getString("nom"));
eleve.setPrenom(rs.getString("prenom"));
rs.getString("adresse");
if (rs.wasNull()){
eleve.setAdresse("<<inconnue>>");
}else {
eleve.setAdresse(rs.getString("adresse"));
}
listeEleves.add(eleve);
}
}catch (SQLException e){
throw new DALException ("Probleme methode lister()",e);
}finally{
DBConnexion.seDeconnecter(callstmt, cnx);
}
return listeEleves;
}
/**
* Methode rechercher un élève
* @param nom
* @param prenom
* @return un eleve
* @throws DALException : propage l'exception en DALException
* @finally ferme les connexions ouvertes
*/
@Override
public Eleve rechercher(String nom, String prenom) throws DALException{
Connection cnx=null;
CallableStatement callstmt=null;
ResultSet rs=null;
Eleve eleve = new Eleve();
cnx = DBConnexion.seConnecter();
try{
callstmt=cnx.prepareCall("{call rechercherEleve(?,?) }");
callstmt.setString(1, nom);
callstmt.setString(2, prenom);
rs=callstmt.executeQuery();
while (rs.next()){
eleve.setNom(rs.getString("nom"));
eleve.setPrenom(rs.getString("prenom"));
eleve.setAdresse(rs.getString("adresse"));
}
}catch (SQLException e){
throw new DALException ("Probleme methode rechercher()",e);
}finally{
DBConnexion.seDeconnecter(callstmt, cnx);
}
return eleve;
}
/**
* Methode ajouter un élève
* @param un eleve
* @throws DALException propage l'exception en DALException
*/
@Override
public int ajouter(Eleve eleve) throws DALException{
Connection cnx=null;
CallableStatement callstmt=null;
int nbLignes = 0;
cnx = DBConnexion.seConnecter();
try{
callstmt=cnx.prepareCall("{call insererEleve(?,?,?) }");
callstmt.setString(1, eleve.getNom());
callstmt.setString(2, eleve.getPrenom());
callstmt.setString(3, eleve.getAdresse());
nbLignes=callstmt.executeUpdate();
} catch (SQLException e){
throw new DALException ("Probleme methode ajouter()",e);
}finally{
DBConnexion.seDeconnecter(callstmt, cnx);
}
return nbLignes;
}
/**
* Methode supprimer un élève. On utilise une procédure stockée.
* @param nom
* @param prenom
* @throws DALException : propage l'exception en DALException
*/
@Override
public int supprimer(String nom, String prenom) throws DALException{
Connection cnx=null;
CallableStatement callstmt = null;
int nbLigne=0;
cnx = DBConnexion.seConnecter();
try{
callstmt = cnx.prepareCall("{call supprimerEleve(?,?) }");
callstmt.setString(1, nom);
callstmt.setString(2, prenom);
nbLigne=callstmt.executeUpdate();
}catch(SQLException e){
throw new DALException ("Probleme methode supprimer()",e);
}finally{
DBConnexion.seDeconnecter(callstmt, cnx);
}
return nbLigne;
}
/**
* Methode modifier un élève
* @param adresse
* @param nom
* @param prenom
* @throws DALException : propage l'exception en DALException
*/
@Override
public int modifier(String adresse,String nom, String prenom) throws DALException{
Connection cnx=null;
CallableStatement callstmt=null;
int nbLigne=0;
cnx = DBConnexion.seConnecter();
try{
callstmt=cnx.prepareCall("{call modifierEleve(?,?,?)} ");
callstmt.setString(3,adresse);
callstmt.setString(1,nom);
callstmt.setString(2,prenom);
nbLigne=callstmt.executeUpdate();
}catch (SQLException e){
throw new DALException ("Probleme methode modifier()",e);
}finally{
DBConnexion.seDeconnecter(callstmt, cnx);
}
return nbLigne;
}
/**
* @return
*/
@Override
public int compter() throws DALException {
Connection cnx = null;
CallableStatement callstmt = null;
int nbEleves =0;
cnx = DBConnexion.seConnecter();
try {
callstmt = cnx.prepareCall("{?= call compterEleve }");
callstmt.registerOutParameter(1, java.sql.Types.INTEGER);
callstmt.execute();
nbEleves = callstmt.getInt(1);
} catch (SQLException e) {
throw new DALException ("Probleme methode compter()",e);
}finally{
DBConnexion.seDeconnecter(callstmt, cnx);
}
return nbEleves;
}
}
| [
"a.caignard@hotmail.fr"
] | a.caignard@hotmail.fr |
976d1a834ab972a319ebf8447c7a80046c705e34 | ab0f79892c8bdb34cf9b192295248dd65342a4e1 | /android/support/v4/net/ConnectivityManagerCompat.java | 653751cd868772a22b6f432b1f8ecc6ea9e129de | [] | no_license | jozn/Salam | 0dac7ce3fd8f8473a7124b5a0a23dd7c13b5798a | 322282e55bff78094745f787d1463b1ec5f6248c | refs/heads/master | 2021-01-20T03:22:24.212781 | 2016-02-04T11:23:27 | 2016-02-04T11:23:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,054 | java | package android.support.v4.net;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Build.VERSION;
import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
import org.eclipse.paho.client.mqttv3.logging.Logger;
public class ConnectivityManagerCompat {
private static final ConnectivityManagerCompatImpl IMPL;
interface ConnectivityManagerCompatImpl {
boolean isActiveNetworkMetered(ConnectivityManager connectivityManager);
}
static class BaseConnectivityManagerCompatImpl implements ConnectivityManagerCompatImpl {
BaseConnectivityManagerCompatImpl() {
}
public boolean isActiveNetworkMetered(ConnectivityManager cm) {
NetworkInfo info = cm.getActiveNetworkInfo();
if (info == null) {
return true;
}
switch (info.getType()) {
case MqttConnectOptions.MQTT_VERSION_DEFAULT /*0*/:
return true;
case Logger.SEVERE /*1*/:
return false;
default:
return true;
}
}
}
static class GingerbreadConnectivityManagerCompatImpl implements ConnectivityManagerCompatImpl {
GingerbreadConnectivityManagerCompatImpl() {
}
public boolean isActiveNetworkMetered(ConnectivityManager cm) {
return ConnectivityManagerCompatGingerbread.isActiveNetworkMetered(cm);
}
}
static class HoneycombMR2ConnectivityManagerCompatImpl implements ConnectivityManagerCompatImpl {
HoneycombMR2ConnectivityManagerCompatImpl() {
}
public boolean isActiveNetworkMetered(ConnectivityManager cm) {
return ConnectivityManagerCompatHoneycombMR2.isActiveNetworkMetered(cm);
}
}
static class JellyBeanConnectivityManagerCompatImpl implements ConnectivityManagerCompatImpl {
JellyBeanConnectivityManagerCompatImpl() {
}
public boolean isActiveNetworkMetered(ConnectivityManager cm) {
return ConnectivityManagerCompatJellyBean.isActiveNetworkMetered(cm);
}
}
static {
if (VERSION.SDK_INT >= 16) {
IMPL = new JellyBeanConnectivityManagerCompatImpl();
} else if (VERSION.SDK_INT >= 13) {
IMPL = new HoneycombMR2ConnectivityManagerCompatImpl();
} else if (VERSION.SDK_INT >= 8) {
IMPL = new GingerbreadConnectivityManagerCompatImpl();
} else {
IMPL = new BaseConnectivityManagerCompatImpl();
}
}
public static boolean isActiveNetworkMetered(ConnectivityManager cm) {
return IMPL.isActiveNetworkMetered(cm);
}
public static NetworkInfo getNetworkInfoFromBroadcast(ConnectivityManager cm, Intent intent) {
NetworkInfo info = (NetworkInfo) intent.getParcelableExtra("networkInfo");
if (info != null) {
return cm.getNetworkInfo(info.getType());
}
return null;
}
}
| [
"grayhat@kimo.com"
] | grayhat@kimo.com |
32c1a58684bead6646a50fa8087903c8009df09d | 20c6c1334a79e5e1e50c4e77197ea5091be9f56d | /app/src/main/java/com/guangxi/culturecloud/views/JustifyTextView.java | 82b0f7d6470aa12afd2cb6ea583b8716e9ae0789 | [] | no_license | Asieny/clt002uure | a27f5af5d5dce0722ec0f2e75cdd9617af63d74e | 8b7a25aeb6e062b5ed9cc85a0c4f8cc2ab6be15f | refs/heads/master | 2021-10-22T04:36:57.504530 | 2019-03-08T02:48:19 | 2019-03-08T02:48:31 | 162,237,872 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,371 | java | package com.guangxi.culturecloud.views;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.text.Layout;
import android.text.StaticLayout;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.widget.TextView;
/**
* 用于文本两端对齐的TextView
* Created by ccheng on 3/18/14.
*/
public class JustifyTextView extends TextView {
private int mLineY;
private int mViewWidth;
public JustifyTextView(Context context) {
super(context);
}
public JustifyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
}
@Override
protected void onDraw(Canvas canvas) {
TextPaint paint = getPaint();
paint.setColor(getCurrentTextColor());
// 返回绘制状态的资源ID数组表示视图的当前状态
paint.drawableState = getDrawableState();
// 对View上的内容进行测量后得到的View内容占据的宽度
// 前提是你必须在父布局的onLayout()方法或者此View的onDraw()方法里调用measure(0,0);
// 否则你得到的结果和getWidth()得到的结果一样。
mViewWidth = getMeasuredWidth();
// 获取文本
String text = getText().toString();
mLineY = 0;
mLineY += getTextSize();
// 获取用于显示当前文本的布局
Layout layout = getLayout();
if (layout == null) {
return;
}
Paint.FontMetrics fm = paint.getFontMetrics();
int textHeight = (int) (Math.ceil(fm.descent - fm.ascent));
textHeight = (int) (textHeight * layout.getSpacingMultiplier() + layout.getSpacingAdd());
for (int i = 0; i < layout.getLineCount(); i++) {
// 返回文本中的指定行开头的偏移
int lineStart = layout.getLineStart(i);
// 返回文本中的指定行最后一个字符的偏移
int lineEnd = layout.getLineEnd(i);
float width = StaticLayout.getDesiredWidth(text, lineStart, lineEnd, getPaint());
String line = text.substring(lineStart, lineEnd);
if (line.equals("")) {
break;
}
if (i < layout.getLineCount() - 1) {
if (needScale(line)) {
drawScaledText(canvas, lineStart, line, width);
} else {
canvas.drawText(line, 0, mLineY, paint);
}
} else {
canvas.drawText(line, 0, mLineY, paint);
}
// 增加行高
mLineY += textHeight;
}
}
private void drawScaledText(Canvas canvas, int lineStart, String line,
float lineWidth) {
float x = 0;
if (isFirstLineOfParagraph(lineStart, line)) {
String blanks = " ";
canvas.drawText(blanks, x, mLineY, getPaint());
float bw = StaticLayout.getDesiredWidth(blanks, getPaint());
x += bw;
line = line.substring(3);
}
int gapCount = line.length() - 1;
int i = 0;
if (line.length() > 2 && line.charAt(0) == 12288
&& line.charAt(1) == 12288) {
String substring = line.substring(0, 2);
float cw = StaticLayout.getDesiredWidth(substring, getPaint());
canvas.drawText(substring, x, mLineY, getPaint());
x += cw;
i += 2;
}
float d = (mViewWidth - lineWidth) / gapCount;
for (; i < line.length(); i++) {
String c = String.valueOf(line.charAt(i));
float cw = StaticLayout.getDesiredWidth(c, getPaint());
canvas.drawText(c, x, mLineY, getPaint());
x += cw + d;
}
}
private boolean isFirstLineOfParagraph(int lineStart, String line) {
return line.length() > 3 && line.charAt(0) == ' ' && line.charAt(1) == ' ';
}
private boolean needScale(String line) {
if (line.length() == 0) {
return false;
} else {
return line.charAt(line.length() - 1) != '\n';
}
}
}
| [
"admin"
] | admin |
bf1a51f8c1abac4d22eab2d1e6b0aa137432804d | e20fd58cde12a3ff660b5ce5a8d7e5ba3c02e61e | /api/src/main/java/com/example/api/repository/PedidoRepository.java | c015d554a40bee9270d3bca477dc158769192117 | [
"MIT"
] | permissive | carlosgit2016/dashboard | e7f0030909eff5f07c73fd0732148c3fd3da46c8 | 8db93510efa2488470960cfc28961f582b3dff6a | refs/heads/master | 2020-05-18T00:17:58.139371 | 2019-05-09T14:37:41 | 2019-05-09T14:37:41 | 184,055,221 | 1 | 1 | null | 2019-05-09T14:37:43 | 2019-04-29T11:05:10 | Java | UTF-8 | Java | false | false | 213 | java | package com.example.api.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.example.api.model.Pedido;
public interface PedidoRepository extends JpaRepository<Pedido, Long> {
}
| [
"1690289@SOAM.TCS.com"
] | 1690289@SOAM.TCS.com |
87cd5a6bb2a5c4b556f943102a55339ab91427b9 | d28005b2c3738f4e8d892e4eff3a075afb2b8bc3 | /app/src/main/java/mq/com/chuohapps/data/helpers/network/response/GetLocationResponse.java | db95f0918dc9e7f289d43f6c5c7d08c09dd8edcf | [] | no_license | Huyenchu26/Demo-Chu | 003ee73275580798f439b1a1e1784adda8242b51 | 0e833c7950b01e09d4c52ba08a42812dc894dadc | refs/heads/master | 2020-03-20T04:07:32.786702 | 2019-01-14T16:53:17 | 2019-01-14T16:53:17 | 137,171,666 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 300 | java | package mq.com.chuohapps.data.helpers.network.response;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class GetLocationResponse {
@SerializedName("listLocation")
@Expose
public List<String> listLocation;
}
| [
"chu.thi.ngoc.huyen@mqsolutions.com.vn"
] | chu.thi.ngoc.huyen@mqsolutions.com.vn |
840714c23015266b250df2acd901110e441c1a15 | 2ba30ec188a1372743c0da3a666799aa68a206b4 | /Aula14/src/br/maua/sets/HashSetTestDrive.java | b37dc67f2e6e81631578d225d8d14395869f2e7b | [] | no_license | Murilo-ZC/ecm251-2021-lab3 | 1959323dd28b7daf66923bc1704dc90e13f3ea96 | 78eed49a5d11ac8a5555b77010d04e05b185e629 | refs/heads/main | 2023-09-04T05:42:09.977254 | 2021-10-28T12:33:56 | 2021-10-28T12:33:56 | 341,232,965 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 530 | java | package br.maua.sets;
import br.maua.models.Item;
import java.util.HashSet;
import java.util.Set;
public class HashSetTestDrive {
public static void main(String[] args) {
Set<Item> itemSet = new HashSet<>();
//Adiciona os elementos no HashSet
itemSet.add(new Item("Maca", 1));
itemSet.add(new Item("Pera", 2));
itemSet.add(new Item("Maca", 1));
itemSet.add(new Item("Banana", 3));
//Exibe os itens
itemSet.forEach(item -> System.out.println(item));
}
}
| [
"carvalho.zanini@gmail.com"
] | carvalho.zanini@gmail.com |
3941684c471654207fd586a6a310e3a939f41e9b | 7c0ae603423d6979d2987e0c7687242f381de7db | /Prueba/app/src/androidTest/java/com/example/pizarrajhoanthan/ExampleInstrumentedTest.java | faed77ab0be65e239a6205549b3b6d0ca8f7b35d | [] | no_license | Jhonathan-Pizarra/CRUDAndorid-Firebase | 7a71e6611d124925194b6928aa5e1c1065ce55ef | 8e347b9325144431428055b07aa8b3dcc3562b27 | refs/heads/master | 2023-01-20T12:10:09.767471 | 2020-12-01T21:55:30 | 2020-12-01T21:55:30 | 276,237,711 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 770 | java | package com.example.pizarrajhoanthan;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.pizarrajhoanthan", appContext.getPackageName());
}
} | [
"jhonnathan.pizarra@epn.edu.ec"
] | jhonnathan.pizarra@epn.edu.ec |
0e1cfd4867967747e73013e9d6ef35d316ba2279 | 9b542fd7ae080fdf7d7611fba402d8f41b950d0b | /Java II/src/main/java/pt/tecnico/bubbledocs/domain/Interval.java | 29c70ac8231c1f67357955c98434e28ab66d9b8b | [] | no_license | vascobailao/Java | b4ecfb581e8d23af63cd1b0687dc3c0053199e70 | 535c5e4183ecd4528c95811280e6c140a5ae8367 | refs/heads/master | 2021-08-10T14:37:19.946644 | 2017-11-12T17:02:22 | 2017-11-12T17:02:22 | 110,449,744 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,582 | java | package pt.tecnico.bubbledocs.domain;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
public class Interval extends Interval_Base{
private List<Celula> listCelulas = new ArrayList<Celula>();
public Interval(FolhaCalculo f,Referencia celInicial, Referencia celFinal) {
super();
// this.setValor(Integer.parse(refInicio,refFinal));
// Set<Celula> listCelulas = null;
this.setCellInicial(celInicial.toString());
this.setCellFinal(celFinal.toString());
int flag = 0;
Celula newCelula = null;
if(celInicial.getLinha()== celFinal.getLinha() || celInicial.getColuna()== celFinal.getColuna()){
for (int i=celInicial.getLinha(); i<= celFinal.getLinha();i++){
for (int j=celInicial.getColuna();j<= celFinal.getColuna();j++){
Set<Celula> listCelulasFolha = f.getCelulaSet();
for (Celula c : listCelulasFolha){
if(c.getLinha()==i && c.getColuna()==j){
flag = 1;
this.listCelulas.add(c);
}
}
if(flag==0){
newCelula = new Celula(i, j);
this.listCelulas.add(newCelula);
}
}
}
}
// for (Celula cel : listCelulas){
// //this.setValor(cel.getConteudo().getContent());
// }
//
}
@Override
public List<Celula> getIntervalo(){
return listCelulas;
}
@Override
public Integer getContent() {
// TODO Auto-generated method stub
return null;
}
@Override
public Integer getvalue(){
return this.getContent();
}
// @Override
// public Integer getContent() {
// // TODO Auto-generated method stub
// return this.getIntervalo();
// }
}
| [
"vasco.bailao@github.com"
] | vasco.bailao@github.com |
785c44e344806c71c7ab13ccbc5c73316f9f4597 | ae1e2ef252dc5fdda0d91baa69940a0451ab3edf | /src/com/atop/adapter/NodeListAdapter.java | e3b887b95acb8e7af6d5da42c64d1ea208c7ba5a | [] | no_license | allmind75/ATOP | e7e8384ac9acddd2720643b381130b9b44066d8d | dfadae3a33dc8e5353639b287750572b31c3e036 | refs/heads/master | 2021-05-15T09:02:25.969432 | 2017-10-24T03:38:46 | 2017-10-24T03:38:46 | 108,072,940 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,598 | java | package com.atop.adapter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import android.content.Context;
import android.os.Build;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
import com.example.ssm_test.R;
public class NodeListAdapter extends BaseExpandableListAdapter {
public interface IFileCancelListener {
void onFileCanceled(String channel, String node, String trId, int index, boolean bMulti);
}
public NodeListAdapter(Context context, IFileCancelListener fileCancelListener) {
mContext = context;
mInflater = LayoutInflater.from(mContext);
mNodeInfoList = new CopyOnWriteArrayList<NodeInfo>();
mFileCancelListener = fileCancelListener;
}
/* Information about the joined node */
class NodeInfo {
String interfaceName = null;
String nodeName = null;
int nodeNumber = 0;
boolean bChecked = false;
ArrayList<ProgressInfo> progressInfoList = new ArrayList<ProgressInfo>();
NodeInfo(String interfaceName, String nodeName, int nodeNumber, boolean bChecked) {
this.interfaceName = interfaceName;
this.nodeName = nodeName;
this.bChecked = bChecked;
this.nodeNumber = nodeNumber;
}
}
/* Information about the progressBar of the file transfer */
class ProgressInfo {
boolean bMulti = false;
boolean bSend = false;
String trId = null;
int fileIndex = 0;
int progress = 0;
}
class ProgressViewHolder {
ImageView loadingicon_imageView;
Button fileCancel_btn;
ProgressBar progressbar;
TextView fileCnt_textView;
}
class NodeViewHolder {
TextView mNodename_textView;
CheckBox mbSend_checkbox;
}
public void addNode(String interfaceName, String nodeName, int nodeNumber) {
NodeInfo nodeInfo = new NodeInfo(interfaceName, nodeName, nodeNumber, false);
mNodeInfoList.add(nodeInfo);
notifyDataSetChanged();
}
public void removeNode(String interfaceName, String nodeName) {
int position = getNodePosition(interfaceName, nodeName);
if (position == -1) {
Log.d(TAG, TAGClass + "removeNode() : no such a node - " + nodeName);
return;
}
mNodeInfoList.remove(position);
notifyDataSetChanged();
}
public void removeNodeGroup(String interfaceName) {
List<NodeInfo> nodeList = mNodeInfoList;
for (NodeInfo nodeInfo : nodeList) {
if (nodeInfo.interfaceName.equals(interfaceName)) {
Log.d(TAG, TAGClass + "removeNodeGroup(" + interfaceName + ")");
removeNode(interfaceName, nodeInfo.nodeName);
}
}
notifyDataSetChanged();
}
public void removeNodeAll() {
mNodeInfoList.clear();
notifyDataSetChanged();
}
/* Get the list of nodes that you checked. */
public ArrayList<String[][]> getCheckedNodeList() {
ArrayList<String[][]> checkedList = new ArrayList<String[][]>();
String checkedNodeInfo[][] = new String[mNodeInfoList.size()][2];
int i = 0;
for (NodeInfo nodeInfo : mNodeInfoList) {
if (nodeInfo.bChecked) {
checkedNodeInfo[i][0] = nodeInfo.interfaceName;
checkedNodeInfo[i][1] = nodeInfo.nodeName;
checkedList.add(checkedNodeInfo);
i++;
}
}
return checkedList;
}
public ArrayList<String> getNodeList() {
ArrayList<String> nodeNameList = new ArrayList<String>();
for (NodeInfo nodeInfo : mNodeInfoList) {
nodeNameList.add(nodeInfo.nodeName);
}
return nodeNameList;
}
public void setCheckMode(boolean checkMode) {
bCheckMode = checkMode;
}
public void setSecureChannelFrag(boolean isSecureChannelFrag) {
mIsSecureChannelFrag = isSecureChannelFrag;
}
/* Set the total count of files. */
public void setFileTotalCnt(String interfaceName, String node, int fileTotalCnt, String trId) {
int nodePosition = getNodePosition(interfaceName, node);
if (nodePosition == -1) {
Log.d(TAG, TAGClass + "setFileTotalCnt() : no such a node - " + node);
return;
}
fileCntHashMap.put(trId, fileTotalCnt);
}
/* Add or Update the progressBar */
public void setProgressUpdate(String interfaceName, String node, String trId, int fileIndex,
int progress, boolean bMulti, boolean bSend) {
int nodePosition = getNodePosition(interfaceName, node);
if (nodePosition == -1) {
Log.d(TAG, TAGClass + "setProgressUpdate(fileIdx[" + fileIndex
+ "]) : no such a node - " + node);
return;
}
int progressPosition = getProgressPosition(nodePosition, fileIndex, trId);
if (progressPosition == -1) { // Add the progressBar
if (null != fileCancelHashMap.get(trId)) {
Log.d(TAG, TAGClass + "fileChunk is received/sent after click the cancel button.");
fileCancelHashMap.remove(trId);
return;
}
ProgressInfo progressInfo = new ProgressInfo();
progressInfo.trId = trId;
progressInfo.bMulti = bMulti;
progressInfo.fileIndex = fileIndex;
progressInfo.progress = progress;
progressInfo.bSend = bSend;
addProgress(nodePosition, progressInfo);
} else { // Update the progressBar - save the percentage of the file
// transfer
ArrayList<ProgressInfo> progressList = mNodeInfoList.get(nodePosition).progressInfoList;
progressList.get(progressPosition).progress = progress;
notifyDataSetChanged();
}
}
/* Add the progressBar */
public void addProgress(int nodePosition, ProgressInfo progressInfo) {
ArrayList<ProgressInfo> progressInfoList = mNodeInfoList.get(nodePosition).progressInfoList;
progressInfoList.add(progressInfo);
notifyDataSetChanged();
}
/* Remove the progressBar */
public void removeProgress(int fileIndex, String trId) {
for (int i = 0; i < getGroupCount(); i++) {
NodeInfo node = mNodeInfoList.get(i);
for (int j = 0; j < getChildrenCount(i); j++) {
ProgressInfo progressInfo = node.progressInfoList.get(j);
if (progressInfo.fileIndex == fileIndex && progressInfo.trId.equals(trId)) {
mNodeInfoList.get(i).progressInfoList.remove(j);
}
}
}
notifyDataSetChanged();
}
/* Remove the canceled file transfer's progressBar. */
public void removeCanceledProgress(String interfaceName, String nodeName, String trId) {
int nodePosition = getNodePosition(interfaceName, nodeName);
if (nodePosition == -1) {
Log.d(TAG, TAGClass + "removeCanceledProgress() : no such a node - " + nodeName);
return;
}
// Find the canceled file transfer's trId
for (Iterator<ProgressInfo> iterator = mNodeInfoList.get(nodePosition).progressInfoList
.iterator(); iterator.hasNext();) {
ProgressInfo progressInfo = iterator.next();
if (progressInfo.trId.equals(trId)) {
iterator.remove();
}
}
notifyDataSetChanged();
}
/* Get the node's position. */
private int getNodePosition(String interfaceName, String nodeName) {
for (int i = 0; i < getGroupCount(); i++) {
if (mNodeInfoList.get(i).interfaceName.equals(interfaceName)
&& mNodeInfoList.get(i).nodeName.equals(nodeName)) {
return i;
}
}
return -1;
}
/* Get the progressBar's position. */
private int getProgressPosition(int nodePosition, int fileIndex, String trId) {
NodeInfo node = mNodeInfoList.get(nodePosition);
for (int i = 0; i < getChildrenCount(nodePosition); i++) {
ProgressInfo progressInfo = node.progressInfoList.get(i);
if (progressInfo.fileIndex == fileIndex && progressInfo.trId.equals(trId)) {
return i;
}
}
return -1;
}
@Override
public Object getChild(int nodePosition, int progressPosition) {
return mNodeInfoList.get(nodePosition).progressInfoList.get(progressPosition);
}
@Override
public long getChildId(int nodePosition, int progressPosition) {
return progressPosition;
}
@Override
public View getChildView(int nodePosition, int progressPosition, boolean isLastProgress,
View view, ViewGroup parent) {
View v = view;
if (null == v) {
mProgressViewHolder = new ProgressViewHolder();
v = mInflater.inflate(R.layout.progress_list_item, null);
mProgressViewHolder.loadingicon_imageView = (ImageView) v
.findViewById(R.id.loadingicon_imageView);
mProgressViewHolder.fileCancel_btn = (Button) v.findViewById(R.id.fileCancel_btn);
mProgressViewHolder.progressbar = (ProgressBar) v.findViewById(R.id.progressBar);
mProgressViewHolder.fileCnt_textView = (TextView) v.findViewById(R.id.fileCnt_textView);
v.setTag(mProgressViewHolder);
} else {
mProgressViewHolder = (ProgressViewHolder) v.getTag();
}
final NodeInfo nodeInfo = mNodeInfoList.get(nodePosition);
final ProgressInfo progressInfo = nodeInfo.progressInfoList.get(progressPosition);
// Set the progressBar's icon to distinguish between sending and
// receiving the file transfer.
if (progressInfo.bSend) {
mProgressViewHolder.loadingicon_imageView
.setBackgroundResource(R.drawable.ic_file_sending);
} else {
mProgressViewHolder.loadingicon_imageView
.setBackgroundResource(R.drawable.ic_file_receiving);
}
// Set the the percentage of the file transfer and count of files.
mProgressViewHolder.progressbar.setProgress(progressInfo.progress);
mProgressViewHolder.fileCnt_textView.setText("(" + progressInfo.fileIndex + "/"
+ fileCntHashMap.get(progressInfo.trId) + ")");
// When you click a button of the file transfer ..
mProgressViewHolder.fileCancel_btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mFileCancelListener.onFileCanceled(nodeInfo.interfaceName, nodeInfo.nodeName,
progressInfo.trId, progressInfo.fileIndex, progressInfo.bMulti);
fileCancelHashMap.put(progressInfo.trId, true);
Log.d(TAG, TAGClass + "onClick() : " + progressInfo.trId);
}
});
return v;
}
@Override
public int getChildrenCount(int nodePosition) {
return mNodeInfoList.get(nodePosition).progressInfoList.size();
}
@Override
public Object getGroup(int nodePosition) {
return mNodeInfoList.get(nodePosition);
}
@Override
public int getGroupCount() {
return mNodeInfoList.size();
}
@Override
public long getGroupId(int nodePosition) {
return nodePosition;
}
@Override
public View getGroupView(int position, boolean isExpanded, View view, ViewGroup parent) {
View v = view;
if (null == v) {
mNodeViewHolder = new NodeViewHolder();
v = mInflater.inflate(R.layout.node_list_item, parent, false);
mNodeViewHolder.mNodename_textView = (TextView) v.findViewById(R.id.nodeName_textview);
mNodeViewHolder.mbSend_checkbox = (CheckBox) v.findViewById(R.id.bSend_checkbox);
v.setTag(mNodeViewHolder);
} else {
mNodeViewHolder = (NodeViewHolder) v.getTag();
}
if (mIsSecureChannelFrag) {
LinearLayout mNodeListItem = (LinearLayout) v.findViewById(R.id.nodeListItem_layout);
mNodeListItem.setPadding(20, 15, 15, 15);
}
// set a name of the node.
final NodeInfo nodeInfo = mNodeInfoList.get(position);
mNodeViewHolder.mNodename_textView.setText("Node" + nodeInfo.nodeNumber + " : "
+ nodeInfo.nodeName + " / " + " [" + nodeInfo.interfaceName + "]");
if (bCheckMode) {
mNodeViewHolder.mbSend_checkbox.setVisibility(View.VISIBLE);
mNodeViewHolder.mbSend_checkbox
.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked && !nodeInfo.bChecked) {
nodeInfo.bChecked = true;
} else if (!isChecked && nodeInfo.bChecked) {
nodeInfo.bChecked = false;
}
}
});
} else {
mNodeViewHolder.mbSend_checkbox.setVisibility(View.GONE);
}
// set the checkBox
if (nodeInfo.bChecked) {
mNodeViewHolder.mbSend_checkbox.setChecked(true);
} else {
mNodeViewHolder.mbSend_checkbox.setChecked(false);
}
return v;
}
@Override
public boolean hasStableIds() {
return true;
}
@Override
public boolean isChildSelectable(int arg0, int arg1) {
return true;
}
private static final String TAG = "[Chord][Sample]";
private static final String TAGClass = "NodeListAdapter : ";
private LayoutInflater mInflater = null;
private Context mContext = null;
private NodeViewHolder mNodeViewHolder = null;
private ProgressViewHolder mProgressViewHolder = null;
private List<NodeInfo> mNodeInfoList = null;
private boolean bCheckMode = true;
private boolean mIsSecureChannelFrag = false;
private IFileCancelListener mFileCancelListener = null;
private HashMap<String, Integer> fileCntHashMap = new HashMap<String, Integer>();
private HashMap<String, Boolean> fileCancelHashMap = new HashMap<String, Boolean>();
}
| [
"allmind75@gmail.com"
] | allmind75@gmail.com |
5d935304bb8a79c6f21a62e86f30169a0e3112ea | 16bfedf2163c5d000b0246952b04a9157bc266c8 | /src/javagame/Play.java | 7ac8adb8dfd7438727d985dd626a6f72b2b3cffb | [] | no_license | adityanms/Ham-Blaster | 1caa301dcd1764c6f0f475655ad07cc58f9f42f0 | 648b2e5272a30884080dd1bd1db39d781456e84e | refs/heads/master | 2022-02-11T09:00:57.923621 | 2016-03-07T17:45:13 | 2016-03-07T17:45:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,830 | java | package javagame;
import org.newdawn.slick.*;
import org.newdawn.slick.state.*;
public class Play extends BasicGameState {
Animation bucky, movingUp, movingDown, movingLeft, movingRight;
Image worldMap;
boolean quit = false;
int[] duration = {200,200};
float buckyPosX = 0;
float buckyPosY = 0;
float shiftX = buckyPosX + 320;
float shiftY = buckyPosY + 160;
public Play(int play) {
}
@Override
public void init(GameContainer gc, StateBasedGame sbg) throws SlickException {
worldMap = new Image ("res/world.png");
Image[] walkUp = {new Image("res/buckysBack.png"), new Image("res/buckysBack.png")};
Image[] walkDown = {new Image("res/buckysFront.png"), new Image("res/buckysFront.png")};
Image[] walkLeft = {new Image("res/buckysLeft.png"), new Image("res/buckysLeft.png")};
Image[] walkRight = {new Image("res/buckysRight.png"), new Image("res/buckysRight.png")};
movingUp = new Animation(walkUp, duration,false);
movingDown = new Animation(walkDown, duration,false);
movingLeft = new Animation(walkLeft, duration,false);
movingRight = new Animation(walkRight, duration,false);
bucky = movingDown;
}
@Override
public void render(GameContainer gc, StateBasedGame sbg, Graphics g) throws SlickException {
worldMap.draw(buckyPosX,buckyPosY);
bucky.draw(shiftX, shiftY);
g.drawString("Bucky's X:" + buckyPosX + "\nBucky's Y:" + buckyPosY, 400, 200);
if(quit==true){
g.drawString("Resume (R)", 250, 100);
g.drawString("Main Menu (M)", 250, 150);
g.drawString("Quit Game (Q)", 250, 200);
if(quit==false){
g.clear();
}
}
}
@Override
public void update(GameContainer gc, StateBasedGame sbg, int delta) throws SlickException {
Input input = gc.getInput();
//up
if(input.isKeyDown(Input.KEY_UP)){
bucky= movingUp;
buckyPosY = buckyPosY + delta * .1f;
if(buckyPosY>162){
buckyPosY = buckyPosY - delta * .1f;
}
}
//down
if(input.isKeyDown(Input.KEY_DOWN)){
bucky= movingDown;
buckyPosY = buckyPosY - delta * .1f;
if(buckyPosY<-600){
buckyPosY = buckyPosY + delta * .1f;
}
}
//left
if(input.isKeyDown(Input.KEY_LEFT)){
bucky= movingLeft;
buckyPosX = buckyPosX + delta * .1f;
if(buckyPosX>324){
buckyPosY = buckyPosY - delta * .1f;
}
}
//right
if(input.isKeyDown(Input.KEY_RIGHT)){
bucky= movingRight;
buckyPosX = buckyPosX - delta * .1f;
if(buckyPosX<-840){
buckyPosY = buckyPosY + delta * .1f;
}
}
//escape
if(input.isKeyDown(Input.KEY_ESCAPE)){
quit = true;
}
//when menu is up
if(quit==true){
if(input.isKeyDown(Input.KEY_R)){
quit = false;
}
if(input.isKeyDown(Input.KEY_M)){
sbg.enterState(0);
}
if(input.isKeyDown(Input.KEY_Q)){
System.exit(0);
}
}
}
@Override
public int getID() {
return 1;
}
}
| [
"msadityan@gmail.com"
] | msadityan@gmail.com |
b9371e0bcf99d25dd19e9a00bd8b5afe6ab5a57a | db2d99bd16637b97a16ced0b367ccb1403787873 | /src/algorithms/graphs/paths/GraphPathsTest.java | 13470ea7471084ec8b42e4d6fa56a35dd7191bd1 | [] | no_license | danylofitel/JavaAlgorithms | eec5652cf5f6a78c6d26b47ed2e966d9f71c8f0e | cf8851bd832b9f9dfd58499333b4e7fc16469687 | refs/heads/master | 2021-01-10T12:45:38.426738 | 2019-12-14T00:45:48 | 2019-12-14T00:45:48 | 54,839,768 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,086 | java | package algorithms.graphs.paths;
import algorithms.graphs.Graph;
import algorithms.graphs.UndirectedGraph;
import algorithms.graphs.paths.BreadthFirstPaths;
import algorithms.graphs.paths.GraphPaths;
import lib.In;
import lib.StdOut;
public class GraphPathsTest {
private static final String testFile = "tinyCG.txt";
public static void main(String[] args) {
In in = new In(testFile);
Graph G = new UndirectedGraph(in);
StdOut.println(G);
int s = Integer.parseInt("0");
GraphPaths gp = new BreadthFirstPaths(G, s);
for (int v = 0; v < G.V(); v++) {
if (gp.hasPathTo(v)) {
StdOut.printf("%d to %d: ", s, v);
for (int x : gp.pathTo(v)) {
if (x == s) {
StdOut.print(x);
} else {
StdOut.print("-" + x);
}
}
StdOut.println();
} else {
StdOut.printf("%d to %d: not connected\n", s, v);
}
}
}
}
| [
"danylo.fitel@outlook.com"
] | danylo.fitel@outlook.com |
f91012aedb2015fe7d4e9fc155a2039ef22d39bc | 04956972b919bc19172d7b2c7e0ccff059aaa097 | /LerEscreverTxt/src/lerescrevertxt/LerEscreverTxt.java | 86e495b0d380ead5c314fbd6ae0c3170fe9cfdf0 | [] | no_license | Lucasszoke/LerEscreverTxt | 616b5f1f9f2d306efc2d77eaf424cca6c337d6c9 | 2576bc740ef000f689cddc0f766a6ed511cf3b39 | refs/heads/master | 2020-03-15T01:02:50.134794 | 2018-05-02T17:25:36 | 2018-05-02T17:25:36 | 131,883,877 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,325 | java | package lerescrevertxt;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.PrintStream;
import java.util.Scanner;
public class LerEscreverTxt {
public static void main(String[] args) throws FileNotFoundException {
lerTxt("saida.txt");
escreverTxt("saida.txt");
}
static void lerTxt(String caminho) throws FileNotFoundException{
InputStream arquivo = new FileInputStream(caminho);
int i = 0;
String[] linha = new String[1];
Scanner sc = new Scanner(arquivo);
while (sc.hasNextLine()) {
linha[i] = sc.nextLine();
System.out.println(linha[i]);
i++;
linha = new String[i + 1];
}
}
static void escreverTxt(String saida) throws FileNotFoundException{
Scanner sc = new Scanner(System.in);
String anotar = "";
FileOutputStream arquivo = new FileOutputStream(saida);
PrintStream printStream = new PrintStream(arquivo);
char alfabeto = 'A';
for (int i = 0; i < 26; i++) {
//anotar = sc.nextLine();
printStream.println(alfabeto);
alfabeto++;
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
daab77ddbac20d5b0d5eb8705abc77f35c5884d0 | 8ebb35e60cfa6a0c50c0207145aaa301d14ac5b1 | /src/main/java/pl/thecode/helper/user/Warning.java | 18156db6a0b3b26a1702f3a33ebc8a4b45cbc1a6 | [
"MIT"
] | permissive | maciok/helper | 570a5575d8a5fbc112dda9395cf3a500cf4ec7b2 | b04ca8ccb751c6358f347af9d45e90177a142c4a | refs/heads/master | 2023-01-11T13:07:21.215786 | 2019-11-24T13:39:24 | 2019-11-24T13:39:24 | 223,589,125 | 0 | 0 | MIT | 2023-01-07T12:04:30 | 2019-11-23T13:00:41 | JavaScript | UTF-8 | Java | false | false | 69 | java | package pl.thecode.helper.user;
enum Warning {
NOT_REGISTERED
}
| [
"damian.orzepowski@circlekeurope.com"
] | damian.orzepowski@circlekeurope.com |
76152d2da6c4d89916bd5c79113ed9670d81a175 | 6d3843a3364928728ab0918460839aecd4fe210f | /fireplace-backend/src/main/java/fireplace/backend/application/StartFireplaceHandler.java | 912fb564298f4b5a797a47ced5cdecd8b3115472 | [] | no_license | TimmyGilissen/fireplace | 63bdfe4fdb2da564b7e1351a2e2c64c15f7f87d4 | 1a8f0c298d2f9e3620e138b946e89f5b1906c915 | refs/heads/master | 2016-08-12T11:07:03.559564 | 2015-12-28T20:56:22 | 2015-12-28T20:56:22 | 48,394,585 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 173 | java | package fireplace.backend.application;
import org.springframework.stereotype.Component;
@Component
public interface StartFireplaceHandler {
void startFireplace();
}
| [
"timmy.gilissen@gmail.com"
] | timmy.gilissen@gmail.com |
0b3c04971ddfbebf947f95a686c6688a824bd76e | e1073c7f260254c363457b0bf8fbbf5f036e211c | /conslut-doctor/src/main/java/my/shopping/app/my/shopping/app/fragement/CreateUserFragment.java | bb5178f7492d2143689d445834e71f98e4edc48b | [] | no_license | rakeshpriyad/consult-doctor-app-android | 216fc78dd443718e23d1860cca5442a638e5a5f6 | b576830f755a49d79da624e1377cd693c14378a7 | refs/heads/master | 2020-05-21T21:06:35.436876 | 2017-03-18T07:52:22 | 2017-03-18T07:52:22 | 84,646,278 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,293 | java | package my.shopping.app.my.shopping.app.fragement;
import android.app.DatePickerDialog;
import android.graphics.Color;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.InputType;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.ExpandableListView;
import android.widget.ProgressBar;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.web.client.RestTemplate;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;
import java.util.Locale;
import my.shopping.app.R;
import my.shopping.app.my.shopping.app.domain.BaseExpandableTablePopulator;
import my.shopping.app.my.shopping.app.domain.User;
import my.shopping.app.my.shopping.app.domain.UserPopulator;
import my.shopping.app.my.shopping.app.util.ExpandableTableAdapter;
/**
* A placeholder fragment containing a simple view.
*/
public class CreateUserFragment extends Fragment implements AdapterView.OnItemSelectedListener,View.OnClickListener {
private ProgressBar progress;
private HttpRequestPostTask task;
private CheckBox javaCheckBox,dotNetCheckBox;
private String[] country = { "India", "USA", "China", "Japan", "Other", };
String[] stateArr ={"Delhi","Bihar","UP","AP","HP","Punjab","Haryana","MP"};
private DatePickerDialog doBDatePickerDialog;
private SimpleDateFormat dateFormatter;
private EditText doBtxt;
protected ExpandableListView expListView;
protected ExpandableTableAdapter listAdapter;
private HttpRequestTask requestTask;
public CreateUserFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
dateFormatter = new SimpleDateFormat("dd-MM-yyyy", Locale.US);
// Inflate the layout for this fragment
final View rootView = inflater.inflate(R.layout.fragment_user_create, container, false);
doBtxt = (EditText)rootView.findViewById(R.id.user_Dob);
doBtxt.setInputType(InputType.TYPE_NULL);
Button btnSaveUser = (Button) rootView.findViewById(R.id.btnSaveUser);
progress = (ProgressBar)rootView.findViewById(R.id.progressBarSave);
//Getting the instance of Spinner and applying OnItemSelectedListener on it
Spinner spin = (Spinner) rootView.findViewById(R.id.spinnerCountry);
spin.setOnItemSelectedListener(this);
//Creating the ArrayAdapter instance having the country list
ArrayAdapter aa = new ArrayAdapter(getActivity(),android.R.layout.simple_spinner_item,country);
aa.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
//Setting the ArrayAdapter data on the Spinner
spin.setAdapter(aa);
initStateFiled(rootView);
setDateTimeField();
hideProgressBar();
// Listening to Login Screen link
btnSaveUser.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
TextView txtUserName = (TextView) rootView.findViewById(R.id.user_name);
TextView txtAge = (TextView) rootView.findViewById(R.id.user_age);
TextView txtSalary = (TextView) rootView.findViewById(R.id.user_sal);
final String userName = txtUserName.getText().toString();
String strAge = txtAge.getText().toString();
String strSalary = txtSalary.getText().toString();
Integer age=0;
double salary=0.0;
if (!strAge.isEmpty()){
age = Integer.parseInt(strAge);
}
if(!strSalary.isEmpty()){
salary = Double.parseDouble(strSalary);
}
dotNetCheckBox = (CheckBox) rootView.findViewById(R.id.checkBoxDotNet);
javaCheckBox = (CheckBox) rootView.findViewById(R.id.checkBoxJava);
User newUser = new User();
newUser.setName(userName);
newUser.setAge(age);
newUser.setSalary(salary);
Boolean result = postData(newUser);
if(isTaskRunning(task)) {
showProgressBar();
}else {
hideProgressBar();
}
Toast.makeText(getActivity(),
"Saved successfully!"+" User "+userName+" age "+age+" salary "+salary+" dotNetCheckBox "+dotNetCheckBox.isChecked()+" dotJavaCheckBox "+javaCheckBox.isChecked(), Toast.LENGTH_SHORT).show();
}
});
expListView = getExpandableListView(rootView);
fetchData();
setRetainInstance(true);
return rootView;
}
protected void fetchData() {
requestTask = new HttpRequestTask(this);
requestTask.execute();
}
public BaseExpandableTablePopulator getListPopulator() {
return new UserPopulator();
}
public ExpandableListView getExpandableListView(View rootView) {
return (ExpandableListView) rootView.findViewById(R.id.lvUserExp);
}
private void initStateFiled(View rootView){
//Creating the instance of ArrayAdapter containing list of language names
ArrayAdapter<String> adapter = new ArrayAdapter<String>
(getActivity(),android.R.layout.select_dialog_item,stateArr);
//Getting the instance of AutoCompleteTextView
AutoCompleteTextView actv= (AutoCompleteTextView)rootView.findViewById(R.id.autoCompleteTextState);
actv.setThreshold(1);//will start working from first character
actv.setAdapter(adapter);//setting the adapter data into the AutoCompleteTextView
actv.setTextColor(Color.BLUE);
}
private void setDateTimeField() {
doBtxt.setOnClickListener(this);
Calendar newCalendar = Calendar.getInstance();
doBDatePickerDialog = new DatePickerDialog(getActivity(), new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
Calendar newDate = Calendar.getInstance();
newDate.set(year, monthOfYear, dayOfMonth);
doBtxt.setText(dateFormatter.format(newDate.getTime()));
}
},newCalendar.get(Calendar.YEAR), newCalendar.get(Calendar.MONTH), newCalendar.get(Calendar.DAY_OF_MONTH));
}
//Performing action onItemSelected and onNothing selected
@Override
public void onItemSelected(AdapterView<?> arg0, View arg1, int position,long id) {
Toast.makeText(getActivity(),country[position] ,Toast.LENGTH_LONG).show();
}
@Override
public void onClick(View view) {
if(view == doBtxt) {
doBDatePickerDialog.show();
}
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub
}
public boolean postData(User user){
task = new HttpRequestPostTask(this,user);
task.execute();
return true;
}
public void populateResult(List<User> users) {
// BaseExpandableListPopulator baseExpandableListPopulator = getListPopulator();
BaseExpandableTablePopulator baseExpandableTablePopulator = getListPopulator();
listAdapter = baseExpandableTablePopulator.getExpandableListAdapter(getActivity(),users);
expListView.setAdapter(listAdapter);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
// Sync UI state to current fragment and task state
super.onActivityCreated(savedInstanceState);
}
protected boolean isTaskRunning(CreateUserFragment.HttpRequestPostTask task) {
if(task==null ) {
return false;
} else if(task.getStatus() == CreateUserFragment.HttpRequestPostTask.Status.FINISHED){
return false;
} else {
return true;
}
}
public void showProgressBar() {
progress.setVisibility(View.VISIBLE);
progress.setIndeterminate(true);
}
public void hideProgressBar() {
progress.setVisibility(View.GONE);
}
protected class HttpRequestPostTask extends AsyncTask<Void, Void, Boolean> {
private CreateUserFragment container;
private User newUser;
public HttpRequestPostTask(CreateUserFragment container,User newUser){
this.container = container;
this.newUser = newUser;
}
@Override
protected Boolean doInBackground(Void... params) {
try {
final String url = "http://10.0.2.2:8080/spring-boot-ng-crud/api/user/";
RestTemplate restTemplate = new RestTemplate();
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
User res = restTemplate.postForObject(url, newUser, User.class);
return true;
} catch (Exception e) {
Log.e("Error Creating User ", e.getMessage(), e);
e.printStackTrace();
return false;
}
}
@Override
protected void onPreExecute() {
super.onPreExecute();
container.showProgressBar();
}
@Override
protected void onPostExecute(Boolean result) {
super.onPostExecute(result);
if(container!=null && container.getActivity()!=null) {
this.container = null;
}
progress.setVisibility(View.GONE);
}
}
protected class HttpRequestTask extends AsyncTask<Void, Void, List<User>> {
private CreateUserFragment container;
public HttpRequestTask(CreateUserFragment container){
this.container = container;
}
@Override
protected List<User> doInBackground(Void... params) {
try {
final String url = "http://10.0.2.2:8080/spring-boot-ng-crud/api/user/";
RestTemplate restTemplate = new RestTemplate();
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
ResponseEntity<List<User>> rateResponse =
restTemplate.exchange(url,
HttpMethod.GET, null, new ParameterizedTypeReference<List<User>>() {
});
List<User> userList = rateResponse.getBody();
// List<User> userList = //restTemplate.getForObject(url, List.class);
return userList;
} catch (Exception e) {
Log.e("MainActivity", e.getMessage(), e);
e.printStackTrace();
}
return null;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
container.showProgressBar();
}
@Override
protected void onPostExecute(List<User> users) {
super.onPostExecute(users);
if(container!=null && container.getActivity()!=null) {
container.populateResult(users);
this.container = null;
}
progress.setVisibility(View.GONE);
}
}
}
| [
"Rakesh Kumar"
] | Rakesh Kumar |
5877e7355296b9b7a471af22667871d835641023 | 836d562f51c64fc490ae5a027cc282ad203c44c0 | /src/org/javaturk/oofp/ch04/anonymous/event/MyActionListener.java | 02a1cdeafa3e3993594313c8530afa6ab8957e95 | [
"MIT"
] | permissive | ozdemirci/OOFP | 799d74dceb7d2c3802fe353844353a4bc73b8b49 | 25d8e6a880bf039a733fa0e2c2e0529ccca7e03f | refs/heads/main | 2023-06-07T19:05:40.656164 | 2021-03-28T09:28:56 | 2021-03-28T09:28:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 606 | java |
package org.javaturk.oofp.ch04.anonymous.event;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
/**
* @author Akin Kaldiroglu (akin.kaldiroglu@selsoft.com.tr)
*
*/
public class MyActionListener implements ActionListener{
private MyApplication application;
public MyActionListener(MyApplication application){
this.application = application;
}
@Override
public void actionPerformed(ActionEvent event) {
JButton button = (JButton) event.getSource();
String buttonLabel = button.getText();
application.buttonClicked(buttonLabel);
}
}
| [
"noreply@github.com"
] | noreply@github.com |
09107459ce1cbad1beab7ecfc46a2636206a8495 | 8fd1d58feb6dc8d4b10212f9d80de0839c291b91 | /src/com/ly/comm/CommMdl.java | 282f88e6d6df8aed4b71bfc5d17315bfa59e7313 | [] | no_license | dongfangx/cms | 999dc3e12462f7e034cb44a661eb01898de95908 | 2fa5e66ef562b05aa536ebef6418c2dfca1b0d89 | refs/heads/master | 2020-04-06T05:08:43.991694 | 2014-03-14T13:44:57 | 2014-03-14T13:44:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 467 | java | package com.ly.comm;
import java.util.HashMap;
import java.util.Map;
public class CommMdl {
public Map<String,String> tabMap(String rtnNum,String tabId,String callBackType){
Map<String, String> map = new HashMap<String, String>();
map.put("statusCode", rtnNum);
map.put("message", rtnNum.equals("200")? "操作成功":"操作失败");
map.put("navTabId", tabId);
map.put("callbackType", callBackType);
map.put("forwardUrl", "");
return map;
}
}
| [
"dongfang.x@qq.com"
] | dongfang.x@qq.com |
e34c22e0b8b6b262d237693a840d94567e3ecc3b | 6993e46a61adb9f6371f0ed518b1df45d9eaaea0 | /examples/src/main/java/com/crawljax/examples/VisualCrawlExample.java | 9f73462a65e9c0e490f3fcef872a50ef14605584 | [
"Apache-2.0"
] | permissive | soitun/crawljax | ad90bcba4ac44963418cf9ef562809829405d23d | 5771f6161c645c75f710a8cdc14e3c6898727e06 | refs/heads/master | 2023-06-26T00:22:15.176641 | 2023-06-19T20:41:55 | 2023-06-19T20:41:55 | 25,998,422 | 0 | 0 | Apache-2.0 | 2023-06-20T07:48:39 | 2014-10-31T02:13:11 | Java | UTF-8 | Java | false | false | 2,915 | java | package com.crawljax.examples;
import com.crawljax.browser.EmbeddedBrowser.BrowserType;
import com.crawljax.core.CrawljaxRunner;
import com.crawljax.core.configuration.BrowserConfiguration;
import com.crawljax.core.configuration.BrowserOptions;
import com.crawljax.core.configuration.CrawlRules.FormFillMode;
import com.crawljax.core.configuration.CrawljaxConfiguration;
import com.crawljax.core.configuration.CrawljaxConfiguration.CrawljaxConfigurationBuilder;
import com.crawljax.plugins.crawloverview.CrawlOverview;
import com.crawljax.plugins.testcasegenerator.TestConfiguration;
import com.crawljax.plugins.testcasegenerator.TestConfiguration.StateEquivalenceAssertionMode;
import com.crawljax.plugins.testcasegenerator.TestSuiteGenerator;
import com.crawljax.stateabstractions.visual.imagehashes.DHashStateVertexFactory;
import java.util.concurrent.TimeUnit;
public final class VisualCrawlExample {
private static final long WAIT_TIME_AFTER_EVENT = 200;
private static final long WAIT_TIME_AFTER_RELOAD = 200;
public static void main(String[] args) {
if (args.length == 0) {
System.err.println("Provide the URL of the web app as the first CLI argument.");
return;
}
String appURL = args[0];
if (!appURL.startsWith("http://") && !appURL.startsWith("https://")) {
appURL = "http://" + appURL;
}
CrawljaxConfigurationBuilder builder = CrawljaxConfiguration.builderFor(appURL);
builder.crawlRules().setFormFillMode(FormFillMode.NORMAL);
builder.setStateVertexFactory(new DHashStateVertexFactory());
builder.crawlRules().clickDefaultElements();
// builder.setMaximumStates(10);
builder.setMaximumDepth(3);
builder.setMaximumRunTime(10, TimeUnit.MINUTES);
builder.crawlRules().clickElementsInRandomOrder(false);
builder.crawlRules().crawlHiddenAnchors(true);
builder.crawlRules().crawlFrames(false);
builder.crawlRules().waitAfterReloadUrl(WAIT_TIME_AFTER_RELOAD, TimeUnit.MILLISECONDS);
builder.crawlRules().waitAfterEvent(WAIT_TIME_AFTER_EVENT, TimeUnit.MILLISECONDS);
BrowserConfiguration browserConfiguration;
if (args.length == 2 && "retina".equalsIgnoreCase(args[1])) {
browserConfiguration = new BrowserConfiguration(
BrowserType.CHROME, 1, new BrowserOptions(BrowserOptions.MACBOOK_PRO_RETINA_PIXEL_DENSITY));
} else {
browserConfiguration = new BrowserConfiguration(BrowserType.CHROME, 1);
}
builder.setBrowserConfig(browserConfiguration);
/* plugins. */
builder.addPlugin(new CrawlOverview());
builder.addPlugin(new TestSuiteGenerator(new TestConfiguration(StateEquivalenceAssertionMode.BOTH)));
CrawljaxRunner crawljax = new CrawljaxRunner(builder.build());
crawljax.call();
}
}
| [
"amesbah@gmail.com"
] | amesbah@gmail.com |
3c6256e9c83a4b3c1b03b3de4bd43a3815ea865e | a2df7353af3b8fb93d6b263a0d694783f68f7e95 | /src/com/nfs/youlin/utils/AlbumHelper.java | 88a4eb06166f47e4736609d6c64d07d91ef9ed42 | [] | no_license | lzl525898/youlin_client | 024b3d6eeb876e6839b7c43832d09342a3c76350 | cbe72be1094794b29b92dfc72b39a9692b1514a9 | refs/heads/master | 2021-05-03T09:12:29.398046 | 2018-02-07T05:57:15 | 2018-02-07T05:57:15 | 120,570,117 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,890 | java | package com.nfs.youlin.utils;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import android.content.ContentResolver;
import android.content.Context;
import android.database.Cursor;
import android.provider.MediaStore.Audio.Albums;
import android.provider.MediaStore.Images.Media;
import android.provider.MediaStore.Images.Thumbnails;
import android.util.Log;
public class AlbumHelper {
final String TAG = getClass().getSimpleName();
Context context;
ContentResolver cr;
HashMap<String, String> thumbnailList = new HashMap<String, String>();
List<HashMap<String, String>> albumList = new ArrayList<HashMap<String, String>>();
HashMap<String, ImageBucket> bucketList = new HashMap<String, ImageBucket>();
public static AlbumHelper instance;
private AlbumHelper() {
}
public static AlbumHelper getHelper() {
if (instance == null) {
instance = new AlbumHelper();
}
return instance;
}
public void init(Context context) {
if (this.context == null) {
this.context = context;
cr = context.getContentResolver();
}
}
private void getThumbnail() {
String[] projection = { Thumbnails._ID, Thumbnails.IMAGE_ID,
Thumbnails.DATA };
Cursor cursor = cr.query(Thumbnails.EXTERNAL_CONTENT_URI, projection,
null, null, null);
getThumbnailColumnData(cursor);
}
private void getThumbnailColumnData(Cursor cur) {
if (cur.moveToFirst()) {
int _id;
int image_id;
String image_path;
int _idColumn = cur.getColumnIndex(Thumbnails._ID);
int image_idColumn = cur.getColumnIndex(Thumbnails.IMAGE_ID);
int dataColumn = cur.getColumnIndex(Thumbnails.DATA);
do {
// Get the field values
_id = cur.getInt(_idColumn);
image_id = cur.getInt(image_idColumn);
image_path = cur.getString(dataColumn);
// Do something with the values.
// Loger.i(TAG, _id + " image_id:" + image_id + " path:"
// + image_path + "---");
// HashMap<String, String> hash = new HashMap<String, String>();
// hash.put("image_id", image_id + "");
// hash.put("path", image_path);
// thumbnailList.add(hash);
thumbnailList.put("" + image_id, image_path);
} while (cur.moveToNext());
}
}
void getAlbum() {
String[] projection = { Albums._ID, Albums.ALBUM, Albums.ALBUM_ART,
Albums.ALBUM_KEY, Albums.ARTIST, Albums.NUMBER_OF_SONGS };
Cursor cursor = cr.query(Albums.EXTERNAL_CONTENT_URI, projection, null,
null, null);
getAlbumColumnData(cursor);
}
private void getAlbumColumnData(Cursor cur) {
if (cur.moveToFirst()) {
int _id;
String album;
String albumArt;
String albumKey;
String artist;
int numOfSongs;
int _idColumn = cur.getColumnIndex(Albums._ID);
int albumColumn = cur.getColumnIndex(Albums.ALBUM);
int albumArtColumn = cur.getColumnIndex(Albums.ALBUM_ART);
int albumKeyColumn = cur.getColumnIndex(Albums.ALBUM_KEY);
int artistColumn = cur.getColumnIndex(Albums.ARTIST);
int numOfSongsColumn = cur.getColumnIndex(Albums.NUMBER_OF_SONGS);
do {
// Get the field values
_id = cur.getInt(_idColumn);
album = cur.getString(albumColumn);
albumArt = cur.getString(albumArtColumn);
albumKey = cur.getString(albumKeyColumn);
artist = cur.getString(artistColumn);
numOfSongs = cur.getInt(numOfSongsColumn);
// Do something with the values.
Loger.i(TAG, _id + " album:" + album + " albumArt:" + albumArt
+ "albumKey: " + albumKey + " artist: " + artist
+ " numOfSongs: " + numOfSongs + "---");
HashMap<String, String> hash = new HashMap<String, String>();
hash.put("_id", _id + "");
hash.put("album", album);
hash.put("albumArt", albumArt);
hash.put("albumKey", albumKey);
hash.put("artist", artist);
hash.put("numOfSongs", numOfSongs + "");
albumList.add(hash);
} while (cur.moveToNext());
}
}
boolean hasBuildImagesBucketList = false;
void buildImagesBucketList() {
long startTime = System.currentTimeMillis();
getThumbnail();
String columns[] = new String[] { Media._ID, Media.BUCKET_ID,
Media.PICASA_ID, Media.DATA, Media.DISPLAY_NAME, Media.TITLE,
Media.SIZE, Media.BUCKET_DISPLAY_NAME };
Cursor cur = cr.query(Media.EXTERNAL_CONTENT_URI, columns, null, null,
null);
if (cur.moveToFirst()) {
int photoIDIndex = cur.getColumnIndexOrThrow(Media._ID);
int photoPathIndex = cur.getColumnIndexOrThrow(Media.DATA);
int photoNameIndex = cur.getColumnIndexOrThrow(Media.DISPLAY_NAME);
int photoTitleIndex = cur.getColumnIndexOrThrow(Media.TITLE);
int photoSizeIndex = cur.getColumnIndexOrThrow(Media.SIZE);
int bucketDisplayNameIndex = cur.getColumnIndexOrThrow(Media.BUCKET_DISPLAY_NAME);
int bucketIdIndex = cur.getColumnIndexOrThrow(Media.BUCKET_ID);
int picasaIdIndex = cur.getColumnIndexOrThrow(Media.PICASA_ID);
int totalNum = cur.getCount();
do {
String _id = cur.getString(photoIDIndex);
String name = cur.getString(photoNameIndex);
String path = cur.getString(photoPathIndex);
String title = cur.getString(photoTitleIndex);
String size = cur.getString(photoSizeIndex);
String bucketName = cur.getString(bucketDisplayNameIndex);
String bucketId = cur.getString(bucketIdIndex);
String picasaId = cur.getString(picasaIdIndex);
Loger.i(TAG, _id + ", bucketId: " + bucketId + ", picasaId: "
+ picasaId + " name:" + name + " path:" + path
+ " title: " + title + " size: " + size + " bucket: "
+ bucketName + "---");
ImageBucket bucket = bucketList.get(bucketId);
if (bucket == null) {
bucket = new ImageBucket();
bucketList.put(bucketId, bucket);
bucket.imageList = new ArrayList<ImageItem>();
bucket.bucketName = bucketName;
}
bucket.count++;
ImageItem imageItem = new ImageItem();
imageItem.imageId = _id;
imageItem.imagePath = path;
imageItem.thumbnailPath = thumbnailList.get(_id);
bucket.imageList.add(0,imageItem);
} while (cur.moveToNext());
}
Iterator<Entry<String, ImageBucket>> itr = bucketList.entrySet().iterator();
while (itr.hasNext()) {
Map.Entry<String, ImageBucket> entry = (Map.Entry<String, ImageBucket>) itr
.next();
ImageBucket bucket = entry.getValue();
Loger.d(TAG, entry.getKey() + ", " + bucket.bucketName + ", "
+ bucket.count + " ---------- ");
for (int i = 0; i < bucket.imageList.size(); ++i) {
ImageItem image = bucket.imageList.get(i);
Loger.d(TAG, "----- " + image.imageId + ", " + image.imagePath
+ ", " + image.thumbnailPath);
}
}
hasBuildImagesBucketList = true;
long endTime = System.currentTimeMillis();
Loger.d(TAG, "use time: " + (endTime - startTime) + " ms");
}
public List<ImageBucket> getImagesBucketList(boolean refresh) {
if (refresh || (!refresh && !hasBuildImagesBucketList)) {
buildImagesBucketList();
}
List<ImageBucket> tmpList = new ArrayList<ImageBucket>();
Iterator<Entry<String, ImageBucket>> itr = bucketList.entrySet()
.iterator();
while (itr.hasNext()) {
Map.Entry<String, ImageBucket> entry = (Map.Entry<String, ImageBucket>) itr.next();
tmpList.add(0,entry.getValue());
}
return tmpList;
}
String getOriginalImagePath(String image_id) {
String path = null;
Loger.i(TAG, "---(^o^)----" + image_id);
String[] projection = { Media._ID, Media.DATA };
Cursor cursor = cr.query(Media.EXTERNAL_CONTENT_URI, projection,
Media._ID + "=" + image_id, null, null);
if (cursor != null) {
cursor.moveToFirst();
path = cursor.getString(cursor.getColumnIndex(Media.DATA));
}
return path;
}
}
| [
"luckyforlei@163.com"
] | luckyforlei@163.com |
77e01f2cfb4df5fbaf0accb3a6e4d3eb078215d4 | ac2a1e4232ec918020e8deb744564c033992a2cc | /src/main/java/com/wechat/response/entity/Video.java | 6e8dec6ea44048a78835d46b238ec9278023a352 | [] | no_license | ansongao/smile | 4f95fb9e0c5b0a2e52086457b3dcc5a6ef5ea058 | a4652772de43a1d7b5be4190e46b0470c6da0053 | refs/heads/master | 2021-05-07T15:41:03.578891 | 2017-11-01T01:34:31 | 2017-11-01T01:34:31 | 108,508,523 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 652 | java | package com.wechat.response.entity;
/**
* 视频消息体
* @author Administrator
*
*/
public class Video {
private String MediaId;
private String Title;
private String Description;
public String getTitle() {
return Title;
}
public void setTitle(String title) {
Title = title;
}
public String getDescription() {
return Description;
}
public void setDescription(String description) {
Description = description;
}
public String getMediaId() {
return MediaId;
}
public void setMediaId(String mediaId) {
MediaId = mediaId;
}
}
| [
"657182420@qq.com"
] | 657182420@qq.com |
ba479dc1a7e8ab6d10736056cc4de6be97d2b5e9 | 5a7fd20974e142f68412a6369675bde7a54d8d90 | /Libreria/src/vista/DialogoLoginAdmin.java | c2cf9881eddd892e6b55b5607f412e3981c609fe | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | RodacK/Libreria-1 | 02e0279d0cd2c04cc098b7c1fadffc961e538f79 | d9b2eae816c31343e3827a6a6c626dca01ebe96a | refs/heads/master | 2021-01-14T12:26:08.423679 | 2015-06-01T15:42:09 | 2015-06-01T15:42:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,912 | java | package vista;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import modelos.util.Util;
import controlador.Controlador;
public class DialogoLoginAdmin extends JDialog{
private static final long serialVersionUID = 1L;
private JTextField txtNombre;
private JPasswordField txtContrasena;
public DialogoLoginAdmin(JDialogoPrincipal d , Controlador controlador) {
setTitle("Iniciar sesion");
setSize(300, 200);
setIconImage(Util.createImageIcon(ConstantesGUI.I_ICONO_VENTANA).getImage());
setLocationRelativeTo(d);
setLayout(new GridBagLayout());
GridBagConstraints gb = new GridBagConstraints();
JLabel lblNombre = new JLabel("Nombre: ");
gb.gridx = 0;
gb.gridy = 0;
add(lblNombre , gb);
txtNombre = new JTextField(10);
gb.gridx = 1;
add(txtNombre);
JLabel lblContrasena = new JLabel("Contrasena: ");
gb.gridy = 1;
gb.gridx = 0;
add(lblContrasena , gb);
txtContrasena = new JPasswordField(10);
gb.gridx = 1;
add(txtContrasena , gb);
JButton btnCancelar = new JButton("Cancelar");
btnCancelar.setActionCommand(Controlador.A_CANCELAR_INCIO_SESION);
btnCancelar.addActionListener(controlador);
gb.gridx = 0;
gb.gridy = 2;
add(btnCancelar , gb);
gb.gridx = 1;
JButton btnIniciar = new JButton("Iniciar Sesion");
btnIniciar.setActionCommand(Controlador.A_INICIAR_SESION_ADMIN);
btnIniciar.addActionListener(controlador);
add(btnIniciar , gb);
}
public JTextField getTxtNombre() {
return txtNombre;
}
public void setTxtNombre(JTextField txtNombre) {
this.txtNombre = txtNombre;
}
public JPasswordField getTxtContrasena() {
return txtContrasena;
}
public void setTxtContrasena(JPasswordField txtContrasena) {
this.txtContrasena = txtContrasena;
}
}
| [
"stefa@CanFly"
] | stefa@CanFly |
9655d335f522ade9d52da28f5dee5d415e1cd6f5 | 495bb1aad49a762c16bfd6224318be53326e4a86 | /TestTeam/src/tttteeeessssstttt/aaaa.java | eaec0526310a966bf0972bd03257c77cccfc359c | [] | no_license | Rafale32/TestTeam | fb75b84a87dc3a8a0c4a011f77d83a4a3d25a610 | 0938ad56785c126ba7cfeb1724bab970c7427e91 | refs/heads/master | 2020-03-24T16:16:14.570764 | 2018-07-30T05:33:35 | 2018-07-30T05:33:35 | 142,818,865 | 0 | 0 | null | 2018-07-30T05:41:14 | 2018-07-30T03:14:59 | Java | UTF-8 | Java | false | false | 56 | java | package tttteeeessssstttt;
public class aaaa {
}
| [
"Du@DuGram-PC"
] | Du@DuGram-PC |
207bef88016034d33ce2c891a7c586a443f73629 | 3bee927ce7b86974e43d0e65a5b6a81d5ea4f374 | /Tan/app/build/gen/android/support/coreutils/R.java | 2d4ab54ab61c226ff455346831149a7be55b2428 | [] | no_license | vtanv/xs | d8ce7c444fed8f4da23f3513c4d7569fb5f3051e | 2e4c16b67716efc0b5e9e020f0ab78da67309a71 | refs/heads/master | 2022-04-10T12:46:04.907087 | 2020-03-22T09:47:45 | 2020-03-22T09:47:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 651,672 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.coreutils;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
public static final int abc_tooltip_enter=0x7f04000a;
public static final int abc_tooltip_exit=0x7f04000b;
public static final int design_bottom_sheet_slide_in=0x7f04000c;
public static final int design_bottom_sheet_slide_out=0x7f04000d;
public static final int design_snackbar_in=0x7f04000e;
public static final int design_snackbar_out=0x7f04000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f050000;
}
public static final class array {
/** Used in Menu CUSTOMER NAME
*/
public static final int customer_name=0x7f0d0002;
public static final int giaithuong=0x7f0d0000;
/** Used in Menu TICKET
*/
public static final int ticket_list_label=0x7f0d0001;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f010054;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f01004d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f01004e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f01004a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f010051;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010055;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f010059;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010058;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f01004b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f01004c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f01009b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f01009c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f01009a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f01009d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100b4;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100b5;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static final int alphabeticModifiers=0x7f0100c3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100bc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100a2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeMaxTextSize=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeMinTextSize=0x7f01003b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoSizePresetSizes=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeStepGranularity=0x7f010039;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int autoSizeTextType=0x7f010038;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f010015;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f010017;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f010016;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f0100ff;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100be;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f010135;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f01013e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=0x7f010118;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_skipCollapsed=0x7f01011a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f010133;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f01012c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f01012d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f01009f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f01006f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonIconDimen=0x7f010030;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100a4;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100b6;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100b7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardBackgroundColor=0x7f01015f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardCornerRadius=0x7f010160;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardElevation=0x7f010161;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardMaxElevation=0x7f010162;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardPreventCornerOverlap=0x7f010164;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardUseCompatPadding=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int cardViewStyle=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100a6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f010027;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100f5;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f010121;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100b8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f010092;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f010099;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f010096;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f010094;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f010095;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f010093;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorError=0x7f0100b2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f010090;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f010091;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f0100dc;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentDescription=0x7f0100c9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010020;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x7f010024;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010022;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f010023;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPadding=0x7f010165;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingBottom=0x7f010169;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingLeft=0x7f010166;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingRight=0x7f010167;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingTop=0x7f010168;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int coordinatorLayoutStyle=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f010154;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f010155;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f010157;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f010018;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f010067;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010075;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f010074;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f010087;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f01007c;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100a7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int errorEnabled=0x7f010152;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f010153;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f010029;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010113;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=0x7f010128;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f01011b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=0x7f01011c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f01011d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fabCustomSize=0x7f010131;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f010130;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int font=0x7f010111;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontFamily=0x7f01003d;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderAuthority=0x7f01010a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fontProviderCerts=0x7f01010d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fontProviderFetchStrategy=0x7f01010e;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int fontProviderFetchTimeout=0x7f01010f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderPackage=0x7f01010b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderQuery=0x7f01010c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fontStyle=0x7f010110;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontWeight=0x7f010112;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f010136;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100d8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f01013c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f01000a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f01001e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f010158;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f010151;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010150;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010019;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f010012;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconTint=0x7f0100cb;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int iconTintMode=0x7f0100cc;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f01001b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f010028;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f01013d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=0x7f01013a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=0x7f010138;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f01001d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f01013b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f010102;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100d3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f010105;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f010107;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f010104;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f01012a;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f01012b;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f010109;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f010108;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f010106;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=0x7f010116;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f010117;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f01008f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f01002e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f01002b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010088;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f010082;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010084;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f010083;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010085;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010013;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f0100f9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f01013f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100f3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f010137;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f01002c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100f7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f01000d;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static final int numericModifiers=0x7f0100c4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100cf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f0100fd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f0100fc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f01008e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f01008d;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f01015b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f01015a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010159;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f01015c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f010026;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f01007a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f0100cd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f010132;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f01001c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f01001a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f0100de;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f0100d5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100ab;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f01012f;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=0x7f010126;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimVisibleHeightTrigger=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f010072;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f0100c5;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f0100c1;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f0100ea;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f01002d;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100ad;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f010031;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100d0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f010114;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=0x7f010115;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarBackground=0x7f010103;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=0x7f010123;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f0100ce;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100df;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100ec;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f0100fb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100dd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100e7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100e6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f010143;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f010142;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f010145;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f010140;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010141;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f010147;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f010146;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f01014f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f01014e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f01014c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f01014a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f010148;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010149;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f010037;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010065;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f01009e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorError=0x7f01012e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100bf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100e5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f0100e0;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f010034;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f010035;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f010036;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tint=0x7f010032;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f010033;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f01000c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f010129;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100ef;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100ee;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100f0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100eb;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f010077;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int tooltipForegroundColor=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tooltipFrameBackground=0x7f0100b0;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tooltipText=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f0100e2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f0100e3;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f0100e4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=0x7f010134;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int viewInflaterClass=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100db;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01003e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f010040;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010041;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010045;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f010043;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f010042;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010044;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f010046;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f010047;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f01003f;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0a0000;
public static final int abc_allow_stacked_button_bar=0x7f0a0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0a0002;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0b004f;
public static final int abc_background_cache_hint_selector_material_light=0x7f0b0050;
public static final int abc_btn_colored_borderless_text_material=0x7f0b0051;
public static final int abc_btn_colored_text_material=0x7f0b0052;
public static final int abc_color_highlight_material=0x7f0b0053;
public static final int abc_hint_foreground_material_dark=0x7f0b0054;
public static final int abc_hint_foreground_material_light=0x7f0b0055;
public static final int abc_input_method_navigation_guard=0x7f0b0000;
public static final int abc_primary_text_disable_only_material_dark=0x7f0b0056;
public static final int abc_primary_text_disable_only_material_light=0x7f0b0057;
public static final int abc_primary_text_material_dark=0x7f0b0058;
public static final int abc_primary_text_material_light=0x7f0b0059;
public static final int abc_search_url_text=0x7f0b005a;
public static final int abc_search_url_text_normal=0x7f0b0001;
public static final int abc_search_url_text_pressed=0x7f0b0002;
public static final int abc_search_url_text_selected=0x7f0b0003;
public static final int abc_secondary_text_material_dark=0x7f0b005b;
public static final int abc_secondary_text_material_light=0x7f0b005c;
public static final int abc_tint_btn_checkable=0x7f0b005d;
public static final int abc_tint_default=0x7f0b005e;
public static final int abc_tint_edittext=0x7f0b005f;
public static final int abc_tint_seek_thumb=0x7f0b0060;
public static final int abc_tint_spinner=0x7f0b0061;
public static final int abc_tint_switch_track=0x7f0b0062;
public static final int accent_material_dark=0x7f0b0004;
public static final int accent_material_light=0x7f0b0005;
public static final int background_floating_material_dark=0x7f0b0006;
public static final int background_floating_material_light=0x7f0b0007;
public static final int background_material_dark=0x7f0b0008;
public static final int background_material_light=0x7f0b0009;
public static final int bright_foreground_disabled_material_dark=0x7f0b000a;
public static final int bright_foreground_disabled_material_light=0x7f0b000b;
public static final int bright_foreground_inverse_material_dark=0x7f0b000c;
public static final int bright_foreground_inverse_material_light=0x7f0b000d;
public static final int bright_foreground_material_dark=0x7f0b000e;
public static final int bright_foreground_material_light=0x7f0b000f;
public static final int button_material_dark=0x7f0b0010;
public static final int button_material_light=0x7f0b0011;
public static final int cardview_dark_background=0x7f0b0047;
public static final int cardview_light_background=0x7f0b0048;
public static final int cardview_shadow_end_color=0x7f0b0049;
public static final int cardview_shadow_start_color=0x7f0b004a;
public static final int colorAccent=0x7f0b004d;
public static final int colorBackground=0x7f0b004e;
public static final int colorPrimary=0x7f0b004b;
public static final int colorPrimaryDark=0x7f0b004c;
public static final int design_bottom_navigation_shadow_color=0x7f0b003e;
public static final int design_error=0x7f0b0063;
public static final int design_fab_shadow_end_color=0x7f0b003f;
public static final int design_fab_shadow_mid_color=0x7f0b0040;
public static final int design_fab_shadow_start_color=0x7f0b0041;
public static final int design_fab_stroke_end_inner_color=0x7f0b0042;
public static final int design_fab_stroke_end_outer_color=0x7f0b0043;
public static final int design_fab_stroke_top_inner_color=0x7f0b0044;
public static final int design_fab_stroke_top_outer_color=0x7f0b0045;
public static final int design_snackbar_background_color=0x7f0b0046;
public static final int design_tint_password_toggle=0x7f0b0064;
public static final int dim_foreground_disabled_material_dark=0x7f0b0012;
public static final int dim_foreground_disabled_material_light=0x7f0b0013;
public static final int dim_foreground_material_dark=0x7f0b0014;
public static final int dim_foreground_material_light=0x7f0b0015;
public static final int error_color_material=0x7f0b0016;
public static final int foreground_material_dark=0x7f0b0017;
public static final int foreground_material_light=0x7f0b0018;
public static final int highlighted_text_material_dark=0x7f0b0019;
public static final int highlighted_text_material_light=0x7f0b001a;
public static final int material_blue_grey_800=0x7f0b001b;
public static final int material_blue_grey_900=0x7f0b001c;
public static final int material_blue_grey_950=0x7f0b001d;
public static final int material_deep_teal_200=0x7f0b001e;
public static final int material_deep_teal_500=0x7f0b001f;
public static final int material_grey_100=0x7f0b0020;
public static final int material_grey_300=0x7f0b0021;
public static final int material_grey_50=0x7f0b0022;
public static final int material_grey_600=0x7f0b0023;
public static final int material_grey_800=0x7f0b0024;
public static final int material_grey_850=0x7f0b0025;
public static final int material_grey_900=0x7f0b0026;
public static final int notification_action_color_filter=0x7f0b003c;
public static final int notification_icon_bg_color=0x7f0b003d;
public static final int notification_material_background_media_default_color=0x7f0b003b;
public static final int primary_dark_material_dark=0x7f0b0027;
public static final int primary_dark_material_light=0x7f0b0028;
public static final int primary_material_dark=0x7f0b0029;
public static final int primary_material_light=0x7f0b002a;
public static final int primary_text_default_material_dark=0x7f0b002b;
public static final int primary_text_default_material_light=0x7f0b002c;
public static final int primary_text_disabled_material_dark=0x7f0b002d;
public static final int primary_text_disabled_material_light=0x7f0b002e;
public static final int ripple_material_dark=0x7f0b002f;
public static final int ripple_material_light=0x7f0b0030;
public static final int secondary_text_default_material_dark=0x7f0b0031;
public static final int secondary_text_default_material_light=0x7f0b0032;
public static final int secondary_text_disabled_material_dark=0x7f0b0033;
public static final int secondary_text_disabled_material_light=0x7f0b0034;
public static final int switch_thumb_disabled_material_dark=0x7f0b0035;
public static final int switch_thumb_disabled_material_light=0x7f0b0036;
public static final int switch_thumb_material_dark=0x7f0b0065;
public static final int switch_thumb_material_light=0x7f0b0066;
public static final int switch_thumb_normal_material_dark=0x7f0b0037;
public static final int switch_thumb_normal_material_light=0x7f0b0038;
public static final int tooltip_background_dark=0x7f0b0039;
public static final int tooltip_background_light=0x7f0b003a;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f070012;
public static final int abc_action_bar_content_inset_with_nav=0x7f070013;
public static final int abc_action_bar_default_height_material=0x7f070007;
public static final int abc_action_bar_default_padding_end_material=0x7f070014;
public static final int abc_action_bar_default_padding_start_material=0x7f070015;
public static final int abc_action_bar_elevation_material=0x7f070017;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070018;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070019;
public static final int abc_action_bar_overflow_padding_start_material=0x7f07001a;
public static final int abc_action_bar_progress_bar_size=0x7f070008;
public static final int abc_action_bar_stacked_max_height=0x7f07001b;
public static final int abc_action_bar_stacked_tab_max_width=0x7f07001c;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07001d;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f07001e;
public static final int abc_action_button_min_height_material=0x7f07001f;
public static final int abc_action_button_min_width_material=0x7f070020;
public static final int abc_action_button_min_width_overflow_material=0x7f070021;
public static final int abc_alert_dialog_button_bar_height=0x7f070006;
public static final int abc_alert_dialog_button_dimen=0x7f070022;
public static final int abc_button_inset_horizontal_material=0x7f070023;
public static final int abc_button_inset_vertical_material=0x7f070024;
public static final int abc_button_padding_horizontal_material=0x7f070025;
public static final int abc_button_padding_vertical_material=0x7f070026;
public static final int abc_cascading_menus_min_smallest_width=0x7f070027;
public static final int abc_config_prefDialogWidth=0x7f07000b;
public static final int abc_control_corner_material=0x7f070028;
public static final int abc_control_inset_material=0x7f070029;
public static final int abc_control_padding_material=0x7f07002a;
public static final int abc_dialog_fixed_height_major=0x7f07000c;
public static final int abc_dialog_fixed_height_minor=0x7f07000d;
public static final int abc_dialog_fixed_width_major=0x7f07000e;
public static final int abc_dialog_fixed_width_minor=0x7f07000f;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f07002b;
public static final int abc_dialog_list_padding_top_no_title=0x7f07002c;
public static final int abc_dialog_min_width_major=0x7f070010;
public static final int abc_dialog_min_width_minor=0x7f070011;
public static final int abc_dialog_padding_material=0x7f07002d;
public static final int abc_dialog_padding_top_material=0x7f07002e;
public static final int abc_dialog_title_divider_material=0x7f07002f;
public static final int abc_disabled_alpha_material_dark=0x7f070030;
public static final int abc_disabled_alpha_material_light=0x7f070031;
public static final int abc_dropdownitem_icon_width=0x7f070032;
public static final int abc_dropdownitem_text_padding_left=0x7f070033;
public static final int abc_dropdownitem_text_padding_right=0x7f070034;
public static final int abc_edit_text_inset_bottom_material=0x7f070035;
public static final int abc_edit_text_inset_horizontal_material=0x7f070036;
public static final int abc_edit_text_inset_top_material=0x7f070037;
public static final int abc_floating_window_z=0x7f070038;
public static final int abc_list_item_padding_horizontal_material=0x7f070039;
public static final int abc_panel_menu_list_width=0x7f07003a;
public static final int abc_progress_bar_height_material=0x7f07003b;
public static final int abc_search_view_preferred_height=0x7f07003c;
public static final int abc_search_view_preferred_width=0x7f07003d;
public static final int abc_seekbar_track_background_height_material=0x7f07003e;
public static final int abc_seekbar_track_progress_height_material=0x7f07003f;
public static final int abc_select_dialog_padding_start_material=0x7f070040;
public static final int abc_switch_padding=0x7f070016;
public static final int abc_text_size_body_1_material=0x7f070041;
public static final int abc_text_size_body_2_material=0x7f070042;
public static final int abc_text_size_button_material=0x7f070043;
public static final int abc_text_size_caption_material=0x7f070044;
public static final int abc_text_size_display_1_material=0x7f070045;
public static final int abc_text_size_display_2_material=0x7f070046;
public static final int abc_text_size_display_3_material=0x7f070047;
public static final int abc_text_size_display_4_material=0x7f070048;
public static final int abc_text_size_headline_material=0x7f070049;
public static final int abc_text_size_large_material=0x7f07004a;
public static final int abc_text_size_medium_material=0x7f07004b;
public static final int abc_text_size_menu_header_material=0x7f07004c;
public static final int abc_text_size_menu_material=0x7f07004d;
public static final int abc_text_size_small_material=0x7f07004e;
public static final int abc_text_size_subhead_material=0x7f07004f;
public static final int abc_text_size_subtitle_material_toolbar=0x7f070009;
public static final int abc_text_size_title_material=0x7f070050;
public static final int abc_text_size_title_material_toolbar=0x7f07000a;
public static final int cardview_compat_inset_shadow=0x7f07009c;
public static final int cardview_default_elevation=0x7f07009d;
public static final int cardview_default_radius=0x7f07009e;
public static final int compat_button_inset_horizontal_material=0x7f070066;
public static final int compat_button_inset_vertical_material=0x7f070067;
public static final int compat_button_padding_horizontal_material=0x7f070068;
public static final int compat_button_padding_vertical_material=0x7f070069;
public static final int compat_control_corner_material=0x7f07006a;
public static final int design_appbar_elevation=0x7f07007e;
public static final int design_bottom_navigation_active_item_max_width=0x7f07007f;
public static final int design_bottom_navigation_active_text_size=0x7f070080;
public static final int design_bottom_navigation_elevation=0x7f070081;
public static final int design_bottom_navigation_height=0x7f070082;
public static final int design_bottom_navigation_item_max_width=0x7f070083;
public static final int design_bottom_navigation_item_min_width=0x7f070084;
public static final int design_bottom_navigation_margin=0x7f070085;
public static final int design_bottom_navigation_shadow_height=0x7f070086;
public static final int design_bottom_navigation_text_size=0x7f070087;
public static final int design_bottom_sheet_modal_elevation=0x7f070088;
public static final int design_bottom_sheet_peek_height_min=0x7f070089;
public static final int design_fab_border_width=0x7f07008a;
public static final int design_fab_elevation=0x7f07008b;
public static final int design_fab_image_size=0x7f07008c;
public static final int design_fab_size_mini=0x7f07008d;
public static final int design_fab_size_normal=0x7f07008e;
public static final int design_fab_translation_z_pressed=0x7f07008f;
public static final int design_navigation_elevation=0x7f070090;
public static final int design_navigation_icon_padding=0x7f070091;
public static final int design_navigation_icon_size=0x7f070092;
public static final int design_navigation_max_width=0x7f070076;
public static final int design_navigation_padding_bottom=0x7f070093;
public static final int design_navigation_separator_vertical_padding=0x7f070094;
public static final int design_snackbar_action_inline_max_width=0x7f070077;
public static final int design_snackbar_background_corner_radius=0x7f070078;
public static final int design_snackbar_elevation=0x7f070095;
public static final int design_snackbar_extra_spacing_horizontal=0x7f070079;
public static final int design_snackbar_max_width=0x7f07007a;
public static final int design_snackbar_min_width=0x7f07007b;
public static final int design_snackbar_padding_horizontal=0x7f070096;
public static final int design_snackbar_padding_vertical=0x7f070097;
public static final int design_snackbar_padding_vertical_2lines=0x7f07007c;
public static final int design_snackbar_text_size=0x7f070098;
public static final int design_tab_max_width=0x7f070099;
public static final int design_tab_scrollable_min_width=0x7f07007d;
public static final int design_tab_text_size=0x7f07009a;
public static final int design_tab_text_size_2line=0x7f07009b;
public static final int disabled_alpha_material_dark=0x7f070051;
public static final int disabled_alpha_material_light=0x7f070052;
public static final int fastscroll_default_thickness=0x7f070000;
public static final int fastscroll_margin=0x7f070001;
public static final int fastscroll_minimum_range=0x7f070002;
public static final int highlight_alpha_material_colored=0x7f070053;
public static final int highlight_alpha_material_dark=0x7f070054;
public static final int highlight_alpha_material_light=0x7f070055;
public static final int hint_alpha_material_dark=0x7f070056;
public static final int hint_alpha_material_light=0x7f070057;
public static final int hint_pressed_alpha_material_dark=0x7f070058;
public static final int hint_pressed_alpha_material_light=0x7f070059;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070003;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070004;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070005;
public static final int notification_action_icon_size=0x7f07006b;
public static final int notification_action_text_size=0x7f07006c;
public static final int notification_big_circle_margin=0x7f07006d;
public static final int notification_content_margin_start=0x7f070063;
public static final int notification_large_icon_height=0x7f07006e;
public static final int notification_large_icon_width=0x7f07006f;
public static final int notification_main_column_padding_top=0x7f070064;
public static final int notification_media_narrow_margin=0x7f070065;
public static final int notification_right_icon_size=0x7f070070;
public static final int notification_right_side_padding_top=0x7f070062;
public static final int notification_small_icon_background_padding=0x7f070071;
public static final int notification_small_icon_size_as_large=0x7f070072;
public static final int notification_subtext_size=0x7f070073;
public static final int notification_top_pad=0x7f070074;
public static final int notification_top_pad_large_text=0x7f070075;
public static final int tooltip_corner_radius=0x7f07005a;
public static final int tooltip_horizontal_padding=0x7f07005b;
public static final int tooltip_margin=0x7f07005c;
public static final int tooltip_precise_anchor_extra_offset=0x7f07005d;
public static final int tooltip_precise_anchor_threshold=0x7f07005e;
public static final int tooltip_vertical_padding=0x7f07005f;
public static final int tooltip_y_offset_non_touch=0x7f070060;
public static final int tooltip_y_offset_touch=0x7f070061;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int avd_hide_password=0x7f020053;
public static final int avd_show_password=0x7f020054;
public static final int bg_app=0x7f020055;
public static final int cell_shape=0x7f020056;
public static final int design_bottom_navigation_item_background=0x7f020057;
public static final int design_fab_background=0x7f020058;
public static final int design_ic_visibility=0x7f020059;
public static final int design_ic_visibility_off=0x7f02005a;
public static final int design_password_eye=0x7f02005b;
public static final int design_snackbar_background=0x7f02005c;
public static final int ic_launcher=0x7f02005d;
public static final int me=0x7f02005e;
public static final int navigation_empty_icon=0x7f02005f;
public static final int notification_action_background=0x7f020060;
public static final int notification_bg=0x7f020061;
public static final int notification_bg_low=0x7f020062;
public static final int notification_bg_low_normal=0x7f020063;
public static final int notification_bg_low_pressed=0x7f020064;
public static final int notification_bg_normal=0x7f020065;
public static final int notification_bg_normal_pressed=0x7f020066;
public static final int notification_icon_background=0x7f020067;
public static final int notification_template_icon_bg=0x7f02006c;
public static final int notification_template_icon_low_bg=0x7f02006d;
public static final int notification_tile_bg=0x7f020068;
public static final int notify_panel_notification_icon_bg=0x7f020069;
public static final int tooltip_frame_dark=0x7f02006a;
public static final int tooltip_frame_light=0x7f02006b;
}
public static final class id {
public static final int ALT=0x7f060032;
public static final int CTRL=0x7f060033;
public static final int FUNCTION=0x7f060034;
public static final int META=0x7f060035;
public static final int SHIFT=0x7f060036;
public static final int SYM=0x7f060037;
public static final int TextInputEditTextCustomerAddress=0x7f060095;
public static final int TextInputEditTextCustomerEmail=0x7f060093;
public static final int TextInputEditTextCustomerId=0x7f06008f;
public static final int TextInputEditTextCustomerName=0x7f060091;
public static final int TextView04=0x7f0600c8;
public static final int action0=0x7f0600b6;
public static final int action_bar=0x7f06007c;
public static final int action_bar_activity_content=0x7f06000b;
public static final int action_bar_container=0x7f06007b;
public static final int action_bar_root=0x7f060077;
public static final int action_bar_spinner=0x7f06000c;
public static final int action_bar_subtitle=0x7f06005b;
public static final int action_bar_title=0x7f06005a;
public static final int action_container=0x7f0600b3;
public static final int action_context_bar=0x7f06007d;
public static final int action_divider=0x7f0600ba;
public static final int action_image=0x7f0600b4;
public static final int action_menu_divider=0x7f06000d;
public static final int action_menu_presenter=0x7f06000e;
public static final int action_mode_bar=0x7f060079;
public static final int action_mode_bar_stub=0x7f060078;
public static final int action_mode_close_button=0x7f06005c;
public static final int action_text=0x7f0600b5;
public static final int actions=0x7f0600c3;
public static final int activity_chooser_view_content=0x7f06005d;
public static final int add=0x7f060027;
public static final int alertTitle=0x7f060070;
public static final int all=0x7f06004a;
public static final int always=0x7f060038;
public static final int appCombatButtonRegister=0x7f060096;
public static final int appCombatTextViewCustomerList=0x7f060097;
public static final int async=0x7f06004b;
public static final int auto=0x7f060054;
public static final int beginning=0x7f06002f;
public static final int blocking=0x7f06004c;
public static final int bottom=0x7f06003d;
public static final int buttonPanel=0x7f060063;
public static final int cancel_action=0x7f0600b7;
public static final int center=0x7f06003f;
public static final int center_horizontal=0x7f060040;
public static final int center_vertical=0x7f060041;
public static final int checkbox=0x7f060073;
public static final int chronometer=0x7f0600bf;
public static final int clip_horizontal=0x7f060042;
public static final int clip_vertical=0x7f060043;
public static final int collapseActionView=0x7f060039;
public static final int container=0x7f06009a;
public static final int contentPanel=0x7f060066;
public static final int coordinator=0x7f06009b;
public static final int custom=0x7f06006d;
public static final int customPanel=0x7f06006c;
public static final int dashboard=0x7f06008c;
public static final int decor_content_parent=0x7f06007a;
public static final int default_activity_button=0x7f060060;
public static final int delete=0x7f0600b1;
public static final int design_bottom_sheet=0x7f06009d;
public static final int design_menu_item_action_area=0x7f0600a4;
public static final int design_menu_item_action_area_stub=0x7f0600a3;
public static final int design_menu_item_text=0x7f0600a2;
public static final int design_navigation_view=0x7f0600a1;
public static final int disableHome=0x7f060020;
public static final int edit_query=0x7f06007e;
public static final int end=0x7f060030;
public static final int end_padder=0x7f0600c5;
public static final int enterAlways=0x7f06004f;
public static final int enterAlwaysCollapsed=0x7f060050;
public static final int entryImageView=0x7f0600a6;
public static final int entryTextView=0x7f0600a7;
public static final int entryTextView2=0x7f0600a8;
public static final int exit=0x7f0600cd;
public static final int exitUntilCollapsed=0x7f060051;
public static final int expand_activities_button=0x7f06005e;
public static final int expanded_menu=0x7f060072;
public static final int fill=0x7f060044;
public static final int fill_horizontal=0x7f060045;
public static final int fill_vertical=0x7f060046;
public static final int fixed=0x7f060058;
public static final int forever=0x7f06004d;
public static final int ghost_view=0x7f060000;
public static final int help=0x7f0600cc;
public static final int home=0x7f06000f;
public static final int homeAsUp=0x7f060021;
public static final int icon=0x7f060062;
public static final int icon_group=0x7f0600c4;
public static final int id=0x7f0600a9;
public static final int ifRoom=0x7f06003a;
public static final int image=0x7f06005f;
public static final int iname=0x7f0600aa;
public static final int info=0x7f0600c0;
public static final int insert=0x7f0600ae;
public static final int iphone=0x7f0600ab;
public static final int italic=0x7f06004e;
public static final int item_touch_helper_previous_elevation=0x7f06000a;
public static final int largeLabel=0x7f060099;
public static final int left=0x7f060047;
public static final int line1=0x7f060014;
public static final int line3=0x7f060015;
public static final int listMode=0x7f06001d;
public static final int list_item=0x7f060061;
public static final int masked=0x7f0600cb;
public static final int media_actions=0x7f0600b9;
public static final int message=0x7f06008b;
public static final int middle=0x7f060031;
public static final int mini=0x7f060057;
public static final int multiply=0x7f060028;
public static final int my_list_id=0x7f0600b2;
public static final int navigation_header_container=0x7f0600a0;
public static final int nestedScrollView=0x7f06008d;
public static final int never=0x7f06003b;
public static final int none=0x7f060022;
public static final int normal=0x7f06001e;
public static final int notification_background=0x7f0600c2;
public static final int notification_main_column=0x7f0600bc;
public static final int notification_main_column_container=0x7f0600bb;
public static final int parallax=0x7f060055;
public static final int parentPanel=0x7f060065;
public static final int parent_matrix=0x7f060001;
public static final int pin=0x7f060056;
public static final int progress_circular=0x7f060010;
public static final int progress_horizontal=0x7f060011;
public static final int radio=0x7f060075;
public static final int read=0x7f0600af;
public static final int right=0x7f060048;
public static final int right_icon=0x7f0600c1;
public static final int right_side=0x7f0600bd;
public static final int rname=0x7f0600ac;
public static final int rphone=0x7f0600ad;
public static final int save_image_matrix=0x7f060002;
public static final int save_non_transition_alpha=0x7f060003;
public static final int save_scale_type=0x7f060004;
public static final int screen=0x7f060029;
public static final int scroll=0x7f060052;
public static final int scrollIndicatorDown=0x7f06006b;
public static final int scrollIndicatorUp=0x7f060067;
public static final int scrollView=0x7f060068;
public static final int scrollable=0x7f060059;
public static final int search_badge=0x7f060080;
public static final int search_bar=0x7f06007f;
public static final int search_button=0x7f060081;
public static final int search_close_btn=0x7f060086;
public static final int search_edit_frame=0x7f060082;
public static final int search_go_btn=0x7f060088;
public static final int search_mag_icon=0x7f060083;
public static final int search_plate=0x7f060084;
public static final int search_src_text=0x7f060085;
public static final int search_voice_btn=0x7f060089;
public static final int select_dialog_listview=0x7f06008a;
public static final int shortcut=0x7f060074;
public static final int showCustom=0x7f060023;
public static final int showHome=0x7f060024;
public static final int showTitle=0x7f060025;
public static final int smallLabel=0x7f060098;
public static final int snackbar_action=0x7f06009f;
public static final int snackbar_text=0x7f06009e;
public static final int snap=0x7f060053;
public static final int spacer=0x7f060064;
public static final int split_action_bar=0x7f060012;
public static final int src_atop=0x7f06002a;
public static final int src_in=0x7f06002b;
public static final int src_over=0x7f06002c;
public static final int start=0x7f060049;
public static final int status_bar_latest_event_content=0x7f0600b8;
public static final int submenuarrow=0x7f060076;
public static final int submit_area=0x7f060087;
public static final int tabMode=0x7f06001f;
public static final int tableRow1=0x7f0600c7;
public static final int tableRow2=0x7f0600c9;
public static final int tag_transition_group=0x7f060016;
public static final int text=0x7f060017;
public static final int text2=0x7f060018;
public static final int textInputLayoutCustomerAddress=0x7f060094;
public static final int textInputLayoutCustomerEmail=0x7f060092;
public static final int textInputLayoutCustomerId=0x7f06008e;
public static final int textInputLayoutCustomerName=0x7f060090;
public static final int textSpacerNoButtons=0x7f06006a;
public static final int textSpacerNoTitle=0x7f060069;
public static final int text_input_password_toggle=0x7f0600a5;
public static final int textinput_counter=0x7f06001a;
public static final int textinput_error=0x7f06001b;
public static final int ticket1=0x7f0600c6;
public static final int time=0x7f0600be;
public static final int title=0x7f060019;
public static final int titleDividerNoCustom=0x7f060071;
public static final int title_template=0x7f06006f;
public static final int top=0x7f06003e;
public static final int topPanel=0x7f06006e;
public static final int touch_outside=0x7f06009c;
public static final int transition_current_scene=0x7f060005;
public static final int transition_layout_save=0x7f060006;
public static final int transition_position=0x7f060007;
public static final int transition_scene_layoutid_cache=0x7f060008;
public static final int transition_transform=0x7f060009;
public static final int uniform=0x7f06002d;
public static final int up=0x7f060013;
public static final int update=0x7f0600b0;
public static final int useLogo=0x7f060026;
public static final int view_offset_helper=0x7f06001c;
public static final int visible=0x7f0600ca;
public static final int withText=0x7f06003c;
public static final int wrap_content=0x7f06002e;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0c0000;
public static final int abc_config_activityShortDur=0x7f0c0001;
public static final int app_bar_elevation_anim_duration=0x7f0c0006;
public static final int bottom_sheet_slide_duration=0x7f0c0007;
public static final int cancel_button_image_alpha=0x7f0c0002;
public static final int config_tooltipAnimTime=0x7f0c0003;
public static final int design_snackbar_text_max_lines=0x7f0c0005;
public static final int hide_password_duration=0x7f0c0008;
public static final int show_password_duration=0x7f0c0009;
public static final int status_bar_notification_info_maxnum=0x7f0c0004;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_menu_item_layout=0x7f030002;
public static final int abc_action_menu_layout=0x7f030003;
public static final int abc_action_mode_bar=0x7f030004;
public static final int abc_action_mode_close_item_material=0x7f030005;
public static final int abc_activity_chooser_view=0x7f030006;
public static final int abc_activity_chooser_view_list_item=0x7f030007;
public static final int abc_alert_dialog_button_bar_material=0x7f030008;
public static final int abc_alert_dialog_material=0x7f030009;
public static final int abc_alert_dialog_title_material=0x7f03000a;
public static final int abc_dialog_title_material=0x7f03000b;
public static final int abc_expanded_menu_layout=0x7f03000c;
public static final int abc_list_menu_item_checkbox=0x7f03000d;
public static final int abc_list_menu_item_icon=0x7f03000e;
public static final int abc_list_menu_item_layout=0x7f03000f;
public static final int abc_list_menu_item_radio=0x7f030010;
public static final int abc_popup_menu_header_item_layout=0x7f030011;
public static final int abc_popup_menu_item_layout=0x7f030012;
public static final int abc_screen_content_include=0x7f030013;
public static final int abc_screen_simple=0x7f030014;
public static final int abc_screen_simple_overlay_action_mode=0x7f030015;
public static final int abc_screen_toolbar=0x7f030016;
public static final int abc_search_dropdown_item_icons_2line=0x7f030017;
public static final int abc_search_view=0x7f030018;
public static final int abc_select_dialog_material=0x7f030019;
public static final int abc_tooltip=0x7f03001a;
public static final int activity_main=0x7f03001b;
public static final int customer_list=0x7f03001c;
public static final int customer_register=0x7f03001d;
public static final int design_bottom_navigation_item=0x7f03001e;
public static final int design_bottom_sheet_dialog=0x7f03001f;
public static final int design_layout_snackbar=0x7f030020;
public static final int design_layout_snackbar_include=0x7f030021;
public static final int design_layout_tab_icon=0x7f030022;
public static final int design_layout_tab_text=0x7f030023;
public static final int design_menu_item_action_area=0x7f030024;
public static final int design_navigation_item=0x7f030025;
public static final int design_navigation_item_header=0x7f030026;
public static final int design_navigation_item_separator=0x7f030027;
public static final int design_navigation_item_subheader=0x7f030028;
public static final int design_navigation_menu=0x7f030029;
public static final int design_navigation_menu_item=0x7f03002a;
public static final int design_text_input_password_icon=0x7f03002b;
public static final int entry=0x7f03002c;
public static final int main_number=0x7f03002d;
public static final int my_list_view=0x7f03002e;
public static final int notification_action=0x7f03002f;
public static final int notification_action_tombstone=0x7f030030;
public static final int notification_media_action=0x7f030031;
public static final int notification_media_cancel_action=0x7f030032;
public static final int notification_template_big_media=0x7f030033;
public static final int notification_template_big_media_custom=0x7f030034;
public static final int notification_template_big_media_narrow=0x7f030035;
public static final int notification_template_big_media_narrow_custom=0x7f030036;
public static final int notification_template_custom_big=0x7f030037;
public static final int notification_template_icon_group=0x7f030038;
public static final int notification_template_lines_media=0x7f030039;
public static final int notification_template_media=0x7f03003a;
public static final int notification_template_media_custom=0x7f03003b;
public static final int notification_template_part_chronometer=0x7f03003c;
public static final int notification_template_part_time=0x7f03003d;
public static final int select_dialog_item_material=0x7f03003e;
public static final int select_dialog_multichoice_material=0x7f03003f;
public static final int select_dialog_singlechoice_material=0x7f030040;
public static final int support_simple_spinner_dropdown_item=0x7f030041;
public static final int ticket_stat_item=0x7f030042;
public static final int ticket_win_list=0x7f030043;
}
public static final class menu {
public static final int main_menu=0x7f0e0000;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f080000;
public static final int abc_action_bar_up_description=0x7f080001;
public static final int abc_action_menu_overflow_description=0x7f080002;
public static final int abc_action_mode_done=0x7f080003;
public static final int abc_activity_chooser_view_see_all=0x7f080004;
public static final int abc_activitychooserview_choose_application=0x7f080005;
public static final int abc_capital_off=0x7f080006;
public static final int abc_capital_on=0x7f080007;
public static final int abc_font_family_body_1_material=0x7f080012;
public static final int abc_font_family_body_2_material=0x7f080013;
public static final int abc_font_family_button_material=0x7f080014;
public static final int abc_font_family_caption_material=0x7f080015;
public static final int abc_font_family_display_1_material=0x7f080016;
public static final int abc_font_family_display_2_material=0x7f080017;
public static final int abc_font_family_display_3_material=0x7f080018;
public static final int abc_font_family_display_4_material=0x7f080019;
public static final int abc_font_family_headline_material=0x7f08001a;
public static final int abc_font_family_menu_material=0x7f08001b;
public static final int abc_font_family_subhead_material=0x7f08001c;
public static final int abc_font_family_title_material=0x7f08001d;
public static final int abc_search_hint=0x7f080008;
public static final int abc_searchview_description_clear=0x7f080009;
public static final int abc_searchview_description_query=0x7f08000a;
public static final int abc_searchview_description_search=0x7f08000b;
public static final int abc_searchview_description_submit=0x7f08000c;
public static final int abc_searchview_description_voice=0x7f08000d;
public static final int abc_shareactionprovider_share_with=0x7f08000e;
public static final int abc_shareactionprovider_share_with_application=0x7f08000f;
public static final int abc_toolbar_collapse_description=0x7f080010;
public static final int app_name=0x7f080027;
public static final int appbar_scrolling_view_behavior=0x7f08001f;
public static final int bottom_sheet_behavior=0x7f080020;
public static final int character_counter_pattern=0x7f080021;
public static final int hello_world=0x7f080028;
public static final int password_toggle_content_description=0x7f080022;
public static final int path_password_eye=0x7f080023;
public static final int path_password_eye_mask_strike_through=0x7f080024;
public static final int path_password_eye_mask_visible=0x7f080025;
public static final int path_password_strike_through=0x7f080026;
public static final int search_menu_title=0x7f080011;
public static final int status_bar_notification_info_overflow=0x7f08001e;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f090084;
public static final int AlertDialog_AppCompat_Light=0x7f090085;
public static final int Animation_AppCompat_Dialog=0x7f090086;
public static final int Animation_AppCompat_DropDownUp=0x7f090087;
public static final int Animation_AppCompat_Tooltip=0x7f090088;
public static final int Animation_Design_BottomSheetDialog=0x7f09015e;
public static final int AppTheme=0x7f09017c;
public static final int Base_AlertDialog_AppCompat=0x7f090089;
public static final int Base_AlertDialog_AppCompat_Light=0x7f09008a;
public static final int Base_Animation_AppCompat_Dialog=0x7f09008b;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f09008c;
public static final int Base_Animation_AppCompat_Tooltip=0x7f09008d;
public static final int Base_CardView=0x7f090179;
public static final int Base_DialogWindowTitle_AppCompat=0x7f09008e;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f09008f;
public static final int Base_TextAppearance_AppCompat=0x7f09001a;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f09001b;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f09001c;
public static final int Base_TextAppearance_AppCompat_Button=0x7f09001d;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f09001e;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f09001f;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f090020;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f090021;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f090022;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f090023;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090024;
public static final int Base_TextAppearance_AppCompat_Large=0x7f090025;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090026;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090027;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090028;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f090029;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f09002a;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f09002b;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090090;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09002c;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09002d;
public static final int Base_TextAppearance_AppCompat_Small=0x7f09002e;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09002f;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090030;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090091;
public static final int Base_TextAppearance_AppCompat_Title=0x7f090031;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090092;
public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f090093;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090075;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090032;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090033;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090034;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090035;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090036;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090037;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090038;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f09007c;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f09007d;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090076;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090094;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090039;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09003a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09003b;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09003c;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09003d;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090095;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09003e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09003f;
public static final int Base_Theme_AppCompat=0x7f090040;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f090096;
public static final int Base_Theme_AppCompat_Dialog=0x7f090041;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f090097;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f090098;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f090099;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090001;
public static final int Base_Theme_AppCompat_Light=0x7f090042;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09009a;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f090043;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09009b;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09009c;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f09009d;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090002;
public static final int Base_ThemeOverlay_AppCompat=0x7f09009e;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f09009f;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900a0;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900a1;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f090044;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0900a2;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900a3;
public static final int Base_V14_Widget_Design_AppBarLayout=0x7f09015f;
public static final int Base_V21_Theme_AppCompat=0x7f090045;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090046;
public static final int Base_V21_Theme_AppCompat_Light=0x7f090047;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090048;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090049;
public static final int Base_V21_Widget_Design_AppBarLayout=0x7f09015b;
public static final int Base_V22_Theme_AppCompat=0x7f090073;
public static final int Base_V22_Theme_AppCompat_Light=0x7f090074;
public static final int Base_V23_Theme_AppCompat=0x7f090077;
public static final int Base_V23_Theme_AppCompat_Light=0x7f090078;
public static final int Base_V26_Theme_AppCompat=0x7f090080;
public static final int Base_V26_Theme_AppCompat_Light=0x7f090081;
public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f090082;
public static final int Base_V26_Widget_Design_AppBarLayout=0x7f09015d;
public static final int Base_V7_Theme_AppCompat=0x7f0900a4;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900a5;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0900a6;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900a7;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900a8;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900a9;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900aa;
public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0900ab;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0900ac;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900ad;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900ae;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f09004a;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f09004b;
public static final int Base_Widget_AppCompat_ActionButton=0x7f09004c;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09004d;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09004e;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0900af;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900b0;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f09004f;
public static final int Base_Widget_AppCompat_Button=0x7f090050;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f090051;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f090052;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900b1;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f090079;
public static final int Base_Widget_AppCompat_Button_Small=0x7f090053;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f090054;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900b2;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090055;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090056;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900b3;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900b4;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090057;
public static final int Base_Widget_AppCompat_EditText=0x7f090058;
public static final int Base_Widget_AppCompat_ImageButton=0x7f090059;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900b5;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900b6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900b7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f09005a;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09005b;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f09005c;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f09005d;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09005e;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900b8;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09005f;
public static final int Base_Widget_AppCompat_ListView=0x7f090060;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090061;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090062;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f090063;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090064;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900b9;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f090065;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090066;
public static final int Base_Widget_AppCompat_RatingBar=0x7f090067;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f09007a;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f09007b;
public static final int Base_Widget_AppCompat_SearchView=0x7f0900ba;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900bb;
public static final int Base_Widget_AppCompat_SeekBar=0x7f090068;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900bc;
public static final int Base_Widget_AppCompat_Spinner=0x7f090069;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090003;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f09006a;
public static final int Base_Widget_AppCompat_Toolbar=0x7f090083;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f09006b;
public static final int Base_Widget_Design_AppBarLayout=0x7f09015c;
public static final int Base_Widget_Design_TabLayout=0x7f090160;
public static final int CardView=0x7f090178;
public static final int CardView_Dark=0x7f09017a;
public static final int CardView_Light=0x7f09017b;
public static final int Platform_AppCompat=0x7f09006c;
public static final int Platform_AppCompat_Light=0x7f09006d;
public static final int Platform_ThemeOverlay_AppCompat=0x7f09006e;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f09006f;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090070;
public static final int Platform_V21_AppCompat=0x7f090071;
public static final int Platform_V21_AppCompat_Light=0x7f090072;
public static final int Platform_V25_AppCompat=0x7f09007e;
public static final int Platform_V25_AppCompat_Light=0x7f09007f;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0900bd;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f09000c;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f09000d;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f09000e;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f09000f;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090010;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090011;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090012;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090013;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090014;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f090015;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f090016;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f090017;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f090018;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f090019;
public static final int TextAppearance_AppCompat=0x7f0900be;
public static final int TextAppearance_AppCompat_Body1=0x7f0900bf;
public static final int TextAppearance_AppCompat_Body2=0x7f0900c0;
public static final int TextAppearance_AppCompat_Button=0x7f0900c1;
public static final int TextAppearance_AppCompat_Caption=0x7f0900c2;
public static final int TextAppearance_AppCompat_Display1=0x7f0900c3;
public static final int TextAppearance_AppCompat_Display2=0x7f0900c4;
public static final int TextAppearance_AppCompat_Display3=0x7f0900c5;
public static final int TextAppearance_AppCompat_Display4=0x7f0900c6;
public static final int TextAppearance_AppCompat_Headline=0x7f0900c7;
public static final int TextAppearance_AppCompat_Inverse=0x7f0900c8;
public static final int TextAppearance_AppCompat_Large=0x7f0900c9;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900ca;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900cb;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900cc;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900cd;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900ce;
public static final int TextAppearance_AppCompat_Medium=0x7f0900cf;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900d0;
public static final int TextAppearance_AppCompat_Menu=0x7f0900d1;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900d2;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900d3;
public static final int TextAppearance_AppCompat_Small=0x7f0900d4;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900d5;
public static final int TextAppearance_AppCompat_Subhead=0x7f0900d6;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900d7;
public static final int TextAppearance_AppCompat_Title=0x7f0900d8;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900d9;
public static final int TextAppearance_AppCompat_Tooltip=0x7f09000b;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900da;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900db;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900dc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900dd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900de;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900df;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900e0;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900e1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900e2;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900e3;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0900e4;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0900e5;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900e6;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900e7;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0900e8;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900e9;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900ea;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900eb;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900ec;
public static final int TextAppearance_Compat_Notification=0x7f090153;
public static final int TextAppearance_Compat_Notification_Info=0x7f090154;
public static final int TextAppearance_Compat_Notification_Info_Media=0x7f09014e;
public static final int TextAppearance_Compat_Notification_Line2=0x7f090159;
public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f090152;
public static final int TextAppearance_Compat_Notification_Media=0x7f09014f;
public static final int TextAppearance_Compat_Notification_Time=0x7f090155;
public static final int TextAppearance_Compat_Notification_Time_Media=0x7f090150;
public static final int TextAppearance_Compat_Notification_Title=0x7f090156;
public static final int TextAppearance_Compat_Notification_Title_Media=0x7f090151;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f090161;
public static final int TextAppearance_Design_Counter=0x7f090162;
public static final int TextAppearance_Design_Counter_Overflow=0x7f090163;
public static final int TextAppearance_Design_Error=0x7f090164;
public static final int TextAppearance_Design_Hint=0x7f090165;
public static final int TextAppearance_Design_Snackbar_Message=0x7f090166;
public static final int TextAppearance_Design_Tab=0x7f090167;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900ed;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900ee;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900ef;
public static final int Theme_AppCompat=0x7f0900f0;
public static final int Theme_AppCompat_CompactMenu=0x7f0900f1;
public static final int Theme_AppCompat_DayNight=0x7f090004;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f090005;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f090006;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090007;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090008;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f090009;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f09000a;
public static final int Theme_AppCompat_Dialog=0x7f0900f2;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0900f3;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900f4;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900f5;
public static final int Theme_AppCompat_Light=0x7f0900f6;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900f7;
public static final int Theme_AppCompat_Light_Dialog=0x7f0900f8;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900f9;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900fa;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900fb;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900fc;
public static final int Theme_AppCompat_NoActionBar=0x7f0900fd;
public static final int Theme_Design=0x7f090168;
public static final int Theme_Design_BottomSheetDialog=0x7f090169;
public static final int Theme_Design_Light=0x7f09016a;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f09016b;
public static final int Theme_Design_Light_NoActionBar=0x7f09016c;
public static final int Theme_Design_NoActionBar=0x7f09016d;
public static final int ThemeOverlay_AppCompat=0x7f0900fe;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900ff;
public static final int ThemeOverlay_AppCompat_Dark=0x7f090100;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090101;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f090102;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f090103;
public static final int ThemeOverlay_AppCompat_Light=0x7f090104;
public static final int Widget_AppCompat_ActionBar=0x7f090105;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f090106;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090107;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f090108;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f090109;
public static final int Widget_AppCompat_ActionButton=0x7f09010a;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f09010b;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f09010c;
public static final int Widget_AppCompat_ActionMode=0x7f09010d;
public static final int Widget_AppCompat_ActivityChooserView=0x7f09010e;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09010f;
public static final int Widget_AppCompat_Button=0x7f090110;
public static final int Widget_AppCompat_Button_Borderless=0x7f090111;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090112;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090113;
public static final int Widget_AppCompat_Button_Colored=0x7f090114;
public static final int Widget_AppCompat_Button_Small=0x7f090115;
public static final int Widget_AppCompat_ButtonBar=0x7f090116;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090117;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090118;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090119;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f09011a;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f09011b;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f09011c;
public static final int Widget_AppCompat_EditText=0x7f09011d;
public static final int Widget_AppCompat_ImageButton=0x7f09011e;
public static final int Widget_AppCompat_Light_ActionBar=0x7f09011f;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090120;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090121;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090122;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090123;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090124;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090125;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090126;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090127;
public static final int Widget_AppCompat_Light_ActionButton=0x7f090128;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090129;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f09012a;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f09012b;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f09012c;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f09012d;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f09012e;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f09012f;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090130;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f090131;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090132;
public static final int Widget_AppCompat_Light_SearchView=0x7f090133;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090134;
public static final int Widget_AppCompat_ListMenuView=0x7f090135;
public static final int Widget_AppCompat_ListPopupWindow=0x7f090136;
public static final int Widget_AppCompat_ListView=0x7f090137;
public static final int Widget_AppCompat_ListView_DropDown=0x7f090138;
public static final int Widget_AppCompat_ListView_Menu=0x7f090139;
public static final int Widget_AppCompat_PopupMenu=0x7f09013a;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f09013b;
public static final int Widget_AppCompat_PopupWindow=0x7f09013c;
public static final int Widget_AppCompat_ProgressBar=0x7f09013d;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f09013e;
public static final int Widget_AppCompat_RatingBar=0x7f09013f;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f090140;
public static final int Widget_AppCompat_RatingBar_Small=0x7f090141;
public static final int Widget_AppCompat_SearchView=0x7f090142;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090143;
public static final int Widget_AppCompat_SeekBar=0x7f090144;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f090145;
public static final int Widget_AppCompat_Spinner=0x7f090146;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f090147;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090148;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f090149;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09014a;
public static final int Widget_AppCompat_Toolbar=0x7f09014b;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f09014c;
public static final int Widget_Compat_NotificationActionContainer=0x7f090157;
public static final int Widget_Compat_NotificationActionText=0x7f090158;
public static final int Widget_Design_AppBarLayout=0x7f09016e;
public static final int Widget_Design_BottomNavigationView=0x7f09016f;
public static final int Widget_Design_BottomSheet_Modal=0x7f090170;
public static final int Widget_Design_CollapsingToolbar=0x7f090171;
public static final int Widget_Design_CoordinatorLayout=0x7f090172;
public static final int Widget_Design_FloatingActionButton=0x7f090173;
public static final int Widget_Design_NavigationView=0x7f090174;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090175;
public static final int Widget_Design_Snackbar=0x7f090176;
public static final int Widget_Design_TabLayout=0x7f09015a;
public static final int Widget_Design_TextInputLayout=0x7f090177;
public static final int Widget_Support_CoordinatorLayout=0x7f09014d;
}
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.xskt.pph:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.xskt.pph:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.xskt.pph:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.xskt.pph:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.xskt.pph:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.xskt.pph:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.xskt.pph:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.xskt.pph:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.xskt.pph:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.xskt.pph:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.xskt.pph:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.xskt.pph:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.xskt.pph:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.xskt.pph:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.xskt.pph:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.xskt.pph:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.xskt.pph:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.xskt.pph:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.xskt.pph:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.xskt.pph:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.xskt.pph:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.xskt.pph:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.xskt.pph:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.xskt.pph:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.xskt.pph:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.xskt.pph:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.xskt.pph:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.xskt.pph:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.xskt.pph:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f01000a, 0x7f01000c, 0x7f01000d, 0x7f01000e,
0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012,
0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016,
0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a,
0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e,
0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022,
0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026,
0x7f01006d
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name com.xskt.pph:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name com.xskt.pph:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static 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.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.xskt.pph:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.xskt.pph:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.xskt.pph:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.xskt.pph:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.xskt.pph:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.xskt.pph:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f01000a, 0x7f010010, 0x7f010011, 0x7f010015,
0x7f010017, 0x7f010027
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.xskt.pph:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.xskt.pph:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010028, 0x7f010029
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonIconDimen com.xskt.pph:buttonIconDimen}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.xskt.pph:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.xskt.pph:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.xskt.pph:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.xskt.pph:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.xskt.pph:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.xskt.pph: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, 0x7f01002a, 0x7f01002b, 0x7f01002c,
0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonIconDimen}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:buttonIconDimen
*/
public static final int AlertDialog_buttonIconDimen = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.xskt.pph:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.xskt.pph:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f010025,
0x7f010113
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static final int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static final int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:elevation
*/
public static final int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:expanded
*/
public static final int AppBarLayout_expanded = 4;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.xskt.pph:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.xskt.pph:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010114, 0x7f010115
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.xskt.pph:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.xskt.pph:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name com.xskt.pph:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat com.xskt.pph:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint com.xskt.pph:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode com.xskt.pph:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010031, 0x7f010032, 0x7f010033
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph: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.xskt.pph:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.xskt.pph:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.xskt.pph:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f010034, 0x7f010035, 0x7f010036
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph: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_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static 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.
@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.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.xskt.pph:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.xskt.pph:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.xskt.pph:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.xskt.pph:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.xskt.pph:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily com.xskt.pph:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps com.xskt.pph:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:autoSizeMaxTextSize
*/
public static final int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:autoSizeMinTextSize
*/
public static final int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:autoSizePresetSizes
*/
public static final int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:autoSizeStepGranularity
*/
public static final int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#autoSizeTextType}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name com.xskt.pph:autoSizeTextType
*/
public static final int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fontFamily
*/
public static final int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.xskt.pph:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider com.xskt.pph:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.xskt.pph:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.xskt.pph:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.xskt.pph:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.xskt.pph:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.xskt.pph:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.xskt.pph:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.xskt.pph:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.xskt.pph:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.xskt.pph:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.xskt.pph:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.xskt.pph:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.xskt.pph:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.xskt.pph:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.xskt.pph:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.xskt.pph:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.xskt.pph:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.xskt.pph:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.xskt.pph:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.xskt.pph:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.xskt.pph:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.xskt.pph:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.xskt.pph:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.xskt.pph:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.xskt.pph:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.xskt.pph:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.xskt.pph:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.xskt.pph:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.xskt.pph:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.xskt.pph:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.xskt.pph:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.xskt.pph:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.xskt.pph:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.xskt.pph:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.xskt.pph:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.xskt.pph:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.xskt.pph:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.xskt.pph:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.xskt.pph:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.xskt.pph:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.xskt.pph:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.xskt.pph:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.xskt.pph:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.xskt.pph:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.xskt.pph:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.xskt.pph:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.xskt.pph:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.xskt.pph:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.xskt.pph:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.xskt.pph:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.xskt.pph:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.xskt.pph:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError com.xskt.pph:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.xskt.pph:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.xskt.pph:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.xskt.pph:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.xskt.pph:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.xskt.pph:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.xskt.pph:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.xskt.pph:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.xskt.pph:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.xskt.pph:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.xskt.pph:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.xskt.pph:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.xskt.pph:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.xskt.pph:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.xskt.pph:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.xskt.pph:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.xskt.pph:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.xskt.pph:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.xskt.pph:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.xskt.pph:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.xskt.pph:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.xskt.pph:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.xskt.pph:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.xskt.pph:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.xskt.pph:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.xskt.pph:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.xskt.pph:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.xskt.pph:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.xskt.pph:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.xskt.pph:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.xskt.pph:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.xskt.pph:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.xskt.pph:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.xskt.pph:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.xskt.pph:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.xskt.pph:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.xskt.pph:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.xskt.pph:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.xskt.pph:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.xskt.pph:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.xskt.pph:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.xskt.pph:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.xskt.pph:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.xskt.pph:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.xskt.pph:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.xskt.pph:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.xskt.pph:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.xskt.pph:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.xskt.pph:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.xskt.pph:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.xskt.pph:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.xskt.pph:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.xskt.pph:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.xskt.pph:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.xskt.pph:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.xskt.pph:viewInflaterClass}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.xskt.pph:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.xskt.pph:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.xskt.pph:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.xskt.pph:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.xskt.pph:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.xskt.pph:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.xskt.pph:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.xskt.pph:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.xskt.pph:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.xskt.pph:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_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, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043,
0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047,
0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.xskt.pph:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorError}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:colorError
*/
public static final int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tooltipForegroundColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:tooltipForegroundColor
*/
public static final int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:tooltipFrameBackground
*/
public static final int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#viewInflaterClass}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:viewInflaterClass
*/
public static final int AppCompatTheme_viewInflaterClass = 119;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation com.xskt.pph:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground com.xskt.pph:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint com.xskt.pph:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor com.xskt.pph:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu com.xskt.pph:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f010025, 0x7f010137, 0x7f010138, 0x7f010139,
0x7f01013a
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:menu
*/
public static final int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.xskt.pph:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.xskt.pph:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.xskt.pph:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f010118, 0x7f010119, 0x7f01011a
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.xskt.pph:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking com.xskt.pph:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100b4
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor com.xskt.pph:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius com.xskt.pph:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation com.xskt.pph:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation com.xskt.pph:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap com.xskt.pph:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding com.xskt.pph:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding com.xskt.pph:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom com.xskt.pph:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft com.xskt.pph:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight com.xskt.pph:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop com.xskt.pph:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f01015f, 0x7f010160,
0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164,
0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168,
0x7f010169
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static final int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static final int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentPaddingTop
*/
public static final int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.xskt.pph:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.xskt.pph:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.xskt.pph:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.xskt.pph:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.xskt.pph:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.xskt.pph:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.xskt.pph:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.xskt.pph:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.xskt.pph:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.xskt.pph:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.xskt.pph:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.xskt.pph:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.xskt.pph:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.xskt.pph:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.xskt.pph:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.xskt.pph:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f01000c, 0x7f01011b, 0x7f01011c, 0x7f01011d,
0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121,
0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125,
0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.xskt.pph:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.xskt.pph:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.xskt.pph:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.xskt.pph:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01012a, 0x7f01012b
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name com.xskt.pph:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha com.xskt.pph:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100b5
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.xskt.pph:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.xskt.pph:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100b6, 0x7f0100b7
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph: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.xskt.pph:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.xskt.pph:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010102, 0x7f010103
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph: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.xskt.pph:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.xskt.pph:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.xskt.pph:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.xskt.pph:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.xskt.pph:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.xskt.pph:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010104, 0x7f010105, 0x7f010106,
0x7f010107, 0x7f010108, 0x7f010109
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.xskt.pph:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name com.xskt.pph:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.xskt.pph:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.xskt.pph:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.xskt.pph:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.xskt.pph:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.xskt.pph:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.xskt.pph:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.xskt.pph:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.xskt.pph:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.xskt.pph:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.xskt.pph:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.xskt.pph:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.xskt.pph:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb,
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.xskt.pph:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.xskt.pph:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.xskt.pph:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.xskt.pph:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabCustomSize com.xskt.pph:fabCustomSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.xskt.pph:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.xskt.pph:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.xskt.pph:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.xskt.pph:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabCustomSize
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010025, 0x7f0100ff, 0x7f010100, 0x7f01012f,
0x7f010130, 0x7f010131, 0x7f010132, 0x7f010133,
0x7f010134
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fabCustomSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fabCustomSize
*/
public static final int FloatingActionButton_fabCustomSize = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name com.xskt.pph:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 8;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.xskt.pph:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010135
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a FontFamily.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamily_fontProviderAuthority com.xskt.pph:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts com.xskt.pph:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.xskt.pph:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.xskt.pph:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage com.xskt.pph:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery com.xskt.pph:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fontProviderAuthority
*/
public static final int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:fontProviderCerts
*/
public static final int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontProviderFetchStrategy}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name com.xskt.pph:fontProviderFetchStrategy
*/
public static final int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontProviderFetchTimeout}
attribute's value can be found in the {@link #FontFamily} array.
<p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.xskt.pph:fontProviderFetchTimeout
*/
public static final int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fontProviderPackage
*/
public static final int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fontProviderQuery
*/
public static final int FontFamily_fontProviderQuery = 2;
/** Attributes that can be used with a FontFamilyFont.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_font com.xskt.pph:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle com.xskt.pph:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight com.xskt.pph:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010110,
0x7f010111, 0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static final int FontFamilyFont_android_font = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontStyle
*/
public static final int FontFamilyFont_android_fontStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontWeight
*/
public static final int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:font
*/
public static final int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name com.xskt.pph:fontStyle
*/
public static final int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fontWeight
*/
public static final int FontFamilyFont_fontWeight = 5;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.xskt.pph:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f010136
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.xskt.pph:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.xskt.pph:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.xskt.pph:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.xskt.pph:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f010014, 0x7f0100c0, 0x7f0100c1,
0x7f0100c2
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name com.xskt.pph:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static 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.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@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_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.xskt.pph:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.xskt.pph:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.xskt.pph:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers com.xskt.pph:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription com.xskt.pph:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint com.xskt.pph:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode com.xskt.pph:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers com.xskt.pph:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.xskt.pph:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText com.xskt.pph:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_contentDescription
@see #MenuItem_iconTint
@see #MenuItem_iconTintMode
@see #MenuItem_numericModifiers
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5,
0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9,
0x7f0100ca, 0x7f0100cb, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:actionLayout
*/
public static final int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:actionViewClass
*/
public static final int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#alphabeticModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name com.xskt.pph:alphabeticModifiers
*/
public static final int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentDescription
*/
public static final int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:iconTint
*/
public static final int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#iconTintMode}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph:iconTintMode
*/
public static final int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#numericModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name com.xskt.pph:numericModifiers
*/
public static final int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name com.xskt.pph:showAsAction
*/
public static final int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tooltipText
*/
public static final int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.xskt.pph:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.xskt.pph:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100cd,
0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation com.xskt.pph:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.xskt.pph:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.xskt.pph:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.xskt.pph:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.xskt.pph:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.xskt.pph:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.xskt.pph:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f010025,
0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a,
0x7f01013b, 0x7f01013c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.xskt.pph:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100cf
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph: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.xskt.pph:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100d0
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph: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.xskt.pph:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.xskt.pph:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100d1, 0x7f0100d2
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled com.xskt.pph:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.xskt.pph:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.xskt.pph:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.xskt.pph:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.xskt.pph:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.xskt.pph:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.xskt.pph:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.xskt.pph:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.xskt.pph:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fastScrollEnabled
*/
public static final int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:fastScrollHorizontalThumbDrawable
*/
public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:fastScrollHorizontalTrackDrawable
*/
public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:fastScrollVerticalThumbDrawable
*/
public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:fastScrollVerticalTrackDrawable
*/
public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.xskt.pph:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f01013d
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.xskt.pph:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.xskt.pph:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01013e
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.xskt.pph:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.xskt.pph:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.xskt.pph:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.xskt.pph:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.xskt.pph:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.xskt.pph:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.xskt.pph:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.xskt.pph:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.xskt.pph:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.xskt.pph:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.xskt.pph:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.xskt.pph:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.xskt.pph:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6,
0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da,
0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de,
0x7f0100df
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.xskt.pph:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.xskt.pph:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010025, 0x7f01013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.xskt.pph:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f010026
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.xskt.pph:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.xskt.pph:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.xskt.pph:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.xskt.pph:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.xskt.pph:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.xskt.pph:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.xskt.pph:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.xskt.pph:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.xskt.pph:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.xskt.pph:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.xskt.pph:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4,
0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8,
0x7f0100e9, 0x7f0100ea
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground com.xskt.pph:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.xskt.pph:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.xskt.pph:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.xskt.pph:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.xskt.pph:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.xskt.pph:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.xskt.pph:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.xskt.pph:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.xskt.pph:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.xskt.pph:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.xskt.pph:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.xskt.pph:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.xskt.pph:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.xskt.pph:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.xskt.pph:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.xskt.pph:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f010140, 0x7f010141, 0x7f010142, 0x7f010143,
0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147,
0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b,
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f
};
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name com.xskt.pph:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name com.xskt.pph:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily com.xskt.pph:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.xskt.pph:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f010037,
0x7f01003d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static final int TextAppearance_android_fontFamily = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static 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.
@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.
@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.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static 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.
@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.
@attr name android:textColorLink
*/
public static final int TextAppearance_android_textColorLink = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:fontFamily
*/
public static final int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.xskt.pph:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.xskt.pph:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.xskt.pph:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.xskt.pph:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.xskt.pph:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.xskt.pph:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.xskt.pph:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.xskt.pph:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.xskt.pph:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.xskt.pph:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.xskt.pph:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.xskt.pph:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.xskt.pph:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.xskt.pph:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.xskt.pph:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010150, 0x7f010151,
0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155,
0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159,
0x7f01015a, 0x7f01015b, 0x7f01015c, 0x7f01015d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.xskt.pph:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity com.xskt.pph:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.xskt.pph:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.xskt.pph:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.xskt.pph:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.xskt.pph:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.xskt.pph:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.xskt.pph:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.xskt.pph:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.xskt.pph:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.xskt.pph:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.xskt.pph:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.xskt.pph:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.xskt.pph:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.xskt.pph:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.xskt.pph:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.xskt.pph:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.xskt.pph:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.xskt.pph:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.xskt.pph:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.xskt.pph:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.xskt.pph:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.xskt.pph:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.xskt.pph:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.xskt.pph:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.xskt.pph:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.xskt.pph:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.xskt.pph:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f01000c, 0x7f01000f,
0x7f010013, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010026,
0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee,
0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2,
0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6,
0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa,
0x7f0100fb
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static 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.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name com.xskt.pph:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.xskt.pph:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.xskt.pph:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.xskt.pph:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f0100fc, 0x7f0100fd,
0x7f0100fe
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.xskt.pph: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.xskt.pph:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.xskt.pph:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f0100ff, 0x7f010100
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.xskt.pph:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.xskt.pph.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.xskt.pph: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_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"vtanv@users.noreply.github.com"
] | vtanv@users.noreply.github.com |
b001751ac2d8e8d318b24e9113e6173160fe2b82 | 032282776b99ad5d4a5be8a3e0646ece637e9fdc | /samples/Folding/Sample/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.java | e90b59138c9f84558308c50db57eb9ac3cf98de5 | [] | no_license | huguodong/Foldinglayout | 824af0c5f66c8d1080a849aae71b774dd9313e75 | edb46bd7473cf08efdc224321a63dc1459b712fd | refs/heads/master | 2021-01-10T10:11:02.257221 | 2016-01-12T02:44:33 | 2016-01-12T02:58:57 | 49,042,846 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,982 | java | package mono.android.support.v7.widget;
public class SearchView_OnQueryTextListenerImplementor
extends java.lang.Object
implements
mono.android.IGCUserPeer,
android.support.v7.widget.SearchView.OnQueryTextListener
{
static final String __md_methods;
static {
__md_methods =
"n_onQueryTextChange:(Ljava/lang/String;)Z:GetOnQueryTextChange_Ljava_lang_String_Handler:Android.Support.V7.Widget.SearchView/IOnQueryTextListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" +
"n_onQueryTextSubmit:(Ljava/lang/String;)Z:GetOnQueryTextSubmit_Ljava_lang_String_Handler:Android.Support.V7.Widget.SearchView/IOnQueryTextListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" +
"";
mono.android.Runtime.register ("Android.Support.V7.Widget.SearchView/IOnQueryTextListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SearchView_OnQueryTextListenerImplementor.class, __md_methods);
}
public SearchView_OnQueryTextListenerImplementor () throws java.lang.Throwable
{
super ();
if (getClass () == SearchView_OnQueryTextListenerImplementor.class)
mono.android.TypeManager.Activate ("Android.Support.V7.Widget.SearchView/IOnQueryTextListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { });
}
public boolean onQueryTextChange (java.lang.String p0)
{
return n_onQueryTextChange (p0);
}
private native boolean n_onQueryTextChange (java.lang.String p0);
public boolean onQueryTextSubmit (java.lang.String p0)
{
return n_onQueryTextSubmit (p0);
}
private native boolean n_onQueryTextSubmit (java.lang.String p0);
java.util.ArrayList refList;
public void monodroidAddReference (java.lang.Object obj)
{
if (refList == null)
refList = new java.util.ArrayList ();
refList.add (obj);
}
public void monodroidClearReferences ()
{
if (refList != null)
refList.clear ();
}
}
| [
"531035580@QQ.COM"
] | 531035580@QQ.COM |
1b3fadac39de828559c040748e6c2ba64c6d3983 | a44c7c7b07379bbf4d611bcdef001bf1d89b79fd | /sources/src/de/m6c7l/playmate/gui/AppModel.java | 35b044f76f61a60cd4ea528b37600554bb205ca2 | [
"MIT"
] | permissive | kaosko/playmate | 0aaa396f780c93d95debfd1836f2f94487dd50e9 | f4435312301b1c0ef2a5778d7241fe833e8a0f6a | refs/heads/master | 2022-02-20T06:20:50.105204 | 2019-09-14T17:18:57 | 2019-09-14T17:18:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,480 | java | /*
* Copyright (c) 2017, Manfred Constapel
* This file is licensed under the terms of the MIT license.
*/
package de.m6c7l.playmate.gui;
import java.io.IOException;
import java.util.ArrayList;
import javax.xml.parsers.ParserConfigurationException;
import org.xml.sax.SAXException;
import de.m6c7l.lib.util.geo.Position;
import de.m6c7l.lib.util.sound.Sound;
import de.m6c7l.playmate.gui.settings.units.SettingModelUnits;
import de.m6c7l.playmate.gui.side.scenario.TreeModel;
import de.m6c7l.playmate.gui.window.chart.Chart;
import de.m6c7l.playmate.gui.window.chart.ChartView;
import de.m6c7l.playmate.main.Asset;
import de.m6c7l.playmate.main.World;
import de.m6c7l.playmate.main.io.XMLAsset;
import de.m6c7l.playmate.main.io.XMLAssetReader;
import de.m6c7l.playmate.main.io.XMLChart;
import de.m6c7l.playmate.main.io.XMLChartReader;
import de.m6c7l.playmate.main.io.XMLSettingsReader;
public class AppModel {
private ArrayList<XMLChart> xmlcharts = null;
private ArrayList<XMLAsset> xmlassets = null;
private ArrayList<Chart> charts = null;
private World world = null;
private TreeModel tree = null;
private SettingModelUnits preferences = null;
private Sound sound = null;
public AppModel(World world, XMLChartReader cr, XMLAssetReader ur, XMLSettingsReader pr, Sound s) {
this(world,cr.getValues(),ur.getValues(),new SettingModelUnits(pr.getValues()),s);
}
private AppModel(World w, ArrayList<XMLChart> c, ArrayList<XMLAsset> u, SettingModelUnits p, Sound s) {
this.world = w;
this.tree = new TreeModel();
this.preferences = p;
this.xmlassets = u;
this.xmlcharts = c;
this.sound = s;
this.charts = new ArrayList<Chart>();
for (int i=0; i<this.xmlassets.size(); i++) {
this.getTree().addXMLAsset(xmlassets.get(i));
}
}
public AppModel reset() throws IOException, ParserConfigurationException, SAXException {
free();
return new AppModel(new World(),xmlcharts,xmlassets,preferences,sound);
}
public void free() throws IOException, ParserConfigurationException, SAXException {
this.tree.free();
this.world.free();
this.charts.clear();
}
/*
* view
*/
public static ChartView[] createChartViews(AppModel model) throws Exception {
ChartView[] charts = new ChartView[model.xmlcharts.size()];
for (int i=0; i<charts.length; i++) {
charts[i] = new ChartView(model.xmlcharts.get(i));
}
return charts;
}
/*
* chart
*/
public Chart getChart(Position position) {
for (int i=0; i<charts.size(); i++) {
if (charts.get(i).contains(position))
return charts.get(i);
}
return null;
}
/*
* model
*/
public TreeModel getTree() {
return this.tree;
}
public SettingModelUnits getSetupDisplay() {
return this.preferences;
}
public World getWorld() {
return this.world;
}
public Sound getSound() {
return sound;
}
/*
* array
*/
public boolean removeAsset(Asset asset) {
if (world.remove(asset)) {
for (int i=0; i<charts.size(); i++) {
charts.get(i).remove(asset);
}
return true;
}
return false;
}
public boolean addAsset(Asset asset) {
if (world.put(asset)) {
for (int i=0; i<charts.size(); i++) {
charts.get(i).put(asset);
}
return true;
}
return false;
}
public boolean addChart(Chart chart) {
if (world.put(chart)) {
this.charts.add(chart);
for (int i=0; i<world.getAssetCount(); i++) {
chart.put(world.getAsset(i));
}
return true;
}
return false;
}
}
| [
"m6c7l@web.de"
] | m6c7l@web.de |
8680a20fd431d09cf35265edea74cc2e2e25439e | 5723f1a4f96b23b8b7fe32d806f1d33211c2063a | /java/Script.java | 1c6f51e80c357eefa774b025f1b75acb5987ee6a | [] | no_license | mohamedabbasos/calc-with | b40c4ad0beb635ef2da39af15d05e0a8962f836f | 3ead45b96bd59acf554f180af189ae91988ad919 | refs/heads/master | 2021-04-12T05:02:29.411609 | 2017-08-11T11:31:26 | 2017-08-11T11:31:26 | 95,694,204 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,765 | java | import java.util.Scanner;
public class Script {
private double num1;
private char operation;
private double num2;
private double result;
public double sum() {
return num1 + num2;
}
public double sub() {
return num1 - num2;
}
public double mul() {
return num1 * num2;
}
public double div() {
return num1 / num2;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Script s = new Script();
System.out.print("Please enter the first number: ");
String fInput = scanner.next(); // firstInput
s.num1 = Double.parseDouble(fInput);
System.out.print("Please enter the operation: ");
String operation = scanner.next();
s.operation = operation.charAt(0); // Convert `String` to `Char`
System.out.print("Please enter the second number: ");
String sInput = scanner.next(); // secondInput
s.num2 = Double.parseDouble(sInput);
if (s.operation == '/' && s.num2 == 0) {
System.out.print("You can not divide by 0");
return;
}
if (s.operation == '+') {
s.result = s.sum();
} else if (s.operation == '-') {
s.result = s.sub();
} else if (s.operation == '*') {
s.result = s.mul();
} else if (s.operation == '/') {
s.result = s.div();
} else {
System.out.print("Operation not found, Try one of (+, -, *, /)");
return;
}
System.out.print( fInput + ' ' + operation + ' ' + sInput + " = " + s.result);
}
} | [
"m.abbas.sudan@gmail.com"
] | m.abbas.sudan@gmail.com |
37b9de00251b4946f6d73efb08d9f6064a73013a | 36bf98918aebe18c97381705bbd0998dd67e356f | /projects/aspectj-1.6.9/org.aspectj.matcher-1.6.9/org/aspectj/weaver/BoundedReferenceTypeDelegate.java | 5f879e364385911be1bef6694c3360b58791bea6 | [] | no_license | ESSeRE-Lab/qualitas.class-corpus | cb9513f115f7d9a72410b3f5a72636d14e4853ea | 940f5f2cf0b3dc4bd159cbfd49d5c1ee4d06d213 | refs/heads/master | 2020-12-24T21:22:32.381385 | 2016-05-17T14:03:21 | 2016-05-17T14:03:21 | 59,008,169 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,957 | java | /**
*
*/
package org.aspectj.weaver;
import java.util.Collection;
import java.util.Collections;
import org.aspectj.weaver.patterns.PerClause;
class BoundedReferenceTypeDelegate extends AbstractReferenceTypeDelegate {
public BoundedReferenceTypeDelegate(ReferenceType backing) {
super(backing, false);
}
public boolean isAspect() {
return resolvedTypeX.isAspect();
}
public boolean isAnnotationStyleAspect() {
return resolvedTypeX.isAnnotationStyleAspect();
}
public boolean isInterface() {
return resolvedTypeX.isInterface();
}
public boolean isEnum() {
return resolvedTypeX.isEnum();
}
public boolean isAnnotation() {
return resolvedTypeX.isAnnotation();
}
public boolean isAnnotationWithRuntimeRetention() {
return resolvedTypeX.isAnnotationWithRuntimeRetention();
}
public boolean isAnonymous() {
return resolvedTypeX.isAnonymous();
}
public boolean isNested() {
return resolvedTypeX.isNested();
}
public ResolvedType getOuterClass() {
return resolvedTypeX.getOuterClass();
}
public String getRetentionPolicy() {
return resolvedTypeX.getRetentionPolicy();
}
public boolean canAnnotationTargetType() {
return resolvedTypeX.canAnnotationTargetType();
}
public AnnotationTargetKind[] getAnnotationTargetKinds() {
return resolvedTypeX.getAnnotationTargetKinds();
}
public boolean isGeneric() {
return resolvedTypeX.isGenericType();
}
public String getDeclaredGenericSignature() {
return resolvedTypeX.getDeclaredGenericSignature();
}
public boolean hasAnnotation(UnresolvedType ofType) {
return resolvedTypeX.hasAnnotation(ofType);
}
public AnnotationAJ[] getAnnotations() {
return resolvedTypeX.getAnnotations();
}
public ResolvedType[] getAnnotationTypes() {
return resolvedTypeX.getAnnotationTypes();
}
public ResolvedMember[] getDeclaredFields() {
return resolvedTypeX.getDeclaredFields();
}
public ResolvedType[] getDeclaredInterfaces() {
return resolvedTypeX.getDeclaredInterfaces();
}
public ResolvedMember[] getDeclaredMethods() {
return resolvedTypeX.getDeclaredMethods();
}
public ResolvedMember[] getDeclaredPointcuts() {
return resolvedTypeX.getDeclaredPointcuts();
}
public PerClause getPerClause() {
return resolvedTypeX.getPerClause();
}
public Collection getDeclares() {
return resolvedTypeX.getDeclares();
}
public Collection getTypeMungers() {
return resolvedTypeX.getTypeMungers();
}
public Collection getPrivilegedAccesses() {
return Collections.EMPTY_LIST;
}
public int getModifiers() {
return resolvedTypeX.getModifiers();
}
public ResolvedType getSuperclass() {
return resolvedTypeX.getSuperclass();
}
public WeaverStateInfo getWeaverState() {
return null;
}
public TypeVariable[] getTypeVariables() {
return resolvedTypeX.getTypeVariables();
}
} | [
"marco.zanoni@disco.unimib.it"
] | marco.zanoni@disco.unimib.it |
a30c52b0a3362fe4e9e0f05ce2fa0bdaf157d7bd | 12be85c4fe30e6df7992316f0d7b5a46a014ba90 | /src/main/java/co/je/conductor/domain/entities/HTTPConductorResponse.java | 822cdea915ee90108e7ee4f0320d7d3f25ac900b | [
"MIT"
] | permissive | julianespinel/conductor | 0d97336fedd11489080cb247a89d78c07bd75bf0 | 72e13871be826e47c6d8744e38e67e920260d3e6 | refs/heads/master | 2020-12-24T14:45:09.545434 | 2016-01-11T15:03:40 | 2016-01-11T15:03:40 | 30,393,941 | 1 | 0 | null | 2015-10-12T16:36:55 | 2015-02-06T03:49:40 | Java | UTF-8 | Java | false | false | 566 | java | package co.je.conductor.domain.entities;
import org.apache.http.HttpResponse;
public class HTTPConductorResponse {
private final HttpResponse httpResponse;
private final long responseTimeInMilliseconds;
public HTTPConductorResponse(HttpResponse httpResponse, long responseTimeInMilliseconds) {
this.httpResponse = httpResponse;
this.responseTimeInMilliseconds = responseTimeInMilliseconds;
}
public HttpResponse getHttpResponse() {
return httpResponse;
}
public long getResponseTimeInMilliseconds() {
return responseTimeInMilliseconds;
}
} | [
"julianespinel@gmail.com"
] | julianespinel@gmail.com |
a4f24708718df6ce7af43ad999291f54fd1d39f1 | 762445fb9d9a686b48e0ee86e12f730d11025f6b | /app/src/androidTest/java/com/asuscomm/zhbee/avmoo_app/ExampleInstrumentedTest.java | 7553f61d2fad160f5d6696c214139a7025639c3a | [] | no_license | a00400302/Avmoo_app | ea10e9c8a7be5340095b3d1a5eeee68ac8aaf668 | 191bfc3b4ccc57e0281bfd60d809cc69012a4c3c | refs/heads/master | 2020-12-04T14:58:01.799078 | 2018-04-23T05:06:35 | 2018-04-23T05:06:35 | 66,102,851 | 17 | 2 | null | 2017-05-22T06:57:25 | 2016-08-19T18:12:05 | Java | UTF-8 | Java | false | false | 760 | java | package com.asuscomm.zhbee.avmoo_app;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.asuscomm.zhbee.avmoo_app", appContext.getPackageName());
}
}
| [
"a00400302@gmail.com"
] | a00400302@gmail.com |
45e23be244297fa1cb8b99f5ac2692cdbedde1cc | dcf2f6d37c709c4a507880b93047f2bc7fbd4872 | /app/src/main/java/com/testgit/olesnyak/DetailsActivity.java | 096883ad33ca2794dd09d1a5a1c49593676a6771 | [] | no_license | tranzero/TestGit | 6d488aef07c739fde3e476a2321eac7c059043a0 | 9f0ffee0c7c596dbc39adefa7a9603d387096f99 | refs/heads/master | 2021-04-29T14:14:13.162951 | 2018-02-16T15:57:02 | 2018-02-16T15:57:02 | 121,769,457 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,167 | java | /*
* Copyright (C) 2014 The Android Open Source Project
*
* 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.testgit.olesnyak;
import android.app.Activity;
import android.os.Bundle;
/*
* Details activity class that loads LeanbackDetailsFragment class
*/
public class DetailsActivity extends Activity {
public static final String SHARED_ELEMENT_NAME = "hero";
public static final String MOVIE = "Movie";
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_details);
}
}
| [
"olesnyak@blackberry.com"
] | olesnyak@blackberry.com |
42e0835e5dc2729c3b0eea1f1d7fddcb557a3731 | 36a89dc15b80b69ed7bdf9caea410f0bc7081be2 | /src/main/java/ru/jekarus/skyfortress/v3/game/SfGame.java | 509655980aef395e8645c224221ffca8542ba609 | [] | no_license | SanchotEm/skyfortress-plugin | ed6a44de19b6e26688420c113b1b2d86df80d45d | 34105a626a2de5c5931fa58f7c35218ce97e2373 | refs/heads/master | 2020-04-28T00:19:36.753802 | 2019-03-10T10:59:40 | 2019-03-10T10:59:40 | 174,811,608 | 0 | 0 | null | 2019-03-10T11:02:45 | 2019-03-10T11:02:45 | null | UTF-8 | Java | false | false | 2,273 | java | package ru.jekarus.skyfortress.v3.game;
import ru.jekarus.skyfortress.v3.SkyFortressPlugin;
import ru.jekarus.skyfortress.v3.castle.SfCastle;
import ru.jekarus.skyfortress.v3.lang.SfMessages;
import ru.jekarus.skyfortress.v3.listener.LobbyListener;
import java.util.EnumMap;
import java.util.Map;
public class SfGame {
private final SkyFortressPlugin plugin;
private final LobbyListener lobbyListener;
private Map<SfGameStageType, SfGameStage> stageByType = new EnumMap<>(SfGameStageType.class);
private SfGameStage currentStage;
public SfGame(SkyFortressPlugin plugin)
{
this.plugin = plugin;
this.stageByType.put(SfGameStageType.PRE_GAME, new PreGameStage(plugin));
this.stageByType.put(SfGameStageType.IN_GAME, new InGameStage(plugin));
this.stageByType.put(SfGameStageType.END_GAME, new EndGameStage(plugin));
this.currentStage = this.stageByType.get(SfGameStageType.PRE_GAME);
this.lobbyListener = new LobbyListener(this.plugin);
}
public void init()
{
this.currentStage.enable();
this.lobbyListener.register();
}
public SfGameStageType getStage()
{
return this.currentStage.getType();
}
public void setStage(SfGameStageType type)
{
this.currentStage.disable();
this.currentStage = this.stageByType.get(type);
this.currentStage.enable();
}
public void start()
{
this.setStage(SfGameStageType.IN_GAME);
}
public void stop()
{
this.setStage(SfGameStageType.END_GAME);
}
public void checkWin()
{
SfCastle winCastle = null;
for (SfCastle castle : this.plugin.getCastleContainer().getCollection())
{
if (castle.isAlive())
{
if (winCastle == null)
{
winCastle = castle;
}
else
{
return;
}
}
}
if (winCastle == null)
{
return;
}
SfMessages messages = this.plugin.getMessages();
messages.broadcast(
messages.win(winCastle.getTeam()), true
);
this.stop();
}
}
| [
"jekarus47@gmail.com"
] | jekarus47@gmail.com |
f694653dc8a0a216086fc565a6a5482899adf06c | 7d5aca171d92e3d7fb532a70848302335c7056d9 | /src/main/java/com/athenLib/dao/StudentJDBCTemplate.java | 7b1e30f9727bac1e102c54e2c91d90ec400e1e22 | [] | no_license | rahul45/athenaLib | 2cea6335a631fa5ed4ad9f9622fd2ae40d12858b | 61bbae007b88a150b25bda5e585fb1b4432a9d56 | refs/heads/master | 2021-09-08T03:49:05.900233 | 2021-09-03T09:58:55 | 2021-09-03T09:58:55 | 70,455,909 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,698 | java | package com.athenLib.dao;
import java.sql.SQLException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import javax.sql.DataSource;
import javax.swing.text.StyledDocument;
import org.springframework.jdbc.core.JdbcTemplate;
import com.athenLib.model.Student;
public class StudentJDBCTemplate {
private DataSource dataSource;
private JdbcTemplate jdbcTemplateObject;
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
this.jdbcTemplateObject = new JdbcTemplate(dataSource);
}
static Date getDateInFormat(Date date) {
Date cdate = null;
String source = String.valueOf(date.getYear()) + "-" + String.valueOf(date.getMonth()) + "-"
+ String.valueOf(date.getDate());
SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd");
try {
cdate = format.parse(source);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return cdate;
}
// Add Student
public String add(Student student) {
try {
ArrayList<Student> stdList = (ArrayList<Student>) listStudents();
student.setSerialId("ATHO" + String.valueOf(stdList.size()));
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String SQL = "insert into Student(std_id,firstname,lastname,father_name,contact_number,type_of_proof_id,"
+ "shift_slot,is_fee_deposit," + "date_of_joining,fee_expire_date,"
+ "seat_number,fee_amount) values (?,?,?,?,?,?,?,?,?,?,?,?)";
Date date = getDateInFormat(student.getDateOfJoining());
jdbcTemplateObject.update(SQL, student.getSerialId(), student.getFirstName(), student.getLastName(),
student.getFatherName(), student.getContactNumber(), student.getTypeOfProofId(),
student.getSlot().name(), student.isFeeDeposit(), student.getDateOfJoining(), student.getExpirationDate(),
student.getSeatNumber(),student.getFeeAmount());
System.out.println("Created Record Name = " + student.getFirstName() + " Serial id = " + student.getSerialId());
return "Created Record Name = " + student.getFirstName() + " Serial id = " + student.getSerialId();
}
/*
* create table student(std_id varchar(20) not null primary key, firstname
* varchar(50) not null, lastname varchar(50) , father_name varchar(50),
* contact_number varchar(10) not null, type_of_proof_id varchar(40),
* shift_slot varchar(25) not null, is_fee_deposit boolean default false,
* date_of_joining date not null, fee_expire_date date, seat_number int not
* null
*/
public List<Student> getStudent(String stdId, String contact) {
List<Student> students = null;
if (stdId != null) {
String SQL = "select * from athenaeum_db.student where std_id = ?";
students = jdbcTemplateObject.query(SQL, new Object[] { stdId }, new StudentMapper());
return students;
}
String SQL = "select * from Student where contact_number = ?";
students = jdbcTemplateObject.query(SQL, new Object[] { contact }, new StudentMapper());
return students;
}
public List<Student> listStudents() throws SQLException {
String SQL = "select * from Student";
List<Student> students = jdbcTemplateObject.query(SQL, new StudentMapper());
return students;
}
public void delete(Integer id) {
String SQL = "delete from Student where id = ?";
jdbcTemplateObject.update(SQL, id);
System.out.println("Deleted Record with ID = " + id);
return;
}
public void update(Integer id, Integer age) {
String SQL = "update Student set age = ? where id = ?";
jdbcTemplateObject.update(SQL, age, id);
System.out.println("Updated Record with ID = " + id);
return;
}
}
| [
"rahul.bhadouria@citiustech.com"
] | rahul.bhadouria@citiustech.com |
ba3e4f77fe43e2fa1c7317bbfc04181236a0d149 | 522d0f358074713953f63bf33cfbf7b936bfe64f | /app/src/main/java/edu/slin77gatech/handypin/utils/MarkerWindowAdapter.java | ff9c00d41f3a05bc1592ec4b8c02cbf987ff8550 | [] | no_license | SamLin95/HandyPin | db20210b2453cab32d0e41a89883c33de7a7793e | 675e3daa03b7afaf90503e982234a639a64c6d90 | refs/heads/master | 2020-07-26T05:18:37.070495 | 2016-11-14T18:16:18 | 2016-11-14T18:16:18 | 73,733,665 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,518 | java | package edu.slin77gatech.handypin.utils;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.model.Marker;
import java.util.HashMap;
import java.util.Map;
import edu.slin77gatech.handypin.R;
/**
* Created by slin on 10/24/16.
*/
public class MarkerWindowAdapter implements GoogleMap.InfoWindowAdapter {
public MarkerWindowAdapter(Context ctx, Map<Marker, PinData> pinDataMap) {
this.ctx = ctx;
this.pinDataMap = pinDataMap;
}
private Map<Marker, PinData> pinDataMap;
private Context ctx;
@Override
public View getInfoWindow(Marker marker) {
return null;
}
@Override
public View getInfoContents(Marker marker) {
PinData data = pinDataMap.get(marker);
if (data == null) {
return null;
} else {
View v = LayoutInflater.from(ctx).inflate(R.layout.marker_info_window, null);
//set necessary fields
TextView title = (TextView) v.findViewById(R.id.my_marker_title);
title.setText(data.getTitle());
TextView descripion = (TextView)v.findViewById(R.id.my_marker_description);
descripion.setText(data.getDescription());
TextView rate = (TextView)v.findViewById(R.id.my_marker_rate);
rate.setText("Vote: " + data.getRating());
return v;
}
}
}
| [
"slin77@gatech.edu"
] | slin77@gatech.edu |
b21b033b4bbacd796dee3ddbabee069cff807915 | 606a5de969df8e1e8d2ecbeedcf5415dc23945ad | /src/main/java/command_line/Main.java | 978b6dadbeec63873756e408917a1e945a68a799 | [] | no_license | peshkovm/JCL | 22f399af7af69220e29b5a6ca4b20b83bb7e91f3 | 6d1c216344c61184c164f879c97ad083b7580f92 | refs/heads/master | 2020-03-27T07:16:51.247190 | 2018-08-29T21:24:58 | 2018-08-29T21:24:58 | 146,177,703 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,277 | java | package command_line;
import command_line.commands.Cd;
import command_line.commands.Dir;
import command_line.commands.Pwd;
import java.io.*;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.nio.file.FileSystems;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Objects;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
public class Main {
private static ArrayList<ClientHolder> clients;
StringBuffer lastMessageBuffer = new StringBuffer("There were no messages yet");
static {
clients = new ArrayList<>();
}
public static void main(String[] args) {
new Main().start();
}
void start() {
ExecutorService service = null;
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.println("net version? : yes|no");
String line = reader.readLine();
System.out.println();
if (line.equals("yes")) {
ServerSocket serverSocket = new ServerSocket(1234);
while (true) {
Socket socket = serverSocket.accept();
ClientHolder clientHolder = new ClientHolder(socket);
clients.add(clientHolder);
service = Executors.newCachedThreadPool();
service.submit(clientHolder);
//new Thread(clientHolder).start();
}
} else {
go(System.in, System.out);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
service.shutdown();
service.awaitTermination(Integer.MAX_VALUE, TimeUnit.DAYS); //forever
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
private void who() {
for (ClientHolder client : clients) {
client.printName();
}
}
private void write() {
for (ClientHolder client : clients) {
PrintWriter clientWriter = new PrintWriter(client.getOutputStream(), true);
clientWriter.println(lastMessageBuffer);
}
}
private void go(InputStream inStream, OutputStream outStream) {
BufferedReader reader = new BufferedReader(new InputStreamReader(inStream));
StringWriter strWriter = new StringWriter();
String line;
try {
while (!(line = reader.readLine()).equals("exit")) {
if (line.equals("write")) {
write();
} else {
lastMessageBuffer.delete(0, lastMessageBuffer.length());
if (line.equals("who")) {
who();
} else if (line.equals("jobs"))
DaemonsHolder.printDaemons1(outStream);
else if (line.contains("&&") || line.contains("||")) {
int controlSymbolIndex;
if (line.contains("&&"))
controlSymbolIndex = line.indexOf("&&");
else
controlSymbolIndex = line.indexOf("||");
String str1 = line.substring(0, controlSymbolIndex - 1);
String str2 = line.substring(controlSymbolIndex + "&& ".length(), line.length());
String[] words1 = str1.split("\\s+");
String[] words2 = str2.split("\\s+");
String command1 = words1[0];
String command2 = words2[0];
String[] commandArgs1 = Arrays.copyOfRange(words1, 1, words1.length);
String[] commandArgs2 = Arrays.copyOfRange(words2, 1, words2.length);
//printTest(command1, commandArgs1, command2, commandArgs2);
if (line.contains("&&"))
try {
startProgram(command1, commandArgs1, strWriter);
startProgram(command2, commandArgs2, strWriter);
} catch (FileNotFoundException e) {
System.out.println(e.getMessage());
}
else
try {
startProgram(command1, commandArgs1, strWriter);
} catch (FileNotFoundException e) {
System.out.println(e.getMessage());
try {
startProgram(command2, commandArgs2, strWriter);
} catch (FileNotFoundException e1) {
e1.getMessage();
}
}
} else {
String[] words = line.split("\\s+");
String command = words[0];
String[] commandArgs = {""};
if (line.contains(" "))
commandArgs = Arrays.copyOfRange(words, 1, words.length);
if (command.charAt(0) != '!') {
startProgram(command, commandArgs, strWriter);
} else {
if (line.charAt(line.length() - 1) == '&') {
words[0] = command.substring(1, command.length() - 1);
Process process = new ProcessBuilder(words).start();
DaemonsHolder.addDaemon(words[0], process);
} else {
words[0] = command.substring(1);
Process process = new ProcessBuilder(words).start();
readFromWriteTo(process.getInputStream(), System.out);
while (process.isAlive()) {
readFromWriteTo(System.in, process.getOutputStream());
readFromWriteTo(process.getInputStream(), System.out);
}
process.destroy();
try {
process.waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
lastMessageBuffer = strWriter.getBuffer();
PrintWriter writer = new PrintWriter(outStream, true);
writer.println(lastMessageBuffer);
//writer.println();
}
}
} catch (FileNotFoundException e) {
System.out.println(e.getMessage());
} catch (IOException e) {
e.printStackTrace();
} finally {
DaemonsHolder.destroyAllDaemons();
}
}
private static class DaemonsHolder {
private static ArrayList<DaemonInfo> daemons;
static {
daemons = new ArrayList<>();
}
static void addDaemon(String name, Process process) {
DaemonInfo daemon = new DaemonInfo();
daemon.setName(name);
daemon.setProcess(process);
daemons.add(daemon);
}
static void printDaemons1(OutputStream outStream) {
PrintWriter writer = new PrintWriter(outStream, true);
Iterator<DaemonInfo> iterator = daemons.iterator();
while (iterator.hasNext()) {
DaemonInfo daemon = iterator.next();
if (daemon.getProcess().isAlive())
writer.println(daemon.getName());
else {
daemon.getProcess().destroy();
try {
daemon.getProcess().waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
}
iterator.remove();
}
}
}
static void destroyAllDaemons() {
for (DaemonInfo daemon : daemons) {
daemon.getProcess().destroy();
try {
daemon.getProcess().waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
private static class DaemonInfo {
private String name;
private Process process;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Process getProcess() {
return process;
}
public void setProcess(Process process) {
this.process = process;
}
}
}
private class ClientHolder implements Runnable {
private InetAddress ip;
private Socket socket;
private InputStream inStream;
private OutputStream outStream;
ClientHolder(Socket socket) {
this.socket = socket;
this.ip = socket.getInetAddress();
try {
this.inStream = socket.getInputStream();
this.outStream = socket.getOutputStream();
} catch (IOException e) {
e.printStackTrace();
}
}
OutputStream getOutputStream() {
return outStream;
}
InputStream getInputStream() {
return inStream;
}
public InetAddress getIp() {
return ip;
}
void printName() {
PrintWriter writer = new PrintWriter(getOutputStream(), true);
writer.println(ip.getHostAddress());
}
@Override
public void run() {
go(getInputStream(), getOutputStream());
}
}
private void startProgram(String command, String[] commandArgs, StringWriter outStream) throws FileNotFoundException {
Dir dir = new Dir();
Pwd pwd = new Pwd();
Cd cd = new Cd();
String className = XMLConfigReader.find(command);
switch (className) {
case "command_line.commands.Dir": {
dir.start(outStream);
break;
}
case "command_line.commands.Pwd": {
pwd.start(outStream);
break;
}
case "command_line.commands.Cd": {
cd.start(commandArgs[0]);
break;
}
default: {
PrintWriter writer = new PrintWriter(outStream, true);
writer.println("Not such command");
}
}
}
private void readFromWriteTo(InputStream reader, OutputStream writer) {
BufferedReader reader1 = new BufferedReader(new InputStreamReader(reader));
PrintStream writer1 = new PrintStream(writer, true);
String lineFromProcess;
try {
while ((lineFromProcess = reader1.readLine()) != null) {
writer1.println(lineFromProcess);
}
} catch (IOException e) {
e.printStackTrace();
}
}
private void printTest(String command1, String[] commandArgs1, String command2, String[] commandArgs2) {
System.out.println("command1 = " + command1);
System.out.print("command1 args = ");
for (int i = 0; i < commandArgs1.length; i++) {
System.out.print(commandArgs1[i] + " ");
}
System.out.println();
System.out.println("command2 = " + command2);
System.out.print("command2 args = ");
for (int i = 0; i < commandArgs2.length; i++) {
System.out.print(commandArgs2[i] + " ");
}
}
} | [
"maxpeshkov5301@gmail.com"
] | maxpeshkov5301@gmail.com |
5afc95b9aae4caf6f04e6d7b270f9f4072b9e454 | 1ade94d053ef5e05b776c975df890f3126cecca3 | /app/src/main/java/com/cloudware/allinone/SplashActivity.java | 0c73648c89efe1119adbd8cf626e5e348d07899e | [] | no_license | adereal200/AllInOneup | bf6ce06ca67bec52e79da7531e5d726f7b6dc04b | eba047b389feeb404144c94f0694179821e71c4d | refs/heads/master | 2022-10-21T15:03:19.895897 | 2020-06-17T03:26:41 | 2020-06-17T03:26:41 | 272,861,035 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 883 | java | package com.cloudware.allinone;
import android.content.Intent;
import android.os.Handler;
import android.os.Bundle;
import android.view.WindowManager;
import androidx.appcompat.app.AppCompatActivity;
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
getSupportActionBar().hide();
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashActivity.this,RecyclerViewActivity.class);
startActivity(intent);
finish();
}
},3000);
}
}
| [
"adereal200@gmail.com"
] | adereal200@gmail.com |
1e3cca99286eb7cb3f640d123dee3921a8c131d6 | a3c3273f1ae8a271cc7bff6122e721ccdca972cf | /provider/src/main/java/com/cloud/provider/model/User.java | 5f8cd0cad4db4bcf285c8475518747994b3e4669 | [] | no_license | 2854862159/springcloud-alibaba-demo | 5588cf05e5064a37a2abf10223ea612e9f536978 | 02c062435801bc8c9910e950a6cc3f94e4e90a0f | refs/heads/master | 2022-12-25T09:06:57.888796 | 2020-09-28T07:20:53 | 2020-09-28T07:20:53 | 294,425,430 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 624 | java | package com.cloud.provider.model;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* ClassName: User <br/>
* Description: <br/>
* date: 2020/9/8 9:54 上午<br/>
*
* @author tooru<br />
*/
@Entity
@Table(name = "user")
public class User {
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public Integer getMoney() {
return money;
}
public void setMoney(Integer money) {
this.money = money;
}
@Id
private String uid;
private Integer money;
}
| [
"zhujing1016"
] | zhujing1016 |
7c87a55a8284fe8e29e7582afc4debe3bc5e93fc | 0fbe89319f9c16a1adbd732f10527016c74b4b47 | /src/test/java/weivretni/leetcode/Q059_SpiralMatrix2_Test.java | eeb0e2beb5d2997ef63418799155a722165bb53c | [] | no_license | jackgzhang/interview | 522ceba712fc7aac780d4a3836d37791009dc946 | 5cf7b2c22bc1cc90addb5edaaa7392a0c7eefe73 | refs/heads/master | 2020-12-18T19:55:44.001720 | 2019-01-31T07:36:59 | 2019-01-31T07:36:59 | 25,503,634 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 420 | java | package weivretni.leetcode;
import org.junit.Test;
import weivretni.BaseTest;
import java.util.Arrays;
public class Q059_SpiralMatrix2_Test extends BaseTest {
@Test
public void test() {
Q059_SpiralMatrix2 source = new Q059_SpiralMatrix2();
System.out.println(Arrays.deepToString(source.generateMatrix(2)));
System.out.println(Arrays.deepToString(source.generateMatrix(3)));
}
}
| [
"jackgzhang@gmail.com"
] | jackgzhang@gmail.com |
d03f816e6261fd93dc56aad22b8fb90539de93bc | 4fc5a1701b1eb5f4cc991e035712b9099040d90d | /app/src/main/java/com/example/taras/wallpapers/di/AppComponent.java | a55abc077fb7396a0f425bfeee58eaaa7b3c6bf7 | [] | no_license | TarasSagan/Wallpaper | 548b5dea8f2b77a40e0f280126075faf20b24ea9 | 52ae96ca36ee1447c7e68e35c9ee23e9c7e20143 | refs/heads/master | 2022-07-09T02:28:13.980049 | 2018-03-17T15:31:03 | 2018-03-17T15:31:03 | 116,699,345 | 0 | 0 | null | 2022-07-03T09:29:19 | 2018-01-08T16:16:29 | Java | UTF-8 | Java | false | false | 1,418 | java | package com.example.taras.wallpapers.di;
import com.example.taras.wallpapers.activity.login.LoginActivity;
import com.example.taras.wallpapers.activity.login.LoginPresenter;
import com.example.taras.wallpapers.activity.main.MainActivityPresenter;
import com.example.taras.wallpapers.activity.photoDetails.PhotoDetailsPresenter;
import com.example.taras.wallpapers.fragments.baseListFragment.BaseListPresenter;
import com.example.taras.wallpapers.fragments.listAllPhotos.AllPhotosPresenter;
import com.example.taras.wallpapers.fragments.listCuratedPhotos.CuratedPhotosPresenter;
import com.example.taras.wallpapers.fragments.profile.ProfileFragmentPresenter;
import com.example.taras.wallpapers.fragments.search.users.SearchUserPresenter;
import javax.inject.Singleton;
import dagger.Component;
@Component(modules = {AppModule.class, ApiModule.class})
@Singleton
public interface AppComponent {
void inject(LoginActivity loginActivity);
void inject(MainActivityPresenter mainActivityPresenter);
void inject(LoginPresenter loginPresenter);
void inject(PhotoDetailsPresenter photoDetailsPresenter);
void inject(AllPhotosPresenter allPhotosPresenter);
void inject(CuratedPhotosPresenter curatedPhotosPresenter);
void inject(BaseListPresenter baseListPresenter);
void inject(ProfileFragmentPresenter profileFragmentPresenter);
void inject(SearchUserPresenter searchUserPresenter);
}
| [
"sagan0993@gmail.com"
] | sagan0993@gmail.com |
c1f60828600273b619779692c5d1d4e87c83e4c7 | d88172b6bc38baae14d13bebb36fd880b6ebda14 | /obfuscation/test_1_out/org/a/a/a/j/class_182.java | b81c3a709199c34544943b26146a9fdaa23f4aaf | [] | no_license | wernerware/video-notes | f713cfad9812a04c324c34a63a63fae0094e1e00 | cddf89a10640bd3e5ba9c7370fa75c64e38ddd3e | refs/heads/master | 2020-03-20T18:32:05.408193 | 2018-07-11T22:40:42 | 2018-07-11T22:40:42 | 137,592,489 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 742 | java | package org.a.a.a.j;
import java.util.Iterator;
import java.util.Map.Entry;
import org.a.a.a.f.class_180;
import org.a.a.a.g.class_255;
// $FF: renamed from: org.a.a.a.j.h
class class_182 extends class_180 {
// $FF: renamed from: a org.a.a.a.j.f
// $FF: synthetic field
final class_465 field_238;
class_182(class_465 var1, Iterator var2) {
super(var2);
this.field_238 = var1;
}
// $FF: renamed from: a () java.util.Map.Entry
public Entry method_545() {
Entry var1 = (Entry)super.next();
Object var2 = var1.getKey();
return new class_255(var2, this.field_238.field_846.method_1555(var2));
}
// $FF: synthetic method
public Object next() {
return this.method_545();
}
}
| [
"arachtivix@Daniels-Mac-mini.local"
] | arachtivix@Daniels-Mac-mini.local |
a617b02a2a606cce5e06489625f55f8ba38f58b6 | ab2fd960a295be52786b8d9394a7fd63e379b340 | /application/src/main/java/org/thingsboard/server/service/telemetry/exception/InternalErrorException.java | 2d4bf6b36037d524af3bd5a30d3692aff8d070ce | [
"Apache-2.0"
] | permissive | ltcong1411/SmartDeviceFrameworkV2 | 654f7460baa00d8acbc483dddf46b62ce6657eea | 6f1bbbf3a2a15d5c0527e68feebea370967bce8a | refs/heads/master | 2020-04-22T02:46:44.240516 | 2019-02-25T08:19:43 | 2019-02-25T08:19:43 | 170,062,547 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,141 | java | /**
* Copyright © 2016-2019 The Thingsboard 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.thingsboard.server.service.telemetry.exception;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
public class InternalErrorException extends Exception implements ToErrorResponseEntity {
public InternalErrorException(String message) {
super(message);
}
@Override
public ResponseEntity<String> toErrorResponseEntity() {
return new ResponseEntity<>(getMessage(), HttpStatus.INTERNAL_SERVER_ERROR);
}
}
| [
"ltcong1411@gmail.com"
] | ltcong1411@gmail.com |
ed149a73ca9e5e829a6db55a33eb7132646a9a39 | 4415d893425a95b3e75897a1bcce3345689caa7d | /src/board/command/ReplydeleteCommand.java | c4eed020215c5f877bf363d8ba310d7cc86a46a4 | [] | no_license | junyoungk/TwentyWorld | f5e6a00640b6ede3d00b4174c279d8eb7d8a76b2 | 8d4552fc3ff6868babc417f405b8bfde3cc87a92 | refs/heads/master | 2022-11-06T05:28:47.289770 | 2020-06-15T04:54:46 | 2020-06-15T04:54:46 | 267,728,150 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 804 | java | package board.command;
import java.sql.SQLException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import board.beans.ReplyDAO;
public class ReplydeleteCommand implements Command {
@Override
public void execute(HttpServletRequest request, HttpServletResponse response) {
int cnt = 0;
ReplyDAO replydao = new ReplyDAO();
int reply_boarderid = Integer.parseInt(request.getParameter("reply_boarderid"));
int reply_id = Integer.parseInt(request.getParameter("reply_id"));
try {
cnt = replydao.deleteByReplyUid(reply_id,reply_boarderid);
}catch(SQLException e) {
e.printStackTrace();
}
request.setAttribute("replyDEL", cnt);
request.setAttribute("boarderid", reply_boarderid);
}
} | [
"mnp1048@gmail.com"
] | mnp1048@gmail.com |
43d6acdc243fcee1897af6830474873c6dab18eb | ed3cb95dcc590e98d09117ea0b4768df18e8f99e | /project_1_1/src/b/e/f/e/Calc_1_1_14543.java | 90195f0922f627ac73d0d6621a8b8069ea6c3af8 | [] | no_license | chalstrick/bigRepo1 | ac7fd5785d475b3c38f1328e370ba9a85a751cff | dad1852eef66fcec200df10083959c674fdcc55d | refs/heads/master | 2016-08-11T17:59:16.079541 | 2015-12-18T14:26:49 | 2015-12-18T14:26:49 | 48,244,030 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 134 | java | package b.e.f.e;
public class Calc_1_1_14543 {
/** @return the sum of a and b */
public int add(int a, int b) {
return a+b;
}
}
| [
"christian.halstrick@sap.com"
] | christian.halstrick@sap.com |
2fcb2112d3f77506a30073907ad0c6cd322edd17 | d743bbfc66fb3c796021d5cf92454b77210166f0 | /src/main/java/ru/ssau/tk/blashbanova/functions/UnitFunction.java | a40be7a9c6e9a685aaa124f7fedcca6b4ae6ab40 | [] | no_license | Blashbanova/lab_Bla_Bla_Kol | 30a025b52f2a4c8a060b8ee3254ed5eea7c54ff5 | 1e9ac762b4d65812ad57225807599d061520d190 | refs/heads/master | 2023-02-04T14:09:15.663528 | 2020-12-24T20:55:43 | 2020-12-24T20:55:43 | 295,014,338 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 209 | java | package ru.ssau.tk.blashbanova.functions;
import ru.ssau.tk.blashbanova.functions.ConstantFunction;
public class UnitFunction extends ConstantFunction {
public UnitFunction() {
super(1);
}
}
| [
"infrocl@yandex.ru"
] | infrocl@yandex.ru |
1e41698d4367eec6da0babc13d134c48b9abef33 | 2df179a9516b969bde5c0d811e17e9294792b475 | /Desktop/desktop/src/controllers/StoreCardController.java | 952a392d61891386fd3bf59a0066e7f7670e1e0b | [
"MIT"
] | permissive | tomerguttman/SDMarket | f8bb2a68c6890fe4e98f863091a5d8a25a593ca8 | 856773787f8734bce8a0b322edad4dd41ac813db | refs/heads/master | 2023-01-11T19:24:39.318768 | 2020-11-08T22:24:46 | 2020-11-08T22:24:46 | 286,239,403 | 10 | 4 | MIT | 2020-09-17T08:49:50 | 2020-08-09T13:10:51 | Java | UTF-8 | Java | false | false | 774 | java | package controllers;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
import javafx.scene.layout.AnchorPane;
public class StoreCardController {
@FXML
private AnchorPane mainRoot;
@FXML
private Label storeIdCardLabel;
@FXML
private Label storeNameCardLabel;
@FXML
private Label storeCardLocationLabel;
public void setStoreIdCardLabelText(String storeId){
storeIdCardLabel.setText(storeId);
}
public void setStoreNameCardLabelText(String storeName){
storeNameCardLabel.setText(storeName);
}
public AnchorPane getMainRoot() {
return mainRoot;
}
public void setLocationLabelText(String locationString) {
this.storeCardLocationLabel.setText(locationString);
}
}
| [
"tomerguttman27@gmail.com"
] | tomerguttman27@gmail.com |
0a75d8df99982127a624d7db91e6b0541794c2af | 4384c321da27d5f78fb669af785d80545cebe9af | /BrickBreakerAndroid/build/source/buildConfig/debug/com/carlospinan/brickbreakerandroid/BuildConfig.java | c4f1fe0bfba779610fdf7893c7cbb4c0982a3ac3 | [] | no_license | ar08/BrickBreakerAndroidProject | 193911c098cf231be0b22a1004ee85e83108060f | 80596dd674141a31d82e25f9bd4f56a67aa5aaab | refs/heads/master | 2020-12-29T02:55:25.651410 | 2013-09-29T22:13:42 | 2013-09-29T22:13:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 178 | java | /** Automatically generated file. DO NOT MODIFY */
package com.carlospinan.brickbreakerandroid;
public final class BuildConfig {
public final static boolean DEBUG = true;
} | [
"carlos.pinan@gmail.com"
] | carlos.pinan@gmail.com |
06b77038fa492e1161b1a8c9f7f101ba9bc0857b | 0a565a583c7f437a3d38ffa82f2b23e87c1d8cb4 | /src/main/java/com/fj/common/utils/excel/fieldtype/AreaType.java | 40a91fc3420e69f257f9a27f4c2114eeae205d88 | [
"Apache-2.0"
] | permissive | caocf/fj | b1563936c76f7c1599b0dffe00c225772c67c227 | e9229f6f07ab6bbda325740b5120fcbc06c9522b | refs/heads/master | 2021-01-12T12:16:53.337688 | 2015-05-20T14:27:57 | 2015-05-20T14:27:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 695 | java | /**
*
*/
package com.fj.common.utils.excel.fieldtype;
import com.fj.common.utils.StringUtils;
import com.fj.modules.sys.entity.Area;
import com.fj.modules.sys.utils.UserUtils;
/**
* 字段类型转换
* @author
* @version 2013-03-10
*/
public class AreaType {
/**
* 获取对象值(导入)
*/
public static Object getValue(String val) {
for (Area e : UserUtils.getAreaList()){
if (StringUtils.trimToEmpty(val).equals(e.getName())){
return e;
}
}
return null;
}
/**
* 获取对象值(导出)
*/
public static String setValue(Object val) {
if (val != null && ((Area)val).getName() != null){
return ((Area)val).getName();
}
return "";
}
}
| [
"moonkingcai@163.com"
] | moonkingcai@163.com |
32a780ca56499058d972751fed3fdde4008b24e5 | 50b462afae40700450fb1ee6e634e9597819f3f7 | /jMetal-jmetal-5.2/jmetal-exec/src/main/java/org/uma/jmetal/runner/singleobjective/DifferentialEvolutionRunner.java | 484cfa17f7f3591934b84e1a11934b515bd45d65 | [] | no_license | DanielaVelasquez/JMetal-Framework | 83a2d39108a0318361c7f2bc1df5fbb3e45a7a6a | 3086b6cab3e51e30b80f9ecb15338c171a7f5d3f | refs/heads/master | 2021-07-17T02:45:09.844402 | 2019-06-12T22:23:32 | 2019-06-12T22:23:32 | 94,697,949 | 1 | 0 | null | 2021-04-26T19:14:15 | 2017-06-18T16:03:43 | Java | UTF-8 | Java | false | false | 4,148 | java | // This program 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.
//
// 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package org.uma.jmetal.runner.singleobjective;
import org.uma.jmetal.algorithm.Algorithm;
import org.uma.jmetal.algorithm.singleobjective.differentialevolution.DifferentialEvolutionBuilder;
import org.uma.jmetal.operator.impl.crossover.DifferentialEvolutionCrossover;
import org.uma.jmetal.operator.impl.selection.DifferentialEvolutionSelection;
import org.uma.jmetal.problem.DoubleProblem;
import org.uma.jmetal.solution.DoubleSolution;
import org.uma.jmetal.util.AlgorithmRunner;
import org.uma.jmetal.util.JMetalLogger;
import org.uma.jmetal.util.ProblemUtils;
import org.uma.jmetal.util.evaluator.SolutionListEvaluator;
import org.uma.jmetal.util.evaluator.impl.MultithreadedSolutionListEvaluator;
import org.uma.jmetal.util.evaluator.impl.SequentialSolutionListEvaluator;
import org.uma.jmetal.util.fileoutput.SolutionListOutput;
import org.uma.jmetal.util.fileoutput.impl.DefaultFileOutputContext;
import java.util.ArrayList;
import java.util.List;
/**
* Class to configure and run a differential evolution algorithm. The algorithm can be configured
* to use threads. The number of cores is specified as an optional parameter. The target problem is Sphere.
*
* @author Antonio J. Nebro <antonio@lcc.uma.es>
*/
public class DifferentialEvolutionRunner {
private static final int DEFAULT_NUMBER_OF_CORES = 1 ;
/**
* Usage: java org.uma.jmetal.runner.singleobjective.DifferentialEvolutionRunner [cores]
*/
public static void main(String[] args) throws Exception {
DoubleProblem problem;
Algorithm<DoubleSolution> algorithm;
DifferentialEvolutionSelection selection;
DifferentialEvolutionCrossover crossover;
SolutionListEvaluator<DoubleSolution> evaluator ;
String problemName = "org.uma.jmetal.problem.singleobjective.Sphere" ;
problem = (DoubleProblem) ProblemUtils.<DoubleSolution> loadProblem(problemName);
int numberOfCores ;
if (args.length == 1) {
numberOfCores = Integer.valueOf(args[0]) ;
} else {
numberOfCores = DEFAULT_NUMBER_OF_CORES ;
}
if (numberOfCores == 1) {
evaluator = new SequentialSolutionListEvaluator<DoubleSolution>() ;
} else {
evaluator = new MultithreadedSolutionListEvaluator<DoubleSolution>(numberOfCores, problem) ;
}
crossover = new DifferentialEvolutionCrossover(0.5, 0.5, "rand/1/bin") ;
selection = new DifferentialEvolutionSelection();
algorithm = new DifferentialEvolutionBuilder(problem)
.setCrossover(crossover)
.setSelection(selection)
.setSolutionListEvaluator(evaluator)
.setMaxEvaluations(250000)
.setPopulationSize(100)
.build() ;
AlgorithmRunner algorithmRunner = new AlgorithmRunner.Executor(algorithm)
.execute() ;
DoubleSolution solution = algorithm.getResult() ;
long computingTime = algorithmRunner.getComputingTime() ;
List<DoubleSolution> population = new ArrayList<>(1) ;
population.add(solution) ;
new SolutionListOutput(population)
.setSeparator("\t")
.setVarFileOutputContext(new DefaultFileOutputContext("VAR.tsv"))
.setFunFileOutputContext(new DefaultFileOutputContext("FUN.tsv"))
.print();
JMetalLogger.logger.info("Total execution time: " + computingTime + "ms");
JMetalLogger.logger.info("Objectives values have been written to file FUN.tsv");
JMetalLogger.logger.info("Variables values have been written to file VAR.tsv");
evaluator.shutdown();
}
}
| [
"angiedanielav@unicauca.edu.co"
] | angiedanielav@unicauca.edu.co |
a80d2b6f607948522a125005edf5143ce8471d2c | d4ce9c3527d95e358e05223d9247a912ec840b8e | /src/main/java/my/ch/spring/kt/chapter3/DependencyInjectByInstanceFactory.java | 0993acf81f26ee2e0ce0f5fa75ba0efcc9d0b433 | [] | no_license | chh0217/springtest | fd9d7a001ddad42191f88fcb20c1dd3567342039 | d0672147bf952a0e81de99cbb59b44e3538ef086 | refs/heads/master | 2021-01-25T08:12:45.304738 | 2018-03-16T01:25:05 | 2018-03-16T01:25:05 | 93,727,657 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 308 | java | package my.ch.spring.kt.chapter3;
import my.ch.spring.kt.chapter2.HelloApi;
/**
* 实例工厂类
* @author chenh
* @date 2017/12/18.
*/
public class DependencyInjectByInstanceFactory {
public HelloApi newInstance(String message, int index) {
return new HelloImpl3(message, index);
}
}
| [
"275980433@qq.com"
] | 275980433@qq.com |
457c04b783248fe76537e0bf3e18fad9bb80e0c2 | 30d56010d7c53a9c6004a275fb2ed6c9bec7058b | /src/mapeadores/CursoMapper.java | 6ec46fc942220012a85d6b7828bbbc118b782c98 | [] | no_license | rodolphorosa/restauranteUniversitario | ee00dbdaf37702adb9acdab423479981872c9b39 | f226546a9f6e0c22756854d3e3512e2c7444859e | refs/heads/master | 2021-01-22T17:34:10.668506 | 2016-04-06T00:25:32 | 2016-04-06T00:25:32 | 55,562,630 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,874 | java | package mapeadores;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import entidades.Curso;
import entidades.Departamento;
public class CursoMapper implements Mapper<Curso> {
private static CursoMapper instance;
private Connection connection;
private CursoMapper() {
connection = ConnectionFactory.getInstance().getConnection();
}
@Override
public synchronized Curso encontrarPorId(Long id) throws SQLException {
Curso curso = null;
String sql = "SELECT id, sigla, nome, departamento_id FROM curso WHERE id = ?";
long idCurso = 0;
String siglaCurso = "";
String nomeCurso = "";
long idDepartamento = 0;
Departamento departamento = null;
PreparedStatement statement;
statement = connection.prepareStatement(sql);
statement.setLong(1, id);
ResultSet resultado = statement.executeQuery();
while(resultado.next()) {
idCurso = resultado.getLong("id");
siglaCurso = resultado.getString("sigla");
nomeCurso = resultado.getString("nome");
idDepartamento = resultado.getLong("departamento_id");
departamento = (Departamento) DepartamentoMapper.getInstance().encontrarPorId(idDepartamento);
curso = new Curso(idCurso, siglaCurso, nomeCurso, departamento);
}
statement.close();
return curso;
}
public synchronized Curso encontrarPorSigla(String sigla) throws SQLException {
Curso curso = null;
String sql = "SELECT id, sigla, nome, departamento_id FROM curso WHERE sigla = ?";
long idCurso = 0;
String nomeCurso = "";
long idDepartamento = 0;
Departamento departamento = null;
PreparedStatement statement;
statement = connection.prepareStatement(sql);
statement.setString(1, sigla);
ResultSet resultado = statement.executeQuery();
while(resultado.next()) {
idCurso = resultado.getLong("id");
nomeCurso = resultado.getString("nome");
idDepartamento = resultado.getLong("departamento_id");
departamento = (Departamento) DepartamentoMapper.getInstance().encontrarPorId(idDepartamento);
curso = new Curso(idCurso, sigla, nomeCurso, departamento);
}
statement.close();
return curso;
}
@Override
public synchronized void adicionar(Curso curso) throws SQLException {
String sql = "INSERT INTO curso (sigla, nome, departamento_id) VALUES (?,?,?)";
PreparedStatement statement = connection.prepareStatement(sql);
statement.setString(1, (String) curso.getMapeadorAtributos().get("sigla"));
statement.setString(2, (String) curso.getMapeadorAtributos().get("nome"));
statement.setLong(3, (long) ((Departamento) curso.getMapeadorAtributos().get("departamento")).getMapeadorAtributos().get("id"));
statement.execute();
statement.close();
}
@Override
public synchronized void atualizar(Curso curso) throws SQLException {
String sql = "UPDATE curso SET sigla = ?, nome = ?, departamento_id = ? WHERE id = ?";
PreparedStatement stmt = connection.prepareStatement(sql);
stmt.setString(1, (String) curso.getMapeadorAtributos().get("sigla"));
stmt.setString(2, (String) curso.getMapeadorAtributos().get("nome"));
stmt.setLong(3, (long) ((Departamento) curso.getMapeadorAtributos().get("departamento")).getMapeadorAtributos().get("id"));
stmt.setLong(4, (long) curso.getMapeadorAtributos().get("id"));
stmt.execute();
stmt.close();
}
@Override
public synchronized void deletar(Curso curso) {
// TODO Auto-generated method stub
}
@Override
public synchronized Collection<Curso> encontrarTodos() throws SQLException {
Collection<Curso> cursos = new ArrayList<Curso>();
String sql = "SELECT c.id as curso_id, c.sigla as curso_sigla, c.nome as curso_nome, "
+ "d.id as departamento_id, d.sigla as departamento_sigla, d.nome as departamento_nome "
+ "FROM curso c "
+ "INNER JOIN departamento d ON c.departamento_id = d.id "
+ "ORDER BY curso_sigla";
PreparedStatement stmt = connection.prepareStatement(sql);
ResultSet results = stmt.executeQuery();
while(results.next()) {
long idCurso = results.getLong("curso_id");
String siglaCurso = results.getString("curso_sigla");
String nomeCurso = results.getString("curso_nome");
long idDepartamento = results.getLong("departamento_id");
String siglaDepartamento = results.getString("departamento_sigla");
String nomeDepartamento = results.getString("departamento_nome");
Departamento departamento = new Departamento(idDepartamento, siglaDepartamento, nomeDepartamento);
Curso curso = new Curso(idCurso, siglaCurso, nomeCurso, departamento);
cursos.add(curso);
}
stmt.close();
return cursos;
}
public static synchronized CursoMapper getInstance() {
if(instance == null) {
instance = new CursoMapper();
}
return instance;
}
} | [
"rodolphorosa05@gmail.com"
] | rodolphorosa05@gmail.com |
d70976df5dff37aeaafd5e1ea06573f886f23b14 | 3d2c2a114e754ac0d74f25b5b180e32a1ec4f2d9 | /Level1/TaskB4.java | eafa60a86fdfa60d43d9f6e39fcee0b1828f9e8b | [] | no_license | KatsiarynaZhalabkevich/JavaOnlineEpam | faed8ecaface9651edb60bcbf03aafe5aeee48b3 | d4983c2f7cd097473607185b96854acf8afe02c9 | refs/heads/master | 2020-07-04T19:36:38.792392 | 2019-08-15T08:05:24 | 2019-08-15T08:05:24 | 202,390,967 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,108 | java | package ezhalabkevich.Level1;
/*Заданы размеры А, В прямоугольного отверстия и размеры х, у, z кирпича. Определить, пройдет ли кирпич через отверстие.*/
public class TaskB4 {
public static void main(String[] args) {
/*кирпич пролезет, если одна грань меньше или равна отверстию*/
int A = 5, B = 5;
int x = 4, y = 5, z = 6;
int dAB, dXY, dXZ, dYZ; //диагонали граней
dAB = A * A + B * B;
dXY = x * x + y * y; //вычисляем диагонали, если диагональ грани
dXZ = x * x + z * z; // меньше или равна дианонали отверстия, то все ОК
dYZ = y * y + z * z;
if (dAB >= dXY || dAB >= dXZ || dAB >= dYZ) {
System.out.println("Кирпич пройдет!!!");
} else {
System.out.println("Кирпич не пройдет!!!");
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
ae70855b0f5ce813f99cd1eade53b1be0ad694e6 | 475cf10d1c5a54b345e2cb1b827c2dddd7b65e11 | /src/p201632003/UserDAO.java | 5f8650e61e8af1dd91bd10b0329b138a93fbf88b | [] | no_license | jeenie/BoardPage_JSP | 134ec4c73bfb08bbabac4e07724483a070ee87c6 | 4b5c5f538d6e6c34c01eab92ddcf5b33322535de | refs/heads/master | 2020-03-18T20:46:28.216151 | 2018-06-04T02:27:30 | 2018-06-04T02:27:30 | 135,237,485 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 700 | java | package p201632003;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
public class UserDAO {
public static List<User> findAll() throws Exception {
String sql = "SELECT * FROM user";
try (Connection connection = DB.getConnection("bbs2");
PreparedStatement statement = connection.prepareStatement(sql);
ResultSet resultSet = statement.executeQuery()) {
ArrayList<User> list = new ArrayList<User>();
while (resultSet.next()) {
User user = new User();
user.setId(resultSet.getInt("id"));
user.setName(resultSet.getString("name"));
list.add(user);
}
return list;
}
}
} | [
"jeenie828@gmail.com"
] | jeenie828@gmail.com |
159db122f9312db7df5b1b5c90bd86a038715c14 | 2e791aad96cbf6b337c4a2d2789ea03c83c7f402 | /test/opencart/TestSearchPage.java | 863145f4a38dc3689b09fa76185d00cb3f007271 | [] | no_license | Lora-Uroshlieva/java_demo1 | af0a64f92f85ff1065a155cfa43bfd6e9e3a50ca | 6562314e115c1d7546cb3b06cbf80dc4ee2eabe1 | refs/heads/master | 2021-05-01T06:27:04.385976 | 2018-03-25T15:23:24 | 2018-03-25T15:23:24 | 121,142,877 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,184 | java | package opencart;
import com.opencart.data.Categories;
import com.opencart.data.ProductsLimitOnPage;
import com.opencart.data.SortingType;
import com.opencart.pages.HomePage;
import com.opencart.pages.SearchPage;
import opencart.helpers.Listener;
import org.testng.Assert;
import org.testng.annotations.Listeners;
import org.testng.annotations.Test;
@Listeners(Listener.class)
public class TestSearchPage extends BaseTest {
@Test
public void moveToSearchPageTest() {
HomePage.load(driver).moveToSearchPage();
Assert.assertEquals(driver.getCurrentUrl(),
SearchPage.getURL());
}
@Test
public void loadPageTest() throws InterruptedException {
SearchPage.load(driver);
String expectedUrl = SearchPage.getURL() + "&i=1";
Assert.assertEquals(driver.getCurrentUrl(), expectedUrl);
}
@Test
public void searchMultipleResultTest() {
SearchPage searchPage = HomePage.load(driver).searchByKeyword("i");
searchPage.makeExtendedSearch("i", Categories.DESCTOPS);
int actual = searchPage.countProductsFound();
Assert.assertEquals(actual, 15);
Assert.assertTrue(searchPage.isTitleContainKeyword("i"));
}
@Test
public void searchSingleResultTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("Sony VAIO", Categories.ALL);
int actualCount = searchPage.countProductsFound();
Assert.assertEquals(actualCount, 1);
String actualName = searchPage.getSearchResultsBlock().getAllProductComponentsNames().get(0);
Assert.assertEquals(actualName, "Sony VAIO");
}
@Test
public void searchByEmptyFieldTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("", Categories.ALL);
Assert.assertFalse(searchPage.getSearchResultsBlock().isProductFound());
}
@Test
public void sortingByPriceAscTest() throws InterruptedException {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("mac", Categories.ALL);
searchPage.sortProducts(SortingType.PRICE_ASC);
Thread.sleep(4000);
Assert.assertTrue(searchPage.isPricesSortedByAsc());
}
@Test
public void sortingByPriceDescTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("mac", Categories.ALL);
searchPage.sortProducts(SortingType.PRICE_DESC);
Assert.assertTrue(searchPage.isPricesSortedByDesc());
}
@Test
public void switchingToListViewTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("mac", Categories.ALL);
searchPage.displayProductsAsList();
Assert.assertTrue(searchPage.isProductsDisplayedByList());
}
@Test
public void switchingToGridViewTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("mac", Categories.ALL);
searchPage.displayProductsAsGrid();
Assert.assertTrue(searchPage.isProductsDisplayedByGrid());
}
@Test
public void changeProductsLimitOnPageTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("i", Categories.ALL);
Assert.assertEquals(searchPage.countProductsFound(), ProductsLimitOnPage.DEFAULT_LIMIT_15.toInt());
searchPage.changeProductsLimitOnPage(ProductsLimitOnPage.LIMIT_25);
Assert.assertEquals(searchPage.countProductsFound(), ProductsLimitOnPage.LIMIT_25.toInt());
}
@Test
public void goToNextSearchResultsPageTest() {
SearchPage searchPage = SearchPage.load(driver)
.makeExtendedSearch("i", Categories.ALL)
.moveToNextSearchResultsPage();
Assert.assertEquals(searchPage.countProductsFound(), ProductsLimitOnPage.DEFAULT_LIMIT_15.toInt());
String expectedPageNumberDescription = String.format("Showing %d to %d of %d (%d Pages)", 16, 30, 32, 3);
Assert.assertEquals(searchPage.getSearchResultsBlock().getPageNumberDescriptionText(), expectedPageNumberDescription);
}
}
| [
"Lora.Strizhakova@gmail.com"
] | Lora.Strizhakova@gmail.com |
4ab1d31229b620a9007eb9d5839600e8dff7089c | cd8319f42eac0c123df4c596233c9a893de460b1 | /8DSChapter8/src/chapter8Exercises/Member1TestDrive.java | bf43e399e9c17c4e9835b282c3ea6f7875516abc | [] | no_license | mhmugisha/8DSChapter8Repo | 3b095109814af4873011efa0d5dae14c1d459fa9 | 44b3f422e8c0ee5004deb7d055e29c4049ae628a | refs/heads/master | 2020-06-18T18:03:25.610295 | 2019-07-11T12:48:08 | 2019-07-11T12:48:08 | 196,392,918 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 976 | java | //This program does not seem very useful as every variable is entered
//No computation say of amount spent.
package chapter8Exercises;
import java.util.Scanner;
public class Member1TestDrive {
public static void main(String[] args) {
Member1 member1 = new Member1();
member1.setName("Mark", "Mugisha");
member1.setMemberID(12);
member1.setNumberOfBooks(10);
member1.setAmountSpent(120); //This is too simplistic.
System.out.println("Member full Name: " + member1.getFirstName() +" "+ member1.getLastName());
System.out.println();
System.out.println("Number of books:" + member1.getNumberOfBooks());
System.out.println();
Scanner in = new Scanner(System.in);
System.out.println("Enter book price: ");
int bookPrice = in.nextInt();
//Here made amount spent dependent on book price and number of books.
System.out.println("Amount spent: " + "$" + bookPrice * member1.getNumberOfBooks());
}
}
| [
"mhmugisha@gmail.com"
] | mhmugisha@gmail.com |
cd422a311e66bf11fcf4d09bd842bbffe2689ac7 | 2d59f308bbf3482f416b583cf8cab4bcf9398a01 | /baseio-jms/src/main/java/com/generallycloud/nio/container/jms/server/MQContext.java | 4d593997f38b2eface5883d301c236ef4aa8f8a2 | [
"Apache-2.0"
] | permissive | zhangshun2014/baseio | 693a313ca79ee2b60b121b4981fd58427351092e | b3ef084f3e091055e4c620fd4d0e1feb1f65abc2 | refs/heads/master | 2021-01-22T10:36:27.648712 | 2017-02-13T01:45:12 | 2017-02-13T01:45:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,759 | java | /*
* Copyright 2015 GenerallyCloud.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.generallycloud.nio.container.jms.server;
import java.util.Map;
import com.generallycloud.nio.codec.protobase.future.ProtobaseReadFuture;
import com.generallycloud.nio.common.LifeCycleUtil;
import com.generallycloud.nio.component.SocketSession;
import com.generallycloud.nio.component.concurrent.ReentrantMap;
import com.generallycloud.nio.component.concurrent.ReentrantSet;
import com.generallycloud.nio.container.AbstractPluginContext;
import com.generallycloud.nio.container.ApplicationContext;
import com.generallycloud.nio.container.configuration.Configuration;
import com.generallycloud.nio.container.jms.MQException;
import com.generallycloud.nio.container.jms.Message;
import com.generallycloud.nio.container.jms.decode.DefaultMessageDecoder;
import com.generallycloud.nio.container.jms.decode.MessageDecoder;
import com.generallycloud.nio.container.service.FutureAcceptorService;
public class MQContext extends AbstractPluginContext implements MessageQueue {
private long dueTime;
private ReentrantMap<String, Message> messageIDs = new ReentrantMap<String, Message>();
private P2PProductLine p2pProductLine = new P2PProductLine(this);
private SubscribeProductLine subProductLine = new SubscribeProductLine(this);
private ReentrantSet<String> receivers = new ReentrantSet<String>();
private MessageDecoder messageDecoder = new DefaultMessageDecoder();
private static MQContext instance;
public static MQContext getInstance() {
return instance;
}
public Message browser(String messageID) {
return messageIDs.get(messageID);
}
public MQSessionAttachment getSessionAttachment(SocketSession session) {
return (MQSessionAttachment) session.getAttachment(this.getPluginIndex());
}
@Override
public void initialize(ApplicationContext context, Configuration config) throws Exception {
long dueTime = config.getLongParameter("due-time");
setMessageDueTime(dueTime == 0 ? 1000 * 60 * 60 * 24 * 7 : dueTime);
p2pProductLine.startup("MQ-P2P-ProductLine");
subProductLine.startup("MQ-SUB-ProductLine");
context.addSessionEventListener(new MQSessionEventListener());
instance = this;
}
@Override
public void destroy(ApplicationContext context, Configuration config) throws Exception {
LifeCycleUtil.stop(p2pProductLine);
LifeCycleUtil.stop(subProductLine);
instance = null;
super.destroy(context, config);
}
public long getMessageDueTime() {
return this.dueTime;
}
public int messageSize() {
return this.p2pProductLine.messageSize();
}
@Override
public void offerMessage(Message message) {
messageIDs.put(message.getMsgID(), message);
p2pProductLine.offerMessage(message);
}
public void publishMessage(Message message) {
subProductLine.offerMessage(message);
}
public void consumerMessage(Message message) {
messageIDs.remove(message.getMsgID());
}
public Message parse(ProtobaseReadFuture future) throws MQException {
return messageDecoder.decode(future);
}
@Override
public void pollMessage(SocketSession session, ProtobaseReadFuture future, MQSessionAttachment attachment) {
p2pProductLine.pollMessage(session, future, attachment);
}
public void subscribeMessage(SocketSession session, ProtobaseReadFuture future, MQSessionAttachment attachment) {
subProductLine.pollMessage(session, future, attachment);
}
public void setMessageDueTime(long dueTime) {
this.dueTime = dueTime;
this.p2pProductLine.setDueTime(dueTime);
this.subProductLine.setDueTime(dueTime);
}
public void addReceiver(String queueName) {
receivers.add(queueName);
}
public boolean isOnLine(String queueName) {
return receivers.contains(queueName);
}
public void removeReceiver(String queueName) {
receivers.remove(queueName);
}
@Override
public void configFutureAcceptor(Map<String, FutureAcceptorService> acceptors) {
putServlet(acceptors,new MQConsumerServlet());
putServlet(acceptors,new MQProducerServlet());
putServlet(acceptors,new MQSubscribeServlet());
putServlet(acceptors,new MQPublishServlet());
putServlet(acceptors,new MQTransactionServlet());
putServlet(acceptors,new MQBrowserServlet());
}
}
| [
"8738115@qq.com"
] | 8738115@qq.com |
8c23dd5a706a31739433d6da9053ed8358a7d0cd | dd759375224ed6e526cd6a7c3778faac0a4716fe | /serviceapp/src/main/java/springplayground/entities/UserAuth.java | fc62f671a21576e88b0570b9055cd90e58b0ddf5 | [] | no_license | plilja/spring-playground | fa83e667c289aff1876d3682de56d78836cfab2d | 3d2d4ce42c26772b8b98feac748b33ee103f56b7 | refs/heads/master | 2021-07-14T14:22:29.704864 | 2018-10-21T21:03:19 | 2018-10-21T21:03:19 | 109,558,762 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,503 | java | package springplayground.entities;
import com.fasterxml.jackson.annotation.JsonIgnore;
import springplayground.persistance.DurationedEntity;
import javax.persistence.*;
import java.util.Collections;
import java.util.Map;
@Entity(name = "USER_AUTH")
@Table(name = "USER_AUTH")
public class UserAuth extends DurationedEntity<Long> {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "USER_AUTH_ID")
private Long id;
@Column(name = "USER_ID", nullable = false)
private Long userId;
@JsonIgnore
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "USER_ID", insertable = false, updatable = false)
private User user;
// User is authorized for this function.
@Column(name = "FUNCTION")
private String function;
@Override
public Long getId() {
return id;
}
@Override
public void setId(Long id) {
this.id = id;
}
public Long getUserId() {
return userId;
}
public User getUser() {
return user;
}
public String getFunction() {
return function;
}
@Override
public DurationedEntity<Long> copy() {
UserAuth r = new UserAuth();
r.userId = userId;
r.user = user;
r.id = id;
r.setFromDate(getFromDate());
r.setToDate(getToDate());
return r;
}
@Override
public Map<String, Object> getGroupingKey() {
return Collections.singletonMap("USER_ID", userId);
}
}
| [
"lilja.patrik@gmail.com"
] | lilja.patrik@gmail.com |
b3b76e073d7e369e8997ad8d0334d4e64061b0bf | e85486da6bc5b6dd80702916a5db090ae43efb41 | /src/sep/seeter/client/Client/SeeterView.java | 43327253d9b0c5b9b13dfa4855196a3fcc2e2a28 | [] | no_license | Arbaaz-Zakir/Coursework-SEP-Seeter | 4a5e0c3250da64a544bf0a7fc455cd33cf77de35 | 4b9c79bd463b7336dd4de6a5869e6dfbf6281452 | refs/heads/master | 2022-11-11T11:28:07.566343 | 2020-04-21T22:00:24 | 2020-04-21T22:00:24 | 240,275,589 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,754 | 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 sep.seeter.client.Client;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.ResourceBundle;
import java.util.stream.Collectors;
import sep.mvc.AbstractView;
import sep.seeter.net.message.Bye;
import sep.seeter.net.message.Publish;
import sep.seeter.net.message.SeetsReply;
import sep.seeter.net.message.SeetsReq;
/**
* the view handles the UI aspects of the seeter system
* @author Arbaaz Zakir
*/
public class SeeterView extends AbstractView{
private static final String RESOURCE_PATH ="resources/MessageBundle";
private final ResourceBundle strings;
// String user = args[0];
// String host = args[1];
// int port = Integer.parseInt(args[2]);
private BufferedReader reader;
private SeeterController controller;
//boolean printSplash = true;
private SeeterModel model;
private CLFormatter helper;
//private String cmd;
//private Command command;
//private String[] rawArgs;
/**
* creates a new instance of a view
* @param model
*/
public SeeterView(SeeterModel model){
this.model = model;
strings = ResourceBundle.getBundle(RESOURCE_PATH, new Locale("en", "GB"));
}
@Override
public void close() {
throw new UnsupportedOperationException(strings.getString("Unsupported_Operation")); //To change body of generated methods, choose Tools | Templates.
}
/**
* runs the view
* @throws IOException
*/
@Override
@SuppressFBWarnings(
value = "DM_DEFAULT_ENCODING",
justification = "When reading console, ignore default encoding warning")
public void run() throws IOException {
update();
}
/**
* assigns the view the controller
* @param controller
*/
public void setController(SeeterController controller){
this.controller = controller;
}
/**
* reads user input by splitting the received input into the command
* and arguments
* @param reader - takes user input stream
* @throws IOException
*/
public void readUserInput(BufferedReader reader) throws IOException{
//reader = new BufferedReader(new InputStreamReader(System.in));
String raw = reader.readLine();
// splitInput(raw);
if(raw == null){
throw new IOException(strings.getString("stream_closed"));
}
List<String> split = Arrays.stream(raw.trim().split("\\ "))
.map(x -> x.trim()).collect(Collectors.toList());
String cmd = split.remove(0); // First word is the command keyword
model.setCmd(cmd);
String[] rawArgs = split.toArray(new String[split.size()]);
model.setRawArgs(rawArgs);
}
//////////////////////////////////////////////////////////////////////
/**
* checks the system has been given a user and host then prints the welcome
* page
*/
public void checkClient(){
if (model.getClient().getUser().isEmpty() || model.getClient().getHost().isEmpty()) {
System.err.println(strings.getString("Unsupported_Operation"));
System.exit(1);
}
else{
splashScreen();
}
}
/**
* prints welcome 'splash' screen
*/
public void splashScreen(){
if(model.isPrintSplash() == true){
System.out.println(model.getCLFormatter().formatSplash(model.getClient().getUser()));
}
}
/**
* prints the users options depending on the state
*/
public void printOptions(){
if(model.getState() == State.MAIN){
System.out.print(model.getCLFormatter().formatMainMenuPrompt());
}
else { // state = "Drafting"
System.out.print(model.getCLFormatter().
formatDraftingMenuPrompt(model.getDraftTopic(), model.getDraftLines()));
}
}
/**
* executes a command that has been encapsulated
* based on the user input stored in model
*/
public void runCommand(){
// if(model.getCmd().equals("undo")){
// BodyCommand command = new BodyCommand(model);
// command.undo();
// }
Command command = new CommandWords(model).getCommand(model.getCmd());
command.execute();
}
/**
* loops the view
* @param helper CLFormatter
* @param reader BuffereReader
* @throws IOException
*/
public void loop(CLFormatter helper, BufferedReader reader) throws IOException{
for(boolean done = false; !done;){
printOptions();
readUserInput(reader);
runCommand();
}
}
/**
* gets the helper
* @return CLFormatter helper
*/
public CLFormatter getCLFormatter(){
return helper;
}
/**
* gets the reader
* @return BufferedReafer reader
*/
public BufferedReader getReader(){
return reader;
}
/**
* updates the view depending on the state
*/
@Override
public void update() {
printOptions();
}
// public void splash(){
// if(m.printSplash = true){
// System.out.println(helper.formatSplash((controller.getModel().getUser())));
// }
// }
// @Override
// public void init(){
// view.setController();
// }
}
| [
"z.arbaaz786@gmail.com"
] | z.arbaaz786@gmail.com |
d2aac2c8662be031a653cdad35e42f5b34f4a4d2 | f683972c7c38691d89fad94ac502947bb0d4213f | /src/test/java/edu/scu/hereis/service/UserServiceTest.java | d38ef7688df61e45e917cbe9531285a8e3350cef | [] | no_license | CicadaTalk/hereis | 5a189c0302bfbf7732515afbc040eeb0d83c68c3 | ad122f7c1df25aa1c7c6305ebcb4093de1df98e6 | refs/heads/master | 2020-03-11T20:25:10.993392 | 2018-06-09T11:09:06 | 2018-06-09T11:09:06 | 130,235,682 | 4 | 3 | null | 2018-06-09T11:09:07 | 2018-04-19T15:23:55 | Java | UTF-8 | Java | false | false | 2,032 | java | package edu.scu.hereis.service;
import edu.scu.hereis.entity.User;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import static org.junit.Assert.*;
@RunWith(SpringRunner.class)
@SpringBootTest
public class UserServiceTest {
@Autowired
private UserService userService;
/**
* 测试通过
*/
@Test
public void deleteUser() {
userService.deleteUser("hi");
}
/**
* 测试通过
*/
@Test
public void addUser() {
User user = new User();
user.setHereisId("hi");
user.setRole(UserService.UNAUTHORIZED);
user.setImgPath("./hi.jpg");
userService.addUser(user);
}
/**
* 测试通过
*/
@Test
public void getUserHereisId() {
User user = userService.getUserHereisId("haha");
System.out.println(user.getHereisId() + user.getImgPath() + user.getRole());
}
/**
* 测试通过
*/
@Test
public void setUserAuthority() {
userService.setUserAuthority("haha");
User user = userService.getUserHereisId("haha");
System.out.println(user.getHereisId() + user.getImgPath() + user.getRole());
}
/**
* 测试通过
*/
@Test
public void cancelUserAuthority() {
userService.cancelUserAuthority("haha");
User user = userService.getUserHereisId("haha");
System.out.println(user.getHereisId() + user.getImgPath() + user.getRole());
}
/**
* 测试通过
*/
@Test
public void updateUser() {
User user = new User();
user.setHereisId("haha");
user.setImgPath("./haha2.jpg");
userService.updateUser(user);
user = userService.getUserHereisId("haha");
System.out.println(user.getHereisId() + user.getImgPath() + user.getRole());
}
} | [
"LazyZhou1997@gmail.com"
] | LazyZhou1997@gmail.com |
0a9687f2720b1df39ed9b3b9ad2e635b24247928 | ab7791b3c8fa45ef6379f49fe142145b021f70e0 | /app/src/main/java/com/moringaschool/allrecipe/models/FOLFD.java | f18df2a6f5a4ee1a78157396841ab5de16686b29 | [
"MIT"
] | permissive | MUTHAKABRIAN/AllRecipe | 6ef7fa93749bc1901d5a84a3c3eef79b32fc41d4 | 322717e1a64e21f605b609fc343ae4b03e78c2c0 | refs/heads/master | 2023-04-16T09:17:43.519992 | 2021-04-11T22:05:34 | 2021-04-11T22:05:34 | 349,459,318 | 0 | 0 | null | 2021-04-07T15:21:36 | 2021-03-19T14:54:25 | Java | UTF-8 | Java | false | false | 1,193 | java |
package com.moringaschool.allrecipe.models;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import org.parceler.Parcel;
@Parcel
public class FOLFD {
@SerializedName("label")
@Expose
private String label;
@SerializedName("quantity")
@Expose
private Double quantity;
@SerializedName("unit")
@Expose
private String unit;
/**
* No args constructor for use in serialization
*
*/
public FOLFD() {
}
/**
*
* @param unit
* @param quantity
* @param label
*/
public FOLFD(String label, Double quantity, String unit) {
super();
this.label = label;
this.quantity = quantity;
this.unit = unit;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public Double getQuantity() {
return quantity;
}
public void setQuantity(Double quantity) {
this.quantity = quantity;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
}
| [
"muthakabrian@gmail.com"
] | muthakabrian@gmail.com |
f4436d6118bdd6f2ddec7a476de8ce69a5182960 | d14cb151675514704d41e49f7828409d92f783ea | /loc-autoconfigure/src/main/java/com/loc/framework/autoconfigure/keycloak/LocKeycloakAutoConfiguration.java | 150b0b6c96650f9229cd54332f5e19be74fa09c5 | [
"MIT"
] | permissive | chenbaochao/loc-framework | 42f5d152085a1e6b4b7e5b3e811b9e2fe029f879 | 7fe86bfd29bc6261cdf4134ec161894f7b4000ef | refs/heads/master | 2021-05-09T06:11:45.408259 | 2018-01-28T11:27:47 | 2018-01-28T11:27:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,435 | java | package com.loc.framework.autoconfigure.keycloak;
import com.loc.framework.autoconfigure.ConditionalOnPrefixProperty;
import java.util.Collection;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import lombok.extern.slf4j.Slf4j;
import org.keycloak.adapters.springsecurity.KeycloakConfiguration;
import org.keycloak.adapters.springsecurity.client.KeycloakClientRequestFactory;
import org.keycloak.adapters.springsecurity.client.KeycloakRestTemplate;
import org.keycloak.adapters.springsecurity.config.KeycloakWebSecurityConfigurerAdapter;
import org.keycloak.representations.adapters.config.BaseRealmConfig;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.security.access.ConfigAttribute;
import org.springframework.security.access.method.MethodSecurityMetadataSource;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.http.SessionCreationPolicy;
import org.springframework.security.web.authentication.logout.LogoutFilter;
import org.springframework.security.web.authentication.preauth.x509.X509AuthenticationFilter;
import org.springframework.security.web.authentication.session.NullAuthenticatedSessionStrategy;
import org.springframework.security.web.authentication.session.SessionAuthenticationStrategy;
import org.springframework.util.CollectionUtils;
import org.springframework.web.cors.CorsUtils;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.mvc.method.RequestMappingInfo;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
/**
* Created on 2018/1/27.
*/
@ConditionalOnWebApplication
@ConditionalOnPrefixProperty(prefix = "loc", value = BaseRealmConfig.class)
@ConditionalOnProperty(value = "loc.keycloak.enabled", matchIfMissing = true)
@ConditionalOnClass({KeycloakWebSecurityConfigurerAdapter.class, BaseRealmConfig.class})
@KeycloakConfiguration
@EnableGlobalMethodSecurity(prePostEnabled = true)
@Slf4j
public class LocKeycloakAutoConfiguration extends KeycloakWebSecurityConfigurerAdapter {
private final KeycloakClientRequestFactory keycloakClientRequestFactory;
private final MethodSecurityMetadataSource methodSecurityMetadataSource;
private final RequestMappingHandlerMapping requestMappingHandlerMapping;
public LocKeycloakAutoConfiguration(
KeycloakClientRequestFactory keycloakClientRequestFactory,
MethodSecurityMetadataSource methodSecurityMetadataSource,
RequestMappingHandlerMapping requestMappingHandlerMapping) {
this.keycloakClientRequestFactory = keycloakClientRequestFactory;
this.methodSecurityMetadataSource = methodSecurityMetadataSource;
this.requestMappingHandlerMapping = requestMappingHandlerMapping;
}
@ConditionalOnClass(WebMvcConfigurer.class)
@Import(LocKeycloakMvcConfiguration.class)
@Configuration
public static class LocKeycloakWvcConfiguration {
}
@Bean(name = "keycloakRestTemplate")
public KeycloakRestTemplate keycloakRestTemplate() {
return new KeycloakRestTemplate(keycloakClientRequestFactory);
}
@Bean
@Override
protected SessionAuthenticationStrategy sessionAuthenticationStrategy() {
return new NullAuthenticatedSessionStrategy();
}
@Override
protected void configure(final AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(keycloakAuthenticationProvider());
}
@Override
protected void configure(final HttpSecurity http) throws Exception {
http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS)
.sessionAuthenticationStrategy(sessionAuthenticationStrategy()).and()
.addFilterBefore(keycloakPreAuthActionsFilter(), LogoutFilter.class)
.addFilterBefore(keycloakAuthenticationProcessingFilter(), X509AuthenticationFilter.class)
.exceptionHandling().authenticationEntryPoint(authenticationEntryPoint()).and()
.authorizeRequests()
.requestMatchers(CorsUtils::isCorsRequest).permitAll()
.antMatchers(urlPath()).authenticated() //允许被登录用户访问
.anyRequest().permitAll();
}
private String[] urlPath() {
Set<String> antMatcherSet = new HashSet<>();
Map<RequestMappingInfo, HandlerMethod> map = this.requestMappingHandlerMapping
.getHandlerMethods();
map.forEach((requestMappingInfo, handlerMethod) -> {
Collection<ConfigAttribute> collection = methodSecurityMetadataSource
.getAttributes(handlerMethod.getMethod(), handlerMethod.getBeanType());
if (!CollectionUtils.isEmpty(collection)) {
antMatcherSet.addAll(requestMappingInfo.getPatternsCondition().getPatterns());
}
});
return antMatcherSet.toArray(new String[]{});
}
}
| [
"noreply@github.com"
] | noreply@github.com |
2a442bc0c2ab60a4b0928917926430c3c0ebee4a | 7027e747d75a17e733b7beb4c6a2cd169e0f186c | /src/main/java/com/example/waqas/testq/DbOpenHelper.java | 004c0119159dbc6c0d3d6f366a708aa3ca287cec | [] | no_license | Waqas007/Gridview-with-Actionbar-and-Drawer-layout | 89ba1e1855943689d6babc0568304065a60a9e62 | b92ae168addc421e75520c655692db3d395e3dc9 | refs/heads/master | 2021-04-24T17:37:11.858104 | 2015-08-08T12:59:47 | 2015-08-08T12:59:47 | 40,402,711 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,093 | java | package com.example.waqas.testq;
/**
* Created by Waqas on 6/21/2015.
*/
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.jar.Attributes;
import Fragments.DetailedFragment;
import Fragments.GridviewFragment;
/**
* Created by Waqas on 6/11/2015.
*/
public class DbOpenHelper extends SQLiteOpenHelper {
public static final String TABLE_NAME_MOVIES = "Movies";
public static final String TABLE_NAME_QUOTES = "Quotes";
private static final String TAG = "SqLite open helper";
public Context mcontext;
private static SQLiteDatabase msqlDatabase;
TextView textView;
DbOpenHelper db;
public DbOpenHelper(Context context) {
super(context, Constants.DB_NAME, null, Constants.DB_VERSION);
this.mcontext =context;
}
public void createDatabase(){
boolean dbExists = isDbExists();
if(dbExists){
//do nothing
Log.i(TAG, "Database exists");
}else{
Log.i(TAG, "Database donot exists");
this.getWritableDatabase();
copyDatabase();
}
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
}
public void openDatabase(){
String path = Constants.DB_PATH+Constants.DB_NAME;
try{
msqlDatabase = SQLiteDatabase.openDatabase(path, null, SQLiteDatabase.OPEN_READWRITE);
Log.e(TAG, "database Opened");
}
catch(Exception e){
e.printStackTrace();
Log.e(TAG, "Could not open databse");
}
}
public void closeDatabase(){
msqlDatabase.close();
}
//check if database exists
private boolean isDbExists(){
File dbFile = new File(Constants.DB_PATH + Constants.DB_NAME);
return dbFile.exists();
}
//copy database file to application database location
public void copyDatabase(){
try {
InputStream inputstream = mcontext.getAssets().open(Constants.DB_NAME);
OutputStream outputStream = new FileOutputStream(Constants.DB_PATH+Constants.DB_NAME);
int length;
byte[] buffer = new byte[1024];
while((length = inputstream.read(buffer)) > 0){
outputStream.write(buffer,0,length);
Log.i("copydatabase","copydatabase");
}
outputStream.flush();
inputstream.close();
outputStream.close();
Log.i("copydatabase", "copy");
} catch (IOException e) {
e.printStackTrace();
}
}
// Add your public helper methods to access and get content from the database.
// You could return cursors by doing "return myDataBase.query(....)" so it'd be easy
// to you to create adapters for your views.
// Getting All Contacts
public List<Constants> getAllContacts() {
List<Constants> contactList = new ArrayList<Constants>();
// Select All Query
String selectQuery = "SELECT * FROM " + TABLE_NAME_QUOTES;
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.rawQuery(selectQuery, null);
// looping through all rows and adding to list
if (cursor.moveToFirst()) {
do {
Constants contact = new Constants();
contact.setId(Integer.parseInt(cursor.getString(0)));
contact.setMid(Integer.parseInt(cursor.getString(1)));
contact.setQuote(cursor.getString(2));
// contact.setImg(cursor.getString(2));
//contact.setId(Integer.parseInt(cursor.getString(3)));
// Adding contact to list
contactList.add(contact);
} while (cursor.moveToNext());
}
// return contact list
return contactList;
}
// Getting single contact
public Constants getContact(int id) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(Constants.TABLE_NAME_MOVIES, new String[]{Constants.COLUMN_ID,
Constants.COLUMN_MOVIE, Constants.COLUMN_YEAR, Constants.COLUMN_IMG_REF}, Constants.COLUMN_ID + "=?",
new String[]{String.valueOf(id)}, null, null, null, null);
if (cursor != null)
cursor.moveToFirst();
Constants contact = new Constants(Integer.parseInt(cursor.getString(0)),
cursor.getString(1), cursor.getString(2),cursor.getString(3));
// return contact
return contact;
}
public Constants readSingleRecord(int Id) {
Constants objectConstant = null;
String sql = "SELECT * FROM Movies where id="+1;
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.rawQuery(sql, null);
if (cursor.moveToFirst()) {
int id = Integer.parseInt(cursor.getString(cursor.getColumnIndex("id")));
String name = cursor.getString(cursor.getColumnIndex("Name"));
String year = cursor.getString(cursor.getColumnIndex("Year"));
String img = cursor.getString(cursor.getColumnIndex("Img_Ref"));
objectConstant = new Constants();
objectConstant.id = id;
objectConstant.movie = name;
objectConstant.year = year;
objectConstant.img = img;
}
cursor.close();
db.close();
return objectConstant;
}
}
| [
"waqas2038@gmail.com"
] | waqas2038@gmail.com |
8738850365201f53ac92f485883079ff094f8143 | beed0e9b6e8fa6e90189e4e775aed235685e0bec | /day1/ar1.java | 7d024f6cf53d75ce4442648a926782b9ce062deb | [] | no_license | Naveen555-PV/java | 2df283f4304e3cbe217f404b8d626d2b7300c975 | 96580a4ae78b83f028a4cf7d5c006b0815d48bcf | refs/heads/master | 2023-08-14T17:53:06.383406 | 2021-09-27T05:49:12 | 2021-09-27T05:49:12 | 408,796,453 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 149 | java | class ar1
{
public static void main(String[] args)
{
int base = 30;
int height = 20;
int area = (base*height)/2;
system.out.println(area)
}
} | [
"pendyalanaveen554@gmail.com"
] | pendyalanaveen554@gmail.com |
c6084fcee7aba20d045b216143fb114bc61ea6dd | 9a4447797c3e844007cb8a10d3753a4b81334dcd | /bunnet-server/main/java/com/ms/bunnet/config/WebSocketConfig.java | f4994ec00066bb724e8de07442a1841314ce38bc | [
"CC-BY-3.0",
"Apache-2.0"
] | permissive | william-taylor-projects/Bunnet | d08816eed432d0e52a8784eaecbcb0b001c55694 | 03b8707731bb235c69c9592b88f46de0122c356d | refs/heads/master | 2020-04-04T15:11:46.515972 | 2019-01-06T20:56:23 | 2019-01-06T20:56:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 974 | java | package com.ms.bunnet.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.messaging.simp.config.MessageBrokerRegistry;
import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker;
import org.springframework.web.socket.config.annotation.StompEndpointRegistry;
import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer;
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
@Override
public void configureMessageBroker(MessageBrokerRegistry registry) {
registry.setApplicationDestinationPrefixes("/request");
registry.enableSimpleBroker("/response");
}
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("/socket")
.setAllowedOrigins("http://localhost:4200")
.withSockJS();
}
}
| [
"william.taylor.1707@gmail.com"
] | william.taylor.1707@gmail.com |
1491887f194f0e0496222bad00fd4434e7d155dc | db19adbea7ddf4ea206bc9d1cff40cb9ef590bc6 | /src/main/java/sk/kracina1/db2/application/ui/EditProfileMenu.java | 244aec03e1011092791d7f65dd4ea6a384dc046b | [] | no_license | Kraci/AukcnaSien | 5d64179a1adfd56e7e9fef89774e8a574b307aff | 4543eb318d57875c8a305a9fd5c14427e3d08799 | refs/heads/master | 2022-10-01T22:21:34.811825 | 2019-06-04T17:01:23 | 2019-06-04T17:01:23 | 172,747,953 | 1 | 0 | null | 2022-09-22T18:38:48 | 2019-02-26T16:26:56 | Java | UTF-8 | Java | false | false | 4,173 | java | package sk.kracina1.db2.application.ui;
import sk.kracina1.db2.application.rdg.User;
import sk.kracina1.db2.application.validation.*;
import sk.kracina1.db2.application.validation.Registration.*;
import java.sql.SQLException;
import java.util.Arrays;
public class EditProfileMenu extends Menu {
private User editedUser;
@Override
public void print() {
System.out.println("***********************************");
System.out.println("* 1. Edit username *");
System.out.println("* 2. Edit mail *");
System.out.println("* 3. Edit password *");
System.out.println("* 4. Edit first name *");
System.out.println("* 5. Edit surname *");
System.out.println("* 6. Edit age *");
System.out.println("* 7. Edit money *");
System.out.println("* 8. Done editing *");
System.out.println("***********************************");
}
@Override
public void handle(String option) {
try {
switch (option) {
case "1": editUsername(); break;
case "2": editMail(); break;
case "3": editPassword(); break;
case "4": editFirstName(); break;
case "5": editSurname(); break;
case "6": editAge(); break;
case "7": editMoney(); break;
case "8": doneEditing(); break;
default: System.out.println("Unknown option"); break;
}
} catch (Exception e) {
throw new RuntimeException(e);
}
}
public void setEditedUser(User user) {
editedUser = user;
}
private void editUsername() throws SQLException {
String username = Validation.getInstance().validate("Username: ", Arrays.asList(
new Required(),
new UsernameAvailable()
));
editedUser.setUsername(username);
editedUser.update();
}
private void editMail() throws SQLException {
String mail = Validation.getInstance().validate("Mail: ", Arrays.asList(
new Required(),
new MailAvailable(),
new IsValidMail()
));
editedUser.setMail(mail);
editedUser.update();
}
private void editPassword() throws SQLException {
String password = Validation.getInstance().validate("Password: ", Arrays.asList(
new Required(),
new StringHasMinimumLength(6),
new PasswordContainsNumber(),
new PasswordContainsUppercaseLetter()
));
editedUser.setPassword(password);
editedUser.update();
}
private void editFirstName() throws SQLException {
String firstName = Validation.getInstance().validate("First Name: ", Arrays.asList(
new StringHasFirstLetterUppercase(),
new StringWithoutNumber()
));
editedUser.setPassword(firstName);
editedUser.update();
}
private void editSurname() throws SQLException {
String surname = Validation.getInstance().validate("Surname: ", Arrays.asList(
new StringHasFirstLetterUppercase(),
new StringWithoutNumber()
));
editedUser.setSurname(surname);
editedUser.update();
}
private void editAge() throws SQLException {
String age = Validation.getInstance().validate("Age: ", Arrays.asList(
new Required(),
new IsInteger(),
new IsAdult()
));
editedUser.setAge(Integer.parseInt(age));
editedUser.update();
}
private void editMoney() throws SQLException {
String money = Validation.getInstance().validate("Money: ", Arrays.asList(
new IsDouble(),
new IsPositiveDouble()
));
editedUser.setMoney(Double.parseDouble(money));
editedUser.update();
}
private void doneEditing() {
exit();
}
}
| [
"kracina.jakub@gmail.com"
] | kracina.jakub@gmail.com |
806bdc7bc82c54142dacf380cb864b206b9ad437 | b03c18e31efa93e06cc6bdc79e91d02022f32755 | /test/org/ourgrid/portal/test/client/common/JobSeleniumTest.java | 717eb530f4c19a02d1bcdb27791bf464a029f633 | [] | no_license | OurGrid/portal | 1f63f81e8aab1572eca0e683daccd7988454cb20 | f306296cded8bbff7707ed106ac2c0f954c9153f | refs/heads/master | 2020-06-04T20:24:29.032118 | 2013-09-19T19:02:10 | 2013-09-19T19:02:10 | 12,737,811 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,974 | java | package org.ourgrid.portal.test.client.common;
import java.io.File;
import java.io.IOException;
import org.ourgrid.portal.test.client.ConnectSelenium;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.SeleneseTestCase;
public class JobSeleniumTest extends SeleneseTestCase{
private DefaultSelenium selenium;
private String ADMIN_LOGIN = "gustavo";
private String ADMIN_PASSWORD = "gus";
public void setUp() throws Exception {
ConnectSelenium conn = new ConnectSelenium();
selenium = conn.createSeleniumClient("http://127.0.0.1:8888/");
}
public void testShowSubmitJobOnStartMenu() {
selenium.start();
selenium.open("/OurgridPortal.html");
selenium.type("loginIdLogin-input", ADMIN_LOGIN);
selenium.type("passwordIdLogin-input", ADMIN_PASSWORD);
selenium.click("submitButtonIdLogin");
selenium.click("ux-startbutton");
verifyTrue(selenium.isTextPresent("Submit OurGrid Job"));
selenium.click("submitJobItem");
jobTextSelenium();
selenium.close();
}
public void testSubmitJobSucess() throws InterruptedException, IOException {
selenium.start();
selenium.open("/OurgridPortal.html");
selenium.type("loginIdLogin-input", ADMIN_LOGIN);
selenium.type("passwordIdLogin-input", ADMIN_PASSWORD);
selenium.click("submitButtonIdLogin");
selenium.click("ux-startbutton");
selenium.click("submitJobItem");
File file = new File ("./src/org/ourgrid/portal/test/client/testsFiles/test.zip");
String path = file.getCanonicalPath();
selenium.type("//input[@type='file']", path.replaceAll("/", "\\"));
Thread.sleep(1000);
selenium.click("//input[@name='jobName']/following-sibling::img");
selenium.mouseOver("//div[text()='echo.jdf' and not(ancestor::*[contains(@style,'display: none') or contains(@style, 'visibility: hidden') or contains(@class,'x-hide-display')])]");
selenium.mouseDownRight("//div[text()='echo.jdf' and not(ancestor::*[contains(@style,'display: none') or contains(@style, 'visibility: hidden') or contains(@class,'x-hide-display')])]");
Thread.sleep(1000);
selenium.click("//button[text()='Submit']");
Thread.sleep(1000);
selenium.click("//span[text()='Job 1']");
verifyTrue(selenium.isTextPresent("Cancel Job"));
verifyTrue(selenium.isTextPresent("Job 1"));
verifyTrue(selenium.isTextPresent("UNSTARTED"));
verifyFalse(selenium.isTextPresent("REQUIREMENTS:"));
selenium.click("//span[text()='Job 1 : EchoJob [ UNSTARTED ]']");
Thread.sleep(1000);
verifyTrue(selenium.isTextPresent("REQUIREMENTS:"));
selenium.click("//button[text()='Cancel Job']");
waitForTest("Job was cancelled successfully.");
verifyTrue(selenium.isTextPresent("Job was cancelled successfully."));
verifyTrue(selenium.isTextPresent("Ok"));
selenium.close();
}
public void testSubmitJobFail() throws InterruptedException, IOException {
selenium.start();
selenium.open("/OurgridPortal.html");
selenium.type("loginIdLogin-input", ADMIN_LOGIN);
selenium.type("passwordIdLogin-input", ADMIN_PASSWORD);
selenium.click("submitButtonIdLogin");
selenium.click("ux-startbutton");
selenium.click("submitJobItem");
File file = new File ("./src/org/ourgrid/portal/test/client/testsFiles/testError.zip");
String path = file.getCanonicalPath();
selenium.type("//input[@type='file']", path.replaceAll("/", "\\"));
waitForTest("JDF file doesn't found");
verifyTrue(selenium.isTextPresent("JDF file doesn't found"));
verifyTrue(selenium.isTextPresent("Ok"));
selenium.close();
}
private void jobTextSelenium() {
verifyTrue(selenium.isTextPresent("Submit"));
verifyTrue(selenium.isTextPresent("Email notification"));
}
private void waitForTest(String txt) throws InterruptedException{
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try { if (selenium.isTextPresent(txt)) break; } catch (Exception e) {}
Thread.sleep(1000);
}
}
}
| [
"abmargb@gmail.com"
] | abmargb@gmail.com |
63f630ebc6256e17b202f429dfa5e473b9850af6 | 8e6e83df195395b21397b0f953d2c6c31145710e | /BasicPlayer/app/src/main/java/com/playground/basicplayer/MainActivity.java | 6506acde2aaf0a0b4c73b62650685bb3441488ac | [] | no_license | hament9193/basic_android | 5e7f55aa0a97a80e97352ed8e12c2fa971dcd141 | 89fec430b2e2676414e40b7a200bc3789e4060a2 | refs/heads/master | 2021-08-27T22:12:06.976040 | 2017-12-10T13:57:27 | 2017-12-10T13:57:27 | 112,567,701 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 7,686 | java | package com.playground.basicplayer;
import android.Manifest;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.content.pm.PackageManager;
import android.os.Build;
import android.os.IBinder;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import android.net.Uri;
import android.content.ContentResolver;
import android.database.Cursor;
import android.view.MenuItem;
import android.view.View;
import android.widget.ListView;
import android.widget.MediaController;
import com.playground.basicplayer.models.Song;
public class MainActivity extends AppCompatActivity implements MediaController.MediaPlayerControl {
private ArrayList<Song> songList;
private ListView songView;
private MusicService musicSrv;
private Intent playIntent;
private boolean musicBound=false;
private MusicController controller;
private boolean paused=false, playbackPaused=false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (checkSelfPermission(Manifest.permission.READ_EXTERNAL_STORAGE)
!= PackageManager.PERMISSION_GRANTED) {
requestPermissions(new String[]{Manifest.permission.READ_EXTERNAL_STORAGE,
Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.WAKE_LOCK},1);
return;
}}
songView = (ListView)findViewById(R.id.song_list);
songList = new ArrayList<Song>();
getSongList();
Collections.sort(songList, new Comparator<Song>(){
public int compare(Song a, Song b){
return a.getTitle().compareTo(b.getTitle());
}
});
SongAdapter songAdt = new SongAdapter(this, songList);
songView.setAdapter(songAdt);
setController();
}
@Override
protected void onPause(){
super.onPause();
paused=true;
}
@Override
protected void onResume(){
super.onResume();
if(paused){
setController();
paused=false;
}
}
public void songPicked(View view){
musicSrv.setSong(Integer.parseInt(view.getTag().toString()));
musicSrv.playSong();
if(playbackPaused){
setController();
playbackPaused=false;
}
controller.show(0);
}
private void setController(){
controller = new MusicController(this);
controller.setPrevNextListeners(new View.OnClickListener() {
@Override
public void onClick(View v) {
playNext();
}
}, new View.OnClickListener() {
@Override
public void onClick(View v) {
playPrev();
}
});
controller.setMediaPlayer(this);
controller.setAnchorView(findViewById(R.id.song_list));
controller.setEnabled(true);
}
private void playNext(){
musicSrv.playNext();
if(playbackPaused){
setController();
playbackPaused=false;
}
controller.show(0);
}
private void playPrev(){
musicSrv.playPrev();
if(playbackPaused){
setController();
playbackPaused=false;
}
controller.show(0);
}
//connect to the service
private ServiceConnection musicConnection = new ServiceConnection(){
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
MusicService.MusicBinder binder = (MusicService.MusicBinder)service;
//get service
musicSrv = binder.getService();
//pass list
musicSrv.setList(songList);
musicBound = true;
}
@Override
public void onServiceDisconnected(ComponentName name) {
musicBound = false;
}
};
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_shuffle:
musicSrv.setShuffle();
break;
case R.id.action_end:
stopService(playIntent);
musicSrv=null;
System.exit(0);
break;
}
return super.onOptionsItemSelected(item);
}
@Override
protected void onStart() {
super.onStart();
if(playIntent==null){
playIntent = new Intent(this, MusicService.class);
bindService(playIntent, musicConnection, Context.BIND_AUTO_CREATE);
startService(playIntent);
}
}
@Override
protected void onStop() {
controller.hide();
super.onStop();
}
@Override
protected void onDestroy() {
stopService(playIntent);
musicSrv=null;
super.onDestroy();
}
public void getSongList() {
ContentResolver musicResolver = getContentResolver();
Uri musicUri = android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
Cursor musicCursor = musicResolver.query(musicUri, null, null, null, null);
if(musicCursor!=null && musicCursor.moveToFirst()){
//get columns
int titleColumn = musicCursor.getColumnIndex
(android.provider.MediaStore.Audio.Media.TITLE);
int idColumn = musicCursor.getColumnIndex
(android.provider.MediaStore.Audio.Media._ID);
int artistColumn = musicCursor.getColumnIndex
(android.provider.MediaStore.Audio.Media.ARTIST);
//add songs to list
do {
long thisId = musicCursor.getLong(idColumn);
String thisTitle = musicCursor.getString(titleColumn);
String thisArtist = musicCursor.getString(artistColumn);
songList.add(new Song(thisId, thisTitle, thisArtist));
}
while (musicCursor.moveToNext());
}
}
@Override
public void start() {
musicSrv.go();
}
@Override
public void pause() {
playbackPaused=true;
musicSrv.pausePlayer();
}
@Override
public int getDuration() {
if(musicSrv!=null && musicBound && musicSrv.isPng())
return musicSrv.getDur();
else
return 0;
}
@Override
public int getCurrentPosition() {
if(musicSrv!=null && musicBound && musicSrv.isPng())
return musicSrv.getPosn();
else
return 0;
}
@Override
public void seekTo(int pos) {
musicSrv.seek(pos);
}
@Override
public boolean isPlaying() {
if(musicSrv!=null && musicBound)
return musicSrv.isPng();
return false;
}
@Override
public int getBufferPercentage() {
return 0;
}
@Override
public boolean canPause() {
return true;
}
@Override
public boolean canSeekBackward() {
return true;
}
@Override
public boolean canSeekForward() {
return true;
}
@Override
public int getAudioSessionId() {
return 0;
}
public class MusicController extends MediaController {
public MusicController(Context c){
super(c);
}
public void hide(){}
}
}
| [
"hament9193@gmail.com"
] | hament9193@gmail.com |
77aeff1c16fccdfd191cafb259a64763092b0d85 | 0ad51dde288a43c8c2216de5aedcd228e93590ac | /src/com/vmware/converter/VirtualPCIPassthroughPluginBackingOption.java | 6b14b4fcbda4e6b040529a2d3f46e55a2d44542c | [] | no_license | YujiEda/converter-sdk-java | 61c37b2642f3a9305f2d3d5851c788b1f3c2a65f | bcd6e09d019d38b168a9daa1471c8e966222753d | refs/heads/master | 2020-04-03T09:33:38.339152 | 2019-02-11T15:19:04 | 2019-02-11T15:19:04 | 155,151,917 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,768 | java | /**
* VirtualPCIPassthroughPluginBackingOption.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.vmware.converter;
public class VirtualPCIPassthroughPluginBackingOption extends com.vmware.converter.VirtualDeviceBackingOption implements java.io.Serializable {
public VirtualPCIPassthroughPluginBackingOption() {
}
public VirtualPCIPassthroughPluginBackingOption(
java.lang.String type) {
super(
type);
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof VirtualPCIPassthroughPluginBackingOption)) return false;
VirtualPCIPassthroughPluginBackingOption other = (VirtualPCIPassthroughPluginBackingOption) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj);
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = super.hashCode();
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(VirtualPCIPassthroughPluginBackingOption.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("urn:vim25", "VirtualPCIPassthroughPluginBackingOption"));
}
/**
* Return type metadata object
*/
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}
/**
* Get Custom Serializer
*/
public static org.apache.axis.encoding.Serializer getSerializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
}
/**
* Get Custom Deserializer
*/
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}
}
| [
"yuji_eda@dwango.co.jp"
] | yuji_eda@dwango.co.jp |
55eeddd104c3d3fe8e1381193735dd6dc8379776 | cd19aca66823fe7d343fd24980777d52bf8f5784 | /src/main/java/com/adarsh/interview/tree/BSTDeletion.java | 9269bb8dc5b8e326c2ee62086f147f7e69a1e13f | [] | no_license | adarshshankar/Interview_Codes_Prep | 9dbd3e27dedc5c5805c1f5421d1a60dca4591718 | ca6d2c88cbf23cc16d76fbc481518f7c38a08171 | refs/heads/master | 2021-07-11T05:49:34.803508 | 2019-09-30T17:33:19 | 2019-09-30T17:33:19 | 211,916,594 | 0 | 0 | null | 2020-10-13T16:24:46 | 2019-09-30T17:31:48 | Java | UTF-8 | Java | false | false | 1,359 | java | package com.adarsh.interview.tree;
public class BSTDeletion {
static BSTNode crr;
static BSTNode current;
public static void main(String[] args) {
BSTNode root = BSTDefaultTree.getDefaultTree();
preOrder(root);
System.out.println("=============================================");
BSTNode delete = delete(root, 40);
System.out.println("Deleted Node ::" + delete.data);
System.out.println("manishjavadev.com – Binary Tree Inorder Traversal");
preOrder(root);
}
public static void preOrder(BSTNode root) {
if (root != null) {
System.out.print(root.data + "\t");
preOrder(root.left);
preOrder(root.right);
}
}
private static BSTNode delete(BSTNode root, int data) {
crr = root;
BSTNode prev = null;
while (crr != null) {
if (crr.data == data) {
break;
}
prev = crr;
if (crr.data > data) {
crr = crr.left;
} else {
crr = crr.right;
}
}
// Delete node has 2 child
if (crr.left != null && crr.right != null) {
BSTNode y = crr.left;
prev = crr;
while (y.right != null) {
prev = y;
y = y.right;
}
crr.data = y.data;
crr = y;
}
// Delete leaf or 1 child
BSTNode tmp = crr.left != null ? crr.left : crr.right;
if (prev == null) {
return tmp;
}
if (prev.right == crr) {
prev.right = tmp;
} else {
prev.left = tmp;
}
return root;
}
}
| [
"sahaiadarsh@gmail.com"
] | sahaiadarsh@gmail.com |
05c0c3f11d91a7c69d428c36dc9f6271baf0b847 | b5d59ee3f9e951a3aff7da93a655a2139d4af08e | /spork-android-support/src/androidTest/java/spork/android/support/test/bindview/ViewProvider.java | de3da65da317a92198d9b2ef9d4706816bdbb63d | [
"Apache-2.0"
] | permissive | dandycheung/Spork | 8b3d645b926a3250542cc2dbcdb882d04801a688 | e930b03a9aecf4b6b0d7c0f38e1bb33b93281b93 | refs/heads/master | 2021-11-28T00:44:39.905658 | 2020-09-24T21:12:05 | 2020-09-24T21:12:05 | 239,055,520 | 0 | 0 | Apache-2.0 | 2021-11-25T07:17:47 | 2020-02-08T02:09:47 | null | UTF-8 | Java | false | false | 163 | java | package spork.android.support.test.bindview;
import android.view.View;
public interface ViewProvider
{
View getViewByIdSpecified();
View getViewByImplied();
}
| [
"git@kenvanhoeylandt.net"
] | git@kenvanhoeylandt.net |
032ac70bc60542d934bc3c6fecb0e13a03d626b8 | b25f32111f65bab6b161324dc7ce8acfef363ae9 | /src/main/java/br/edu/usj/ads/pw/crudgameplusbackend/CrudGameplusBackEndApplication.java | 691cb0c9f49cd8142591f8939e2a40027470c855 | [] | no_license | LucianoGalvao/crud-gameplus-back-end | 9bda7f899de3393428f69597bf32c7dadb65440a | 18b8200a92da030519f7647ee482f3707c882693 | refs/heads/main | 2023-05-31T04:03:19.536954 | 2021-06-30T03:35:02 | 2021-06-30T03:35:02 | 381,565,607 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 356 | java | package br.edu.usj.ads.pw.crudgameplusbackend;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CrudGameplusBackEndApplication {
public static void main(String[] args) {
SpringApplication.run(CrudGameplusBackEndApplication.class, args);
}
}
| [
"luciano_sdmf@hotmail.com"
] | luciano_sdmf@hotmail.com |
2deec0a4d32887b031626a9d0d758cbdac7bf1ac | 0f1f7332b8b06d3c9f61870eb2caed00aa529aaa | /ebean/branches/1.1-maven/ebean-api/src/main/java/org/avaje/ebean/server/deploy/parse/DeployUtil.java | 0555580f8dd2b4547b0485bf385805e63e7a287c | [] | no_license | rbygrave/sourceforge-ebean | 7e52e3ef439ed64eaf5ce48e0311e2625f7ee5ed | 694274581a188be664614135baa3e4697d52d6fb | refs/heads/master | 2020-06-19T10:29:37.011676 | 2019-12-17T22:09:29 | 2019-12-17T22:09:29 | 196,677,514 | 1 | 0 | null | 2019-12-17T22:07:13 | 2019-07-13T04:21:16 | Java | UTF-8 | Java | false | false | 11,673 | java | /**
* Copyright (C) 2006 Robin Bygrave
*
* This file is part of Ebean.
*
* Ebean 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.1 of the License, or
* (at your option) any later version.
*
* Ebean 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 Ebean; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.avaje.ebean.server.deploy.parse;
import java.lang.annotation.Annotation;
import java.sql.Types;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.PersistenceException;
import org.avaje.ebean.annotation.SqlSelect;
import org.avaje.ebean.server.deploy.BeanTable;
import org.avaje.ebean.server.deploy.DeploySqlSelect;
import org.avaje.ebean.server.deploy.DeploySqlSelectParser;
import org.avaje.ebean.server.deploy.DeploymentManager;
import org.avaje.ebean.server.deploy.DeploySqlSelectParser.Meta;
import org.avaje.ebean.server.deploy.generatedproperty.GeneratedPropertySettings;
import org.avaje.ebean.server.deploy.meta.DeployBeanDescriptor;
import org.avaje.ebean.server.deploy.meta.DeployBeanProperty;
import org.avaje.ebean.server.deploy.meta.DeployBeanPropertyAssocOne;
import org.avaje.ebean.server.lib.sql.DictionaryInfo;
import org.avaje.ebean.server.naming.NamingConvention;
import org.avaje.ebean.server.plugin.PluginDbConfig;
import org.avaje.ebean.server.type.ScalarType;
import org.avaje.ebean.server.type.ScalarTypeEnum;
import org.avaje.ebean.server.type.TypeManager;
import org.avaje.ebean.server.validate.Validator;
import org.avaje.ebean.server.validate.ValidatorFactoryManager;
import org.avaje.lib.log.LogFactory;
/**
* Utility object to help processing deployment information.
*/
public class DeployUtil {
private static final Logger logger = LogFactory.get(DeployUtil.class);
/**
* Use a BackTick ` at the beginning and end of table or column names that
* you want to use quoted identifiers for. The backticks get converted to
* the appropriate characters from the ServerPlugin.
*/
private static final char BACK_TICK = '`';
/**
* Assumes CLOB rather than LONGVARCHAR.
*/
private static final int dbCLOBType = Types.CLOB;
/**
* Assumes BLOB rather than LONGVARBINARY. This should probably be
* configurable.
*/
private static final int dbBLOBType = Types.BLOB;
private final JoinDefineAutomatic dynamicJoins;
private final JoinDefineManual joinDefineManual;
private final NamingConvention namingConvention;
/**
* Used to find special properties such as update timestamp.
*/
private final GeneratedPropertySettings generateSettings;
private final boolean useOneToOneOptional;
private final PluginDbConfig dbConfig;
private final DeploymentManager deploymentManager;
private final TypeManager typeManager;
private final DeploySqlSelectParser sqlSelectParser;
private final ValidatorFactoryManager validatorFactoryManager;
private final CreateProperties createProperties;
private final DictionaryInfo dictionaryInfo;
public DeployUtil(DeploymentManager deploymentManager, PluginDbConfig dbConfig) {
this.deploymentManager = deploymentManager;
this.dbConfig = dbConfig;
this.dictionaryInfo = dbConfig.getDictionaryInfo();
this.typeManager = dbConfig.getTypeManager();
this.namingConvention = dbConfig.getNamingConvention();
this.sqlSelectParser = new DeploySqlSelectParser(dbConfig);
this.createProperties = new CreateProperties(dbConfig);
this.dynamicJoins = new JoinDefineAutomatic(dbConfig);
this.joinDefineManual = new JoinDefineManual(dbConfig);
this.generateSettings = new GeneratedPropertySettings(dbConfig.getProperties());
// by default I ignore the OneToOne and ManyToOne optional value
// This is because I can figure this out, and if left to default
// would result in LEFT OUTER JOINS used when they don't need to be
// change this property to "true" and I will use the annotations as per
// the EJB3 specification
String v = dbConfig.getProperties().getProperty("annotation.onetoone.optional", "ignore");
useOneToOneOptional = v.equalsIgnoreCase("true");
validatorFactoryManager = new ValidatorFactoryManager();
}
/**
* Return the associated DictionaryInfo.
*/
public DictionaryInfo getDictionaryInfo() {
return dictionaryInfo;
}
public void createProperties(DeployBeanDescriptor desc) {
createProperties.createProperties(desc);
}
public void createValidator(DeployBeanProperty prop, Annotation ann) {
try {
Validator validator = validatorFactoryManager.create(ann, prop.getPropertyType());
if (validator != null){
prop.addValidator(validator);
}
} catch (Exception e){
String msg = "Error creating a validator on "+prop.getFullBeanName();
logger.log(Level.SEVERE, msg, e);
}
}
/**
* Parse and return the DeploySqlSelect.
*/
public DeploySqlSelect parseSqlSelect(DeployBeanDescriptor deployDesc, SqlSelect sqlSelect) {
Meta meta = DeploySqlSelectParser.createMeta(deployDesc, sqlSelect);
return sqlSelectParser.parse(deployDesc, meta);
}
public ScalarType setEnumScalarType(Enumerated enumerated, DeployBeanProperty prop) {
Class<?> enumType = prop.getPropertyType();
if (!enumType.isEnum()) {
throw new IllegalArgumentException("Not a Enum?");
}
ScalarType scalarType = typeManager.getScalarType(enumType);
if (scalarType == null) {
// see if it has a Mapping in avaje.properties
scalarType = typeManager.createEnumScalarType(enumType);
if (scalarType == null){
// use JPA normal Enum type (without mapping)
EnumType type = enumerated != null? enumerated.value(): null;
scalarType = createEnumScalarTypePerSpec(enumType, type, prop.getDbType());
}
typeManager.add(scalarType);
}
prop.setScalarType(scalarType);
prop.setDbType(scalarType.getJdbcType());
return scalarType;
}
private ScalarType createEnumScalarTypePerSpec(Class<?> enumType, EnumType type, int dbType) {
if (type == null) {
// default as per spec is ORDINAL
return new ScalarTypeEnum.OrdinalEnum(enumType);
} else if (type == EnumType.ORDINAL) {
return new ScalarTypeEnum.OrdinalEnum(enumType);
} else {
return new ScalarTypeEnum.StringEnum(enumType);
}
}
/**
* Returns the table name for a given Class using the naming convention.
*/
public String getTableNameFromClass(Class<?> beanType) {
return namingConvention.tableNameFromClass(beanType);
}
/**
* Define a join explicitly.
*/
public void define(JoinDefineManualInfo joinInfo) {
joinDefineManual.define(joinInfo);
}
/**
* Define any undefined joins using database meta data.
*/
public void defineJoins(DeployBeanInfo info) {
DeployBeanDescriptor desc = info.getDescriptor();
if (desc.getBaseTable() != null) {
// dynamically define any missing join information using
// foreign key information from the Database
dynamicJoins.process(info);
} else {
// Descriptor based on SqlSelect
}
}
public void defineJoinDynamically(DeployBeanDescriptor desc, DeployBeanPropertyAssocOne propBean)
throws MissingTableException {
dynamicJoins.defineJoinDynamically(desc, propBean);
}
/**
* True if we should use the annotation to set optional relationships.
* <p>
* IMHO this is better set to false and let Ebean determine the if the
* property is optional for you.
* </p>
*/
public boolean isUseOneToOneOptional() {
return useOneToOneOptional;
}
/**
* Return the DB column name for a given property name.
*/
public String getDbColumn(String propName, String dbColumn) {
if (isNullString(dbColumn)) {
dbColumn = namingConvention.toColumn(propName);
}
dbColumn = convertQuotedIdentifiers(dbColumn);
return dbColumn;
}
/**
* Find the ScalarType for this property.
* <p>
* This determines if there is a conversion required from the logical (bean)
* type to a DB (jdbc) type. This is the case for java.util.Date etc.
* </p>
*/
public void setScalarType(DeployBeanProperty property) {
if (property.getScalarType() != null){
// already has a ScalarType assigned.
// this will be an Enum type...
return;
}
ScalarType scalarType = getScalarType(property);
if (scalarType != null){
// set the jdbc type this maps to
property.setDbType(scalarType.getJdbcType());
property.setScalarType(scalarType);
}
}
private ScalarType getScalarType(DeployBeanProperty property) {
// Note that Temporal types already have dbType
// set via annotations
Class<?> propType = property.getPropertyType();
ScalarType scalarType = typeManager.getScalarType(propType, property.getDbType());
if (scalarType != null) {
return scalarType;
}
String msg = property.getFullBeanName()+" has no ScalarType - type[" + propType.getName() + "]";
if (!property.isTransient()){
throw new PersistenceException(msg);
} else {
// this is ok...
logger.finest("... transient property "+msg);
return null;
}
}
/**
* This property is marked as a Lob object.
*/
public void setLobType(DeployBeanProperty prop) {
// is String or byte[] ? used to determine if its
// a CLOB or BLOB
Class<?> type = prop.getPropertyType();
// this also sets the lob flag on DeployBeanProperty
if (isClobType(type)) {
prop.setDbType(dbCLOBType);
} else {
prop.setDbType(dbBLOBType);
}
}
public boolean isClobType(Class<?> type){
if (type.equals(String.class)){
return true;
}
return false;
}
/**
* Will use GeneratedPropertySettings to determine if any GeneratedProperty
* needs to be set on this.
*/
public void setGeneratedProperty(DeployBeanProperty prop) {
generateSettings.setGeneratedProperty(prop);
}
/**
* Get the BeanTable for a given bean class.
*/
public BeanTable getBeanTable(Class<?> propType) {
return deploymentManager.getBeanTable(propType);
}
/**
* Convert backticks to the appropriate open quote and close quote for this
* plugin.
*/
public String convertQuotedIdentifiers(String dbName) {
if (dbName.charAt(0) == BACK_TICK) {
if (dbName.charAt(dbName.length() - 1) == BACK_TICK) {
String quotedName = dbConfig.getOpenQuote();
quotedName += dbName.substring(1, dbName.length() - 1);
quotedName += dbConfig.getCloseQuote();
return quotedName;
} else {
logger.log(Level.SEVERE, "Missing backquote on [" + dbName + "]");
}
}
return dbName;
}
private boolean isNullString(String s) {
if (s == null || s.trim().length() == 0) {
return true;
}
return false;
}
/**
* Get a table alias without any checking with the availability in the
* aliasList.
*/
public String getPotentialAlias(String tableOrProperty) {
int usPos = tableOrProperty.lastIndexOf("_");
if (usPos > -1 && usPos < tableOrProperty.length() - 1) {
tableOrProperty = tableOrProperty.substring(usPos + 1);
}
// search for the first valid letter
for (int i = 0; i < tableOrProperty.length(); i++) {
char ch = Character.toLowerCase(tableOrProperty.charAt(i));
if (Character.isLetter(ch)){
return String.valueOf(ch);
}
}
// not expected really
return "z";
}
}
| [
"pmendelson@391a5f12-5583-4198-a4bc-3c26488f1c65"
] | pmendelson@391a5f12-5583-4198-a4bc-3c26488f1c65 |
612343e8744132811cf174fd9798da0c72827b5f | 9b93a5c12c2307e0bf31b8fc2e23a0649ba5f513 | /ReservationSpectacle/src/main/java/com/balde/entity/Roles.java | c4da8f3f42e5d894411989cd914f0e66f86e1910 | [] | no_license | baldegit/reservation | af30f42eb5ab0e8840cbc0716388086ef42233a9 | cbba3cd3d52237163ce574ba3940d72d7f9db2e0 | refs/heads/master | 2020-03-07T06:16:06.445435 | 2018-10-22T17:38:45 | 2018-10-22T17:38:45 | 127,317,119 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,129 | java | package com.balde.entity;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.*;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@Entity
@Table(name = "roles")
@JsonIgnoreProperties(ignoreUnknown = true)
public class Roles implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy =GenerationType.IDENTITY )
private int id;
@Column(nullable = false, unique = true)
private String role;
@OneToMany(targetEntity = Users.class,
cascade = CascadeType.ALL,
mappedBy = "role")
private List<Users> user = new ArrayList<>();
public Roles() {
super();
// TODO Auto-generated constructor stub
}
public Roles(String role) {
super();
this.role = role;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getRole() {
return role;
}
public void setRole(String role) {
this.role = role;
}
// public List<Users> getUser() {
// return user;
// }
public void setUser(List<Users> user) {
this.user = user;
}
}
| [
"elhibrbalde@gmail.com"
] | elhibrbalde@gmail.com |
cfd000db59b2d1d3c95b9f142872859c2322a555 | fa6e5cbf615cc1c56f3a5cb50f2c817c0fa96d13 | /OutpatientManagementModule/OutpatientManagement.DAL/src/com/lea/dal/domain/entities/HospitalServiceCategory.java | 4131ed0aeb8f0b4ea7fcf195bcb97cf901200c54 | [] | no_license | LeaRezic/JavaExamAssignment | 5cf71b705626e6bd304dd8357e76848f7c587545 | fb2de3e57d1de45fa4fae2391875137fa8fe0f80 | refs/heads/master | 2020-03-21T21:30:51.738011 | 2018-07-19T09:16:43 | 2018-07-19T09:16:43 | 139,067,386 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,324 | java | package com.lea.dal.domain.entities;
// Generated 28.06.2018. 08:51:52 by Hibernate Tools 4.3.1
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
/**
* HospitalServiceCategory generated by hbm2java
*/
@Entity
@Table(name = "HospitalServiceCategory",
schema = "dbo",
catalog = "VirgoHospitals"
)
public class HospitalServiceCategory implements EntityBase, java.io.Serializable {
private int idhospitalServiceCategory;
private String name;
private Set<HospitalService> hospitalServices = new HashSet<HospitalService>(0);
public HospitalServiceCategory() {
}
public HospitalServiceCategory(int idhospitalServiceCategory, String name) {
this.idhospitalServiceCategory = idhospitalServiceCategory;
this.name = name;
}
public HospitalServiceCategory(int idhospitalServiceCategory, String name, Set<HospitalService> hospitalServices) {
this.idhospitalServiceCategory = idhospitalServiceCategory;
this.name = name;
this.hospitalServices = hospitalServices;
}
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "IDHospitalServiceCategory", unique = true, nullable = false)
public int getIdhospitalServiceCategory() {
return this.idhospitalServiceCategory;
}
public void setIdhospitalServiceCategory(int idhospitalServiceCategory) {
this.idhospitalServiceCategory = idhospitalServiceCategory;
}
@Column(name = "Name", nullable = false)
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
@OneToMany(fetch = FetchType.LAZY, mappedBy = "hospitalServiceCategory")
public Set<HospitalService> getHospitalServices() {
return this.hospitalServices;
}
public void setHospitalServices(Set<HospitalService> hospitalServices) {
this.hospitalServices = hospitalServices;
}
@Override
public int fetchEntityId() {
return getIdhospitalServiceCategory();
}
}
| [
"lea.rezic@gmail.com"
] | lea.rezic@gmail.com |
0e67813b3989f3846af9c7e9c712293485a6a143 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/15/15_b3fff3fd54b42feb18ad22d3450001ca773632b1/MethodAPIClassModule/15_b3fff3fd54b42feb18ad22d3450001ca773632b1_MethodAPIClassModule_t.java | e112d9b8a6485569f8ad446329dc0fba93529541 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 10,800 | java | /*
* Copyright (C) 2005-2012 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, 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 XBMC Remote; see the file license. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
package org.xbmc.android.jsonrpc.generator.view.module.classmodule;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.xbmc.android.jsonrpc.generator.model.JavaClass;
import org.xbmc.android.jsonrpc.generator.model.JavaConstructor;
import org.xbmc.android.jsonrpc.generator.model.JavaEnum;
import org.xbmc.android.jsonrpc.generator.model.JavaMember;
import org.xbmc.android.jsonrpc.generator.model.JavaMethod;
import org.xbmc.android.jsonrpc.generator.model.JavaParameter;
import org.xbmc.android.jsonrpc.generator.model.Namespace;
import org.xbmc.android.jsonrpc.generator.view.AbstractView;
import org.xbmc.android.jsonrpc.generator.view.module.IClassModule;
/**
* Provides Parcelable-serialization via Android.
*
* @author freezy <freezy@xbmc.org>
*/
public class MethodAPIClassModule extends AbstractView implements IClassModule {
public final static String RESULT_PROPERTY_NAME = "RESULT";
@Override
public void render(StringBuilder sb, Namespace ns, JavaClass klass, int idt) {
if (!(klass instanceof JavaMethod)) {
throw new IllegalArgumentException("When rendering method API class modules, passed class must be of type JavaMethod.");
}
final String indent = getIndent(idt);
final JavaMethod method = (JavaMethod)klass;
// property name
if (method.hasReturnProperty()) {
sb.append(indent).append("public final static String ");
sb.append(RESULT_PROPERTY_NAME);
sb.append(" = \"");
sb.append(method.getReturnProperty());
sb.append("\";\n");
}
for (JavaConstructor jc : method.getConstructors()) {
renderConstructor(sb, ns, method, jc, idt);
}
renderParseOneMany(sb, ns, method, idt);
renderStaticStuff(sb, method, idt);
}
private void renderEnumValues(StringBuilder sb, JavaEnum e) {
for (String value : e.getValues()) {
sb.append("<tt>");
sb.append(value);
sb.append("</tt>, ");
}
if (!e.getValues().isEmpty()) {
sb.delete(sb.length() - 2, sb.length());
}
sb.append(".");
}
private void renderConstructor(StringBuilder sb, Namespace ns, JavaMethod method, JavaConstructor constructor, int idt) {
final String indent = getIndent(idt);
// header
sb.append(indent).append("/**\n");
if (method.hasDescription()) {
sb.append(getDescription(method, indent));
}
for (JavaParameter p : constructor.getParameters()) {
sb.append(indent).append(" * @param ");
sb.append(p.getName());
if (p.hasDescription()) {
sb.append(p.getDescription());
}
if (p.isEnum()) {
if (p.getEnum().isArray()) {
sb.append(" One or more of: ");
} else {
sb.append(" One of: ");
}
renderEnumValues(sb, p.getEnum());
sb.append(" See constants at {@link ").append(getEnumReference(ns, p.getEnum())).append("}.");
} else if (p.getType().isEnumArray()) {
sb.append(" One or more of: ");
renderEnumValues(sb, p.getType().getEnumArray());
sb.append(" See constants at {@link ").append(getEnumReference(ns, p.getType().getEnumArray())).append("}.");
}
sb.append("\n");
}
sb.append(indent).append(" */\n");
// signature
sb.append(indent).append("public ");
sb.append(getClassName(method));
sb.append("(");
Iterator<JavaParameter> it = constructor.getParameters().iterator();
while (it.hasNext()) {
final JavaParameter p = it.next();
if (!it.hasNext() && p.isArray()) {
// if enum != null, we know it's an enum array, otherwise isArray() woulnd't have returned true.
// in all other cases, p.getType() != null.
if (p.getEnum() != null || p.getType().isEnumArray()) {
sb.append("String...");
} else {
sb.append(getClassReference(ns, p.getType().getArrayType()));
sb.append("...");
}
} else {
if (p.isEnum()) {
sb.append("String");
} else {
sb.append(getClassReference(ns, p.getType(), true));
}
}
sb.append(" ");
sb.append(p.getName());
sb.append(", ");
}
if (!constructor.getParameters().isEmpty()) {
sb.delete(sb.length() - 2, sb.length());
}
sb.append(") {\n");
// body
sb.append(indent).append(" super();\n");
for (JavaParameter p : constructor.getParameters()) {
sb.append(indent).append(" addParameter(\"");
sb.append(p.getName());
sb.append("\", ");
sb.append(p.getName());
sb.append(");\n");
}
sb.append(indent).append("}\n");
}
/**
* Renders the <tt>parseMany()</tt> or <tt>parseOne()</tt> depending on the
* return type.
*
* @param sb Current StringBuilder
* @param ns Current namespace
* @param method Method
* @param idt Indent
*/
private void renderParseOneMany(StringBuilder sb, Namespace ns, JavaMethod method, int idt) {
final String indent = getIndent(idt);
sb.append(indent).append("@Override\n");
if (method.getReturnType().isTypeArray()) {
final String returnType = getClassReference(ns, method.getReturnType().getArrayType());
final String returnProp = method.getReturnProperty() != null ? method.getReturnProperty() : "results";
sb.append(indent).append("protected ArrayList<").append(returnType).append("> parseMany(ObjectNode node) {\n");
sb.append(indent).append(" final ArrayNode ").append(returnProp).append(" = parseResults(node, RESULT);\n");
sb.append(indent).append(" if (").append(returnProp).append(" != null) {\n");
sb.append(indent).append(" final ArrayList<").append(returnType).append("> ret = new ArrayList<").append(returnType).append(">(").append(returnProp).append(".size());\n");
sb.append(indent).append(" for (int i = 0; i < ").append(returnProp).append(".size(); i++) {\n");
sb.append(indent).append(" final ObjectNode item = (ObjectNode)").append(returnProp).append(".get(i);\n");
sb.append(indent).append(" ret.add(new ").append(returnType).append("(item));\n");
sb.append(indent).append(" }\n");
sb.append(indent).append(" return ret;\n");
sb.append(indent).append(" } else {\n");
sb.append(indent).append(" return new ArrayList<").append(returnType).append(">(0);\n");
sb.append(indent).append(" }\n");
sb.append(indent).append("}\n");
} else {
final String returnType = getClassReference(ns, method.getReturnType());
sb.append(indent).append("protected ").append(returnType).append(" parseOne(ObjectNode node) {\n");
sb.append(indent).append("\t");
if (method.getReturnType().isNative()) {
if (!JsonAccesClassModule.NATIVE_REQUIRED_NODE_GETTER.containsKey(method.getReturnType().getName())) {
throw new IllegalArgumentException("Unknown return type " + method.getReturnType().getName());
}
sb.append("return node.");
sb.append(JsonAccesClassModule.NATIVE_REQUIRED_NODE_GETTER.get(method.getReturnType().getName()));
sb.append("();\n");
} else {
if (method.hasReturnProperty()) {
sb.append("return new ").append(returnType).append("((ObjectNode)node.get(RESULT));\n");
} else {
sb.append("return new ").append(returnType).append("(node);\n");
}
}
sb.append(indent).append("}\n");
}
}
/**
* Renders <tt>getName()</tt> and <tt>returnsList()</tt>.
*
* @param sb Current StringBuilder
* @param method Method
* @param idt Indent
*/
private void renderStaticStuff(StringBuilder sb, JavaMethod method, int idt) {
final String indent = getIndent(idt);
// public String getName() { }
sb.append(indent).append("@Override\n");
sb.append(indent).append("public String getName() {\n");
sb.append(indent).append(" return API_TYPE;\n");
sb.append(indent).append("}\n");
// protected boolean returnsList() { }
sb.append(indent).append("@Override\n");
sb.append(indent).append("protected boolean returnsList() {\n");
sb.append(indent).append(" return ").append(method.getReturnType().isTypeArray() ? "true" : "false").append(";\n");
sb.append(indent).append("}\n");
}
@Override
public Set<String> getImports(JavaClass klass) {
final Set<String> imports = new HashSet<String>();
imports.addAll(getInternalImports(klass));
for (JavaClass innerClass : klass.getInnerTypes()) {
imports.addAll(getInternalImports(innerClass));
}
if (((JavaMethod)klass).getReturnType().isTypeArray()) {
imports.add("java.util.ArrayList");
imports.add("org.codehaus.jackson.node.ArrayNode");
}
imports.add("org.codehaus.jackson.node.ObjectNode");
return imports;
}
/**
* Computes imports that refer to the API's global types.
* @param klass
* @return
*/
private Set<String> getInternalImports(JavaClass klass) {
final Set<String> imports = new HashSet<String>();
// members
for (JavaMember member : klass.getMembers()) {
if (!member.isEnum()) {
final JavaClass memberType = member.getType();
if (memberType.isGlobal() && memberType.isVisible()) {
imports.add(memberType.getNamespace().getPackageName() + "." + memberType.getNamespace().getName());
}
}
}
// params in constructors
for (JavaConstructor constructor : klass.getConstructors()) {
for (JavaParameter param : constructor.getParameters()) {
if (!param.isEnum()) {
final JavaClass paramType = param.getType();
if (paramType.isGlobal() && !paramType.isNative() && paramType.hasName()) {
imports.add(
paramType.getNamespace().getPackageName()
+ "." + paramType.getNamespace().getName());
}
}
}
}
return imports;
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
0205cd218c07930adeaa10ba958e988465c1aaca | ad7271b8e1e6686e4bc68a7c0a5d559bc16735e1 | /src/Month.java | 137d5f210562ff883ee4ea5e3e3bc74af2792d4b | [] | no_license | souravyadav21/focp2 | cb1666cca69a0cf8ef06e9e255eef801e5c15164 | 0cc8bea4819b83c00df640fb1672fba7874b22a9 | refs/heads/master | 2020-04-16T01:30:27.855127 | 2019-01-27T17:30:28 | 2019-01-27T17:30:28 | 165,024,128 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,559 | java | //Author= Sourav Yadav
//Version= 2.4.5
import javax.swing.JOptionPane;
public class Month {
public static void main(String[] args) {
int num = Integer.parseInt (JOptionPane.showInputDialog ("Enter any number equal to or between 1-12 to display the month"));
switch (num)
{
case 1:
System.out.println ("The name of month number 1 is January");
break;
case 2:
System.out.println ("The name of month number 2 is February");
break;
case 3:
System.out.println ("The name of month number 3 is March");
break;
case 4:
System.out.println ("The name of month number 4 is April");
break;
case 5:
System.out.println ("The name of month number 5 is May");
break;
case 6:
System.out.println ("The name of month number 6 is June");
break;
case 7:
System.out.println ("The name of month number 7 is July");
break;
case 8:
System.out.println ("The name of month number 8 is August");
break;
case 9:
System.out.println ("The name of month number 9 is September");
break;
case 10:
System.out.println ("The name of month number 10 is October");
break;
case 11:
System.out.println ("The name of month number 11 is November");
break;
case 12:
System.out.println ("The name of month number 12 is December");
break;
default:
System.out.println ("You have entered an invalid number");
}
}
} | [
"souravrao21@gmail.com"
] | souravrao21@gmail.com |
4feea486589d03b8fca1c0a3163ffa3918e574ee | 4bef51cbc9c8830c14462423c4201676502a4300 | /src/main/java/org/framework/me/utils/Encodes.java | e014bdf02eb8db25bc6939b4089f5ae5024c0b72 | [] | no_license | meguojian/framework-tools | 46e1d78c48b3868d52e620249597c5eb2e2afbd4 | efc7c06e1c934109918494e8941576c855a26e87 | refs/heads/master | 2020-04-26T23:27:33.173742 | 2013-04-06T12:14:59 | 2013-04-06T12:14:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,931 | java | /**
* Copyright (c) 2005-2012 springside.org.cn
*
* Licensed under the Apache License, Version 2.0 (the "License");
*/
package org.framework.me.utils;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.net.URLEncoder;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.codec.binary.Hex;
import org.apache.commons.lang3.StringEscapeUtils;
/**
* 封装各种格式的编码解码工具类.
*
* 1.Commons-Codec的 hex/base64 编码
* 2.自制的base62 编码
* 3.Commons-Lang的xml/html escape
* 4.JDK提供的URLEncoder
*
* @author calvin
*/
public class Encodes {
private static final String DEFAULT_URL_ENCODING = "UTF-8";
private static final char[] BASE62 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".toCharArray();
/**
* Hex编码.
*/
public static String encodeHex(byte[] input) {
return Hex.encodeHexString(input);
}
/**
* Hex解码.
*/
public static byte[] decodeHex(String input) {
try {
return Hex.decodeHex(input.toCharArray());
} catch (DecoderException e) {
throw Exceptions.unchecked(e);
}
}
/**
* Base64编码.
*/
public static String encodeBase64(byte[] input) {
return Base64.encodeBase64String(input);
}
/**
* Base64编码, URL安全(将Base64中的URL非法字符'+'和'/'转为'-'和'_', 见RFC3548).
*/
public static String encodeUrlSafeBase64(byte[] input) {
return Base64.encodeBase64URLSafeString(input);
}
/**
* Base64解码.
*/
public static byte[] decodeBase64(String input) {
return Base64.decodeBase64(input);
}
/**
* Base62编码。
*/
public static String encodeBase62(byte[] input) {
char[] chars = new char[input.length];
for (int i = 0; i < input.length; i++) {
chars[i] = BASE62[((input[i] & 0xFF) % BASE62.length)];
}
return new String(chars);
}
/**
* Html 转码.
*/
public static String escapeHtml(String html) {
return StringEscapeUtils.escapeHtml4(html);
}
/**
* Html 解码.
*/
public static String unescapeHtml(String htmlEscaped) {
return StringEscapeUtils.unescapeHtml4(htmlEscaped);
}
/**
* Xml 转码.
*/
public static String escapeXml(String xml) {
return StringEscapeUtils.escapeXml(xml);
}
/**
* Xml 解码.
*/
public static String unescapeXml(String xmlEscaped) {
return StringEscapeUtils.unescapeXml(xmlEscaped);
}
/**
* URL 编码, Encode默认为UTF-8.
*/
public static String urlEncode(String part) {
try {
return URLEncoder.encode(part, DEFAULT_URL_ENCODING);
} catch (UnsupportedEncodingException e) {
throw Exceptions.unchecked(e);
}
}
/**
* URL 解码, Encode默认为UTF-8.
*/
public static String urlDecode(String part) {
try {
return URLDecoder.decode(part, DEFAULT_URL_ENCODING);
} catch (UnsupportedEncodingException e) {
throw Exceptions.unchecked(e);
}
}
}
| [
"meguojian@163.com"
] | meguojian@163.com |
05581a07420917118c4322e5fec49ac47636ecaa | 21741c7281a40bc0ccf9d77aaa9402d58faa5001 | /boot-redis/src/test/java/com/boot/redis/RedisCacheTest.java | 97fd05c8d9414ff0fe452d2dad7c4308e010b7c4 | [] | no_license | ZMMWMY/springboot4person | d6b65cb3fdbf02beb9874bf061ec3566f2f4aef2 | f8b3cf077f269d334d03bd151e943b209765e619 | refs/heads/master | 2021-01-12T15:22:38.481040 | 2017-07-31T03:37:18 | 2017-07-31T03:37:18 | 71,759,939 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,187 | java | package com.boot.redis;
import com.boot.redis.config.CacheTest;
import com.boot.redis.config.User;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import java.nio.channels.Pipe;
/**
* Created by Z先生 on 2017/2/15.
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = RedisStart.class)
public class RedisCacheTest {
@Autowired
CacheTest cacheTest;
@Test
public void test1(){
User user = new User();
user.setId(1);
cacheTest.test2(user);
cacheTest.test2(user);
}
@Test
public void test2(){
User xx = null;
xx=cacheTest.getUser(1);
User user = new User();
user.setId(1);
xx=cacheTest.updateUser(1);
System.out.println(cacheTest.getUser(1).getName());
}
@Test
public void testKey(){
cacheTest.testKey(1);
cacheTest.updateKey(1);
cacheTest.testKey(1);
}
}
| [
"13758212259@163.com"
] | 13758212259@163.com |
f61402aaad3e70b21783782da802cff0635db9d3 | 28d407ca16dc2067b3ccb707dc0faf148da0559b | /src/assignment1/FileOutputStreamExample.java | c25f841874a98b1b4746c2afd849ad13bd406ed8 | [] | no_license | Mohitchvk/Project-Based-Learning-in-Java | 99ef4da26fc3450759bef7155e31bf5851563781 | 5a12f09757aad7a477611902766430c32d8d4250 | refs/heads/master | 2023-04-14T01:16:07.911976 | 2021-04-16T12:27:25 | 2021-04-16T12:27:25 | 337,729,758 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 551 | java | package assignment1;
import java.io.FileOutputStream;
public class FileOutputStreamExample {
public static void main(String args[]) {
try {
FileOutputStream fout=new FileOutputStream("D:\\sanfoundry.txt");
String s="Welcome to Sanfoundry.";
byte b[]=s.getBytes();//converting string into byte array
fout.write(b);
fout.close();
System.out.println("Success");
} catch(Exception e){
System.out.println(e);
}
}
} | [
"mohit.chvk@gmail.com"
] | mohit.chvk@gmail.com |
8b4f731336a8c7ba4ec21758d6da95335b1d1de9 | 740964c8b8b8855277d29c077259a133ca70d916 | /arc-core/src/main/java/fr/insee/arc/core/service/engine/xsd/controls/EnumForXsd.java | 387c07936d10108ff1f0dd97224cf000c9a19df6 | [
"MIT"
] | permissive | pierre-le-corre/ARC | 79f7831bbf3e2d5ef332ff44d5ebc4034fee5d39 | 98dd89ca7e66c17df3ee4bd7c6d1306de6f1be79 | refs/heads/master | 2021-08-07T13:11:23.977909 | 2021-07-29T13:48:30 | 2021-07-29T13:48:30 | 237,164,061 | 0 | 0 | MIT | 2020-03-24T08:51:08 | 2020-01-30T07:50:00 | null | UTF-8 | Java | false | false | 1,170 | java | package fr.insee.arc.core.service.engine.xsd.controls;
import java.util.List;
import fr.insee.arc.core.service.engine.xsd.InvalidStateForXsdException;
public class EnumForXsd implements ControlForXsd {
private final List<String> enumeration;
public EnumForXsd(List<String> enumeration) throws InvalidStateForXsdException {
if (enumeration == null || enumeration.isEmpty()) {
throw new InvalidStateForXsdException("Une énumération XSD ne peut pas être vide.");
}
this.enumeration = enumeration;
}
@Override
public boolean defineType() {
return false;
}
@Override
public String writeControlAsXsd(String indentation) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < enumeration.size(); i++) {
String element = enumeration.get(i);
sb.append(indentation + "<xs:enumeration value=\"" + element + "\"/>");
if (i < enumeration.size() -1) {
sb.append("\n");
}
}
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (obj instanceof EnumForXsd) {
ControlForXsd o = (ControlForXsd)obj;
return this.compareTo(o) == 0;
}
return false;
}
} | [
"MS@MS-PC"
] | MS@MS-PC |
0088c56b646b94b91d40aeed855224d940079a84 | f581d2edba47f81594b6e4fc546d824065e3bf19 | /MB Athira/24thJan/program3_qn3_parent_child.java | cfc57c7be3f7b9c469aecb596fb99a6cf64a7035 | [] | no_license | Cognizant-Training-Coimbatore/Lab-Excercise | 8c372d57cf170820be9c1ec3fd3ae4cb097cc933 | 3f9707569c04c8a831ab8a1b8953af8c3114a534 | refs/heads/master | 2021-07-06T10:49:49.862257 | 2020-03-17T12:43:03 | 2020-03-17T12:43:03 | 236,133,635 | 1 | 47 | null | 2021-04-26T20:03:55 | 2020-01-25T06:17:39 | Java | UTF-8 | Java | false | false | 401 | java | class pa1
{
void display()
{
System.out.println("This is a parent class");
}
}
class ch1 extends pa1
{
void display1()
{
System.out.println("This is a child class");
}
}
public class program3_qn3_parent_child {
public static void main(String[] args)
{
pa1 obj1 = new pa1();
ch1 obj2 = new ch1();
obj1.display();
obj2.display1();
obj2.display();
}
}
| [
"noreply@github.com"
] | noreply@github.com |
bf7d3bd90a2edb8a14f98613026c46bba00b7f33 | df53fba544e8a743810a05c50c85a74f58c53a2b | /Java-Best-Practices-Working-With-Nulls/NullObjectPattern/src/main/java/entity/LexileReadingLevel.java | 1860272b3b91b3fffe4e6a5fc05c1e36a6eb931e | [] | no_license | ArtyomGrigorev115/Java-Studies | f199d7bace32b29dc552d8086074a383bdeb7d99 | eb144970ecd310b94dab86d875d83e5a68d244c7 | refs/heads/master | 2023-04-06T01:10:02.762965 | 2021-04-19T00:09:20 | 2021-04-19T00:09:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 348 | java | package entity;
public class LexileReadingLevel extends ReadingLevel {
public LexileReadingLevel(Integer id, String grade, String level) {
setId(id);
setGrade(grade);
setLevel(level);
}
@Override
public String toString() {
return "Lexile reading level " + getLevel() + "L, " + getGrade();
}
}
| [
"17462762+AugustoCalado@users.noreply.github.com"
] | 17462762+AugustoCalado@users.noreply.github.com |
3affa7d276f6c070124eabd0069cc1e0fb66ea3d | 0a76e01455ebc9acbc6afc3a69735d55a1cf24bf | /src/dynamic_programming_medium/MaxProduct.java | 99c90d94b8d6b6406d11aeb893b7f216b3df910c | [] | no_license | wangborui/Leetcode_Java | 938bf37600e3003c4940b34ee2f71920f9469009 | 931e493916479e31c779b7abbed35257bd387a11 | refs/heads/master | 2020-06-13T08:06:09.985765 | 2019-08-05T07:39:49 | 2019-08-05T07:39:49 | 75,436,953 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,034 | java | // Source : https://oj.leetcode.com/problems/maximum-product-subarray/
// Date : 02/21/2017
/**********************************************************************************
*
* Find the contiguous subarray within an array (containing at least one number)
* which has the largest product.
*
* For example, given the array [2,3,-2,4],
* the contiguous subarray [2,3] has the largest product = 6.
*
* More examples:
*
* Input: arr[] = {6, -3, -10, 0, 2}
* Output: 180 // The subarray is {6, -3, -10}
*
* Input: arr[] = {-1, -3, -10, 0, 60}
* Output: 60 // The subarray is {60}
*
* Input: arr[] = {-2, -3, 0, -2, -40}
* Output: 80 // The subarray is {-2, -40}
*
**********************************************************************************/
package Leetcode_Java.dynamic_programming_medium;
/**
*
* @author Borui Wang
*/
public class MaxProduct {
// The idea is similar with "Find the subarray wich has the largest sum"
// (See: http://en.wikipedia.org/wiki/Maximum_subarray_problem)
//
// The only thing to note here is, maximum product can also be obtained by minimum (negative) product
// ending with the previous element multiplied by this element. For example, in array {12, 2, -3, -5, -6, -2},
// when we are at element -2, the maximum product is multiplication of, minimum product ending with -6 and -2.
//
public int maxProduct(int[] nums) {
if (nums == null || nums.length == 0) {
return 0;
}
int localMin = nums[0];
int localMax = nums[0];
int globalMax = nums[0];
for (int i = 1; i < nums.length; i++) {
int lastMin = localMin;
localMin = Math.min(nums[i], Math.min(nums[i] * localMin, nums[i] * localMax));
//max(current, max(current * last min, current * last max)
localMax = Math.max(nums[i], Math.max(nums[i] * lastMin, nums[i] * localMax));
globalMax = Math.max(globalMax, localMax);
}
return globalMax;
}
}
| [
"wangbd@bc.edu"
] | wangbd@bc.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.