blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
132 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
5f4800dc8f714d05d29cfd025f0e8a913e23285e
3e22f5bd4deb2a5f7933db4dfa152dd1a9f56552
/hellospring04/src/main/java/com/douzone/hellospring/controller/GuestbookController.java
7aa17ded01dad63b71ffdde5e02c73fffaf1e996
[]
no_license
insung93/spring-practices
32aed2746bd69f9ae6ab017eeb32b9ecca3a56f4
7c28d59ad6956f927cfe2f893c4f1343de78344d
refs/heads/master
2023-06-01T06:15:02.621763
2021-06-22T07:05:27
2021-06-22T07:05:27
373,020,106
0
0
null
null
null
null
UTF-8
Java
false
false
718
java
package com.douzone.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; /* * * RequestMapping * 클래스(타입) 단독 매핑 * */ @Controller @RequestMapping("/guestbook/*") public class GuestbookController { @ResponseBody //@RequestMapping public String list() { return "GuestbookController:list"; } //http://localhost:8080/hellospring03/guestbook/list @ResponseBody //@RequestMapping public String delete() { return "GuestbookController:delete"; } //http://localhost:8080/hellospring03/guestbook/delete }
[ "jis5780@gmail.com" ]
jis5780@gmail.com
75f31710d5ffe66209129e545a4571624c40457b
7d9f84b9fb47fa5a88dad15fd26158214264fee7
/ftc_app-master4.2/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/AutoBeginningsPart9ANNOTATED.java
a5b32a323049816d427aec1a83b4a98d5fb931a1
[ "BSD-3-Clause" ]
permissive
CAOs-Robotics-14338/2018-19-Rover-Ruckus-Final-Code
17379efb84beb639cc4f5ec4c4a668e69a955563
c2124603dbf2d5d2071c91955c891a2e814d2def
refs/heads/master
2020-08-03T00:11:14.678558
2019-09-28T21:31:55
2019-09-28T21:31:55
211,557,783
0
0
null
null
null
null
UTF-8
Java
false
false
22,322
java
/* Copyright (c) 2017 FIRST. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided that * the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list * of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, this * list of conditions and the following disclaimer in the documentation and/or * other materials provided with the distribution. * * Neither the name of FIRST nor the names of its contributors may be used to endorse or * promote products derived from this software without specific prior written permission. * * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS * LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.firstinspires.ftc.teamcode; import com.disnodeteam.dogecv.CameraViewDisplay; import com.disnodeteam.dogecv.DogeCV; import com.disnodeteam.dogecv.detectors.roverrukus.GoldAlignDetector; import com.qualcomm.robotcore.eventloop.opmode.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.Disabled; import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; import com.qualcomm.robotcore.hardware.DcMotor; import com.qualcomm.robotcore.hardware.DigitalChannel; import com.qualcomm.robotcore.hardware.Servo; //Goal is to decrease the time for sampling to be able to go to the crater /** * This file illustrates the concept of driving a path based on encoder counts. * It uses the common Pushbot hardware class to define the drive on the robot. * The code is structured as a LinearOpMode * * The code REQUIRES that you DO have encoders on the wheels, * otherwise you would use: PushbotAutoDriveByTime; * * This code ALSO requires that the drive Motors have been configured such that a positive * power command moves them forwards, and causes the encoders to count UP. * * The desired path in this example is: * - Drive forward for 48 inches * - Spin right for 12 Inches * - Drive Backwards for 24 inches * - Stop and close the claw. * * The code is written using a method called: encoderDrive(speed, leftInches, rightInches, timeoutS) * that performs the actual movement. * This methods assumes that each movement is relative to the last stopping place. * There are other ways to perform encoder based moves, but this method is probably the simplest. * This code uses the RUN_TO_POSITION mode to enable the Motor controllers to generate the run profile * * Use Android Studios to Copy this Class, and Paste it into your team's code folder with a new name. * Remove or comment out the @Disabled line to add this opmode to the Driver Station OpMode list */ @Autonomous(name="Auto Beginnings Part 9 ANNOTATED", group="Pushbot") @Disabled public class AutoBeginningsPart9ANNOTATED extends LinearOpMode { //Declaring objects to be able to control the different systems later //limit switch object DigitalChannel digitalTouch; // Hardware Device Object //climb motor object private DcMotor climbMotor = null; //drive system motors private DcMotor leftMotor = null; private DcMotor rightMotor = null; private DcMotor centerDrive = null; double climbPower; // creating an object from other classes to be able to use with easy method calling MarkerDeployment deploy = new MarkerDeployment(); //declaring servo for marker deployment system Servo marker; //using encoder class for encoder math Encoders encoders = new Encoders(); //creating object of the vision class private GoldAlignDetector detector; @Override public void runOpMode() { //SET UP VISION detector = new GoldAlignDetector(); detector.init(hardwareMap.appContext, CameraViewDisplay.getInstance());//, 1, false); detector.useDefaults(); // Optional Tuning detector.alignSize = 100; // How wide (in pixels) is the range in which the gold object will be aligned. (Represented by green bars in the preview) detector.alignPosOffset = 0; // How far from center frame to offset this alignment zone. detector.downscale = 0.4; // How much to downscale the input frames detector.areaScoringMethod = DogeCV.AreaScoringMethod.MAX_AREA; // Can also be PERFECT_AREA //detector.perfectAreaScorer.perfectArea = 10000; // if using PERFECT_AREA scoring detector.maxAreaScorer.weight = 0.005; detector.ratioScorer.weight = 5; detector.ratioScorer.perfectRatio = 1.0; //enables detector detector.enable(); //gets location of motors in expansion hub from the robot controller leftMotor = hardwareMap.get(DcMotor.class, "left_drive"); rightMotor = hardwareMap.get(DcMotor.class, "right_drive"); centerDrive = hardwareMap.get(DcMotor.class, "center_drive"); //sets motor direction so the motors go the same direction when on the robot. leftMotor.setDirection(DcMotor.Direction.FORWARD); rightMotor.setDirection(DcMotor.Direction.REVERSE); centerDrive.setDirection(DcMotor.Direction.REVERSE); //Limit Switch //gets sensor location digitalTouch = hardwareMap.get(DigitalChannel.class, "sensor_digital"); //sets mode to receive input digitalTouch.setMode(DigitalChannel.Mode.INPUT); //gets the servo for marker deployment location marker = hardwareMap.servo.get("deploy_marker"); //Climber // gets the climb motor location and sets the climb power climbMotor = hardwareMap.get(DcMotor.class, "climb_motor"); climbMotor.setDirection(DcMotor.Direction.REVERSE); climbPower = -0.75;//-0.5 waitForStart();//waits for the start button to signal the start of autonomous String pathTaken = "";//path taken variable is used to determine what path the robot took based on sampling during auto // to help decide what the next steps should be for autonomous. while (opModeIsActive()) { /* AUTO STEPS: --Start in collapsed state with climb collapsed --Auto mode starts and robot descends and goes sideways to detach from lander. --Samples Minerals -- Goes to depot and deploys marker -- Makes a beeline to the crater. */ boolean descend = true; // descend from lander while(descend) { //while the robot should still descend telemetry.addData("Digital Touch", "Is Not Pressed");//print to drive station climbMotor.setPower(climbPower);//set climb motor to climb power telemetry.update();//update the telemetry so the message will show up if (digitalTouch.getState()){//see if the limit switch is pressed climbMotor.setPower(0);//if limit switch pressed stop climb motor descend = false; //set descend to false to stop loop } } sleep(250); //slide sideways to get unattached slideLeft(2.5); sleep(500);//1000 //move the climber hook down to avoid the limit switch issue /* We were experiencing issues that if the limit switch was pressed then expansion hub had trouble with power * To fix this issue I coded autonomous to lower the climber hook so the limit switch wouldn't be press that way there * would be no problems with it being pressed. * Basically, I just coded it to do the opposite of what it did for descending * */ boolean rescend = true;//rescend the climber hook. Bring climber hook down so the limit switch is not pressed. while(rescend){//while rescending climber hook telemetry.addData("Digital Touch", "Is Pressed");//add data to drive station climbMotor.setPower(-climbPower); //set the motor to reversed power telemetry.update(); //update telemetry to add data if(digitalTouch.getState() == false){ //if the limit switch is not pressed climbMotor.setPower(0);//stop the motor rescend = false; //set rescending to false to exit the loop } } //lower climber hook 2 inches // gos forward to sample driveForward(15); sleep(1000); // //\\\SAMPLING ///\\\/////////////////////////////////////////////////////////////////////////////////////////////////// if (detector.isFound()) {//if the detector can see a gold mineral //CAN SEE GOLD telemetry.addData("Sees the mineral", " ");//add to drive station telemetry.update(); sleep(250); if (detector.getAligned()) {//is robot aligned with gold mineral? telemetry.addData("Gold Mineral is in center --> move accordingly", detector.getXPosition()); telemetry.addData("Move forward", ' '); pathTaken = "CENTER";//set path taken so it remembers what sampling path it took driveForward(36);//drive forward to knock mineral off of mark sleep(3000); } else { //the robot is not aligned with gold mineral while (!detector.getAligned()) { //while robot is not aligned with mineral telemetry.addData("Not Aligned", " ");//print not aligned telemetry.update(); align();//align with gold mineral } driveForward(36);//drive forward to knock mineral off of mark sleep(3000); pathTaken = "CENTER";//set path taken so it remembers what sampling path it took } } else { //Since the detector can not see a gold mineral, == See if gold is on the left telemetry.addData("Not Found", " "); telemetry.update(); slideLeft(12.5);//slide to the left to see if there is a gold mineral sleep(2000); if (detector.isFound()) { //if it sees a gold mineral telemetry.addData("Found on Left", " "); pathTaken = "LEFT"; //set path taken to left so it remembers what path it took telemetry.update();//update telemetry while (!detector.getAligned()){//while the robot is not aligned with gold align(); //align with gold mineral } sleep(2000); driveForward(25); //drive forward to knock mineral off of tape sleep(2000);//3 } else { //The detector could not find gold mineral on left so it goes to the right telemetry.addData("Not found on left", " going right"); telemetry.update(); slideRight(30);//slides right sleep(4200); pathTaken="RIGHT"; //set path taken to remember the path if (detector.isFound()) { //if the gold mineral is seen telemetry.addData("Found on Right", " "); telemetry.update(); while (!detector.getAligned()){ //while robot not aligned with gold mineral align(); //align with gold mineral } sleep(1000); driveForward(25);//drive forward to knock mineral off of place sleep(1850); } else{ //in the apocalyptic case that the mineral is not found driveForward(25);//drive forward sleep(1700); } } } ///////////////////////////////////////////////////////////////////////////////////////////////////////////// //Sampling Over //Get position taken and get to depot //drive toward depot framework, deploy marker, and then head to crater telemetry.addData("Path Taken: ", pathTaken); //add the pathTaken data to see what the value of pathTaken is telemetry.update(); sleep(100); //Frame work for second half of autonomous //Based on what the pathTaken value is the program with run the corresponding /* The methods like driveForward move the robot like stated for that number of inches */ if (pathTaken.equals("RIGHT")){ /* driveForward(6); sleep(500);*/ turnLeft(43);//40 //45 sleep(1000); driveForward(15);//21 sleep(1000); deploy.deployMarker(marker);//using deploy marker method from the MarkerDeployment Class to deploy marker sleep(500);//1000 driveBackward(6); sleep(500); turnLeft(96);//94 sleep(2500); driveForward(12); sleep(500);//1000 turnLeft(15); sleep(1000); slideRight(7.5);//5.5//3.5 sleep(1000);//500 driveForward(68, .75);//62 distance deploy.setMarkerPostitionToDeploy(marker); //sets the marker deployer arm out to cross plane of crater sleep(7000); driveForward(4,.30); sleep(1000); } else if (pathTaken.equals("LEFT")) { //run left tasks to get to depot and then crater // driveForward(6); turnRight(50); sleep(1000); driveForward(16); sleep(1000); deploy.deployMarker(marker);//using deploy marker method from the MarkerDeployment Class to deploy marker sleep(500); driveBackward(6); sleep(500); /* slideLeft(4); sleep(500);//300*/ turnLeft(184);//94 sleep(2600); //driveForward(12); //sleep(500);//1000 slideRight(16.0);//6 sleep(1500);//500 driveForward(62, .75); deploy.setMarkerPostitionToDeploy(marker); //sets the marker deployer arm out to cross plane of crater sleep(6000); driveForward(4,.30); sleep(1000); } else{// == "CENTER" //deploy marker deploy.deployMarker(marker);//using deploy marker method from the MarkerDeployment Class to deploy marker sleep(500); driveBackward(6); sleep(500); turnLeft(85);//94 sleep(2500); driveForward(12); sleep(1000);//1000 turnLeft(90);//45 sleep(1000); slideRight(6); sleep(1000);//1000 driveForward(60, .75); deploy.setMarkerPostitionToDeploy(marker);//sets the marker deployer arm out to cross plane of crater sleep(6000); driveForward(4,.30); sleep(1000); } //deploy sleep(500); stop(); //stops the opmode so it ends the autonomous } } public void align() { if ((detector.getXPosition() > 0) && (detector.getXPosition() < detector.getAlignXMin())) { // if the gold mineral is on the left side of the alignment move left telemetry.addData("Gold Mineral is on the left --> move accordingly", detector.getXPosition()); telemetry.addData("Move to the left", 300 - detector.getXPosition()); slideLeft(1.0); sleep(250);//500 } else if (detector.getXPosition() > detector.getAlignXMax()) { //if the gold mineral is on the right side of the alignment move right telemetry.addData("Gold Mineral is on the right --> move accordingly", detector.getXPosition()); //new addition telemetry.addData("Move to the right", detector.getXPosition() - 300); slideRight(1.0);//1.0 sleep(250);//500 } } ///FUNCTIONS FOR DRIVING THE ROBOT AROUND WITH ENCODERS /* These methods use the encoder methods from the Encoder Class. See Encoder class for more descriptions of encoder math In order to get the encoders to work, you need to: -- Stop and Reset the Encoders -- Set them to run to a position -- Give them the target number of ticks the encoder needs to make -- Set the Power of the motor. */ public void turnRight(double degrees){ int inches_needed = encoders.encoderTicksTurn(degrees); int ticks = encoders.encoderTicksDrive(inches_needed); leftMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); rightMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); leftMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); rightMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); ///left forward, right backward leftMotor.setTargetPosition(-ticks); rightMotor.setTargetPosition(ticks); leftMotor.setPower(0.5); rightMotor.setPower(0.5); } public void turnLeft(double degrees){ int inches_needed = encoders.encoderTicksTurn(degrees); int ticks = encoders.encoderTicksDrive(inches_needed); leftMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); rightMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); leftMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); rightMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); ///left backward, right forward leftMotor.setTargetPosition(ticks); rightMotor.setTargetPosition(-ticks); leftMotor.setPower(0.5); rightMotor.setPower(0.5); } public void driveForward(double inches){//WORKS int ticks = encoders.encoderTicksDrive(inches); leftMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); rightMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); leftMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); rightMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); leftMotor.setTargetPosition(-ticks); rightMotor.setTargetPosition(-ticks); leftMotor.setPower(0.6);//.5 rightMotor.setPower(0.6);//.5 } public void driveForward(double inches, double power){//WORKS int ticks = encoders.encoderTicksDrive(inches); leftMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); rightMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); leftMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); rightMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); leftMotor.setTargetPosition(-ticks); rightMotor.setTargetPosition(-ticks); leftMotor.setPower(power); rightMotor.setPower(power); } public void driveBackward(double inches){ int ticks = encoders.encoderTicksDrive(inches); leftMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); rightMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); leftMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); rightMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); leftMotor.setTargetPosition(ticks); rightMotor.setTargetPosition(ticks); leftMotor.setPower(0.6);//.5 rightMotor.setPower(0.6); } public void slideLeft(double inches){ int ticks = encoders.encoderTicksCenter(inches); centerDrive.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); centerDrive.setMode(DcMotor.RunMode.RUN_TO_POSITION); centerDrive.setTargetPosition(ticks); centerDrive.setPower(0.2);//.3 } public void slideRight(double inches){ int ticks = encoders.encoderTicksCenter(inches); centerDrive.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); centerDrive.setMode(DcMotor.RunMode.RUN_TO_POSITION); centerDrive.setTargetPosition(-ticks); centerDrive.setPower(0.2);//.3 } public void rotateRight(double inches){//WORKS int ticks = encoders.encoderTicksDrive(inches); telemetry.addData("Rotate", ticks); telemetry.update(); leftMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); leftMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); leftMotor.setTargetPosition(ticks); leftMotor.setPower(0.5); sleep(2000); } public void rotateLeft(double inches){//WORKS int ticks = encoders.encoderTicksDrive(inches); telemetry.addData("Rotate", ticks); telemetry.update(); rightMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); rightMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); rightMotor.setTargetPosition(ticks); rightMotor.setPower(0.5); sleep(2000); } }
[ "31677932+sparklefbanks@users.noreply.github.com" ]
31677932+sparklefbanks@users.noreply.github.com
40782348fb75e81bf5c89138f284a7f06f9b33b7
62774e6de56acf8c4d4d014f1f5ee709feef6502
/resident-evil/src/main/java/com/mkolongo/residentEvil/domain/entities/BaseEntity.java
49afa1b6ac19f5ba3277bdbd8c2373657149b104
[]
no_license
Chris-Mk/Hibernate
35a9c42679ad6d20925c96d6d3929ad86649f700
eb338734c0136d5292e06f7ab2688e4fda31d93c
refs/heads/master
2023-07-24T00:20:36.222180
2023-07-19T19:29:16
2023-07-19T19:29:16
205,900,454
0
0
null
2023-07-19T19:29:18
2019-09-02T16:56:37
Java
UTF-8
Java
false
false
400
java
package com.mkolongo.residentEvil.domain.entities; import lombok.Getter; import lombok.Setter; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.MappedSuperclass; @Getter @Setter @MappedSuperclass public class BaseEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; }
[ "chrismks23@gmail.com" ]
chrismks23@gmail.com
ddc85f76a4c0bce2e34efd056bfa4a0a4ca55afd
941f7b0cf7fef51c467c32f596bd668b37834ce7
/Tienda_Generica_Grupo_9/Tienda_Generica_Grupo_9/src/main/java/com/Tienda_Generica/DAO/Conexion.java
7dad1b32f9e4baeb2c5052561f60fce8913ba47c
[]
no_license
gandalfblue/Grupo_9_Scrum_2_Ciclo_3
9132728b29325c2750d3e78b29c2ca79a82bee55
a6c3c273852fdccce9d7101a91f2b0a1914e679d
refs/heads/main
2023-08-26T04:58:11.005450
2021-11-11T02:55:10
2021-11-11T02:55:10
408,000,496
0
0
null
null
null
null
UTF-8
Java
false
false
1,550
java
package com.Tienda_Generica.DAO; import java.sql.*; import java.util.logging.Logger; /** * Clase que permite conectar con la base de datos */ public class Conexion { Logger logger= Logger.getLogger("com.roca12.misiontic2022.tiendalostiburones.DAO.Conexion"); /** Parametros de conexion */ static String nombre_base_datos = "g9e2"; //root static String usuariobd = "admin"; //mintic static String clavebd = "minticroca"; //127.0.0.1 == localhost static String url = "jdbc:mariadb://tiendasgenericasdr-g9-g38-53.czo3ixoe3xoe.us-east-1.rds.amazonaws.com/" + nombre_base_datos; //objeto sin inicializar de la conexión Connection connection = null; /** Constructor de DbConnection */ public Conexion() { try { // obtenemos el driver de para mysql Class.forName("org.mariadb.jdbc.Driver"); // obtenemos la conexión connection = DriverManager.getConnection(url, usuariobd, clavebd); //si hay conexión correcta mostrar información en consola if (connection != null) { System.out.println("Conexión a base de datos " + nombre_base_datos + " OK\n"); } } catch (SQLException e) { //error de la base de datos System.out.println(e); } catch (ClassNotFoundException e) { //error en carga de clases System.out.println(e); } catch (Exception e) { //cualquier otro error System.out.println(e); } } /** Permite retornar la conexión */ public Connection getConnection() { return connection; } //cerrando la conexión public void desconectar() { connection = null; } }
[ "casanova01_a@hotmail.com" ]
casanova01_a@hotmail.com
a900c4795476ad9a09d80bcd6ccfdbc122a78b65
10be02b852c57f5d865c184dc75bd88e2397d067
/src/main/java/com/sc/kanak/config/DatabaseConfiguration.java
36c11033c3c02b2af6b064dcfb07d43480f39588
[]
no_license
saumikonline/kanak
3fa1f2614e1d5f1157e58c66c2c422eb3a6f0ec4
e96bde6ed7582c27d980e2932d7d0e7142ed1243
refs/heads/master
2020-03-21T21:07:39.249383
2018-06-28T17:10:36
2018-06-28T17:10:36
139,047,458
0
0
null
2018-06-28T17:22:11
2018-06-28T17:10:30
Java
UTF-8
Java
false
false
2,606
java
package com.sc.kanak.config; import io.github.jhipster.config.JHipsterConstants; import io.github.jhipster.config.liquibase.AsyncSpringLiquibase; import liquibase.integration.spring.SpringLiquibase; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.liquibase.LiquibaseProperties; import org.springframework.cache.CacheManager; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories; import org.springframework.core.task.TaskExecutor; import org.springframework.data.jpa.repository.config.EnableJpaAuditing; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.transaction.annotation.EnableTransactionManagement; import javax.sql.DataSource; @Configuration @EnableJpaRepositories("com.sc.kanak.repository") @EnableJpaAuditing(auditorAwareRef = "springSecurityAuditorAware") @EnableTransactionManagement @EnableElasticsearchRepositories("com.sc.kanak.repository.search") public class DatabaseConfiguration { private final Logger log = LoggerFactory.getLogger(DatabaseConfiguration.class); private final Environment env; private final CacheManager cacheManager; public DatabaseConfiguration(Environment env, CacheManager cacheManager) { this.env = env; this.cacheManager = cacheManager; } @Bean public SpringLiquibase liquibase(@Qualifier("taskExecutor") TaskExecutor taskExecutor, DataSource dataSource, LiquibaseProperties liquibaseProperties) { // Use liquibase.integration.spring.SpringLiquibase if you don't want Liquibase to start asynchronously SpringLiquibase liquibase = new AsyncSpringLiquibase(taskExecutor, env); liquibase.setDataSource(dataSource); liquibase.setChangeLog("classpath:config/liquibase/master.xml"); liquibase.setContexts(liquibaseProperties.getContexts()); liquibase.setDefaultSchema(liquibaseProperties.getDefaultSchema()); liquibase.setDropFirst(liquibaseProperties.isDropFirst()); if (env.acceptsProfiles(JHipsterConstants.SPRING_PROFILE_NO_LIQUIBASE)) { liquibase.setShouldRun(false); } else { liquibase.setShouldRun(liquibaseProperties.isEnabled()); log.debug("Configuring Liquibase"); } return liquibase; } }
[ "jhipster-bot@users.noreply.github.com" ]
jhipster-bot@users.noreply.github.com
c2243e79db8256cd91522e609f2660b110676b32
5f9fd45ee0783599c95d0764cad0f55351a83f9a
/sdsai-itrex/src/test/java/com/github/basking2/sdsai/itrex/iterators/SplitMapJoinIteratorTest.java
349fbc56645f1356747a1b5323dcd57eca78b8b1
[ "MIT" ]
permissive
t-rasmud/sdsai
012049b6fd6df610a86f25f631310766a6de04a4
04a1bea9340ec0f7a7da2802f3e4167e5eab8e08
refs/heads/main
2023-03-22T20:28:07.594733
2020-11-18T23:13:32
2020-11-18T23:13:32
349,528,629
0
0
MIT
2021-03-19T19:04:01
2021-03-19T19:04:00
null
UTF-8
Java
false
false
2,654
java
package com.github.basking2.sdsai.itrex.iterators; import org.junit.Test; import java.util.Iterator; import java.util.List; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import java.util.function.Function; import static org.hamcrest.CoreMatchers.hasItems; import static org.hamcrest.MatcherAssert.assertThat; /** * Test {@link Iterators#splitMapJoinIterator(ExecutorService, Iterator, Function, MappingIterator.Mapper)}. */ public class SplitMapJoinIteratorTest { @Test public void testSplitMapJoinSingleThread() throws ExecutionException, InterruptedException { final ExecutorService es = Executors.newFixedThreadPool(1); final Future<?> f = es.submit(() -> { final List<Integer> actualList = Iterators.toList(Iterators.splitMapJoinIterator( es, new RangeIterator(0, 10, 1), (i) -> i % 3, (i) -> i )); final Integer[] expectedList = Iterators.toList( new RangeIterator(0,10, 1)).toArray(new Integer[0]); assertThat(actualList, hasItems(expectedList)); return ; }); f.get(); es.shutdown(); } @Test public void testSplitMapJoinTwoThreads() throws ExecutionException, InterruptedException { final ExecutorService es = Executors.newFixedThreadPool(2); final Future<?> f = es.submit(() -> { final List<Integer> actualList = Iterators.toList(Iterators.splitMapJoinIterator( es, new RangeIterator(0, 10, 1), (i) -> i % 3, (i) -> i )); final Integer[] expectedList = Iterators.toList( new RangeIterator(0,10, 1)).toArray(new Integer[0]); assertThat(actualList, hasItems(expectedList)); return; }); f.get(); es.shutdown(); } @Test public void testSplitMapJoinTwoThreadsAndMain() { final ExecutorService es = Executors.newFixedThreadPool(2); final List<Integer> actualList = Iterators.toList(Iterators.splitMapJoinIterator( es, new RangeIterator(0, 10, 1), (i) -> i % 3, (i) -> i )); final Integer[] expectedList = Iterators.toList( new RangeIterator(0,10, 1)).toArray(new Integer[0]); es.shutdown(); assertThat(actualList, hasItems(expectedList)); } }
[ "basking2@yahoo.com" ]
basking2@yahoo.com
cccb8502ac373d641b5b1cffb67828417c3bbd80
b3340278e580c55f3f2158ed93147b2872bc013b
/app/src/test/java/com/example/davidsantos/materialdesign1/ExampleUnitTest.java
1d9db133fad870e00cabf0a1faf76f9266ca2194
[]
no_license
davidgomesdh/materialDesign
d01c4cf11f6082703ed0464310bdd34f494a62eb
a29ac76bbf1f70c447abb00ac137bf60c641d891
refs/heads/master
2021-04-27T02:17:09.505662
2018-02-24T02:06:06
2018-02-24T02:06:06
122,693,056
0
0
null
null
null
null
UTF-8
Java
false
false
417
java
package com.example.davidsantos.materialdesign1; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "david.santos@zapcorp.com.br" ]
david.santos@zapcorp.com.br
fe2322b2b43bc6decefc79efdd6420a46345c064
e68afb67412b86d838a268664129e1daa66d3ce4
/ArenaPvP/src/main/java/gg/hound/arena/tasks/MatchTeleportTask.java
4608afa0a37f50861fff22980717fa52c9ed4c15
[]
no_license
edutf8/development-projects-2020
a1481b10e8958a1041500e6ed3c567958da92849
2aead4b149b97f6f81f122341450f1bc49c4391c
refs/heads/master
2022-11-20T19:02:34.513910
2020-07-16T19:19:14
2020-07-16T19:19:14
280,238,480
0
0
null
null
null
null
UTF-8
Java
false
false
1,992
java
package gg.hound.arena.tasks; import gg.hound.arena.hologram.HologramManager; import gg.hound.arena.scoreboard.ScoreboardManager; import gg.hound.arena.util.InventoryUtil; import org.bukkit.Bukkit; import org.bukkit.Location; import org.bukkit.entity.Player; import org.bukkit.potion.PotionEffect; import org.bukkit.scheduler.BukkitRunnable; import java.util.ArrayDeque; import java.util.Queue; public class MatchTeleportTask extends BukkitRunnable { private final InventoryUtil inventoryUtil; private final ScoreboardManager scoreboardManager; private final HologramManager hologramManager; private final Queue<Player> backToSpawn = new ArrayDeque<>(); private final Location spawn = Bukkit.getWorld("training").getSpawnLocation(); public MatchTeleportTask(InventoryUtil inventoryUtil, ScoreboardManager scoreboardManager, HologramManager hologramManager) { this.inventoryUtil = inventoryUtil; this.scoreboardManager = scoreboardManager; this.hologramManager = hologramManager; } @Override public void run() { if (backToSpawn.size() != 0) { Player player; for (int i = 0; i < 10; i++) { player = backToSpawn.poll(); if (player == null) return; player.setFlying(false); player.setAllowFlight(false); player.getInventory().clear(); player.getInventory().setArmorContents(null); for (PotionEffect potionEffect : player.getActivePotionEffects()) player.removePotionEffect(potionEffect.getType()); inventoryUtil.giveSpawnInventory(player); scoreboardManager.setScoreboard(player); player.teleport(spawn); hologramManager.sendDefaultHolograms(player); } } } public void teleportToSpawn(Player player) { backToSpawn.add(player); } }
[ "edlewis2712@gmail.com" ]
edlewis2712@gmail.com
15ce2ed2c66e7c6d572db6f7b4a5e2a8a8895ca2
e20e9069597c1107348350922f8d8e83623209cf
/src/br/edu/ifsp/spo/lp1a3/simple_bank/SaldoZeroException.java
ee5c2d718dea0f0999213599c3fad3179981831f
[]
no_license
luis242/aaaa
fe51e78f1dffa9e7a78122936382800963a2594d
8fa67bfeb1c49b4e6d23866135aff59cbed23c18
refs/heads/master
2020-05-05T05:19:02.363232
2019-04-05T20:44:50
2019-04-05T20:44:50
179,746,251
0
0
null
null
null
null
UTF-8
Java
false
false
163
java
package br.edu.ifsp.spo.lp1a3.simple_bank; public class SaldoZeroException extends RuntimeException{ public SaldoZeroException(String msg) { super(msg); } }
[ "luis.antonio@aluno.ifsp.edu.br" ]
luis.antonio@aluno.ifsp.edu.br
06baa0e4995a1e9cc012175e16cbcf7c37dc521e
37674ea897b3a7f5bdac8e2790c95449e0b07d63
/src/main/java/com/github/kusumotolab/tc2p/utils/patternmining/itembag/Transaction.java
4d9f121a872636e03901b4d66b0d7dd8de3c96e3
[]
no_license
kusumotolab/TC2P
49c218323098b7227503b154c8418d4f64ed31bc
dd0259834a093d53aee33c3cb054e37bb9d31875
refs/heads/master
2022-04-11T16:39:40.105022
2020-02-12T05:04:36
2020-02-12T05:04:36
232,695,891
1
0
null
null
null
null
UTF-8
Java
false
false
247
java
package com.github.kusumotolab.tc2p.utils.patternmining.itembag; import java.util.List; import lombok.Data; @Data public class Transaction<T> { private final TransactionID id; private final List<ItemAndOccurrence<T>> itemAndOccurrences; }
[ "mtj0928@users.noreply.github.com" ]
mtj0928@users.noreply.github.com
0d3d5f35aba1025872d8448077b468866c74b923
e291eb6892fdb9b151d565d1137d23ae677d1a23
/poi/src/main/java/com/axisdesktop/poi/repository/UserRepository.java
a2b21beef2a960fd3cda3b19e27c81054961fd7f
[]
no_license
fopcoder/com.axisdesktop.poi
7a405e120090e132fb2402cec47e7703fe570f36
a7d59697fc2b6450789bb15f35e5ad817152f781
refs/heads/master
2020-05-21T12:26:08.804797
2016-06-11T23:56:00
2016-06-11T23:56:00
53,752,765
0
0
null
null
null
null
UTF-8
Java
false
false
479
java
package com.axisdesktop.poi.repository; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import com.axisdesktop.poi.entity.User; import com.axisdesktop.poi.entity.Role; public interface UserRepository extends JpaRepository<User, Long> { User findByEmail( String email ); User findByName( String name ); @Query( name = "User.findRole" ) List<Role> findRole(); }
[ "barabass@gmail.com" ]
barabass@gmail.com
195d9b6ad309461b14e9b35109159a8ceae166f4
670e337dd7abb40af39e4dbe8ed0d0abb2b1f66d
/EvoGUI/src/main/java/genetic/HumanSelectionStrategy.java
a358ebd29f8b464d6935810e4244f5570e288fe4
[]
no_license
josejl1987/UTInteractiveEvoBot
b510700f90ad7b4ac7bc76aaa6169f2a428b9da0
e6e2944ed857de8476ce599665e91237b75811ea
refs/heads/master
2016-09-05T18:34:08.204563
2014-05-19T10:13:35
2014-05-19T10:13:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
982
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package genetic; import evolutionaryComputation.IndividualV1; import java.util.ArrayList; import java.util.List; import java.util.Random; import org.uncommons.watchmaker.framework.EvaluatedCandidate; import org.uncommons.watchmaker.framework.SelectionStrategy; /** * * @author Jose */ public class HumanSelectionStrategy implements SelectionStrategy<IndividualV1>{ double pruneValue; public <S extends IndividualV1> List<S> select(List<EvaluatedCandidate<S>> population, boolean naturalFitnessScores, int selectionSize, Random rng) { List<S> selectedList=new ArrayList<S>(); for (EvaluatedCandidate<S> individual:population){ if(individual.getFitness()>pruneValue){ selectedList.add(individual.getCandidate()); } } return selectedList; } }
[ "josejl1987@gmail.com" ]
josejl1987@gmail.com
e01a7f5f537589118e01d220aaaa7bdf13344660
214c2802c2e018222e1f3b88f4d7b470c68a1201
/src/com/akpanda/behavioural/command/Account.java
41f9ade47565c9cacb5264d1d0353ac1fb42d893
[]
no_license
akpandads/DesignPatterns
16b9068bb5f34788a96f9ddb896687e2dad74974
664aec5ee5bf95af703a947ea23d267d9d9ef041
refs/heads/master
2020-08-06T23:38:17.545423
2019-10-16T19:09:44
2019-10-16T19:09:44
213,202,048
0
0
null
null
null
null
UTF-8
Java
false
false
449
java
package com.akpanda.behavioural.command; class Account { public int balance; public void process(Command c) { switch (c.action) { case DEPOSIT: balance += c.amount; c.success = true; break; case WITHDRAW: c.success = balance >= c.amount; if (c.success) balance -= c.amount; break; } } }
[ "akpanda.ds@gmail.com" ]
akpanda.ds@gmail.com
b007f0eb59725f392163b01d2b8a491a4e6a2aac
e01e8f9a54086fb4379a40671cc0434b9d830f4b
/src/main/java/com/facebook/presto/client/Column.java
37e08dd633b4b55e5fd90dcb61dcfbf16c4f6842
[]
no_license
zhaoshengbo/presto-jdbc
7c9629bf3a03dd683a4ae2725512f68cdfc6df9b
879c58930137b50c97e20a97ab600e8dbbd9d2c9
refs/heads/master
2020-06-14T16:18:40.486189
2016-12-12T12:04:59
2016-12-12T12:04:59
75,160,539
2
0
null
null
null
null
UTF-8
Java
false
false
1,607
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.facebook.presto.client; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import javax.annotation.concurrent.Immutable; import static com.facebook.presto.utils.Objects.requireNonNull; @Immutable public class Column { private final String name; private final String type; private final ClientTypeSignature typeSignature; @JsonCreator public Column( @JsonProperty("name") String name, @JsonProperty("type") String type, @JsonProperty("typeSignature") ClientTypeSignature typeSignature) { this.name = requireNonNull(name, "name is null"); this.type = requireNonNull(type, "type is null"); this.typeSignature = typeSignature; } @JsonProperty public String getName() { return name; } @JsonProperty public String getType() { return type; } @JsonProperty public ClientTypeSignature getTypeSignature() { return typeSignature; } }
[ "zhaoshengbo01@gmail.com" ]
zhaoshengbo01@gmail.com
7aaf06fa74df580b90fd43d9b9f9fa878a34b535
f78daf87fd31e9524aa8a1cbd24c0ad0bc8b6c79
/src/main/java/com/dbsys/rs/client/entity/Pegawai.java
a4e805ad989755d41346e0c71da1b5d0ebbe9735
[ "Apache-2.0" ]
permissive
uvsystem/rumkit-java-client
e64edc11f654a28c41e4d94e4494dda406c00674
d3e709afd239bc6295d68238f9301260ce92adaf
refs/heads/master
2021-01-20T10:47:41.283062
2016-04-01T03:13:29
2016-04-01T03:13:29
43,736,496
1
0
null
null
null
null
UTF-8
Java
false
false
3,992
java
package com.dbsys.rs.client.entity; import com.dbsys.rs.client.entity.Penduduk.Kelamin; import java.sql.Date; import com.fasterxml.jackson.annotation.JsonSubTypes; import com.fasterxml.jackson.annotation.JsonTypeInfo; @JsonTypeInfo( use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "tipe" ) @JsonSubTypes({ @JsonSubTypes.Type(value = Dokter.class, name = "DOKTER"), @JsonSubTypes.Type(value = Perawat.class, name = "PERAWAT"), @JsonSubTypes.Type(value = Apoteker.class, name = "APOTEKER"), @JsonSubTypes.Type(value = Pekerja.class, name = "PEKERJA"), @JsonSubTypes.Type(value = Pegawai.class, name = "PEGAWAI") }) public class Pegawai { protected Long id; protected String nip; protected Penduduk penduduk; public Pegawai() { super(); this.penduduk = new Penduduk(); } public Pegawai(String name) { this(); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getNip() { return nip; } public void setNip(String nip) { this.nip = nip; } public Penduduk getPenduduk() { return penduduk; } public void setPenduduk(Penduduk penduduk) { this.penduduk = penduduk; } public Long getIdPenduduk() { return penduduk.getId(); } public void setIdPenduduk(Long idPenduduk) { penduduk.setId(idPenduduk); } public String getKode() { return penduduk.getKode(); } public void setKode(String kode) { penduduk.setKode(kode); } public String getNik() { return penduduk.getNik(); } public void setNik(String nik) { penduduk.setNik(nik); } public String getNama() { return penduduk.getNama(); } public void setNama(String nama) { penduduk.setNama(nama); } public Kelamin getKelamin() { return penduduk.getKelamin(); } public void setKelamin(Kelamin kelamin) { penduduk.setKelamin(kelamin); } public Date getTanggalLahir() { return penduduk.getTanggalLahir(); } public void setTanggalLahir(Date tanggalLahir) { penduduk.setTanggalLahir(tanggalLahir); } public String getDarah() { return penduduk.getDarah(); } public void setDarah(String darah) { penduduk.setDarah(darah); } public String getAgama() { return penduduk.getAgama(); } public void setAgama(String agama) { penduduk.setAgama(agama); } public String getTelepon() { return penduduk.getTelepon(); } public void setTelepon(String telepon) { penduduk.setTelepon(telepon); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((id == null) ? 0 : id.hashCode()); result = prime * result + ((nip == null) ? 0 : nip.hashCode()); result = prime * result + ((penduduk == null) ? 0 : penduduk.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Pegawai other = (Pegawai) obj; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; if (nip == null) { if (other.nip != null) return false; } else if (!nip.equals(other.nip)) return false; if (penduduk == null) { if (other.penduduk != null) return false; } else if (!penduduk.equals(other.penduduk)) return false; return true; } }
[ "deddykakunsi@outlook.com" ]
deddykakunsi@outlook.com
6211764751470479f455ecff5ced193550d0ab09
4f80acbfb4c64f6e122667107f31268c29fa2e2e
/src/main/java/com/how2java/tmall/service/impl/PropertyValueServiceImpl.java
cd8fd0380aac02ceebfc5bdb950ede564f589106
[]
no_license
Ryan-wangzy/Tmall_SSM
8b4597413ed19f1acc40105d2efe3df77a01509d
af485c2f4ea1d327238ed531bf44b5fdbcd52276
refs/heads/master
2022-12-11T20:21:25.745076
2020-08-26T19:54:09
2020-08-26T19:54:09
285,723,271
0
0
null
null
null
null
UTF-8
Java
false
false
2,012
java
package com.how2java.tmall.service.impl; import com.how2java.tmall.mapper.PropertyValueMapper; import com.how2java.tmall.pojo.*; import com.how2java.tmall.service.PropertyService; import com.how2java.tmall.service.PropertyValueService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class PropertyValueServiceImpl implements PropertyValueService { @Autowired PropertyService propertyService; @Autowired PropertyValueMapper propertyValueMapper; @Override public void init(Product p) { List<Property> pts = propertyService.list(p.getId()); for(Property pt:pts){ PropertyValue pv = get(pt.getId(),p.getId()); if(null == pv){ pv = new PropertyValue(); pv.setPid(p.getId()); pv.setPtid(pt.getId()); propertyValueMapper.insert(pv); } } } @Override public void update(PropertyValue pv) { propertyValueMapper.updateByPrimaryKeySelective(pv); } @Override public PropertyValue get(int pid, int ptid) { PropertyValueExample propertyValueExample = new PropertyValueExample(); propertyValueExample.createCriteria() .andPidEqualTo(pid) .andPtidEqualTo(ptid); List<PropertyValue> pvs = propertyValueMapper.selectByExample(propertyValueExample); if(pvs.isEmpty()) return null; return pvs.get(0); } @Override public List<PropertyValue> list(int pid) { PropertyValueExample example = new PropertyValueExample(); example.createCriteria().andPidEqualTo(pid); List<PropertyValue> result = propertyValueMapper.selectByExample(example); for (PropertyValue pv : result) { Property property = propertyService.get(pv.getPtid()); pv.setProperty(property); } return result; } }
[ "zw2315@nyu.edu" ]
zw2315@nyu.edu
6bff063ca68b8234f7c737d71cb4a82b07829cb0
a2075d046250d6e8b27d69f1030142f0efdf3e2e
/hrms-backend/src/main/java/com/finalproject/hrmsbackend/core/utilities/results/ErrorDataResult.java
bea473114da64f4910088ecbfd389fdece97b4e2
[]
no_license
CosmicDust19/kodlama.io-javareactcamp
c42921845f3a1da52198ca6c59d0747af0bae50f
886bbae133dcf9739d8dda0471a20cfb9cb4952b
refs/heads/master
2023-08-18T02:22:23.016255
2021-10-04T11:40:26
2021-10-04T11:40:26
365,454,905
20
4
null
null
null
null
UTF-8
Java
false
false
444
java
package com.finalproject.hrmsbackend.core.utilities.results; public class ErrorDataResult<T> extends DataResult<T> { public ErrorDataResult(String message, T data) { super(false, message, data); } public ErrorDataResult(T data) { super(false, data); } public ErrorDataResult(String message) { super(false, message, null); } public ErrorDataResult() { super(false, null); } }
[ "smh01.2019@gmail.com" ]
smh01.2019@gmail.com
9d584516f8b012d154f136fac6dfa92797414465
0ea9ec64f5d17eec346a66a8a0da7dafc5efd11a
/chapter_1/1.2/Dragon.java
0c96444a5d82f8576b9c5fca9e76b123e730a6c1
[ "MIT" ]
permissive
out-running-27/Java_Programming
2216cf70f45b5d746160e84c31ba995e8f513646
7af217f157cf602d7980e7b48eb7da353756fdb3
refs/heads/master
2020-03-21T09:44:22.024049
2018-08-08T12:24:22
2018-08-08T12:24:22
138,415,512
0
0
null
null
null
null
UTF-8
Java
false
false
891
java
public class Dragon { public static void main(String[] args) { String dragon0 = "F"; String nogard0 = "F"; String dragon1 = dragon0 + "L" + nogard0; String nogard1 = dragon0 + "R" + nogard0; String dragon2 = dragon1 + "L" + nogard1; String nogard2 = dragon1 + "R" + nogard1; String dragon3 = dragon2 + "L" + nogard2; String nogard3 = dragon2 + "R" + nogard2; String dragon4 = dragon3 + "L" + nogard3; String nogard4 = dragon3 + "R" + nogard3; String dragon5 = dragon4 + "L" + nogard4; System.out.println("order 0: " + dragon0); System.out.println("order 1: " + dragon1); System.out.println("order 2: " + dragon2); System.out.println("order 3: " + dragon3); System.out.println("order 4: " + dragon4); System.out.println("order 5: " + dragon5); } }
[ "paul.russum@gmail.com" ]
paul.russum@gmail.com
c4a57ece8b14f12f32278552925dea8008aad0b7
e223d0d504b0ba0bf7c66ea39cc3eab92c0d7d38
/src/main/java/com/youthchina/domain/tianjian/StuCollect.java
3ad94a359914a4946d8a5ad8e1205df4367fce7c
[]
no_license
TeamYouthChina/backend
be27e0c0860d3ff951de3aee1aecb1c617b9bae8
7fa4bdae18def1a02ef19a0eb1b9d809dd522f99
refs/heads/master
2021-06-19T06:35:17.790968
2019-06-29T04:02:59
2019-06-29T04:02:59
156,775,820
5
9
null
2021-06-15T15:59:46
2018-11-08T22:12:36
Java
UTF-8
Java
false
false
1,069
java
package com.youthchina.domain.tianjian; public class StuCollect { private String stu_id; private String job_id; public String getStu_id() { return stu_id; } public void setStu_id(String stu_id) { this.stu_id = stu_id; } public String getJob_id() { return job_id; } public void setJob_id(String job_id) { this.job_id = job_id; } public String getJob_coll_time() { return job_coll_time; } public void setJob_coll_time(String job_coll_time) { this.job_coll_time = job_coll_time; } public String getCompany_id() { return company_id; } public void setCompany_id(String company_id) { this.company_id = company_id; } public String getCompany_coll_time() { return company_coll_time; } public void setCompany_coll_time(String company_coll_time) { this.company_coll_time = company_coll_time; } private String job_coll_time; private String company_id; private String company_coll_time; }
[ "ctijia@sina.com" ]
ctijia@sina.com
2ca77003c0ceca16289ea227dd15d18a93062916
83e81c25b1f74f88ed0f723afc5d3f83e7d05da8
/core/java/android/view/ViewStub.java
193fb98841735d21c73a073d1f9f02237534e424
[ "Apache-2.0", "LicenseRef-scancode-unicode" ]
permissive
Ankits-lab/frameworks_base
8a63f39a79965c87a84e80550926327dcafb40b7
150a9240e5a11cd5ebc9bb0832ce30e9c23f376a
refs/heads/main
2023-02-06T03:57:44.893590
2020-11-14T09:13:40
2020-11-14T09:13:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,764
java
/* * Copyright (C) 2008 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 android.view; import android.annotation.IdRes; import android.annotation.LayoutRes; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.util.AttributeSet; import android.widget.RemoteViews.RemoteView; import com.android.internal.R; import java.lang.ref.WeakReference; /** * A ViewStub is an invisible, zero-sized View that can be used to lazily inflate * layout resources at runtime. * * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource * is inflated. The ViewStub then replaces itself in its parent with the inflated View or Views. * Therefore, the ViewStub exists in the view hierarchy until {@link #setVisibility(int)} or * {@link #inflate()} is invoked. * * The inflated View is added to the ViewStub's parent with the ViewStub's layout * parameters. Similarly, you can define/override the inflate View's id by using the * ViewStub's inflatedId property. For instance: * * <pre> * &lt;ViewStub android:id="@+id/stub" * android:inflatedId="@+id/subTree" * android:layout="@layout/mySubTree" * android:layout_width="120dip" * android:layout_height="40dip" /&gt; * </pre> * * The ViewStub thus defined can be found using the id "stub." After inflation of * the layout resource "mySubTree," the ViewStub is removed from its parent. The * View created by inflating the layout resource "mySubTree" can be found using the * id "subTree," specified by the inflatedId property. The inflated View is finally * assigned a width of 120dip and a height of 40dip. * * The preferred way to perform the inflation of the layout resource is the following: * * <pre> * ViewStub stub = findViewById(R.id.stub); * View inflated = stub.inflate(); * </pre> * * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View * and the inflated View is returned. This lets applications get a reference to the * inflated View without executing an extra findViewById(). * * @attr ref android.R.styleable#ViewStub_inflatedId * @attr ref android.R.styleable#ViewStub_layout */ @RemoteView public final class ViewStub extends View { private int mInflatedId; private int mLayoutResource; private WeakReference<View> mInflatedViewRef; private LayoutInflater mInflater; private OnInflateListener mInflateListener; public ViewStub(Context context) { this(context, 0); } /** * Creates a new ViewStub with the specified layout resource. * * @param context The application's environment. * @param layoutResource The reference to a layout resource that will be inflated. */ public ViewStub(Context context, @LayoutRes int layoutResource) { this(context, null); mLayoutResource = layoutResource; } public ViewStub(Context context, AttributeSet attrs) { this(context, attrs, 0); } public ViewStub(Context context, AttributeSet attrs, int defStyleAttr) { this(context, attrs, defStyleAttr, 0); } public ViewStub(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context); final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ViewStub, defStyleAttr, defStyleRes); saveAttributeDataForStyleable(context, R.styleable.ViewStub, attrs, a, defStyleAttr, defStyleRes); mInflatedId = a.getResourceId(R.styleable.ViewStub_inflatedId, NO_ID); mLayoutResource = a.getResourceId(R.styleable.ViewStub_layout, 0); mID = a.getResourceId(R.styleable.ViewStub_id, NO_ID); a.recycle(); setVisibility(GONE); setWillNotDraw(true); } /** * Returns the id taken by the inflated view. If the inflated id is * {@link View#NO_ID}, the inflated view keeps its original id. * * @return A positive integer used to identify the inflated view or * {@link #NO_ID} if the inflated view should keep its id. * * @see #setInflatedId(int) * @attr ref android.R.styleable#ViewStub_inflatedId */ @IdRes public int getInflatedId() { return mInflatedId; } /** * Defines the id taken by the inflated view. If the inflated id is * {@link View#NO_ID}, the inflated view keeps its original id. * * @param inflatedId A positive integer used to identify the inflated view or * {@link #NO_ID} if the inflated view should keep its id. * * @see #getInflatedId() * @attr ref android.R.styleable#ViewStub_inflatedId */ @android.view.RemotableViewMethod(asyncImpl = "setInflatedIdAsync") public void setInflatedId(@IdRes int inflatedId) { mInflatedId = inflatedId; } /** @hide **/ public Runnable setInflatedIdAsync(@IdRes int inflatedId) { mInflatedId = inflatedId; return null; } /** * Returns the layout resource that will be used by {@link #setVisibility(int)} or * {@link #inflate()} to replace this StubbedView * in its parent by another view. * * @return The layout resource identifier used to inflate the new View. * * @see #setLayoutResource(int) * @see #setVisibility(int) * @see #inflate() * @attr ref android.R.styleable#ViewStub_layout */ @LayoutRes public int getLayoutResource() { return mLayoutResource; } /** * Specifies the layout resource to inflate when this StubbedView becomes visible or invisible * or when {@link #inflate()} is invoked. The View created by inflating the layout resource is * used to replace this StubbedView in its parent. * * @param layoutResource A valid layout resource identifier (different from 0.) * * @see #getLayoutResource() * @see #setVisibility(int) * @see #inflate() * @attr ref android.R.styleable#ViewStub_layout */ @android.view.RemotableViewMethod(asyncImpl = "setLayoutResourceAsync") public void setLayoutResource(@LayoutRes int layoutResource) { mLayoutResource = layoutResource; } /** @hide **/ public Runnable setLayoutResourceAsync(@LayoutRes int layoutResource) { mLayoutResource = layoutResource; return null; } /** * Set {@link LayoutInflater} to use in {@link #inflate()}, or {@code null} * to use the default. */ public void setLayoutInflater(LayoutInflater inflater) { mInflater = inflater; } /** * Get current {@link LayoutInflater} used in {@link #inflate()}. */ public LayoutInflater getLayoutInflater() { return mInflater; } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { setMeasuredDimension(0, 0); } @Override public void draw(Canvas canvas) { } @Override protected void dispatchDraw(Canvas canvas) { } /** * When visibility is set to {@link #VISIBLE} or {@link #INVISIBLE}, * {@link #inflate()} is invoked and this StubbedView is replaced in its parent * by the inflated layout resource. After that calls to this function are passed * through to the inflated view. * * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}. * * @see #inflate() */ @Override @android.view.RemotableViewMethod(asyncImpl = "setVisibilityAsync") public void setVisibility(int visibility) { if (mInflatedViewRef != null) { View view = mInflatedViewRef.get(); if (view != null) { view.setVisibility(visibility); } else { throw new IllegalStateException("setVisibility called on un-referenced view"); } } else { super.setVisibility(visibility); if (visibility == VISIBLE || visibility == INVISIBLE) { inflate(); } } } /** @hide **/ public Runnable setVisibilityAsync(int visibility) { if (visibility == VISIBLE || visibility == INVISIBLE) { ViewGroup parent = (ViewGroup) getParent(); return new ViewReplaceRunnable(inflateViewNoAdd(parent)); } else { return null; } } private View inflateViewNoAdd(ViewGroup parent) { final LayoutInflater factory; if (mInflater != null) { factory = mInflater; } else { factory = LayoutInflater.from(mContext); } final View view = factory.inflate(mLayoutResource, parent, false); if (mInflatedId != NO_ID) { view.setId(mInflatedId); } return view; } private void replaceSelfWithView(View view, ViewGroup parent) { final int index = parent.indexOfChild(this); parent.removeViewInLayout(this); final ViewGroup.LayoutParams layoutParams = getLayoutParams(); if (layoutParams != null) { parent.addView(view, index, layoutParams); } else { parent.addView(view, index); } } /** * Inflates the layout resource identified by {@link #getLayoutResource()} * and replaces this StubbedView in its parent by the inflated layout resource. * * @return The inflated layout resource. * */ public View inflate() { final ViewParent viewParent = getParent(); if (viewParent != null && viewParent instanceof ViewGroup) { if (mLayoutResource != 0) { final ViewGroup parent = (ViewGroup) viewParent; final View view = inflateViewNoAdd(parent); replaceSelfWithView(view, parent); mInflatedViewRef = new WeakReference<>(view); if (mInflateListener != null) { mInflateListener.onInflate(this, view); } return view; } else { throw new IllegalArgumentException("ViewStub must have a valid layoutResource"); } } else { throw new IllegalStateException("ViewStub must have a non-null ViewGroup viewParent"); } } /** * Specifies the inflate listener to be notified after this ViewStub successfully * inflated its layout resource. * * @param inflateListener The OnInflateListener to notify of successful inflation. * * @see android.view.ViewStub.OnInflateListener */ public void setOnInflateListener(OnInflateListener inflateListener) { mInflateListener = inflateListener; } /** * Listener used to receive a notification after a ViewStub has successfully * inflated its layout resource. * * @see android.view.ViewStub#setOnInflateListener(android.view.ViewStub.OnInflateListener) */ public static interface OnInflateListener { /** * Invoked after a ViewStub successfully inflated its layout resource. * This method is invoked after the inflated view was added to the * hierarchy but before the layout pass. * * @param stub The ViewStub that initiated the inflation. * @param inflated The inflated View. */ void onInflate(ViewStub stub, View inflated); } /** @hide **/ public class ViewReplaceRunnable implements Runnable { public final View view; ViewReplaceRunnable(View view) { this.view = view; } @Override public void run() { replaceSelfWithView(view, (ViewGroup) getParent()); } } }
[ "keneankit01@gmail.com" ]
keneankit01@gmail.com
aae1152a4a414c1a0c1d7a003524093302695f77
ca5ca399c1a14c381d8c4cff3d48be3ef4f4fc62
/smartexServ/src/main/java/com/smartexsev/smartexserv/classes/GroupUser.java
be9d3a87a1a3cbf3c6a7f0d0bfa4bfe5b6812975
[]
no_license
aleksey2101/SmartEx
0f0c7c38399cd6855974f4791cf344e4ed70e78b
23db9760bfad4ffb6a5f4d54bf8d28aff887ec79
refs/heads/master
2022-11-05T14:25:42.802442
2022-10-05T05:44:15
2022-10-05T05:44:15
159,865,604
0
0
null
2018-11-30T18:51:03
2018-11-30T18:51:03
null
UTF-8
Java
false
false
104
java
package com.smartexsev.smartexserv.classes; public class GroupUser { public GroupUser() { } }
[ "37121925+SuperSLD@users.noreply.github.com" ]
37121925+SuperSLD@users.noreply.github.com
78c010e135f56ecb6cbb1d784c8617f1100522c8
00d747791eda39c3340a3f8dd2ed15c028f67af5
/ore-boot/ore-boot-autoconfigure/src/main/java/org/oreframework/boot/autoconfigure/datasource/customize/mybatis/pagehelper/SecondaryPageHelperAutoConfiguration.java
0b3e99848bcb0788a97a9328e69d80f0200f2dee
[]
no_license
levphon/ore
a7a260e93aef7f6377fcfcc69113d13a030a21d2
f855d70c7d3e388e46f09791420b6da922d89bbb
refs/heads/master
2020-03-23T00:14:46.760278
2018-07-13T13:53:19
2018-07-13T13:53:19
140,852,583
1
0
null
null
null
null
UTF-8
Java
false
false
3,361
java
/* * The MIT License (MIT) * * Copyright (c) 2017 abel533@gmail.com * * 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 org.oreframework.boot.autoconfigure.datasource.customize.mybatis.pagehelper; import java.util.LinkedHashMap; import java.util.Map; import java.util.Properties; import javax.annotation.PostConstruct; import org.apache.ibatis.session.SqlSessionFactory; import org.mybatis.spring.SqlSessionFactoryBean; import org.oreframework.boot.autoconfigure.datasource.BeanNameConstants; import org.oreframework.boot.autoconfigure.datasource.customize.mybatis.mapper.SecondaryMybatisAutoConfiguration; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.AutoConfigureAfter; import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.SearchStrategy; import org.springframework.context.annotation.Configuration; import com.github.pagehelper.PageInterceptor; /** * @author huangzz * 2017年3月18日 */ @Configuration @ConditionalOnClass({SqlSessionFactory.class, SqlSessionFactoryBean.class}) @ConditionalOnBean(name = "secondaryDataSource", search = SearchStrategy.ALL) @AutoConfigureAfter(SecondaryMybatisAutoConfiguration.class) public class SecondaryPageHelperAutoConfiguration { private final SqlSessionFactory sqlSessionFactory; private Map<String, String> pagehelper = new LinkedHashMap<String, String>(); public SecondaryPageHelperAutoConfiguration( @Qualifier(BeanNameConstants.SECONDARY_SQLSESSIONFACTORY) SqlSessionFactory sqlSessionFactory) { this.sqlSessionFactory = sqlSessionFactory; } @PostConstruct public void addPageInterceptor() { PageInterceptor interceptor = new PageInterceptor(); Properties properties = new Properties(); properties.putAll(pagehelper); interceptor.setProperties(properties); sqlSessionFactory.getConfiguration().addInterceptor(interceptor); } public Map<String, String> getPagehelper() { return pagehelper; } public void setPagehelper(Map<String, String> pagehelper) { this.pagehelper = pagehelper; } }
[ "payuliu@gmail.com" ]
payuliu@gmail.com
c205967148ddc05d6ccd93d7d3ed32a5560085f7
941cb164c35d531de510e4aa95872711d3405e39
/app/src/main/java/sinia/com/baihangeducation/minecompany/presenter/CompanyUCenterEditTrainingPresenter.java
e000bfd8c244e0a0c2804618b156c13d4723e853
[]
no_license
lenka123123/jy
f81220d6f80cca4fde5872b4e3cb992abb5171b8
2a2fc5d675ec01fd45a3950f1adeb9bcea081c7a
refs/heads/master
2020-03-28T00:50:19.854060
2018-11-30T06:15:47
2018-11-30T06:15:47
147,453,961
1
0
null
null
null
null
UTF-8
Java
false
false
1,608
java
package sinia.com.baihangeducation.minecompany.presenter; import android.app.Activity; import android.util.Log; import com.example.framwork.base.BasePresenter; import com.example.framwork.noHttp.Bean.BaseResponseBean; import com.example.framwork.noHttp.OnRequestListener; import java.util.HashMap; import com.mcxtzhang.swipemenulib.info.TraingDetailInfo; import sinia.com.baihangeducation.home.view.TraingDetailView; import sinia.com.baihangeducation.supplement.tool.BaseRequestInfo; public class CompanyUCenterEditTrainingPresenter extends BasePresenter { private Activity activity; private TraingDetailView view; public CompanyUCenterEditTrainingPresenter(Activity activity, TraingDetailView view) { super(activity); this.activity = activity; this.view = view; } public void getMyReleaseTrainingDetailInfo(){ HashMap info = BaseRequestInfo.getInstance().getRequestInfo(activity,"getTrainInfo","home",true); info.put("train_id",view.getTrainId()); view.showLoading(); post(info, new OnRequestListener() { @Override public void requestSuccess(BaseResponseBean bean) { Log.i("培训详情",bean.toString()); TraingDetailInfo mTraingDetailInfo = bean.parseObject(TraingDetailInfo.class); view.getMyReleaseTraingDetailInfoSuccess(mTraingDetailInfo); } @Override public void requestFailed(String error) { } @Override public void requestFinish() { } }); } }
[ "13902276741@163.com" ]
13902276741@163.com
db8b71019386cba44523977b45761db780bf65e1
f067d20fe6f2a0dd2a4a62798b6e5530acb92ea6
/jdbc_forgit_1/src/com/imook/model/Goddess.java
fe8275a1a5e6607b350a9f4f670947aca0cfe6c7
[]
no_license
zhaoyonxin/JDBC_NEW
9f4d4529a20d3b7a3645a5826ab16c890df384a3
51742e123a0a4e52c6b15ccc49f3355582e60828
refs/heads/master
2021-05-02T00:00:55.551643
2016-12-07T09:54:12
2016-12-07T09:54:12
78,197,530
1
0
null
2017-01-06T10:29:10
2017-01-06T10:29:10
null
UTF-8
Java
false
false
2,344
java
package com.imook.model; import java.sql.Date; import java.sql.Timestamp; public class Goddess { private Long ID; private Timestamp creat_at; private Timestamp update_at; private String name; private Integer qq; private String xiuzhenstyle; private String biyeschool; private Integer xuehao; private Date ruxuetime; private String ribaolianjie; private String zhiyuan; private String tuijianren; public Long getID() { return ID; } public void setID(Long iD) { ID = iD; } public Timestamp getCreat_at() { return creat_at; } public void setCreat_at(Timestamp creat_at) { this.creat_at = creat_at; } public Timestamp getUpdate_at() { return update_at; } public void setUpdate_at(Timestamp update_at) { this.update_at = update_at; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getQq() { return qq; } public void setQq(Integer qq) { this.qq = qq; } public String getXiuzhenstyle() { return xiuzhenstyle; } public void setXiuzhenstyle(String xiuzhenstyle) { this.xiuzhenstyle = xiuzhenstyle; } public String getBiyeschool() { return biyeschool; } public void setBiyeschool(String biyeschool) { this.biyeschool = biyeschool; } public Integer getXuehao() { return xuehao; } public void setXuehao(Integer xuehao) { this.xuehao = xuehao; } public Date getRuxuetime() { return ruxuetime; } public void setRuxuetime(Date ruxuetime) { this.ruxuetime = ruxuetime; } public String getRibaolianjie() { return ribaolianjie; } public void setRibaolianjie(String ribaolianjie) { this.ribaolianjie = ribaolianjie; } public String getZhiyuan() { return zhiyuan; } public void setZhiyuan(String zhiyuan) { this.zhiyuan = zhiyuan; } public String getTuijianren() { return tuijianren; } public void setTuijianren(String tuijianren) { this.tuijianren = tuijianren; } @Override public String toString() { return "Goddess [ID=" + ID + ", creat_at=" + creat_at + ", update_at=" + update_at + ", name=" + name + ", qq=" + qq + ", xiuzhenstyle=" + xiuzhenstyle + ", biyeschool=" + biyeschool + ", xuehao=" + xuehao + ", ruxuetime=" + ruxuetime + ", ribaolianjie=" + ribaolianjie + ", zhiyuan=" + zhiyuan + ", tuijianren=" + tuijianren + "]"; } }
[ "longzidao@gmail.com" ]
longzidao@gmail.com
c06cfc814a32d082b6d0955d41664da6d2000561
f704fa2f8164f646b6eec606b3a89953be34e3da
/src/main/java/servlets/DeleteCategoria.java
fdda5ff91b4008f102106b26f9071f8ba4fef0df
[]
no_license
Fab91-r/HoneyMoney
ae2c86ad2d1875a68e45f148632b77812dff31c5
c71ed2a59be1758c3694d8674775158c15147d45
refs/heads/master
2022-07-03T19:44:15.725201
2019-09-08T13:31:38
2019-09-08T13:31:38
205,343,729
0
0
null
null
null
null
UTF-8
Java
false
false
1,918
java
package servlets; import java.io.IOException; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import connections.ConnessioneDb; import models.Categoria; import models.Transazione; public class DeleteCategoria extends HttpServlet { @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { HttpSession session = req.getSession(); String user = (String) session.getAttribute("user"); int idCategoria = Integer.parseInt(req.getParameter("categoria")); List<Transazione> listaTransazioniPerCategoria = new ArrayList<>(); String categoria = null; try { categoria = ConnessioneDb.getCategoria(idCategoria); } catch (ClassNotFoundException | SQLException e1) { e1.printStackTrace(); } Categoria cat = new Categoria(categoria); try { listaTransazioniPerCategoria.addAll(ConnessioneDb.getTransazioniPerCategoria(cat, user)); } catch (ClassNotFoundException | SQLException e1) { e1.printStackTrace(); } if(listaTransazioniPerCategoria.isEmpty()) { try { ConnessioneDb.deleteCategoria(idCategoria); } catch (ClassNotFoundException | SQLException e) { e.printStackTrace(); } String messaggio = "CATEGORIA ELIMINATA CON SUCCESSO!"; req.setAttribute("messaggio", messaggio); } else { String messaggio = "IMPOSSIBILE ELIMINARE LA CATEGORIA POICHE' ESISTONO TRANSAZIONI CON QUELLA CATEGORIA! ELIMINARE PRIMA LE RELATIVE TRANSAZIONI!"; req.setAttribute("messaggio2", messaggio); } getServletContext().getRequestDispatcher("/benvenuto.jsp").forward(req, resp); } }
[ "fabiano.ruggeri91@gmail.com" ]
fabiano.ruggeri91@gmail.com
ffbc97704aab8d1b7759c2e036c448e626c76e3f
3817034dadbc65e6ab8993072bf0a88d0886f553
/src/main/java/az/mycompany/TechnoMarket/db/ProductRepo.java
dbedd480020fa85a3d0e264e99441013f79ee49f
[]
no_license
BaxtiyarMammadyarov/TechnoMarket
8403f70dc0ac6df8d9ec8557a7b371b666a9c77f
0d656c3a04664c109056b38ee0fdda48a13ae9db
refs/heads/master
2023-06-21T10:42:25.947902
2021-07-15T12:26:22
2021-07-15T12:26:22
381,838,574
0
0
null
null
null
null
UTF-8
Java
false
false
6,073
java
package az.mycompany.TechnoMarket.db; import az.mycompany.TechnoMarket.model.Brand; import az.mycompany.TechnoMarket.model.Model; import az.mycompany.TechnoMarket.model.Product; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; public class ProductRepo { public List<Product> get() { ConnectionDb conn = new ConnectionDb(); List<Product> list = new ArrayList<>(); try { Statement stmt = conn.getConnection().createStatement(); ResultSet set = stmt.executeQuery("select * from product p join model m " + "on (p.model_id=m.id) " + " join " + " brand b on(m.brand_id=b.id)"); while (set.next()) { list.add(convertResultSetToProduct(set)); } conn.disConnection(); } catch (SQLException throwables) { throwables.printStackTrace(); } return list; } public Product add(Product product) { ModelRepo repo = new ModelRepo(); ConnectionDb conn = new ConnectionDb(); Product product1 = getByNameAndColor(product.getName(), product.getColor()); Model model = new Model(); try { if (product1 == null) { if (repo.existByModel(product.getModel())) { model = repo.getByName(product.getModel().getName()); } else { model = repo.add(product.getModel()); } PreparedStatement stmt = conn .getConnection() .prepareStatement( "insert into product(" + "name,color,photo,product_type,price,product_count,model_id,create_date) " + "values(?,?,?,?,?,?,?,?) "); stmt.setString(1, product.getName()); stmt.setString(2, product.getColor()); stmt.setString(3, product.getPhoto()); stmt.setString(4,product.getType()); stmt.setBigDecimal(5,product.getPrice()); stmt.setInt(6, product.getCountProduct()); stmt.setInt(7, model.getId()); LocalDateTime dateTime=LocalDateTime.now(); stmt.setString(8,dateTime.toString()); stmt.executeUpdate(); product.setModel(model); conn.disConnection(); } else { product = product1; } } catch (SQLException throwables) { throwables.printStackTrace(); } return product; } public void delete(int id) { ConnectionDb conn = new ConnectionDb(); try { PreparedStatement stmt = conn .getConnection() .prepareStatement("update product set enabled=false where id=?"); stmt.setInt(1, id); stmt.executeUpdate(); conn.disConnection(); } catch (SQLException throwables) { throwables.printStackTrace(); } } public void update(Product product) { } public Product getByNameAndColor(String name, String color) { ConnectionDb connection = new ConnectionDb(); Product product = null; try { PreparedStatement statement = connection .getConnection() .prepareStatement("select * from product where name=? and color=?"); statement.setString(1, name); statement.setString(2, color); ResultSet set = statement.executeQuery(); while (set.next()) { product = convertResultSetToProduct(set); } } catch (SQLException throwables) { throwables.printStackTrace(); } return product; } private Product convertResultSetToProduct(ResultSet set) throws SQLException { return new Product(set.getInt("product.id") , LocalDateTime.parse(set.getString("product.create_date")) , set.getBoolean("product.enabled") , set.getString("product.name") , set.getString("color") , set.getString("photo") ,set.getString("type") ,set.getBigDecimal("price") , set.getInt("count_product"), new Model(set.getInt("model.id") , LocalDateTime.parse(set.getString("model.create_date")) , set.getBoolean("model.enabled") , set.getString("model.name"), new Brand(set.getInt("brand.id") , LocalDateTime.parse(set.getDate("brand.create_date").toString()) , set.getBoolean("brand.enabled") , set.getString("brand.name")))); } public List<String>getBrandNameByType(String type){ List<String>list=new ArrayList<>(); ConnectionDb conn = new ConnectionDb(); try { PreparedStatement stmt = conn .getConnection() .prepareStatement("select distinct p.product_type from product p join model m " + "on (p.model_id=m.id)" + "join brand b on(m.brand_id=b.id)" + "where p.product_type=?"); stmt.setString(1, type); try (ResultSet resultSet = stmt.executeQuery()) { while (resultSet.next()) { list.add(resultSet.getString(type)); } } conn.disConnection(); } catch (SQLException throwables) { throwables.printStackTrace(); } return list; } }
[ "baxtiyar0393@gmail.com" ]
baxtiyar0393@gmail.com
b4776c6fa08fca8682a5076f2c88705e38da01b0
dbb6ff9ddb50f09731f96b1b892a39dd78e11c42
/app/src/main/java/com/navigation/drawer/activity/Activity/Editer.java
ba6de3731e0e28288ea8db4e3d6f951f21efaf31
[]
no_license
Meftahi12/AmineTazi
8686f739ba1bc4c1660851684f389cc73579a5a3
55bccade688f23f3d1ab51624526f93ff8db4556
refs/heads/master
2021-01-20T01:36:12.880510
2017-04-25T02:12:01
2017-04-25T02:12:01
89,306,451
0
0
null
null
null
null
UTF-8
Java
false
false
3,714
java
package com.navigation.drawer.activity.Activity; import android.content.Intent; import android.os.AsyncTask; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.EditText; import android.widget.Toast; import com.navigation.drawer.activity.R; import java.io.IOException; public class Editer extends BaseActivity { String nom,prenom,sexe,email,tel,num_permi,date_permi,password,confirm; boolean isEdited = false ; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getLayoutInflater().inflate(R.layout.activity_editer, frameLayout); mDrawerList.setItemChecked(position, true); setTitle(listArray[position]); ((EditText) findViewById(R.id.nome)).setText(Profil.currentUser.getNom()); ((EditText) findViewById(R.id.prenome)).setText(Profil.currentUser.getPrenom()); ((EditText) findViewById(R.id.sexee)).setText(Profil.currentUser.getSexe()); ((EditText) findViewById(R.id.emaile)).setText(Profil.currentUser.getEmail()); ((EditText) findViewById(R.id.tele)).setText(Profil.currentUser.getTel()); ((EditText) findViewById(R.id.num_permie)).setText(Profil.currentUser.getNum_permi()); ((EditText) findViewById(R.id.date_permie)).setText(Profil.currentUser.getDate_permi()); ((EditText) findViewById(R.id.passworde)).setText(Profil.currentUser.getPassword()); ((EditText) findViewById(R.id.confirme)).setText(Profil.currentUser.getPassword()); } public void edit(View view) { nom = ((EditText) findViewById(R.id.nome)).getText().toString(); prenom = ((EditText) findViewById(R.id.prenome)).getText().toString(); sexe = ((EditText) findViewById(R.id.sexee)).getText().toString(); email = ((EditText) findViewById(R.id.emaile)).getText().toString(); tel = ((EditText) findViewById(R.id.tele)).getText().toString(); num_permi = ((EditText) findViewById(R.id.num_permie)).getText().toString(); date_permi = ((EditText) findViewById(R.id.date_permie)).getText().toString(); password = ((EditText) findViewById(R.id.passworde)).getText().toString(); confirm = ((EditText) findViewById(R.id.confirme)).getText().toString(); new MyTask().execute(); } public class MyTask extends AsyncTask<Void,String,Void> { @Override protected Void doInBackground(Void... params) { if (!password.equals(confirm)) { publishProgress("mot de passe incorect"); } else{ String url = "http://"+Signin.ipAdresse+"/covoiturage/Editer.php?id="+Profil.id+"&password="+password+"&nom="+nom+"&prenom="+prenom+"&sexe="+sexe+"&email="+email+"&tel="+tel+"&num_permi="+num_permi+"&date_permi="+date_permi ; try { String reponse = HttpManager.getDatas(url) ; if(reponse.equals("done")) isEdited = true ; publishProgress(reponse); } catch (IOException e) { e.printStackTrace(); } } return null; } @Override protected void onProgressUpdate(String... values) { super.onProgressUpdate(values); Toast.makeText(getApplicationContext(),values[0],Toast.LENGTH_LONG).show(); } @Override protected void onPostExecute(Void aVoid) { super.onPostExecute(aVoid); if(isEdited) startActivity(new Intent(Editer.this,Profil.class)); } } }
[ "abdomeftahi7@gmail.com" ]
abdomeftahi7@gmail.com
d1981d01a4c829dfc3c1c8f7079716eaccfd3303
c2fa04760594de051e51eb1b7102b827424951ae
/YiXin/src/com/yxst/epic/yixin/activity/ContactSearchActivity.java
a533b8f489f0f13eca29ff93f3ac217542592af4
[ "Apache-2.0" ]
permissive
glustful/mika
c3d9c7b61f02ac94a7e750ebf84391464054e2a3
300c9e921fbefd00734882466819e5987cfc058b
refs/heads/master
2021-01-10T10:50:44.125499
2016-04-06T01:45:26
2016-04-06T01:45:26
55,567,241
0
0
null
null
null
null
UTF-8
Java
false
false
5,868
java
package com.yxst.epic.yixin.activity; import org.androidannotations.annotations.AfterInject; import org.androidannotations.annotations.AfterViews; import org.androidannotations.annotations.Background; import org.androidannotations.annotations.Bean; import org.androidannotations.annotations.Click; import org.androidannotations.annotations.EActivity; import org.androidannotations.annotations.ItemClick; import org.androidannotations.annotations.UiThread; import org.androidannotations.annotations.ViewById; import org.androidannotations.api.rest.RestErrorHandler; import org.springframework.web.client.RestClientException; import android.support.v7.app.ActionBar; import android.support.v7.app.ActionBarActivity; import android.text.TextUtils; import android.util.Log; import android.view.View; import android.widget.AbsListView; import android.widget.AbsListView.OnScrollListener; import android.widget.EditText; import android.widget.ImageButton; import android.widget.ListView; import android.widget.Toast; import com.miicaa.home.R; import com.yxst.epic.yixin.adapter.ContactSearchAdapter; import com.yxst.epic.yixin.data.dto.model.Member; import com.yxst.epic.yixin.data.dto.request.BaseRequest; import com.yxst.epic.yixin.data.dto.request.SearchRequest; import com.yxst.epic.yixin.data.dto.response.BaseResponse; import com.yxst.epic.yixin.data.dto.response.SearchResponse; import com.yxst.epic.yixin.data.rest.IMInterface; import com.yxst.epic.yixin.rest.IMInterfaceProxy; import com.yxst.epic.yixin.utils.CacheUtils; import com.yxst.epic.yixin.view.ContactItemFooterView; import com.yxst.epic.yixin.view.ContactItemFooterView_; @EActivity(R.layout.activity_contact_search) public class ContactSearchActivity extends ActionBarActivity implements OnScrollListener, RestErrorHandler { private static final String TAG = "ContactSearchActivity"; @ViewById EditText etSearch; @ViewById ImageButton btnSearch; @ViewById(android.R.id.list) ListView mListView; @Bean ContactSearchAdapter mAdapter; private ContactItemFooterView mFooterView; IMInterface mIMInterfaceProxy; @AfterInject void afterInject() { mIMInterfaceProxy = IMInterfaceProxy.create(); mIMInterfaceProxy.setRestErrorHandler(this); } @AfterViews void afterViews() { final ActionBar bar = getSupportActionBar(); bar.setTitle("搜索联系人"); int flags = ActionBar.DISPLAY_HOME_AS_UP; int change = bar.getDisplayOptions() ^ flags; bar.setDisplayOptions(change, flags); mListView.setOnScrollListener(this); ContactItemFooterView footerView = ContactItemFooterView_.build(this); mFooterView = footerView; setAdapter(); mFooterView.hide(); } @Override public boolean onSupportNavigateUp() { finish(); return true; } private void setAdapter() { mListView.addFooterView(mFooterView); mListView.setAdapter(mAdapter); } private String searchKey; @Click(R.id.btnSearch) void onClickBtnSearch(View v) { searchKey = etSearch.getText().toString(); if (!TextUtils.isEmpty(searchKey)) { mAdapter.clear(); setAdapter(); mFooterView.show(); doInBackground(searchKey, 0); } } int lastVisibleItem = 0; @Override public void onScrollStateChanged(AbsListView view, int scrollState) { Log.d(TAG, "onScrollStateChanged()"); Log.d(TAG, "onScrollStateChanged() lastVisibleItem:" + lastVisibleItem); Log.d(TAG, "onScrollStateChanged() mAdapter.getCount():" + mAdapter.getCount()); if (scrollState == OnScrollListener.SCROLL_STATE_IDLE && lastVisibleItem == mAdapter.getCount()) { doInBackground(searchKey, mAdapter.getCount()); } } private int Count; @Override public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { Log.d(TAG, "onScroll()"); Log.d(TAG, "onScroll() totalItemCount:" + totalItemCount); Log.d(TAG, "onScroll() Count:" + Count); // 计算最后可见条目的索引 lastVisibleItem = firstVisibleItem + visibleItemCount - 1; // 所有的条目已经和最大条数相等,则移除底部的View // if (totalItemCount == Count + 1) { // mListView.removeFooterView(mFooterView); // } } @Background void doInBackground(String searchKey, int offset) { onPreExecute(); BaseRequest baseRequest = CacheUtils.getBaseRequest(this); SearchRequest request = new SearchRequest(); request.BaseRequest = baseRequest; // request.SearchKey = ""; request.SearchKey = searchKey; request.Offset = offset; request.Limit = 20; request.SearchType = SearchRequest.SEARCH_TYPE_USER; Log.d(TAG, "doInBackground() request:" + request); SearchResponse response = mIMInterfaceProxy.search(request); onPostExecute(response); } @UiThread void onPreExecute() { mFooterView.setVisibility(View.VISIBLE); } @UiThread void onPostExecute(SearchResponse response) { Log.d(TAG, "onPostExecute() response:" + response); if (response == null) { return; } if (response.BaseResponse.Ret != BaseResponse.RET_SUCCESS) { Toast.makeText(this, response.BaseResponse.ErrMsg, Toast.LENGTH_SHORT).show(); return; } Count = response.Count; mAdapter.addMembers(response.MemberList); if (mAdapter.getCount() == Count) { mListView.removeFooterView(mFooterView); } if (Count > 0 && mAdapter.getCount() == Count) { mListView.removeFooterView(mFooterView); Toast.makeText(this, "数据全部加载完成,没有更多数据!", Toast.LENGTH_SHORT).show(); } } @UiThread @Override public void onRestClientExceptionThrown(RestClientException e) { Toast.makeText(this, "访问失败", Toast.LENGTH_SHORT).show(); if (mAdapter.getCount() == 0) { mListView.removeFooterView(mFooterView); } } @ItemClick(android.R.id.list) void onItemClick(Member member) { ContactDetailActivity_.intent(this).member(member) .userName(member.UserName).start(); } }
[ "852411097@qq.com" ]
852411097@qq.com
5ef9293dc9a688ee3b6766df54f0363b462ed141
0df29e25937a4906242865e61a5fa4b11e857989
/app/src/main/java/org/debuggers/anew/toura/AsiaExpress.java
c5972f82442f19cec0bab846472ef1c950c75770
[]
no_license
ArianulIslam/Toura
a35db338181f3f0c94a94651c05197f0dad2a6e1
7feaa55fddb1cf36f15826ad68eaf06882a3e8de
refs/heads/master
2020-04-06T20:11:31.043279
2018-11-15T19:59:57
2018-11-15T19:59:57
157,764,877
0
0
null
null
null
null
UTF-8
Java
false
false
378
java
package org.debuggers.anew.toura; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import com.example.anew.toura.R; public class AsiaExpress extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_asia_express); } }
[ "Arianul Islam" ]
Arianul Islam
1635c76b6db4e34c6bcf05d358ab12934fb911f1
922a00017570decd4fde5eda79c43bb4327a37b0
/web-customer-tracker/src/spring/project/service/CustomerService.java
e640a7f8f5ecc2ba77fa4c4eb75c99f1696b6fd4
[]
no_license
jameszrx/Spring-Hibernate-Application
74acee847a1d564341127c621385f9a14f5127cb
6b2ce8e45c95ab715ed54d84391a85caac513dfa
refs/heads/master
2021-01-19T18:36:00.628232
2017-04-23T00:59:33
2017-04-23T00:59:33
88,367,369
1
0
null
null
null
null
UTF-8
Java
false
false
312
java
package spring.project.service; import java.util.List; import spring.project.entity.Customer; public interface CustomerService { public List<Customer> getCustomers(); public void saveCustomer(Customer theCustomer); public Customer getCustomer(String theID); public void deleteCustomer(String theID); }
[ "jameszrx@gmail.com" ]
jameszrx@gmail.com
0fdd6f9dc682b763a47a8b1c912280952f86e473
053907fcba677f7ee29b01d48563c06968564aee
/mis/src/main/java/kr/co/reyonpharm/models/ApproInfo.java
b6a4ab90f45e3b1030c49f7b1fafea4f1bcf1dca
[]
no_license
insanezindol/ryweb
a9c9060da1b647aa92daacd553beae75567bdd44
af7421a21ba89439e625a49b77cfece56e9f1d35
refs/heads/master
2022-03-02T03:03:40.945053
2019-11-07T07:34:49
2019-11-07T07:34:49
192,834,030
0
0
null
null
null
null
UTF-8
Java
false
false
585
java
package kr.co.reyonpharm.models; import lombok.Getter; import lombok.Setter; public class ApproInfo { private @Getter @Setter String approKey; private @Getter @Setter String userNum; private @Getter @Setter String approState; private @Getter @Setter String upDate; private @Getter @Setter String iseditable; private @Getter @Setter String endDate; private @Getter @Setter String fcode; private @Getter @Setter String subject; private @Getter @Setter String contents; private @Getter @Setter String approSerial; private @Getter @Setter String saCode; }
[ "18021201@192.168.1.84" ]
18021201@192.168.1.84
d7ff7ba7baef05ee297e1d19f23f9eb29fabcec7
355567b3d85ae83caf33e469a7bcb662498239bb
/src/main/java/com/ahnu/app/common/EmailConstant.java
43cee16005768f8641bb195c7712eb4d96c51470
[]
no_license
Rocinantee/campushoy
6180608333d431819eecfbce3be437a3ce3ee3bd
35dc2c50e2bf14a6610cf64ab22b4dc59a1ef596
refs/heads/master
2023-02-05T17:14:29.267784
2020-12-28T14:07:05
2020-12-28T14:07:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
229
java
package com.ahnu.app.common; /** * @author DamonCheng@ssw.com.au * @date 8/4/2020 4:43 PM */ public interface EmailConstant { String SUCCESS = "疫情信息提交成功"; String FAIL = "疫情信息提交失败"; }
[ "DamonCheng@ssw.com.au" ]
DamonCheng@ssw.com.au
d98594cb61c2781f7fb92fbed2b053c80b4105d3
1c6d47856e1c6969ea5028b07ac23b967e42b69d
/Byte/code/learn-byte/src/main/java/lsieun/bit/c_use/C_Port.java
ebd201eb144658faca81ea8ce2eaab83900512f9
[ "MIT" ]
permissive
Silentsoul04/learn-java
439f82ff387ae1fc6fdd1e58a8066c313453d0c5
03bdac6fa970051de305db40300fae228810aaf3
refs/heads/master
2022-12-30T04:01:13.922338
2020-08-01T10:57:38
2020-08-01T10:57:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,023
java
package lsieun.bit.c_use; import java.nio.ByteBuffer; import java.util.Random; public class C_Port { public static void main(String[] args) { Random rand = new Random(); for (int i = 0; i < 1000; i++) { byte b1 = (byte) rand.nextInt(256); byte b2 = (byte) rand.nextInt(256); int result1 = toInt1(b1, b2); int result2 = toInt2(b1, b2); if (result1 != result2) { System.out.println(b1 + ", " + b2 + ": " + result1 + ", " + result2); } } } public static int toInt1(byte b1, byte b2) { return (b1 & 0xFF) << 8 | (b2 & 0xFF); } public static int toInt2(byte b1, byte b2) { byte[] bytes = new byte[Integer.BYTES]; bytes[0] = 0; bytes[1] = 0; bytes[2] = b1; bytes[3] = b2; ByteBuffer byteBuffer = ByteBuffer.allocate(Integer.BYTES); byteBuffer.put(bytes); byteBuffer.flip(); return byteBuffer.getInt(); } }
[ "331505785@qq.com" ]
331505785@qq.com
09b6a9be974c7e7b1b930bc08fce74ee61891919
e401f15e851d1d163dd2c4a621ac4f627daf5534
/charts/tool/src/main/java/com/s2charts/tool/util/JsonFormatTool.java
4d5d201e8cbb5e1ee737c40c08e5a5ad8fa3fcc8
[]
no_license
lyh95/s2charts
d74631c0456d0effc2953dc48bc2a4da16889324
f0678e7ee1ee5415d7356775c5c359792ed50642
refs/heads/master
2023-04-27T19:04:13.183413
2019-12-09T09:08:12
2019-12-09T09:08:12
185,192,712
0
1
null
2023-04-14T17:42:37
2019-05-06T12:31:09
JavaScript
UTF-8
Java
false
false
5,960
java
package com.s2charts.tool.util; import java.util.ArrayList; /** * json 格式化 * * @author Linhao * */ public class JsonFormatTool { /** * 制表符 */ public static String FILL_STRING_UNIT_TAB = " "; /** * json字符串的格式化 * @param json 需要格式的json串 * @param fillStringUnit每一层之前的占位符号比如空格 制表符 * @return */ public static String formatJson(String json) { return formatJson(json,FILL_STRING_UNIT_TAB); } /** * json字符串的格式化 * @param json 需要格式的json串 * @param fillStringUnit每一层之前的占位符号比如空格 制表符 * @return */ public static String formatJson(String json, String fillStringUnit) { if (json == null || json.trim().length() == 0) { return json; } if(fillStringUnit == null){ fillStringUnit = FILL_STRING_UNIT_TAB; } int fixedLenth = 0; ArrayList<String> tokenList = new ArrayList<String>(); { String jsonTemp = json; //预读取 while (jsonTemp.length() > 0) { String token = getToken(jsonTemp); jsonTemp = jsonTemp.substring(token.length()); token = token.trim(); tokenList.add(token); } } for (int i = 0; i < tokenList.size(); i++) { String token = tokenList.get(i); int length = token.getBytes().length; if (length > fixedLenth && i < tokenList.size() - 1 && tokenList.get(i + 1).equals(":")) { fixedLenth = length; } } StringBuilder buf = new StringBuilder(); int count = 0; for (int i = 0; i < tokenList.size(); i++) { String token = tokenList.get(i); if (token.equals(",")) { buf.append(token); doFill(buf, count, fillStringUnit); continue; }else if (token.equals(":")) { buf.append(" ").append(token).append(" "); continue; }else if (token.equals("{")) { String nextToken = tokenList.get(i + 1); if (nextToken.equals("}")) { i++; buf.append("{ }"); } else { count++; buf.append(token); doFill(buf, count, fillStringUnit); } continue; }else if (token.equals("}")) { count--; doFill(buf, count, fillStringUnit); buf.append(token); continue; }else if (token.equals("[")) { String nextToken = tokenList.get(i + 1); if (nextToken.equals("]")) { i++; buf.append("[ ]"); } else { count++; buf.append(token); doFill(buf, count, fillStringUnit); } continue; } else if (token.equals("]")) { count--; doFill(buf, count, fillStringUnit); buf.append(token); continue; } buf.append(token); //左对齐 if (i < tokenList.size() - 1 && tokenList.get(i + 1).equals(":")) { int fillLength = fixedLenth - token.getBytes().length; if (fillLength > 0) { for(int j = 0; j < fillLength; j++) { buf.append(" "); } } } } return buf.toString(); } /** * * @param json * @return */ private static String getToken(String json) { StringBuilder buf = new StringBuilder(); boolean isInYinHao = false; while (json.length() > 0) { String token = json.substring(0, 1); json = json.substring(1); if (!isInYinHao && (token.equals(":") || token.equals("{") || token.equals("}") || token.equals("[") || token.equals("]") || token.equals(","))) { if (buf.toString().trim().length() == 0) { buf.append(token); } break; } if (token.equals("\\")) { buf.append(token); buf.append(json.substring(0, 1)); json = json.substring(1); continue; } if (token.equals("\"")) { buf.append(token); if (isInYinHao) { break; } else { isInYinHao = true; continue; } } buf.append(token); } return buf.toString(); } /** * 填充字符串 * @param buf * @param count * @param fillStringUnit */ private static void doFill(StringBuilder buf, int count, String fillStringUnit) { buf.append("\n"); for (int i = 0; i < count; i++) { buf.append(fillStringUnit); } } public static void main(String[] args){ String j = "[{\"name\":\"法人单位\",\"value\":\"单位数(万个)\"},{\"name\":\"企业法人\",\"value\":59.2},{\"name\":\"机关、事业法人\",\"value\":1.4},{\"name\":\"社会团体和其他法人\",\"value\":2.5}]"; System.out.println(formatJson(j)); } }
[ "13269577669@163.com" ]
13269577669@163.com
313bb8cd681b6dbb3eb7c6780018918f0d2aa3dc
3aac6f4af51a75093975c5ed88c69a604c253187
/app/src/main/java/com/koolz/kietcookery/menu.java
435af6e340412d3e1613322aabfd2972d95bcc93
[]
no_license
kritikkoolz/Kiet_Cookery
9e5b2206d8fce67cae2be340e525a9661a3ad48c
f4736ed6037d15752e6361c4d94b52449a0a3295
refs/heads/master
2023-01-01T16:00:50.996134
2020-10-26T08:48:16
2020-10-26T08:48:16
307,309,497
0
1
null
null
null
null
UTF-8
Java
false
false
326
java
package com.koolz.kietcookery; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class menu extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_menu); } }
[ "kritikbansal75@gmail.com" ]
kritikbansal75@gmail.com
d38886ebd48bc57680bd1fc16085269ea2608d31
71030943c40106ef167227ab8192f0eb8a59335d
/src/test/java/net/wendal/nutzbook/DyDataSorce.java
64b6a99fe2f72656bf90f65c2bf4df7007f1497f
[ "Apache-2.0", "MIT" ]
permissive
vincent109/nutz-book-project
be2e21384044253d88e58cf4a1cf2bc049895c5d
e6423e4682ae89f374c7ff012560117a4a943791
refs/heads/master
2023-04-15T18:35:30.125944
2021-04-28T04:01:01
2021-04-28T04:01:01
74,447,410
0
0
Apache-2.0
2021-04-28T04:01:02
2016-11-22T07:44:30
JavaScript
UTF-8
Java
false
false
1,362
java
package net.wendal.nutzbook; import java.io.PrintWriter; import java.sql.Connection; import java.sql.SQLException; import java.sql.SQLFeatureNotSupportedException; import java.util.logging.Logger; import javax.sql.DataSource; import org.nutz.lang.Lang; public class DyDataSorce implements DataSource{ public static ThreadLocal<DataSource> th = new ThreadLocal<>(); public Connection getConnection() throws SQLException { return th.get().getConnection(); } // --------------------------------- // ---- 其他方法没用 // --------------------------------- public PrintWriter getLogWriter() throws SQLException { throw Lang.noImplement(); } public void setLogWriter(PrintWriter out) throws SQLException { throw Lang.noImplement(); } public void setLoginTimeout(int seconds) throws SQLException { throw Lang.noImplement(); } public int getLoginTimeout() throws SQLException { throw Lang.noImplement(); } public Logger getParentLogger() throws SQLFeatureNotSupportedException { throw Lang.noImplement(); } public <T> T unwrap(Class<T> iface) throws SQLException { throw Lang.noImplement(); } public boolean isWrapperFor(Class<?> iface) throws SQLException { throw Lang.noImplement(); } public Connection getConnection(String username, String password) throws SQLException { throw Lang.noImplement(); } }
[ "wendal1985@gmail.com" ]
wendal1985@gmail.com
67867c104a35b73de965fc6b340ff4bf6f074f94
1e23cc44fbf032bdeee9ef19617f446b1c5e8ffe
/app/src/main/java/aziz/sohail/mvpsample/di/DatabaseModule.java
a81cc37fbf1143181b8bf097d51838bee87078c2
[ "Apache-2.0" ]
permissive
sohail-aziz/DogBreeds
50e8c6a414e978fb1bf8747ca3a7cf2bb730a967
efa667759640ecbd6821e135aebeb90d829ffa5b
refs/heads/master
2021-05-02T16:45:08.880892
2018-02-11T00:00:52
2018-02-11T00:00:52
120,683,640
0
0
null
null
null
null
UTF-8
Java
false
false
970
java
package aziz.sohail.mvpsample.di; import android.arch.persistence.room.Room; import android.content.Context; import javax.inject.Singleton; import aziz.sohail.mvpsample.data.local.AppDatabase; import aziz.sohail.mvpsample.data.local.BreedDao; import aziz.sohail.mvpsample.data.local.DogDao; import dagger.Module; import dagger.Provides; /** * Dagger Module provides Database dependencies */ @Module public class DatabaseModule { private static final String DATABASE_NAME = "breed_app_database"; @Provides @Singleton AppDatabase provideDatabase(Context context) { return Room.databaseBuilder(context.getApplicationContext(), AppDatabase.class, DATABASE_NAME) .build(); } @Singleton @Provides BreedDao provideBreedDao(AppDatabase database) { return database.breedDao(); } @Singleton @Provides DogDao provideDogDao(AppDatabase database) { return database.dogDao(); } }
[ "sohail.aziz05@gmail.com" ]
sohail.aziz05@gmail.com
bfc254ee6198b07d8470b4fc1993019bd8dcce01
3dba936ff974e75deab369091a462c24dcfac30e
/combates/Acoes.java
abfb21738cbe9a87f1b304c2065f05571a173c18
[]
no_license
cristianodecastro/scape
cee9d85bf88bac0eef522c593ad88ac7b9dacef3
dba217c24288d704be4cfc196c5905f2a5f8fc1a
refs/heads/main
2023-06-25T14:58:20.881376
2021-08-02T14:04:50
2021-08-02T14:04:50
391,967,667
0
0
null
null
null
null
UTF-8
Java
false
false
4,148
java
package combates; import aplicacao.Jogo; import interfaces.telas.combate.Combate; import interfaces.telas.combate.LogCombate; import monstros.Monstro; import java.util.Random; public class Acoes{ // Classe com métodos estáticos para as ações de combate public static void confronto(Monstro monstro){ // Método que controla os ataques entre um jogador e um monstro int velJogador = Jogo.getJogador().getClasse().getAtributos().getVelocidade(); int velMonstro = monstro.getVelocidade(); if(velJogador >= velMonstro){ // Verificação das velocidades para ver quem ataca primeiro ataqueJogador(monstro); ataqueMonstro(monstro); }else{ ataqueMonstro(monstro); ataqueJogador(monstro); } } private static void ataqueJogador(Monstro monstro){ // Método que controla o ataque do jogador Random rand = new Random(); int forcaGolpe = Jogo.getJogador().getClasse().getAtributos().getForca(); int sorteJogador = Jogo.getJogador().getClasse().getAtributos().getSorte(); int aleat = rand.nextInt(100); if(aleat+sorteJogador > 90){ forcaGolpe *= 2; LogCombate.addLog(" - Você acertou um golpe crítico no monstro e ele perdeu "+forcaGolpe+" de vida."); }else if(aleat+sorteJogador > 75){ forcaGolpe = (int) (forcaGolpe * 1.5); LogCombate.addLog(" - Você acertou um golpe forte no monstro e ele perdeu "+forcaGolpe+" de vida."); }else if(aleat <= 5){ forcaGolpe = 0; LogCombate.addLog(" - Você errou o seu ataque."); }else{ LogCombate.addLog(" - Você atacou o monstro e ele perdeu "+forcaGolpe+" de vida."); } Jogo.getJogador().atacar(monstro, forcaGolpe); } private static void ataqueMonstro(Monstro monstro){ // Método que controla o ataque do monstro Random rand = new Random(); int velocidadeJogador = Jogo.getJogador().getClasse().getAtributos().getVelocidade(); int inteligenciaJogador = Jogo.getJogador().getClasse().getAtributos().getInteligencia(); int sorteJogador = Jogo.getJogador().getClasse().getAtributos().getSorte(); int poderGolpe = monstro.getPoder(); int aleat = rand.nextInt(100); if(aleat-sorteJogador > 90){ poderGolpe *= 2; LogCombate.addLog(" - O monstro te acertou um golpe crítico e você perdeu "+poderGolpe+" de vida."); }else if(aleat-sorteJogador > 75){ poderGolpe = (int) (poderGolpe * 1.5); LogCombate.addLog(" - O monstro te acertou um golpe forte e você perdeu "+poderGolpe+" de vida."); }else if(aleat-sorteJogador < 30 && aleat-sorteJogador > 5){ // Uso da velocidade e inteligência para diminuir o dano sofrido poderGolpe -= (int) ((velocidadeJogador * 0.20)+(inteligenciaJogador * 0.20)); LogCombate.addLog(" - O monstro não conseguiu te acertar em cheio e você perdeu "+poderGolpe+" de vida."); }else if(aleat <= 5){ poderGolpe = 0; LogCombate.addLog(" - O monstro errou o seu ataque."); }else{ LogCombate.addLog(" - O monstro te atacou e você perdeu "+poderGolpe+" de vida."); } monstro.atacar(poderGolpe); } public static void retirada(Monstro monstro){ // Método que controla as chances e consequências de uma fuga Random rand = new Random(); int velJogador = Jogo.getJogador().getClasse().getAtributos().getVelocidade(); int velMonstro = monstro.getVelocidade(); int randomico = rand.nextInt(velJogador+velMonstro) + 1; System.out.println("Vel jog: "+velJogador); System.out.println("Vel mon: "+velMonstro); System.out.println("Número vencedor da velocidade: "+(randomico)); ///////// if(randomico <= velJogador){ Combate.terminarCombate(); // Se não for possível fugir, o monstro atacará }else{ ataqueMonstro(monstro); LogCombate.addLog(" - Você não conseguiu fugir!"); } } }
[ "cristianodecastronunes@gmail.com" ]
cristianodecastronunes@gmail.com
dafa4f5e99ed39513e93008587a79e204a6e8282
c0bc537eb8fd9fbac221318a6af660d6da80e7ea
/src/main/java/com/zhang/service/UsersService.java
4a27fe5d0b08ebc14be34b93f7685a04e1f9f5d7
[]
no_license
gczhangv/gczhang
d0e087423826175c7d13b4267a3c45c1cfe61112
3c7857a6a3bcdaab589cba4b65442c54bc07d22f
refs/heads/master
2023-07-04T23:13:04.905279
2021-08-30T08:42:37
2021-08-30T08:42:37
401,199,438
0
0
null
null
null
null
UTF-8
Java
false
false
142
java
package com.zhang.service; import com.zhang.pojo.Users; public interface UsersService { //登录 public Users login(Users users); }
[ "2115602103@qq.com" ]
2115602103@qq.com
a3eefd3fe91d6e19facf4472b48a673019427a5a
4a6cd138d75c2bbd59bdbd2842024cdef59f6830
/src/com/haiyangsherry/TaxCalculator.java
5490081a401e27812131252597ed002edd070d2c
[]
no_license
qqq99/Design_Pattern
089cc61e509a474858eb6b1331b0f6bded0e2796
eadb6a84fa20fd1746312ada7a6fff0025236935
refs/heads/main
2023-03-01T03:27:05.522161
2021-02-05T08:34:47
2021-02-05T08:34:47
336,132,316
0
0
null
null
null
null
UTF-8
Java
false
false
89
java
package com.haiyangsherry; public interface TaxCalculator { float calculateTax(); }
[ "xuqiankarlie@gmail.com" ]
xuqiankarlie@gmail.com
71b9ab9072ac3d05774dc392a0feab021dc33f0e
7a9a2df499b1728342aa58e570375cb8acc554cf
/IDE_WorkSpace_Spring/DAOProj4-CallbackInterface_RowMapper/src/main/java/com/nt/bo/EmployeeBO.java
b5700689fde567e07fd1410bbf3e5b346a3d9af6
[]
no_license
danishali2196/SpringWorkspace
57981e2497273da4ebdf27dcce803ab2ee49cdf5
c63daab4e5eb2f5f9adfefd0fba95545b6580ce4
refs/heads/master
2022-12-21T09:30:56.777147
2019-10-07T06:20:15
2019-10-07T06:20:15
213,306,380
0
0
null
2022-12-16T00:39:31
2019-10-07T06:00:03
Java
UTF-8
Java
false
false
218
java
package com.nt.bo; import java.io.Serializable; import lombok.Data; @Data public class EmployeeBO implements Serializable { private int eno; private String ename; private String desg; private int salary; }
[ "danishali@gmail.com" ]
danishali@gmail.com
69b5479c1fe4c3e7fd55979f14efe31e6f3baece
e818448c95f96b49638079eb7565d922e932351a
/src/main/java/com/example/app/controler/TaskController.java
705e323b5de14204d9ffe2978578a8ca5b808f83
[]
no_license
Gavaharlal/PPO_Hw4
33c359ac7cd96f16f1e5cdfaa6aacf97bf6eec6e
56773d22f9c7e5a078f1c9410479d496a8a373ee
refs/heads/master
2023-01-22T17:24:18.499184
2020-11-24T06:33:11
2020-11-24T06:33:11
315,528,463
0
0
null
null
null
null
UTF-8
Java
false
false
2,359
java
package com.example.app.controler; import com.example.app.model.Task; import com.example.app.model.TaskList; import com.example.app.repository.TaskListRepository; import com.example.app.repository.TaskRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import java.util.List; @Controller public class TaskController { private final TaskRepository taskRepository; private final TaskListRepository taskListRepository; @Autowired public TaskController(TaskRepository taskRepository, TaskListRepository taskListRepository) { this.taskRepository = taskRepository; this.taskListRepository = taskListRepository; } @GetMapping("/task-lists") public String getTaskLists() { return "redirect:/"; } @GetMapping("/") public String getIndex(Model model) { prepareModel(model, taskListRepository.findAll()); return "task_list"; } @PostMapping("/create-task-list") public String createTaskList(@ModelAttribute("taskList") TaskList taskList) { taskListRepository.save(taskList); return "redirect:/"; } @PostMapping("/delete-task-list") public String deleteTaskList(@RequestParam("deleteTaskId") long id) { taskListRepository.deleteById(id); return "redirect:/"; } @PostMapping("/create-task") public String createTask(@ModelAttribute("task") Task task) { taskRepository.save(task); return "redirect:/"; } @PostMapping("/change-status") public String completeTask(@RequestParam("taskId") long id, @RequestParam("status") boolean isComplete) { taskRepository.updateTaskStatus(id, isComplete); return "redirect:/"; } private void prepareModel(Model model, List<TaskList> taskList) { model.addAttribute("taskLists", taskList); model.addAttribute("taskList", new TaskList()); Task task = new Task(); task.setTaskList(new TaskList()); model.addAttribute("task", task); } }
[ "Gavaharlal@yandex.ru" ]
Gavaharlal@yandex.ru
622513442b162a0eb6262b64ffcbe4d269ce1e4d
444e0e1a702526e0cb1e47384e40dd65713d7103
/Tic-Tac-Toe/Problems/Initializing an array of integers/src/Matrix.java
f3b3b48b590c2d6e389a3ad922c0e062561ab51c
[]
no_license
emaphis/Hyperskill
4aec16a43f1edeba7882714bbf3e61c4046002d5
6f22981a532d43756ea1da2238d059fb0c32f1da
refs/heads/master
2022-12-06T18:00:29.457772
2020-08-30T01:51:49
2020-08-30T01:51:49
284,158,423
0
0
null
null
null
null
UTF-8
Java
false
false
919
java
import java.util.Arrays; import java.util.Scanner; public class Matrix { public static void main(String[] args) { // put your code here System.out.println("Matrix a"); Scanner scan = new Scanner(System.in); String line = scan.nextLine(); String[] pieces = line.split(" "); int[] a = new int[pieces.length]; for (int i = 0; i < pieces.length; i++) { a[i] = Integer.parseInt(pieces[i]); } int num = scan.nextInt(); // num %= pieces.length; for (int k = 0; k < num; k++) { int temp = a[a.length - 1]; for (int i = a.length - 1; i > 0; i--) { a[i] = a[i - 1]; } a[0] = temp; System.out.print(Arrays.toString(a)); System.out.println(); } for (int n: a) { System.out.print(n + " "); } } }
[ "emaphis85@gmail.com" ]
emaphis85@gmail.com
242859e08c0baca7bc30c20cd599d36a4f8b9836
dd18d4e3b7464f6bd59c6111b1b4ecececfbd00b
/src/test/java/ec/sevolutivo/health/service/UserServiceIntTest.java
4cac80b38df3ab05f9c1262606ef4e4e754e8158
[]
no_license
ja1979/21points
5fbc489b1d296dfb148303dda232a4c53dc0c900
9e95c9d2099e7d1857bb6f9dfb623d6d451999e0
refs/heads/master
2021-01-21T14:32:19.485691
2017-06-24T11:39:45
2017-06-24T11:39:45
95,293,897
0
0
null
null
null
null
UTF-8
Java
false
false
4,347
java
package ec.sevolutivo.health.service; import ec.sevolutivo.health.Application; import ec.sevolutivo.health.domain.User; import ec.sevolutivo.health.repository.UserRepository; import java.time.ZonedDateTime; import ec.sevolutivo.health.service.util.RandomUtil; import java.time.LocalDate; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.transaction.annotation.Transactional; import org.springframework.test.context.junit4.SpringRunner; import javax.inject.Inject; import java.util.Optional; import java.util.List; import static org.assertj.core.api.Assertions.*; /** * Test class for the UserResource REST controller. * * @see UserService */ @RunWith(SpringRunner.class) @SpringBootTest(classes = Application.class) @Transactional public class UserServiceIntTest { @Inject private UserRepository userRepository; @Inject private UserService userService; @Test public void assertThatUserMustExistToResetPassword() { Optional<User> maybeUser = userService.requestPasswordReset("john.doe@localhost"); assertThat(maybeUser.isPresent()).isFalse(); maybeUser = userService.requestPasswordReset("admin@localhost"); assertThat(maybeUser.isPresent()).isTrue(); assertThat(maybeUser.get().getEmail()).isEqualTo("admin@localhost"); assertThat(maybeUser.get().getResetDate()).isNotNull(); assertThat(maybeUser.get().getResetKey()).isNotNull(); } @Test public void assertThatOnlyActivatedUserCanRequestPasswordReset() { User user = userService.createUser("johndoe", "johndoe", "John", "Doe", "john.doe@localhost", "en-US"); Optional<User> maybeUser = userService.requestPasswordReset("john.doe@localhost"); assertThat(maybeUser.isPresent()).isFalse(); userRepository.delete(user); } @Test public void assertThatResetKeyMustNotBeOlderThan24Hours() { User user = userService.createUser("johndoe", "johndoe", "John", "Doe", "john.doe@localhost", "en-US"); ZonedDateTime daysAgo = ZonedDateTime.now().minusHours(25); String resetKey = RandomUtil.generateResetKey(); user.setActivated(true); user.setResetDate(daysAgo); user.setResetKey(resetKey); userRepository.save(user); Optional<User> maybeUser = userService.completePasswordReset("johndoe2", user.getResetKey()); assertThat(maybeUser.isPresent()).isFalse(); userRepository.delete(user); } @Test public void assertThatResetKeyMustBeValid() { User user = userService.createUser("johndoe", "johndoe", "John", "Doe", "john.doe@localhost", "en-US"); ZonedDateTime daysAgo = ZonedDateTime.now().minusHours(25); user.setActivated(true); user.setResetDate(daysAgo); user.setResetKey("1234"); userRepository.save(user); Optional<User> maybeUser = userService.completePasswordReset("johndoe2", user.getResetKey()); assertThat(maybeUser.isPresent()).isFalse(); userRepository.delete(user); } @Test public void assertThatUserCanResetPassword() { User user = userService.createUser("johndoe", "johndoe", "John", "Doe", "john.doe@localhost", "en-US"); String oldPassword = user.getPassword(); ZonedDateTime daysAgo = ZonedDateTime.now().minusHours(2); String resetKey = RandomUtil.generateResetKey(); user.setActivated(true); user.setResetDate(daysAgo); user.setResetKey(resetKey); userRepository.save(user); Optional<User> maybeUser = userService.completePasswordReset("johndoe2", user.getResetKey()); assertThat(maybeUser.isPresent()).isTrue(); assertThat(maybeUser.get().getResetDate()).isNull(); assertThat(maybeUser.get().getResetKey()).isNull(); assertThat(maybeUser.get().getPassword()).isNotEqualTo(oldPassword); userRepository.delete(user); } @Test public void testFindNotActivatedUsersByCreationDateBefore() { userService.removeNotActivatedUsers(); ZonedDateTime now = ZonedDateTime.now(); List<User> users = userRepository.findAllByActivatedIsFalseAndCreatedDateBefore(now.minusDays(3)); assertThat(users).isEmpty(); } }
[ "jorgeaguilar@softwareevolutivo.com.ec" ]
jorgeaguilar@softwareevolutivo.com.ec
d28f3755c0ab3c6484458e1f70c6cf625aca617b
623bdd9d8f348c95b743b3fa03389f470fe50f22
/WebCrawler/src/main/java/org/scalable/web/htmlreader/HTMLReaderImpl.java
d7a95b2a95a78b18eb37b416c2946888de100ca9
[]
no_license
code-by-code/samples
ab6357790f9c51633dd5b6bc2a0ffa508e926abe
fb30cff9e8e6e6f76625c4f3b010f0cd0abb3f72
refs/heads/master
2021-01-12T12:33:47.049266
2016-11-01T21:38:15
2016-11-01T21:38:15
72,562,890
0
0
null
2016-11-01T21:38:16
2016-11-01T18:08:28
Java
UTF-8
Java
false
false
1,866
java
package org.scalable.web.htmlreader; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.util.Scanner; import java.util.logging.Level; import java.util.logging.Logger; import org.scalable.web.util.LoggerFactory; /** * {@link HTMLReader} implementation with core java for reading html contents * from a web page. * * @author Jino George */ public class HTMLReaderImpl implements HTMLReader { private Logger logger = LoggerFactory.getLogger(HTMLReaderImpl.class); /** * Constructor. */ public HTMLReaderImpl() { super(); } /* * (non-Javadoc) * @see org.scalable.web.htmlreader.HTMLReader#read(java.net.URL) */ @Override public String read(URL url) { StringBuilder builder = new StringBuilder(); if(url != null) { try { // Opening connection. URLConnection connection = url.openConnection(); connection.setRequestProperty("User-Agent", "CrawlerBot 1.0"); // Reading the HTML content. logger.log(Level.INFO, "Reading HTML from " + url.toString()); Scanner scanIn = new Scanner(connection.getInputStream()); while(scanIn.hasNextLine()) { builder.append(scanIn.nextLine()); } scanIn.close(); } catch(IOException e) { logger.log(Level.WARNING, "Could not read from " + url.toString() + " due to : " + e.getLocalizedMessage()); } logger.log(Level.FINEST, "HTML content of " + url.toString() + " : " + builder); } return builder.toString(); } }
[ "jinoputhumana@gmail.com" ]
jinoputhumana@gmail.com
8af58dff8c6c88cb0122f00c576de77e652a2380
4aa1561a98b7357a4c793174d8b97ba31c8832f4
/CAR/tp1/src/ftp/server/command/FTPPassCommand.java
e099116ccf96156dd638e4a1e7e9bc395dfe8c56
[]
no_license
TahaS10/m1s2
70344e9bb887b974726440f35433266c01c4e69e
117a9482cccef99d021efc6eb43ab21f9f03badb
refs/heads/master
2021-01-16T22:37:52.779088
2015-05-20T15:13:15
2015-05-20T15:13:15
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,135
java
package ftp.server.command; import java.io.IOException; import java.net.Socket; import ftp.shared.FTPClientConfiguration; import ftp.shared.FTPDatabase; import ftp.shared.FTPRequest; /** * Class representing a PASS command */ public class FTPPassCommand extends FTPBasicCommand { /** * constructs a PASS command * @param database the database */ public FTPPassCommand(FTPDatabase database) { super(database, "PASS"); } @Override public boolean isValid(FTPRequest request) { return request.getLength() == 2; } @Override public void executeValidCommand(FTPRequest request, FTPClientConfiguration clientConfiguration) throws IOException { final String username = clientConfiguration.getUsername(); final Socket connection = clientConfiguration.getCommandSocket(); final FTPDatabase database = getDatabase(); if (clientConfiguration.getUsername() == null) { sendCommand(connection, 530); } if (request.getArgument().equals(database.getAccounts().get(username))) { sendCommand(connection, 230); clientConfiguration.setConnected(true); } else { sendCommand(connection, 332); } } }
[ "diagne14@gmail.com" ]
diagne14@gmail.com
1899129d523f0136fbe4bdad9c5d652b7bba1fef
e91c3d55527b87a5aac32a5fcd8726d359a5ec77
/TP3_Cote_Francis_StLaurent_Daren/src/tp3_cote_francis_stlaurent_daren/Identifier.java
7671b9262267791a41a61d325fceb10decd5492e
[]
no_license
daren511/Tp3_BD
b732a0c03d9a093629eca1e7c86fbc050929146e
6ca82ff01b2dd8d780eb9c20d34e3eaa6d91cd0c
refs/heads/master
2020-02-26T14:33:05.746719
2014-04-22T16:10:47
2014-04-22T16:10:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,913
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tp3_cote_francis_stlaurent_daren; import tp3_cote_francis_stlaurent_daren.JFrameGestion; import tp3_cote_francis_stlaurent_daren.ConnectionOracle; import javax.swing.*; import java.awt.*; import java.sql.*; /** * * @author prof Saliha */ public class Identifier extends javax.swing.JFrame { /** * Creates new form Identifier */ public Identifier() { initComponents(); connBD = new ConnectionOracle(); } /** * 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() { jBconnecter = new javax.swing.JButton(); jTextUser = new javax.swing.JTextField(); jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); jBdeconnecter = new javax.swing.JButton(); TB_Password = new javax.swing.JPasswordField(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setTitle("Etablir une connexion"); jBconnecter.setText("Se connecter"); jBconnecter.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jBconnecterActionPerformed(evt); } }); jTextUser.setText("cotefran"); jLabel1.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jLabel1.setText("Nom usager"); jLabel2.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jLabel2.setText("Mot de Passe"); jBdeconnecter.setText("Se deconnecter"); jBdeconnecter.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jBdeconnecterActionPerformed(evt); } }); TB_Password.setText("oracle1"); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(30, 30, 30) .addComponent(jBconnecter) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jBdeconnecter) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(layout.createSequentialGroup() .addComponent(jLabel2) .addGap(43, 43, 43) .addComponent(TB_Password)) .addGroup(layout.createSequentialGroup() .addGap(0, 0, Short.MAX_VALUE) .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 98, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(jTextUser, javax.swing.GroupLayout.PREFERRED_SIZE, 125, javax.swing.GroupLayout.PREFERRED_SIZE))) .addGap(121, 121, 121)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(81, 81, 81) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jTextUser, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel1)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel2) .addComponent(TB_Password, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(28, 28, 28) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jBconnecter) .addComponent(jBdeconnecter)) .addContainerGap(111, Short.MAX_VALUE)) ); pack(); }// </editor-fold>//GEN-END:initComponents private void jBconnecterActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBconnecterActionPerformed // TODO add your handling code here: String n = jTextUser.getText(); String m = TB_Password.getText(); connBD.setConnection(n,m); connBD.connecter(); // appel de la classe JFrameGestion (en utilisant un objet ConnectionOracle JFrameGestion fenetre = new JFrameGestion(connBD); fenetre.setVisible(true); }//GEN-LAST:event_jBconnecterActionPerformed private void jBdeconnecterActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBdeconnecterActionPerformed // TODO add your handling code here: connBD.deconnecter(); System.exit(0); }//GEN-LAST:event_jBdeconnecterActionPerformed /** * @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(Identifier.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(Identifier.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(Identifier.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(Identifier.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 Identifier().setVisible(true); } }); } // Declaration d'une variable connBD de type ConnectionOracle private ConnectionOracle connBD; // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JPasswordField TB_Password; private javax.swing.JButton jBconnecter; private javax.swing.JButton jBdeconnecter; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JTextField jTextUser; // End of variables declaration//GEN-END:variables }
[ "hc_throwdown@hotmail.com" ]
hc_throwdown@hotmail.com
a81b64eccf495f4aae9d7dcc449bf834cba70916
fee07509619ca10be0b08059720886f9a1f2048d
/bdnav-provider/task-provider/src/main/java/com/bdxh/task/TaskProviderApplication.java
195e00dffe665fc71df5c9ef6fcd671bc17252be
[ "Apache-2.0" ]
permissive
jiageh08/tea-springboot
70a68c7518f2470268ad8fa03ea7dfa48dff948c
91892209a70b93e90eaee0a01a4f71e188f4a61a
refs/heads/master
2022-12-05T13:10:06.654077
2020-08-07T01:29:56
2020-08-07T01:29:56
285,574,085
0
0
null
null
null
null
UTF-8
Java
false
false
1,238
java
package com.bdxh.task; import com.ctrip.framework.apollo.spring.annotation.EnableApolloConfig; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration; import org.springframework.boot.web.servlet.ServletComponentScan; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.context.annotation.ComponentScan; import org.springframework.scheduling.annotation.EnableScheduling; /** * @Description: 定时任务启动类 (此处 basePackages用到哪个服务再去扫描某成服务 不可 com.bdxh) * @Author: Kang * @Date: 2019/4/29 14:13 */ @SpringBootApplication @EnableScheduling @EnableApolloConfig @ServletComponentScan @ComponentScan(basePackages = {"com.bdxh.user","com.bdxh.school","com.bdxh.servicepermit","com.bdxh.task"}) @EnableFeignClients(basePackages = {"com.bdxh.user","com.bdxh.school","com.bdxh.servicepermit"}) public class TaskProviderApplication { public static void main(String[] args) { SpringApplication.run(TaskProviderApplication.class, args); } }
[ "wangjp@wehgc.com" ]
wangjp@wehgc.com
ddabb95c499b370d25bc99020820726dfaa5c59c
1bf97e24f68379fd0ead2eca5ce4a6be01861630
/src/assignmenttwo_genealogy/InputView.java
5c4ce770b852c83e73aa4a56a84a7c55db8fe460
[ "MIT" ]
permissive
beckylum0216/AssignmentTwo_Genealogy
0d08d4a3967b9b9a184365d12040c4ad9bee6efc
0174e027eb3cb0a6542799fa905165fb36cad6f8
refs/heads/master
2020-05-18T00:28:05.748242
2019-06-02T22:56:40
2019-06-02T22:56:40
184,062,759
0
0
null
null
null
null
UTF-8
Java
false
false
5,676
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 assignmenttwo_genealogy; import java.util.ArrayList; import javafx.event.ActionEvent; import javafx.event.Event; import javafx.event.EventHandler; import javafx.geometry.Insets; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.Alert; import javafx.scene.control.Alert.AlertType; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TextField; import javafx.scene.layout.Background; import javafx.scene.layout.BackgroundFill; import javafx.scene.layout.ColumnConstraints; import javafx.scene.layout.CornerRadii; import javafx.scene.layout.FlowPane; import javafx.scene.layout.GridPane; import javafx.scene.layout.StackPane; import javafx.scene.paint.Color; import javafx.scene.text.TextAlignment; import javafx.stage.Stage; /** * * @author becky */ public class InputView implements EventHandler<ActionEvent> { private int numOfFields = 13; private TextField[] inputFields = new TextField[numOfFields]; private StackPane parentPane; /** * <p>Default constructor for the input view</p> */ InputView(StackPane inputPane) { this.parentPane = inputPane; } /** * <p>Function that creates the pane for nod entry </p> * @return newPane the created pane with child elements */ public GridPane SetInputPane() { GridPane newPane = new GridPane(); newPane.setId("inputNewPane"); newPane.setHgap(10); newPane.setGridLinesVisible(false); int numberOfColumns = 2; for(int ii = 0; ii < numberOfColumns; ii += 1) { ColumnConstraints newColumn = new ColumnConstraints(); newColumn.setPercentWidth(100.0/numberOfColumns); newPane.getColumnConstraints().add(newColumn); } ArrayList <String> tempLabels = new ArrayList<>(); tempLabels.add("Node ID:"); tempLabels.add("First Name:"); tempLabels.add("Last Name:"); tempLabels.add("Married Last Name:"); tempLabels.add("Gender:"); tempLabels.add("Street Address:"); tempLabels.add("Country:"); tempLabels.add("State:"); tempLabels.add("Postcode:"); tempLabels.add("Blurb:"); tempLabels.add("Primary Parent:"); tempLabels.add("Other Parent:"); tempLabels.add("Spouse:"); for(int ii = 0; ii < numOfFields; ii += 1 ) { Label myLabel = new Label(tempLabels.get(ii)); myLabel.setTextAlignment(TextAlignment.RIGHT); //myLabel.setBackground(new Background(new BackgroundFill(Color.web("92E4F0"), CornerRadii.EMPTY, Insets.EMPTY))); inputFields[ii] = new TextField(); inputFields[ii].setId(tempLabels.get(ii)); //inputFields[ii].prefWidthProperty().bind(newPane.widthProperty().multiply(0.8)); newPane.add(myLabel, 0, ii); newPane.add(inputFields[ii], 1, ii); } Button submitButton = new Button("Submit"); submitButton.setId("inputSubmit"); submitButton.setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE); submitButton.setOnAction(click ->handle(click)); newPane.add(submitButton, 1, 14, 2, 1); return newPane; } /** * <p>Event handler for the submit button</p> */ @Override public void handle(ActionEvent event) { if(inputFields[8].getText().matches("[0-9]+")) { Nodi tempNode = new Nodi(); tempNode.SetPersonID(inputFields[0].getText()); tempNode.SetFirstName(inputFields[1].getText()); tempNode.SetLastNameBirth(inputFields[2].getText()); tempNode.SetLastNameMarraige(inputFields[3].getText()); tempNode.SetPersonGender(inputFields[4].getText()); tempNode.GetPersonAddress().street = inputFields[5].getText(); tempNode.GetPersonAddress().country = inputFields[6].getText(); tempNode.GetPersonAddress().state = inputFields[7].getText(); tempNode.GetPersonAddress().postcode = Integer.parseInt(inputFields[8].getText()); tempNode.SetPersonBlurb(inputFields[9].getText()); tempNode.SetParentOne(inputFields[10].getText()); tempNode.SetParentTwo(inputFields[11].getText()); tempNode.SetPersonSpouse(inputFields[12].getText()); ApplicationController.GetNewInstance().GetTreeDB().AddNode(tempNode); ApplicationController.GetNewInstance().GetTreeDB().FindNode(tempNode).PrintNode(); Alert inputAlert = new Alert(AlertType.INFORMATION); inputAlert.setTitle("Input Confirmation"); inputAlert.setContentText("Your record has been saved. Press new to add new record"); inputAlert.show(); this.parentPane.getChildren().clear(); ApplicationView initView = new ApplicationView(); StackPane tempPane = initView.GetNewPane(); this.parentPane.getChildren().add(tempPane); } else { Alert inputAlert = new Alert(AlertType.INFORMATION); inputAlert.setTitle("Number Validation"); inputAlert.setContentText("You have not entered an Australian postcode. Please enter a 4 digit postcode"); inputAlert.show(); } } }
[ "beckylum0214@gmail.com" ]
beckylum0214@gmail.com
9c03cb9f1f3b0437d63d8d8e64d9391980c02cbb
3ba2e29bc22a1becc00902bfac7138718cf600df
/app/src/main/java/com/leman/diyaobao/entity/RecordItem.java
5c6c00026070510d8ea74875ff69c102cf4413de
[]
no_license
niugankeji/diyaobao_English
9428737c48078c1cf1d2006c3d213bbac84cb463
c3c1759de932a637986810fb9fabbe37bb08b6c0
refs/heads/master
2023-03-27T23:25:04.665725
2021-04-08T07:21:07
2021-04-08T07:21:07
355,387,766
1
1
null
null
null
null
UTF-8
Java
false
false
3,359
java
package com.leman.diyaobao.entity; import android.support.annotation.NonNull; import java.io.Serializable; import java.util.List; public class RecordItem { /** * desc : * totalPage : 1 * count : 1 * fromIndex : 1 * toIndex : 1 * pageIndex : 1 * pageSize : 1 * minData : * maxData : * data : [{"userId":"用户id1","userName":"用户名称1","logo":"logo1","step":122,"calorie":155,"moveTime":112,"movedistance":121,"isFriend":1},{"userId":"用户id2","userName":"用户名称2","logo":"logo2","step":333,"calorie":155,"moveTime":112,"movedistance":121,"isFriend":0},{"userId":"用户id3","userName":"用户名称3","logo":"logo3","step":444,"calorie":155,"moveTime":112,"movedistance":121,"isFriend":1}] */ private int totalPage; private int count; private int fromIndex; private int toIndex; private int pageIndex; private int pageSize; private String totalIntegral; private List<DataBean> data; public String getTotalIntegral() { return totalIntegral; } public void setTotalIntegral(String totalIntegral) { this.totalIntegral = totalIntegral; } public int getTotalPage() { return totalPage; } public void setTotalPage(int totalPage) { this.totalPage = totalPage; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } public int getFromIndex() { return fromIndex; } public void setFromIndex(int fromIndex) { this.fromIndex = fromIndex; } public int getToIndex() { return toIndex; } public void setToIndex(int toIndex) { this.toIndex = toIndex; } public int getPageIndex() { return pageIndex; } public void setPageIndex(int pageIndex) { this.pageIndex = pageIndex; } public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public List<DataBean> getData() { return data; } public void setData(List<DataBean> data) { this.data = data; } public static class DataBean implements Serializable, Comparable<DataBean> { private int integralRecordId; private String createdTime; private String integralValue; private int integralWay; public int getIntegralRecordId() { return integralRecordId; } public void setIntegralRecordId(int integralRecordId) { this.integralRecordId = integralRecordId; } public String getCreatedTime() { return createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getIntegralValue() { return integralValue; } public void setIntegralValue(String integralValue) { this.integralValue = integralValue; } public int getIntegralWay() { return integralWay; } public void setIntegralWay(int integralWay) { this.integralWay = integralWay; } @Override public int compareTo(@NonNull DataBean o) { return 0; } } }
[ "1165524291@qq.com" ]
1165524291@qq.com
87a4de993cd97e9b80efd016023d8f1953ed9e2e
2c1bd6718f37c3d0b0d63aa9ca0acf4a2f891326
/java-eight-streams/src/com/training/model/Application.java
52908e842d3511f2046140b19d888887d0635278
[]
no_license
storm-zeus31/freshers_batch_july_2021
c6b7110fd84be2a9e66f4fd64d6396ba4dac4274
d32661b2946f35dc3adffcefa34c099f1590b92c
refs/heads/master
2023-07-05T21:38:29.672273
2021-07-29T04:50:55
2021-07-29T04:50:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
655
java
package com.training.model; import java.util.stream.*; import static java.util.stream.Collectors.*; import java.util.*; public class Application { public static void print(List<?> list) { list.forEach(System.out::println); } public static void main(String[] args) { Book headFirst = new Book(101,"Head first java", 45.00); Book spring = new Book(102,"Professional Spring", 145.00); Book html = new Book(201,"HTML for dummies", 345.00); List<Book> bookList = Arrays.asList(headFirst,spring,html); bookList.stream().filter(e -> e.getRatePerUnit()>300).forEach(System.out::println); } } // max
[ "vatsank@gmail.com" ]
vatsank@gmail.com
b4d5f90523450bebd291e004ec5897413facd8ec
6f250e1a7ddc213aff4ff68558c95d01391365c5
/BaseStudy_SE/java_Core/src/java_Core4/IO/Properties/FruitTest.java
cf6ecef96fdb048b2cf83e7c850756f94aa0587d
[]
no_license
yufeng218/java_code
16b68b8783efd0fc7cf968750cacd4bb6f9eaf0a
ac96f7a07cbc163cd1e8222403a3919d165574b6
refs/heads/master
2021-01-01T05:27:20.737636
2017-03-03T18:20:52
2017-03-03T18:20:52
57,600,160
0
1
null
null
null
null
UTF-8
Java
false
false
407
java
package java_Core4.IO.Properties; public class FruitTest { public static void main(String[] args) { /* Fruit fruit = FruitFactory.getInstance("apple"); fruit.grow(); fruit.harvest(); Fruit fruit1 = FruitFactory.getInstance("grape"); fruit1.grow(); fruit1.harvest(); */ Fruit fruit = FruitFactory.getClassName(); fruit.grow(); fruit.harvest(); } }
[ "he1012315243@163.com" ]
he1012315243@163.com
a031db0b7ea4ac3c7e76984c6cab25047b2f869c
fa7e1dc7b491f4b8b5eaa0b19f5b6500bae6296f
/core/src/com/gempukku/libgdx/graph/ui/graph/property/PropertyBoxImpl.java
56c7d114fe9fe21945de08add7267314d5fddc81
[ "MIT" ]
permissive
gamethapcam/libgdx-graph
6e2327caeda003d2246b23bc75d018631f0546dc
a4d4dda0397e3bf4cf2cceb65ef3c1be17167585
refs/heads/master
2023-03-01T01:25:01.734619
2021-02-05T11:05:17
2021-02-05T11:05:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,282
java
package com.gempukku.libgdx.graph.ui.graph.property; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.ui.Label; import com.badlogic.gdx.scenes.scene2d.ui.Skin; import com.badlogic.gdx.scenes.scene2d.ui.Table; import com.badlogic.gdx.scenes.scene2d.ui.TextField; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import com.badlogic.gdx.utils.JsonValue; import com.gempukku.libgdx.graph.config.PropertyNodeConfiguration; import com.gempukku.libgdx.graph.data.FieldType; import com.gempukku.libgdx.graph.ui.graph.GraphBox; import com.gempukku.libgdx.graph.ui.graph.GraphBoxImpl; import com.gempukku.libgdx.graph.ui.graph.GraphChangedEvent; import com.gempukku.libgdx.graph.ui.producer.ValueGraphNodeOutput; public class PropertyBoxImpl<T extends FieldType> extends Table implements PropertyBox<T> { private T propertyType; private PropertyDefaultBox propertyDefaultBox; private TextField textField; public PropertyBoxImpl(Skin skin, String name, T propertyType, PropertyDefaultBox propertyDefaultBox) { super(skin); this.propertyType = propertyType; this.propertyDefaultBox = propertyDefaultBox; textField = new TextField(name, skin); Table headerTable = new Table(skin); headerTable.add(new Label("Name: ", skin)); headerTable.add(textField).growX(); textField.addListener( new ChangeListener() { @Override public void changed(ChangeEvent event, Actor actor) { fire(new GraphChangedEvent(true, true)); } }); headerTable.row(); add(headerTable).growX().row(); if (propertyDefaultBox != null) add(propertyDefaultBox.getActor()).growX().row(); } @Override public T getType() { return propertyType; } @Override public String getName() { return textField.getText(); } @Override public JsonValue getData() { if (propertyDefaultBox != null) { JsonValue data = propertyDefaultBox.serializeData(); if (data == null) return null; return data; } else { return null; } } @Override public Actor getActor() { return this; } @Override public GraphBox<T> createPropertyBox(Skin skin, String id, float x, float y) { final String name = getName(); GraphBoxImpl<T> result = new GraphBoxImpl<T>(id, new PropertyNodeConfiguration<T>(name, propertyType), skin) { @Override public JsonValue getData() { JsonValue result = new JsonValue(JsonValue.ValueType.object); result.addChild("name", new JsonValue(name)); result.addChild("type", new JsonValue(propertyType.getName())); return result; } }; result.addOutputGraphPart(skin, new ValueGraphNodeOutput<T>(name, propertyType)); if (propertyType.isTexture()) { result.addGraphBoxPart(new TextureSettingsGraphBoxPart<T>(skin)); } return result; } @Override public void dispose() { } }
[ "marcin.sciesinski" ]
marcin.sciesinski
e40238657e38f4cd60d0df9113c17bf8a7ba7731
db17ac4268bd643d813cbe7febc1567da029f43d
/src/main/java/com/xajiusuo/utils/FileUtils.java
e7c5ea05bc4ba659d7ea4e5f700957dd7dc7defc
[]
no_license
yyxx828/pro_modules
61e0457b5f9c948a21f890a3abbc36e266443418
3f2e2328650c85346ccd8eb7b7b94906d1b90670
refs/heads/master
2022-10-05T16:09:24.889606
2019-11-08T06:30:50
2019-11-08T06:30:50
216,776,105
0
0
null
2022-09-08T01:03:01
2019-10-22T09:35:45
Java
UTF-8
Java
false
false
1,296
java
package com.xajiusuo.utils; import javax.validation.constraints.NotNull; public class FileUtils { private static final String TXT = "^.+\\.(?i)(txt)$"; private static final String CSV = "^.+\\.(?i)(csv)$"; private static final String TSV = "^.+\\.(?i)(tsv)$"; public static boolean isTxt(@NotNull String fileName){ return fileName.matches(TXT); } public static boolean isNotTxt(@NotNull String fileName){ return !isTxt(fileName); } public static boolean isCsv(@NotNull String fileName){ return fileName.matches(CSV); } public static boolean isNotCsv(@NotNull String fileName){ return !isCsv(fileName); } public static boolean isTsv(@NotNull String fileName){return fileName.matches(TSV); } public static boolean isNotTsv(@NotNull String fileName){ return !isTsv(fileName); } public static boolean validFile(String fileName){return fileName != null && (isTxt(fileName) || isCsv(fileName)|| isTsv(fileName));} public static String validSeparator(String s){ if(s.lastIndexOf(",")>0){ return ","; }else if(s.lastIndexOf(";")>0){ return ";"; }else if(s.lastIndexOf("\t")>0){ return "\t"; } return null; } }
[ "yyxx_828@qq.com" ]
yyxx_828@qq.com
bf7784de95785cd4bc2b2065b6df8622d0ad75bb
8fa42a21ca1bb6aa2051a5f0bb4a7f9948d6fe47
/src/main/java/br/com/caelum/ingresso/model/Sessao.java
5cf73aa2e9141c4143fb80439f757094bafa890a
[]
no_license
JeisielS/fj22-ingressos
1461a4d93c19de004e0a30488da9ed0e6de6e22e
42f7bb42fcb46c320da4e017d72fa4233a9e3637
refs/heads/master
2021-04-06T03:56:41.638977
2018-03-17T00:42:47
2018-03-17T00:42:47
124,969,396
0
0
null
2018-03-13T00:37:35
2018-03-13T00:37:34
null
UTF-8
Java
false
false
2,029
java
package br.com.caelum.ingresso.model; import java.math.BigDecimal; import java.time.LocalTime; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; @Entity public class Sessao { @Id @GeneratedValue private Integer id; private LocalTime horario; @ManyToOne private Sala sala; @ManyToOne private Filme filme; private BigDecimal preco; @OneToMany(mappedBy = "sessao", fetch = FetchType.EAGER) private Set<Ingresso> ingressos = new HashSet<>(); /* * @deprected hibernate only */ public Sessao() { } public Sessao(LocalTime horario, Filme filme, Sala sala) { this.horario = horario; this.filme = filme; this.sala = sala; this.preco = sala.getPreco().add(filme.getPreco()); } // public Sessao(LocalTime horario, Filme filme, Sala sala){ // this.horario = horario; // this.filme = filme; // this.sala = sala; // } public boolean isDisponivel(Lugar lugarSelecionado) { return ingressos.stream().map(Ingresso::getLugar).noneMatch(lugar -> lugar.equals(lugarSelecionado)); } public Map<String, List<Lugar>> getMapaDeLugares() { return sala.getMapaDeLugares(); } public LocalTime getHorarioTermino() { return this.horario.plusMinutes(filme.getDuracao().toMinutes()); } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public LocalTime getHorario() { return horario; } public void setHorario(LocalTime horario) { this.horario = horario; } public Sala getSala() { return sala; } public void setSala(Sala sala) { this.sala = sala; } public Filme getFilme() { return filme; } public void setFilme(Filme filme) { this.filme = filme; } public BigDecimal getPreco() { return preco; } public void setPreco(BigDecimal preco) { this.preco = preco; } }
[ "jeisiel_silva@hotmail.com" ]
jeisiel_silva@hotmail.com
e12d20cd7e5ea76b455d79a2720a4cd84de40e4f
379657221529b3ba617d2ee824b100c4c04b2cbc
/ShoppingCart-master/src/main/java/com/skillmine/repository/ProductRepository.java
7dbeaaae592e4521462280bc9eedcc337d6fdf6f
[]
no_license
shah1991/shoppingcart
47c9e3eda1fc68ddfd94956c1642f6b90477e565
264f543539baab409d2311369f365e5305869852
refs/heads/master
2023-08-15T13:53:41.878894
2021-09-24T05:52:37
2021-09-24T05:52:37
409,196,569
0
0
null
null
null
null
UTF-8
Java
false
false
433
java
package com.skillmine.repository; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import com.skillmine.domain.Product; public interface ProductRepository extends JpaRepository<Product, Long> { List<Product> findByCategory(String category); @Query("SELECT DISTINCT p.category FROM Product p ") List<String> findAllCategories(); }
[ "shahroz.ahmed1991.com" ]
shahroz.ahmed1991.com
b704102d2193ae844caa57d4a2e681a2dd1e237b
74252bcac14660e8a85406ee301065b80a5ddb28
/app/src/main/java/br/edu/ifpb/appcivico/listeners/OnClickListarSinesComRaio.java
abe3defc7b37a8340b44809396819920b53d5ccf
[]
no_license
RebecaGaldino/AppCivico
90f8b97d70e6e9ff242b1f259bf5ac82dff1555a
9a1721ac3c950fbde6ccbacb8c390ce57344e120
refs/heads/master
2021-01-12T13:13:16.667016
2017-02-22T04:42:37
2017-02-22T04:42:37
72,153,775
0
0
null
null
null
null
UTF-8
Java
false
false
685
java
package br.edu.ifpb.appcivico.listeners; import android.content.Intent; import android.view.View; import br.edu.ifpb.appcivico.activities.ListarSinesComRaioActivity; import br.edu.ifpb.appcivico.activities.MainActivity; /** * Created by rebeca on 27/10/2016. */ public class OnClickListarSinesComRaio implements View.OnClickListener{ MainActivity mainActivity; public OnClickListarSinesComRaio(MainActivity mainActivity){ this.mainActivity = mainActivity; } @Override public void onClick(View v) { Intent intent = new Intent(this.mainActivity, ListarSinesComRaioActivity.class); this.mainActivity.startActivity(intent); } }
[ "rebecaolg@gmail.com" ]
rebecaolg@gmail.com
25097e342de6bf6ae2961e54b872f858fd8a5417
ece7481a099689d53144fd61274ad08f0358d436
/Custom Heuristic/src/maze/ai/core/BestFirstObject.java
bbdc1c958b59013198e7689e04aa759d25a58b4c
[]
no_license
oot4/AI-Search-Heuristics
eb28bb4cfaacb9578fdb24fce6d3dfdb06476428
b3de4421e6fda742234b8bf8be1d5f824a1bd0a3
refs/heads/master
2020-05-19T17:48:53.306285
2019-05-06T07:13:18
2019-05-06T07:13:18
185,142,933
0
0
null
null
null
null
UTF-8
Java
false
false
367
java
package maze.ai.core; import java.util.ArrayList; public interface BestFirstObject<T extends BestFirstObject<T>> { // Pre: None // Post: Returns all objects that can be generated from this with one move public ArrayList<T> getSuccessors(); public int hashCode(); public boolean equals(Object other); public boolean achieves(T goal); }
[ "32599237+oot4@users.noreply.github.com" ]
32599237+oot4@users.noreply.github.com
bafde3bcdc1c18ca3ab6016261be4640e63fa0f8
8b03806f33edcf5f425de71b193f99ab20844ab1
/src/day20_WhileLoops/UntilNegative.java
f7bcaebf98c1609af756edb211b335e55e1f5f14
[]
no_license
Igruss/javanizm
7968d92f89027abc7863845e971379aabb054ec7
e3d620e3eb6f017400eb7b94e4a6d7ec7db4fcaa
refs/heads/master
2023-02-08T01:12:47.320038
2020-12-30T23:50:38
2020-12-30T23:50:38
284,542,275
0
0
null
null
null
null
UTF-8
Java
false
false
629
java
package day20_WhileLoops; import java.util.Scanner; /* . Write a program that calculates the sum of numbers entered by the user until user enters a negative number. hint: you need an infinite loop */ public class UntilNegative { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int sum = 0; for(int i = 0 ;i == 0;){ System.out.println("Enter a number: "); int num = scan.nextInt(); if(num <0 ) { break; } sum += num; } System.out.println(sum); } }
[ "ruller0611@gmail.com" ]
ruller0611@gmail.com
2a578bb98569f79e51e9889f8ba64099b554a3d7
d6f46a9b77ae40c5fff5c475e86ff1215ba0b3ee
/app/src/main/java/com/geno/FingerprintUiHelper2.java
b153179c84b23f5984b7b6885019f79dd774e5c1
[]
no_license
witleetaehun/payment
bbeff9b031cea22376d96725618f04905d4152b1
331341fb4447ca01417928cad3b8a357a59814a4
refs/heads/master
2021-01-23T03:48:20.577587
2017-06-28T04:21:22
2017-06-28T04:21:22
86,125,492
0
1
null
null
null
null
UTF-8
Java
false
false
5,132
java
/* * Copyright (C) 2015 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.geno; import android.hardware.fingerprint.FingerprintManager; import android.os.CancellationSignal; import android.widget.ImageView; import android.widget.TextView; import com.geno.bill_folder.R; /** * Small helper class to manage text/icon around fingerprint authentication UI. */ public class FingerprintUiHelper2 extends FingerprintManager.AuthenticationCallback { private static final long ERROR_TIMEOUT_MILLIS = 1600; private static final long SUCCESS_DELAY_MILLIS = 1300; private final FingerprintManager mFingerprintManager; private final ImageView mIcon; private final TextView mErrorTextView; private final Callback mCallback; private CancellationSignal mCancellationSignal; private boolean mSelfCancelled; /** * Constructor for {@link FingerprintUiHelper2}. */ FingerprintUiHelper2(FingerprintManager fingerprintManager, ImageView icon, TextView errorTextView, Callback callback) { mFingerprintManager = fingerprintManager; mIcon = icon; mErrorTextView = errorTextView; mCallback = callback; } public boolean isFingerprintAuthAvailable() { // The line below prevents the false positive inspection from Android Studio // noinspection ResourceType return mFingerprintManager.isHardwareDetected() && mFingerprintManager.hasEnrolledFingerprints(); } public void startListening(FingerprintManager.CryptoObject cryptoObject) { if (!isFingerprintAuthAvailable()) { return; } mCancellationSignal = new CancellationSignal(); mSelfCancelled = false; // The line below prevents the false positive inspection from Android Studio // noinspection ResourceType mFingerprintManager .authenticate(cryptoObject, mCancellationSignal, 0 /* flags */, this, null); mIcon.setImageResource(R.drawable.ic_fp_40px); } public void stopListening() { if (mCancellationSignal != null) { mSelfCancelled = true; mCancellationSignal.cancel(); mCancellationSignal = null; } } @Override public void onAuthenticationError(int errMsgId, CharSequence errString) { if (!mSelfCancelled) { showError(errString); mIcon.postDelayed(new Runnable() { @Override public void run() { mCallback.onError(); } }, ERROR_TIMEOUT_MILLIS); } } @Override public void onAuthenticationHelp(int helpMsgId, CharSequence helpString) { showError(helpString); } @Override public void onAuthenticationFailed() { showError(mIcon.getResources().getString( R.string.fingerprint_not_recognized)); } @Override public void onAuthenticationSucceeded(FingerprintManager.AuthenticationResult result) { mErrorTextView.removeCallbacks(mResetErrorTextRunnable); mIcon.setImageResource(R.drawable.ic_fingerprint_success); mErrorTextView.setTextColor( mErrorTextView.getResources().getColor(R.color.success_color, null)); mErrorTextView.setText( mErrorTextView.getResources().getString(R.string.fingerprint_success)); mIcon.postDelayed(new Runnable() { @Override public void run() { mCallback.onAuthenticated(); } }, SUCCESS_DELAY_MILLIS); } private void showError(CharSequence error) { mIcon.setImageResource(R.drawable.ic_fingerprint_error); mErrorTextView.setText(error); mErrorTextView.setTextColor( mErrorTextView.getResources().getColor(R.color.red, null)); mErrorTextView.removeCallbacks(mResetErrorTextRunnable); mErrorTextView.postDelayed(mResetErrorTextRunnable, ERROR_TIMEOUT_MILLIS); } private Runnable mResetErrorTextRunnable = new Runnable() { @Override public void run() { mErrorTextView.setTextColor( mErrorTextView.getResources().getColor(R.color.hint_color, null)); mErrorTextView.setText( mErrorTextView.getResources().getString(R.string.fingerprint_hint)); mIcon.setImageResource(R.drawable.ic_fp_40px); } }; public interface Callback { void onAuthenticated(); void onError(); } }
[ "sytty" ]
sytty
0cfae083d6f665cb6c8bf57b5f406e3f4045c560
be11b479da93a8b293550240582a55b4d60dd9a8
/src/main/java/com/pri/entity/Page.java
d0cd843ad283eb02e7c73b9c768224f3858dffc1
[]
no_license
1163646727/project
6921eeb4939cb63676f8c7756378a4b1afd7dd2a
3ffc2b1d57d9179ae7bf963870f2585c424c4f0f
refs/heads/master
2022-07-03T20:01:27.039962
2021-10-18T09:49:11
2021-10-18T09:49:15
183,396,460
0
0
null
null
null
null
UTF-8
Java
false
false
2,152
java
package com.pri.entity; import java.util.HashMap; import java.util.Map; /** * @ClassName: Page * @Description: 分页实体 * @author: ChenQi * @CreateDate: 2019/5/6 11:43 */ public class Page { private int showCount; //每页显示记录数 private int totalPage; //总页数 private int totalResult; //总记录数 private int currentPage; //当前页 private int currentResult; //当前记录起始索引 private Map<String, Object> params = new HashMap<String, Object>();// 传入查询参数 public Map<String, Object> getParams() { return params; } public void setParams(Map<String, Object> params) { this.params = params; } public Page() { try { this.showCount = 10; } catch (Exception e) { this.showCount = 20; } } public int getTotalPage() { if (totalResult % showCount == 0) totalPage = totalResult / showCount; else totalPage = totalResult / showCount + 1; return totalPage; } public void setTotalPage(int totalPage) { this.totalPage = totalPage; } public int getTotalResult() { return totalResult; } public void setTotalResult(int totalResult) { this.totalResult = totalResult; } public int getCurrentPage() { if (currentPage <= 0) currentPage = 1; if (currentPage > getTotalPage()) currentPage = getTotalPage(); return currentPage; } public void setCurrentPage(int currentPage) { this.currentPage = currentPage; } public int getShowCount() { return showCount; } public void setShowCount(int showCount) { this.showCount = showCount; } public int getCurrentResult() { currentResult = (getCurrentPage() - 1) * getShowCount(); if (currentResult < 0) currentResult = 0; return currentResult; } public void setCurrentResult(int currentResult) { this.currentResult = currentResult; } }
[ "1163646727@qq.com" ]
1163646727@qq.com
0b10eca8d3d6d4518912c82785d0dac0568a9832
28d75e1335f089a97165509ab7a5cf7e87d3839c
/src/harry/tan/webservice/App.java
9325ff60f1d90aa51e0584b4a816b086fa26e785
[]
no_license
tanxiujiang/multi_thread
a8d90b2b44e7532f4c979e464a813c5e7bb59b8f
763c642f3ed5d3cc48a83d560607c1bb029a0d06
refs/heads/master
2021-01-10T02:48:18.099646
2015-08-18T08:14:56
2015-08-18T08:14:56
36,604,990
2
0
null
null
null
null
UTF-8
Java
false
false
101
java
package harry.tan.webservice; public class App { public static void main(String[] args) { } }
[ "1026741594@qq.com" ]
1026741594@qq.com
8b1fe48068ffede74cfcf6cb4519cf3f00255d05
5270ebeadad99ada05ad0aac47b70452a6ed84a4
/Practice file/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/work/Catalina/localhost/Book/org/apache/jsp/directive_jsp.java
8ee235d864cca63f64565579c4ba250895e23fdb
[]
no_license
heeya15/JSP-Daily_Study
87739a199e430b15f719e5810f94de4a2c914029
5dc23f81a4cb2ab664040ab2511f0072dab20f65
refs/heads/master
2023-05-15T11:11:13.002320
2021-06-04T14:01:04
2021-06-04T14:01:04
318,168,770
1
0
null
null
null
null
UTF-8
Java
false
false
5,155
java
/* * Generated by the Jasper component of Apache Tomcat * Version: Apache Tomcat/8.5.60 * Generated at: 2020-12-04 09:26:42 UTC * Note: The last modified time of this file was set to * the last modified time of the source file after * generation to assist with modification tracking. */ package org.apache.jsp; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; import java.util.Date; public final class directive_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent, org.apache.jasper.runtime.JspSourceImports { private static final javax.servlet.jsp.JspFactory _jspxFactory = javax.servlet.jsp.JspFactory.getDefaultFactory(); private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants; private static final java.util.Set<java.lang.String> _jspx_imports_packages; private static final java.util.Set<java.lang.String> _jspx_imports_classes; static { _jspx_imports_packages = new java.util.HashSet<>(); _jspx_imports_packages.add("javax.servlet"); _jspx_imports_packages.add("javax.servlet.http"); _jspx_imports_packages.add("javax.servlet.jsp"); _jspx_imports_classes = new java.util.HashSet<>(); _jspx_imports_classes.add("java.util.Date"); } private volatile javax.el.ExpressionFactory _el_expressionfactory; private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; public java.util.Map<java.lang.String,java.lang.Long> getDependants() { return _jspx_dependants; } public java.util.Set<java.lang.String> getPackageImports() { return _jspx_imports_packages; } public java.util.Set<java.lang.String> getClassImports() { return _jspx_imports_classes; } public javax.el.ExpressionFactory _jsp_getExpressionFactory() { if (_el_expressionfactory == null) { synchronized (this) { if (_el_expressionfactory == null) { _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); } } } return _el_expressionfactory; } public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { if (_jsp_instancemanager == null) { synchronized (this) { if (_jsp_instancemanager == null) { _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); } } } return _jsp_instancemanager; } public void _jspInit() { } public void _jspDestroy() { } public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException { final java.lang.String _jspx_method = request.getMethod(); if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method) && !javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSP들은 오직 GET, POST 또는 HEAD 메소드만을 허용합니다. Jasper는 OPTIONS 메소드 또한 허용합니다."); return; } final javax.servlet.jsp.PageContext pageContext; javax.servlet.http.HttpSession session = null; final javax.servlet.ServletContext application; final javax.servlet.ServletConfig config; javax.servlet.jsp.JspWriter out = null; final java.lang.Object page = this; javax.servlet.jsp.JspWriter _jspx_out = null; javax.servlet.jsp.PageContext _jspx_page_context = null; try { response.setContentType("text/html; charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; out.write("\r\n"); out.write("\r\n"); out.write("<!DOCTYPE html>\r\n"); out.write("<html>\r\n"); out.write("<head>\r\n"); out.write("<meta charset=\"UTF-8\">\r\n"); out.write("<title>Insert title here</title>\r\n"); out.write("</head>\r\n"); out.write("<body>\r\n"); out.write(" <h1>"); out.print( new Date() ); out.write("</h1>\r\n"); out.write("</body>\r\n"); out.write("</html>"); } catch (java.lang.Throwable t) { if (!(t instanceof javax.servlet.jsp.SkipPageException)){ out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { if (response.isCommitted()) { out.flush(); } else { out.clearBuffer(); } } catch (java.io.IOException e) {} if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); else throw new ServletException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } } }
[ "hgi7201@naver.com" ]
hgi7201@naver.com
8c093ade5dde6845af11310a83d7c10eda718533
bcaef12c9b6fdc07aed582a27b8ceb2dad4e0298
/src/test/java/com/aliyun/openservices/log/functiontest/EtlFunctionTest.java
82f154c0e414e396f778b14bf28993780af1144a
[ "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Janzee/aliyun-log-java-sdk
46099cf0a0f50d9b3b3502eabcee97327174e650
bbebf84c256ba0ce17005bb1f5c42fc0c116cc50
refs/heads/master
2020-03-19T16:02:59.050951
2018-06-05T14:37:31
2018-06-05T14:37:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
16,008
java
package com.aliyun.openservices.log.functiontest; import com.aliyun.openservices.log.Client; import com.aliyun.openservices.log.common.*; import com.aliyun.openservices.log.exception.LogException; import com.aliyun.openservices.log.request.*; import com.aliyun.openservices.log.response.*; import net.sf.json.JSONObject; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import java.util.ArrayList; public class EtlFunctionTest { private static String accessKeyId = ""; private static String accessKeySecret = ""; private static String endpoint = "http://cn-hangzhou-staging-intranet.sls.aliyuncs.com"; private static String project = "ali-slstest-trigger"; private static String roleArn = ""; private static Client logClient = null; private static String fcEndpoint = "http://fc.cn-shanghai.aliyuncs.com"; private static String fcRegion = "cn-shanghai"; private static String fcAccountId = ""; private static String fcService = "log_etl"; private static String fcFunction = "logstore-replication"; private static String etlJobName = "v2-test"; private static String logstore = "from"; private static String logLogstore = "etl-log"; @BeforeClass public static void setup() { logClient = new Client(endpoint, accessKeyId, accessKeySecret); try { DeleteEtlJobRequest req = new DeleteEtlJobRequest(project, etlJobName); DeleteEtlJobResponse resp = logClient.deleteEtlJob(req); } catch (LogException e) { } try { DeleteEtlJobRequest req = new DeleteEtlJobRequest(project, etlJobName + "_1"); DeleteEtlJobResponse resp = logClient.deleteEtlJob(req); } catch (LogException e) { } try { Thread.sleep(500); } catch (InterruptedException e) { e.printStackTrace(); } } @AfterClass public static void cleanup() { } @Test public void testCreateEtlJob() { EtlSourceConfig sourceConfig = new EtlSourceConfig(logstore); EtlTriggerConfig triggerConfig = new EtlTriggerConfig(roleArn, 300, 1); EtlFunctionFcConfig fcConfig = new EtlFunctionFcConfig(Consts.FUNCTION_PROVIDER_FC, fcEndpoint, fcAccountId, fcRegion, fcService, fcFunction); EtlLogConfig logConfig = new EtlLogConfig(this.endpoint, this.project, this.logLogstore); String functionParameter = "{\"source\":{\"endpoint\":\"http://cn-shanghai-intranet.log.aliyuncs.com\"}, \"target\":{\"endpoint\":\"http://cn-shanghai-intranet.log.aliyuncs.com\", \"projectName\":\"etl-test\", \"logstoreName\":\"etl-1\"}}"; EtlJob job = new EtlJob(this.etlJobName, sourceConfig, triggerConfig, fcConfig, functionParameter, logConfig, true); try { sourceConfig.setLogstoreName("x"); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); sourceConfig.setLogstoreName(logstore); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { triggerConfig.setMaxRetryTime(1000); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); triggerConfig.setMaxRetryTime(1); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { triggerConfig.setTriggerInterval(-1); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); triggerConfig.setTriggerInterval(100); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } /* try { triggerConfig.setRoleArn(roleArn + "x"); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); triggerConfig.setRoleArn(roleArn); Assert.assertEquals(e.GetErrorCode(), "Unauthorized"); Assert.assertTrue(true); } */ try { triggerConfig.setRoleArn(" "); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); triggerConfig.setRoleArn(roleArn); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { fcConfig.setFunctionProvider("StreamCompute"); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); fcConfig.setFunctionProvider(Consts.FUNCTION_PROVIDER_FC); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { fcConfig.setAccountId(""); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); fcConfig.setAccountId(fcAccountId); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { logConfig.setLogstoreName(""); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); logConfig.setLogstoreName(logLogstore); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { logConfig.setLogstoreName(logstore); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); logConfig.setLogstoreName(logLogstore); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { logConfig.setProjectName(""); logConfig.setLogstoreName(logstore); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); logConfig.setLogstoreName(logLogstore); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { job.setFunctionParameter("xxxxx"); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); job.setFunctionParameter(functionParameter); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { job.setJobName("1"); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(false); } catch (LogException e) { System.out.println(e.GetErrorMessage()); job.setJobName(etlJobName); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } try { CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(true); } catch (LogException e) { System.out.println(e.GetErrorCode()); System.out.println(e.GetErrorMessage()); Assert.assertTrue(false); } try { job.setJobName(etlJobName + "_1"); job.setEnable(false); CreateEtlJobRequest req = new CreateEtlJobRequest(project, job); CreateEtlJobResponse resp = this.logClient.createEtlJob(req); Assert.assertTrue(true); } catch (LogException e) { System.out.println(e.GetErrorCode()); System.out.println(e.GetErrorMessage()); Assert.assertTrue(false); } } @Test public void testGetEtlJob() { GetEtlJobRequest req = new GetEtlJobRequest(project, etlJobName); try { GetEtlJobResponse resp = logClient.getEtlJob(req); System.out.println(resp.getEtljob().toJsonString(true, true)); Assert.assertTrue(true); } catch (LogException e) { System.out.println(e.GetErrorCode()); System.out.println(e.GetErrorMessage()); Assert.assertTrue(false); } } @Test public void testUpdateEtlJob() { EtlSourceConfig sourceConfig = new EtlSourceConfig(logstore); EtlTriggerConfig triggerConfig = new EtlTriggerConfig(roleArn, 5, 1); EtlFunctionFcConfig fcConfig = new EtlFunctionFcConfig(Consts.FUNCTION_PROVIDER_FC, fcEndpoint, fcAccountId, fcRegion, fcService, fcFunction); EtlLogConfig logConfig = new EtlLogConfig(this.endpoint, this.project, this.logLogstore); String functionParameter = "{\"source\":{\"endpoint\":\"http://cn-shanghai-intranet.log.aliyuncs.com\"}, " + "\"target\":{\"endpoint\":\"http://cn-shanghai-intranet.log.aliyuncs.com\", \"projectName\":\"etl-test\", \"logstoreName\":\"stg-etl-log\"}}"; EtlJob job = new EtlJob(this.etlJobName, sourceConfig, triggerConfig, fcConfig, functionParameter, logConfig, true); try { UpdateEtlJobRequest req = new UpdateEtlJobRequest(this.project, job); UpdateEtlJobResponse resp = this.logClient.updateEtlJob(req); System.out.println(resp.GetAllHeaders()); Assert.assertTrue(true); } catch (LogException e) { System.out.print(e.GetErrorCode()); System.out.print(e.GetErrorMessage()); Assert.assertTrue(false); } /* try { triggerConfig.setRoleArn("xx"); UpdateEtlJobRequest req = new UpdateEtlJobRequest(this.project, job); UpdateEtlJobResponse resp = this.logClient.updateEtlJob(req); System.out.println(resp.GetAllHeaders()); Assert.assertTrue(false); } catch (LogException e) { System.out.print(e.GetErrorMessage()); Assert.assertEquals(e.GetErrorCode(), "Unauthorized"); Assert.assertTrue(true); triggerConfig.setRoleArn(this.roleArn); } */ try { logConfig.setLogstoreName(this.logstore); UpdateEtlJobRequest req = new UpdateEtlJobRequest(this.project, job); UpdateEtlJobResponse resp = this.logClient.updateEtlJob(req); System.out.println(resp.GetAllHeaders()); Assert.assertTrue(false); } catch (LogException e) { System.out.print(e.GetErrorMessage()); Assert.assertEquals(e.GetErrorCode(), "PostBodyInvalid"); Assert.assertTrue(true); } } @Test public void testListEtlJob() { try { ListEtlJobRequest req = new ListEtlJobRequest(this.project, 0, 1); ListEtlJobResponse resp = this.logClient.listEtlJob(req); Assert.assertEquals(resp.getCount(), 1); Assert.assertEquals(resp.getTotal(), 2); } catch (LogException e) { System.out.print(e.GetErrorCode()); System.out.print(e.GetErrorMessage()); Assert.assertTrue(false); } try { ListEtlJobRequest req = new ListEtlJobRequest(this.project, 0, 10); ListEtlJobResponse resp = this.logClient.listEtlJob(req); Assert.assertEquals(resp.getCount(), 2); Assert.assertEquals(resp.getTotal(), 2); int hit = 0; for (String jobName : resp.getEtlJobNameList()) { if (jobName.equalsIgnoreCase(etlJobName)) { GetEtlJobResponse getresp = this.logClient.getEtlJob(new GetEtlJobRequest(project, etlJobName)); Assert.assertEquals(getresp.getEtljob().getJobName(), etlJobName); Assert.assertTrue(getresp.getEtljob().getEnable()); ++hit; } else if (jobName.equalsIgnoreCase(etlJobName + "_1")) { GetEtlJobResponse getresp = this.logClient.getEtlJob(new GetEtlJobRequest(project, etlJobName + "_1")); Assert.assertEquals(getresp.getEtljob().getJobName(), etlJobName + "_1"); Assert.assertTrue(!getresp.getEtljob().getEnable()); ++hit; } } Assert.assertEquals(hit, 2); } catch (LogException e) { System.out.print(e.GetErrorCode()); System.out.print(e.GetErrorMessage()); Assert.assertTrue(false); } } @Test public void testDeleteEtlJob() { try { DeleteEtlJobRequest req = new DeleteEtlJobRequest(this.project, this.etlJobName); DeleteEtlJobResponse resp = this.logClient.deleteEtlJob(req); System.out.println(resp.GetAllHeaders()); Assert.assertTrue(true); } catch (LogException e) { System.out.print(e.GetErrorCode()); System.out.print(e.GetErrorMessage()); Assert.assertTrue(false); } try { DeleteEtlJobRequest req = new DeleteEtlJobRequest(this.project, this.etlJobName + "_1"); DeleteEtlJobResponse resp = this.logClient.deleteEtlJob(req); System.out.println(resp.GetAllHeaders()); Assert.assertTrue(true); } catch (LogException e) { System.out.print(e.GetErrorCode()); System.out.print(e.GetErrorMessage()); Assert.assertTrue(false); } try { ListEtlJobRequest req = new ListEtlJobRequest(this.project, 0, 10); ListEtlJobResponse resp = this.logClient.listEtlJob(req); Assert.assertEquals(resp.getCount(), 0); Assert.assertEquals(resp.getTotal(), 0); } catch (LogException e) { System.out.print(e.GetErrorCode()); System.out.print(e.GetErrorMessage()); Assert.assertTrue(false); } } }
[ "wind.tangkai@gmail.com" ]
wind.tangkai@gmail.com
b2a4fb50a3f47eba271222470a0c26fb842265c8
8df7f5d31493f85e93769328e6400ac123aa3d0c
/app/src/main/java/com/example/chajianhua/App.java
c8772407d205fa41f5f901cb3b9c25d56506641d
[]
no_license
Gracefulwind/ChaJianHua
ac7cc5616935510dfaa0db233b3f87a58d80e3a6
6eb5e32f14af942d9b87a69f00f3487843336a5a
refs/heads/master
2022-04-17T13:50:55.774377
2020-04-20T03:20:59
2020-04-20T03:20:59
256,477,033
0
0
null
null
null
null
UTF-8
Java
false
false
955
java
package com.example.chajianhua; import android.app.Application; import com.alibaba.android.arouter.BuildConfig; import com.alibaba.android.arouter.launcher.ARouter; import com.gracefulwind.commonuiutil.utils.UiUtil; public class App extends Application { @Override public void onCreate() { super.onCreate(); initRouter(this); initUiUtil(); } private void initUiUtil() { UiUtil.initUiUtil(getApplicationContext()); } private void initRouter(App myApplication) { if (BuildConfig.DEBUG) { ARouter.openLog(); // 打印日志 ARouter.openDebug(); // 开启调试模式(如果在InstantRun模式下运行,必须开启调试模式!线上版本需要关闭,否则有安全风险) } ARouter.init(myApplication); } @Override public void onTerminate() { super.onTerminate(); ARouter.getInstance().destroy(); } }
[ "Gracefulwindbigwang@gmail.com" ]
Gracefulwindbigwang@gmail.com
9d4a203f18b918ddbaee66b7190b6ff6d513a7ea
0520bc6b3b7e7d3948ef35d2eebd934069b61b55
/app/src/main/java/com/example/chin/tiktak/clock_list_item_adapter.java
54cc4ba4db6bfbb8eb7ee1fca222e858d181942a
[]
no_license
TimeFur/TikTak
58272ce23875bf12ba11d463e5804f4208fc93f7
7c572bd885b10626812e56bc0ca7e5e8a770b3c0
refs/heads/master
2020-04-17T14:42:43.705919
2019-11-07T15:11:54
2019-11-07T15:11:54
166,668,216
0
0
null
null
null
null
UTF-8
Java
false
false
6,528
java
package com.example.chin.tiktak; import android.app.TimePickerDialog; import android.content.Context; import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ImageButton; import android.widget.SimpleAdapter; import android.widget.TextView; import android.widget.TimePicker; import android.widget.ToggleButton; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; public class clock_list_item_adapter extends SimpleAdapter { String TAG = "clock_list_item"; Context main_context; static DB_machine db_machine; int count = 0; HashMap<String, Object> item_view_id = new HashMap<String, Object>() { { put(DB_machine.MON_COLUMN, R.id.Mon); put(DB_machine.TUE_COLUMN, R.id.Tue); put(DB_machine.WED_COLUMN, R.id.Wed); put(DB_machine.THR_COLUMN, R.id.Thr); put(DB_machine.FRI_COLUMN, R.id.Fri); put(DB_machine.SAT_COLUMN, R.id.Sat); put(DB_machine.SUN_COLUMN, R.id.Sun);}}; /** * Constructor * * @param context The context where the View associated with this SimpleAdapter is running * @param data A List of Maps. Each entry in the List corresponds to one row in the list. The * Maps contain the data for each row, and should include all the entries specified in * "from" * @param resource Resource identifier of a view layout that defines the views for this list * item. The layout file should include at least those named views defined in "to" * @param from A list of column names that will be added to the Map associated with each * item. * @param to The views that should display column in the "from" parameter. These should all be * TextViews. The first N views in this list are given the values of the first N columns */ public clock_list_item_adapter(Context context, List<? extends Map<String, Object>> data, int resource, String[] from, int[] to) { super(context, data, resource, from, to); main_context = context; db_machine = new DB_machine(main_context); Log.v(TAG, "My Adapter~"); } @Override public View getView(int position, View convertView, ViewGroup parent){ View view = super.getView(position, convertView, parent); final Map<String, Object> Clock_data = (Map<String, Object>) getItem(position); String flag = "TRUE"; Object id = (Object)Clock_data.get(DB_machine.KEY_ID); final long sqlite_id = Long.parseLong(id.toString()); final Map<String, Object> getitem = db_machine.get_sqldata(sqlite_id); final TextView clock_tv = (TextView) view.findViewById(R.id.item_clock_time); final ToggleButton ring_btn = (ToggleButton) view.findViewById(R.id.Ring_switch_btn); final ImageButton select_sound_btn = (ImageButton) view.findViewById(R.id.music_select_id); for (final HashMap.Entry<String, Object> item : item_view_id.entrySet()) { flag = getitem.get(item.getKey().toString()).toString(); final ToggleButton btn = (ToggleButton) view.findViewById(Integer.parseInt(item.getValue().toString())); if (flag.equals("TRUE")) btn.setChecked(true); else btn.setChecked(false); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (btn.isChecked()) { Log.v(TAG, item.getKey().toString() + " Toggle btn On"); db_machine.update(sqlite_id, item.getKey().toString(), "TRUE"); } else { Log.v(TAG, item.getKey().toString() + " Toggle btn Off"); db_machine.update(sqlite_id, item.getKey().toString(), "FALSE"); } } }); } //checking data to switch status flag = getitem.get(DB_machine.RING_COLUMN).toString(); Log.v(TAG, "RING = " + flag); if (flag.equals("TRUE") == true) ring_btn.setChecked(true); else ring_btn.setChecked(false); ring_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Map<String, Object> item; String time = getitem.get(DB_machine.TIME_COLUMN).toString(); String[] split_line = time.split(":"); int hour = Integer.parseInt(split_line[0]); int min = Integer.parseInt(split_line[1]); if (ring_btn.isChecked()) { Log.v(TAG, "RING On"); db_machine.update(sqlite_id, DB_machine.RING_COLUMN, "TRUE"); Clock_timepicker.notification(main_context, hour, min, Integer.toString((int)sqlite_id)); } else { Log.v(TAG, "RING Off"); db_machine.update(sqlite_id, DB_machine.RING_COLUMN, "FALSE"); Clock_timepicker.cancel_clock(main_context, (int)sqlite_id); } // item = db_machine.get_sqldata(sqlite_id); // Log.v(TAG, item.toString()); } }); clock_tv.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String clock_str = clock_tv.getText().toString(); Log.v(TAG, "Click clock" + clock_str); boolean pending_flag = Clock_timepicker.check_clock_pending(main_context, (int)sqlite_id); Log.v(TAG, "Pending = " + pending_flag); Clock_timepicker.clock_setting(main_context,null, null, Clock_timepicker.REVISE_TIME, (long)sqlite_id, clock_tv); // clock_tv.setText(count + ""); } }); select_sound_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Clock_list_control.createSelectDialog(v.getContext()); } }); return view; } }
[ "djs860403@gmail.com" ]
djs860403@gmail.com
1afe0ca64fb13e23b839ac1c072b5478324a01d7
4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849
/aliyun-java-sdk-emr/src/main/java/com/aliyuncs/emr/transform/v20160408/DescribeScalingConfigItemV2ResponseUnmarshaller.java
16bbfac36eca5263aef950dc95245e449a7e5ea6
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-java-sdk
a263fa08e261f12d45586d1b3ad8a6609bba0e91
e19239808ad2298d32dda77db29a6d809e4f7add
refs/heads/master
2023-09-03T12:28:09.765286
2023-09-01T09:03:00
2023-09-01T09:03:00
39,555,898
1,542
1,317
NOASSERTION
2023-09-14T07:27:05
2015-07-23T08:41:13
Java
UTF-8
Java
false
false
1,697
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.emr.transform.v20160408; import com.aliyuncs.emr.model.v20160408.DescribeScalingConfigItemV2Response; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeScalingConfigItemV2ResponseUnmarshaller { public static DescribeScalingConfigItemV2Response unmarshall(DescribeScalingConfigItemV2Response describeScalingConfigItemV2Response, UnmarshallerContext _ctx) { describeScalingConfigItemV2Response.setRequestId(_ctx.stringValue("DescribeScalingConfigItemV2Response.RequestId")); describeScalingConfigItemV2Response.setConfigItemType(_ctx.stringValue("DescribeScalingConfigItemV2Response.ConfigItemType")); describeScalingConfigItemV2Response.setScalingGroupBizId(_ctx.stringValue("DescribeScalingConfigItemV2Response.ScalingGroupBizId")); describeScalingConfigItemV2Response.setScalingConfigItemBizId(_ctx.stringValue("DescribeScalingConfigItemV2Response.ScalingConfigItemBizId")); describeScalingConfigItemV2Response.setConfigItemInformation(_ctx.stringValue("DescribeScalingConfigItemV2Response.ConfigItemInformation")); return describeScalingConfigItemV2Response; } }
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
564866ccef94a865b3983b36223db74de4e424a1
14966ace1946bb4bba864661125d3c892e8a991b
/slovar/obj/Debug/81/android/src/android/support/v7/appcompat/R.java
19099bdcf621e692ab0e852bb9a43647eadea629
[]
no_license
whatisdeadmayneverdi3/praktika
3e98e2b958c9bbacf397082b32b69b3a29954053
259b35d9b48e4a4e8c50f84d5063515fa1218863
refs/heads/main
2023-07-28T08:13:23.721362
2021-09-11T12:45:02
2021-09-11T12:45:02
405,368,198
0
0
null
null
null
null
UTF-8
Java
false
false
633,406
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.v7.appcompat; public final class R { public static final class anim { public static int abc_fade_in=0x7f050000; public static int abc_fade_out=0x7f050001; public static int abc_grow_fade_in_from_bottom=0x7f050002; public static int abc_popup_enter=0x7f050003; public static int abc_popup_exit=0x7f050004; public static int abc_shrink_fade_out_from_bottom=0x7f050005; public static int abc_slide_in_bottom=0x7f050006; public static int abc_slide_in_top=0x7f050007; public static int abc_slide_out_bottom=0x7f050008; public static int abc_slide_out_top=0x7f050009; public static int design_bottom_sheet_slide_in=0x7f05000a; public static int design_bottom_sheet_slide_out=0x7f05000b; public static int design_snackbar_in=0x7f05000c; public static int design_snackbar_out=0x7f05000d; public static int tooltip_enter=0x7f05000e; public static int tooltip_exit=0x7f05000f; } public static final class animator { public static int design_appbar_state_list_animator=0x7f060000; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionBarDivider=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 int actionBarItemBackground=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionBarPopupTheme=0x7f01004c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static int actionBarSize=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 int actionBarSplitStyle=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 int actionBarStyle=0x7f01004d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionBarTabBarStyle=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionBarTabStyle=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionBarTabTextStyle=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 int actionBarTheme=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionBarWidgetTheme=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionButtonStyle=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionDropDownStyle=0x7f010069; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionLayout=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionMenuTextAppearance=0x7f010054; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int actionMenuTextColor=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionModeBackground=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionModeCloseButtonStyle=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 int actionModeCloseDrawable=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 int actionModeCopyDrawable=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 int actionModeCutDrawable=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 int actionModeFindDrawable=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionModePasteDrawable=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 int actionModePopupWindowStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionModeSelectAllDrawable=0x7f01005e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionModeShareDrawable=0x7f01005f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionModeSplitBackground=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 int actionModeStyle=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 int actionModeWebSearchDrawable=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int actionOverflowButtonStyle=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 int actionOverflowMenuStyle=0x7f01004b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int actionProviderClass=0x7f0100c6; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int actionViewClass=0x7f0100c5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int activityChooserViewStyle=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int alertDialogButtonGroupStyle=0x7f01009a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int alertDialogCenterButtons=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int alertDialogStyle=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int alertDialogTheme=0x7f01009c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int allowStacking=0x7f0100b2; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int alpha=0x7f0100b3; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static int alphabeticModifiers=0x7f0100c1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int arrowHeadLength=0x7f0100ba; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int arrowShaftLength=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int autoCompleteTextViewStyle=0x7f0100a1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int autoSizeMaxTextSize=0x7f01003b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int autoSizeMinTextSize=0x7f01003a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int autoSizePresetSizes=0x7f010039; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int autoSizeStepGranularity=0x7f010038; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> */ public static int autoSizeTextType=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 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 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 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 int backgroundTint=0x7f0100fd; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int backgroundTintMode=0x7f0100fe; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int barLength=0x7f0100bc; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int behavior_autoHide=0x7f010128; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int behavior_hideable=0x7f010105; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int behavior_overlapTop=0x7f010131; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> */ public static int behavior_peekHeight=0x7f010104; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int behavior_skipCollapsed=0x7f010106; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int borderWidth=0x7f010126; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int borderlessButtonStyle=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int bottomSheetDialogTheme=0x7f010120; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int bottomSheetStyle=0x7f010121; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int buttonBarButtonStyle=0x7f01006f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int buttonBarNegativeButtonStyle=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 int buttonBarNeutralButtonStyle=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 int buttonBarPositiveButtonStyle=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int buttonBarStyle=0x7f01006e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static int buttonGravity=0x7f0100f2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int buttonStyle=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int buttonStyleSmall=0x7f0100a3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int buttonTint=0x7f0100b4; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int buttonTintMode=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int checkboxStyle=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int checkedTextViewStyle=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int closeIcon=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 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 int collapseContentDescription=0x7f0100f4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int collapseIcon=0x7f0100f3; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static int collapsedTitleGravity=0x7f010113; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int collapsedTitleTextAppearance=0x7f01010d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int color=0x7f0100b6; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int colorAccent=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 int colorBackgroundFloating=0x7f010098; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int colorButtonNormal=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 int colorControlActivated=0x7f010093; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int colorControlHighlight=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 int colorControlNormal=0x7f010092; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int colorError=0x7f0100b1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int colorPrimary=0x7f01008f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int colorPrimaryDark=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 int colorSwitchThumbNormal=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int commitIcon=0x7f0100da; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int contentDescription=0x7f0100c7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int 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 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 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 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 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 int contentInsetStartWithNavigation=0x7f010023; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int contentScrim=0x7f01010e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int controlBackground=0x7f010097; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int counterEnabled=0x7f010147; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int counterMaxLength=0x7f010148; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int counterOverflowTextAppearance=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 int counterTextAppearance=0x7f010149; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int customNavigationLayout=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 int defaultQueryHint=0x7f0100d4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int dialogPreferredPadding=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int dialogTheme=0x7f010066; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static int displayOptions=0x7f01000e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int dividerHorizontal=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 int dividerPadding=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int dividerVertical=0x7f010073; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int drawableSize=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int dropDownListViewStyle=0x7f010086; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int dropdownListPreferredItemHeight=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int editTextBackground=0x7f01007b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int editTextColor=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int editTextStyle=0x7f0100a6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int 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 int errorEnabled=0x7f010145; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int errorTextAppearance=0x7f010146; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int expandActivityOverflowButtonDrawable=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 int expanded=0x7f0100ff; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static int expandedTitleGravity=0x7f010114; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int expandedTitleMargin=0x7f010107; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int expandedTitleMarginBottom=0x7f01010b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int expandedTitleMarginEnd=0x7f01010a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int expandedTitleMarginStart=0x7f010108; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int expandedTitleMarginTop=0x7f010109; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int expandedTitleTextAppearance=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>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> */ public static int fabSize=0x7f010124; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int fastScrollEnabled=0x7f010004; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int fastScrollHorizontalThumbDrawable=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int fastScrollHorizontalTrackDrawable=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int fastScrollVerticalThumbDrawable=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int fastScrollVerticalTrackDrawable=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int font=0x7f010158; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int fontFamily=0x7f01003c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int fontProviderAuthority=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 int fontProviderCerts=0x7f010154; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> */ public static int fontProviderFetchStrategy=0x7f010155; /** <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> */ public static int fontProviderFetchTimeout=0x7f010156; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int fontProviderPackage=0x7f010152; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int fontProviderQuery=0x7f010153; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> */ public static int fontStyle=0x7f010157; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int fontWeight=0x7f010159; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int foregroundInsidePadding=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 int gapBetweenBars=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int goIcon=0x7f0100d6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int headerLayout=0x7f01012f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int height=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 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 int hintAnimationEnabled=0x7f01014b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int hintEnabled=0x7f010144; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int hintTextAppearance=0x7f010143; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int homeAsUpIndicator=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 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 int iconTint=0x7f0100c9; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int iconTintMode=0x7f0100ca; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int iconifiedByDefault=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int imageButtonStyle=0x7f01007c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 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 int insetForeground=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 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 int itemBackground=0x7f01012d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int itemIconTint=0x7f01012b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int 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 int itemTextAppearance=0x7f01012e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int itemTextColor=0x7f01012c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int keylines=0x7f010118; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int layout=0x7f0100d1; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int layoutManager=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int layout_anchor=0x7f01011b; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static int layout_anchorGravity=0x7f01011d; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int layout_behavior=0x7f01011a; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> */ public static int layout_collapseMode=0x7f010116; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int layout_collapseParallaxMultiplier=0x7f010117; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> */ public static int layout_dodgeInsetEdges=0x7f01011f; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static int layout_insetEdge=0x7f01011e; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int layout_keyline=0x7f01011c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static int layout_scrollFlags=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 int layout_scrollInterpolator=0x7f010103; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int listChoiceBackgroundIndicator=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int listDividerAlertDialog=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 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 int listMenuViewStyle=0x7f0100ae; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int listPopupWindowStyle=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 int listPreferredItemHeight=0x7f010081; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int listPreferredItemHeightLarge=0x7f010083; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int listPreferredItemHeightSmall=0x7f010082; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int listPreferredItemPaddingLeft=0x7f010084; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int listPreferredItemPaddingRight=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int logoDescription=0x7f0100f7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int maxActionInlineWidth=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 int maxButtonHeight=0x7f0100f1; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int measureWithLargestChild=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int menu=0x7f01012a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int navigationContentDescription=0x7f0100f6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int navigationIcon=0x7f0100f5; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static int navigationMode=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 int numericModifiers=0x7f0100c2; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int overlapAnchor=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 int paddingBottomNoButtons=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 int paddingEnd=0x7f0100fb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int paddingStart=0x7f0100fa; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int paddingTopNoTitle=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int panelBackground=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int panelMenuListTheme=0x7f01008d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int panelMenuListWidth=0x7f01008c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int passwordToggleContentDescription=0x7f01014e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int passwordToggleDrawable=0x7f01014d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int passwordToggleEnabled=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 int passwordToggleTint=0x7f01014f; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static int passwordToggleTintMode=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 int popupMenuStyle=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int popupWindowStyle=0x7f010079; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int preserveIconSpacing=0x7f0100cb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int pressedTranslationZ=0x7f010125; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int progressBarPadding=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 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 int queryBackground=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 int queryHint=0x7f0100d3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int radioButtonStyle=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int ratingBarStyle=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 int ratingBarStyleIndicator=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int ratingBarStyleSmall=0x7f0100aa; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int reverseLayout=0x7f010002; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int rippleColor=0x7f010123; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int scrimAnimationDuration=0x7f010112; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int scrimVisibleHeightTrigger=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int searchHintIcon=0x7f0100d8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int searchIcon=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int searchViewStyle=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int seekBarStyle=0x7f0100ab; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int selectableItemBackground=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int selectableItemBackgroundBorderless=0x7f010071; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static int showAsAction=0x7f0100c3; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static int showDividers=0x7f0100bf; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int showText=0x7f0100e8; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int showTitle=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 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 int spanCount=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int spinBars=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int spinnerDropDownItemStyle=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int spinnerStyle=0x7f0100ac; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int splitTrack=0x7f0100e7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int srcCompat=0x7f010030; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int stackFromEnd=0x7f010003; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int state_above_anchor=0x7f0100ce; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int state_collapsed=0x7f010100; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int state_collapsible=0x7f010101; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int statusBarBackground=0x7f010119; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int statusBarScrim=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int subMenuArrow=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int submitBackground=0x7f0100dd; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int subtitle=0x7f01000f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int subtitleTextAppearance=0x7f0100ea; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int subtitleTextColor=0x7f0100f9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int suggestionRowLayout=0x7f0100db; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int switchMinWidth=0x7f0100e5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int switchPadding=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 int switchStyle=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int switchTextAppearance=0x7f0100e4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int tabBackground=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 int tabContentStart=0x7f010135; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static int tabGravity=0x7f010138; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabIndicatorColor=0x7f010133; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabIndicatorHeight=0x7f010134; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabMaxWidth=0x7f01013a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabMinWidth=0x7f010139; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> */ public static int tabMode=0x7f010137; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabPadding=0x7f010142; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabPaddingBottom=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 int tabPaddingEnd=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 int tabPaddingStart=0x7f01013e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabPaddingTop=0x7f01013f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tabSelectedTextColor=0x7f01013d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int tabTextAppearance=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 int tabTextColor=0x7f01013c; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static int textAllCaps=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearanceLargePopupMenu=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearanceListItem=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearanceListItemSecondary=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearanceListItemSmall=0x7f01008a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearancePopupMenuHeader=0x7f010065; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearanceSearchResultSubtitle=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int textAppearanceSearchResultTitle=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 int textAppearanceSmallPopupMenu=0x7f010064; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int textColorAlertDialogListItem=0x7f01009d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int textColorError=0x7f010122; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int textColorSearchUrl=0x7f01007f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int theme=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 int thickness=0x7f0100bd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int thumbTextPadding=0x7f0100e3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int thumbTint=0x7f0100de; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int thumbTintMode=0x7f0100df; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int tickMark=0x7f010033; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tickMarkTint=0x7f010034; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int tickMarkTintMode=0x7f010035; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tint=0x7f010031; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int tintMode=0x7f010032; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int title=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 int titleEnabled=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int titleMargin=0x7f0100eb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int titleMarginBottom=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 int titleMarginEnd=0x7f0100ed; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int titleMarginStart=0x7f0100ec; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int titleMarginTop=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 int titleMargins=0x7f0100f0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int titleTextAppearance=0x7f0100e9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int titleTextColor=0x7f0100f8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int 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 int toolbarId=0x7f010110; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int toolbarNavigationButtonStyle=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int toolbarStyle=0x7f010076; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static int tooltipForegroundColor=0x7f0100b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int tooltipFrameBackground=0x7f0100af; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int tooltipText=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int track=0x7f0100e0; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int trackTint=0x7f0100e1; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static int trackTintMode=0x7f0100e2; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int useCompatPadding=0x7f010127; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static int voiceIcon=0x7f0100d9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int windowActionBar=0x7f01003d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int windowActionBarOverlay=0x7f01003f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int windowActionModeOverlay=0x7f010040; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int windowFixedHeightMajor=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 int windowFixedHeightMinor=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 int windowFixedWidthMajor=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 int windowFixedWidthMinor=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 int windowMinWidthMajor=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 int windowMinWidthMinor=0x7f010046; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static int windowNoTitle=0x7f01003e; } public static final class bool { public static int abc_action_bar_embed_tabs=0x7f0b0000; public static int abc_allow_stacked_button_bar=0x7f0b0001; public static int abc_config_actionMenuItemAllCaps=0x7f0b0002; public static int abc_config_closeDialogWhenTouchOutside=0x7f0b0003; public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0b0004; } public static final class color { public static int abc_background_cache_hint_selector_material_dark=0x7f0c004b; public static int abc_background_cache_hint_selector_material_light=0x7f0c004c; public static int abc_btn_colored_borderless_text_material=0x7f0c004d; public static int abc_btn_colored_text_material=0x7f0c004e; public static int abc_color_highlight_material=0x7f0c004f; public static int abc_hint_foreground_material_dark=0x7f0c0050; public static int abc_hint_foreground_material_light=0x7f0c0051; public static int abc_input_method_navigation_guard=0x7f0c0000; public static int abc_primary_text_disable_only_material_dark=0x7f0c0052; public static int abc_primary_text_disable_only_material_light=0x7f0c0053; public static int abc_primary_text_material_dark=0x7f0c0054; public static int abc_primary_text_material_light=0x7f0c0055; public static int abc_search_url_text=0x7f0c0056; public static int abc_search_url_text_normal=0x7f0c0001; public static int abc_search_url_text_pressed=0x7f0c0002; public static int abc_search_url_text_selected=0x7f0c0003; public static int abc_secondary_text_material_dark=0x7f0c0057; public static int abc_secondary_text_material_light=0x7f0c0058; public static int abc_tint_btn_checkable=0x7f0c0059; public static int abc_tint_default=0x7f0c005a; public static int abc_tint_edittext=0x7f0c005b; public static int abc_tint_seek_thumb=0x7f0c005c; public static int abc_tint_spinner=0x7f0c005d; public static int abc_tint_switch_track=0x7f0c005e; public static int accent_material_dark=0x7f0c0004; public static int accent_material_light=0x7f0c0005; public static int background_floating_material_dark=0x7f0c0006; public static int background_floating_material_light=0x7f0c0007; public static int background_material_dark=0x7f0c0008; public static int background_material_light=0x7f0c0009; public static int bright_foreground_disabled_material_dark=0x7f0c000a; public static int bright_foreground_disabled_material_light=0x7f0c000b; public static int bright_foreground_inverse_material_dark=0x7f0c000c; public static int bright_foreground_inverse_material_light=0x7f0c000d; public static int bright_foreground_material_dark=0x7f0c000e; public static int bright_foreground_material_light=0x7f0c000f; public static int button_material_dark=0x7f0c0010; public static int button_material_light=0x7f0c0011; public static int colorAccent=0x7f0c0049; public static int colorPrimary=0x7f0c0047; public static int colorPrimaryDark=0x7f0c0048; public static int design_bottom_navigation_shadow_color=0x7f0c003c; public static int design_error=0x7f0c005f; public static int design_fab_shadow_end_color=0x7f0c003d; public static int design_fab_shadow_mid_color=0x7f0c003e; public static int design_fab_shadow_start_color=0x7f0c003f; public static int design_fab_stroke_end_inner_color=0x7f0c0040; public static int design_fab_stroke_end_outer_color=0x7f0c0041; public static int design_fab_stroke_top_inner_color=0x7f0c0042; public static int design_fab_stroke_top_outer_color=0x7f0c0043; public static int design_snackbar_background_color=0x7f0c0044; public static int design_tint_password_toggle=0x7f0c0060; public static int dim_foreground_disabled_material_dark=0x7f0c0012; public static int dim_foreground_disabled_material_light=0x7f0c0013; public static int dim_foreground_material_dark=0x7f0c0014; public static int dim_foreground_material_light=0x7f0c0015; public static int error_color_material=0x7f0c0016; public static int foreground_material_dark=0x7f0c0017; public static int foreground_material_light=0x7f0c0018; public static int highlighted_text_material_dark=0x7f0c0019; public static int highlighted_text_material_light=0x7f0c001a; public static int ic_launcher_background=0x7f0c004a; public static int material_blue_grey_800=0x7f0c001b; public static int material_blue_grey_900=0x7f0c001c; public static int material_blue_grey_950=0x7f0c001d; public static int material_deep_teal_200=0x7f0c001e; public static int material_deep_teal_500=0x7f0c001f; public static int material_grey_100=0x7f0c0020; public static int material_grey_300=0x7f0c0021; public static int material_grey_50=0x7f0c0022; public static int material_grey_600=0x7f0c0023; public static int material_grey_800=0x7f0c0024; public static int material_grey_850=0x7f0c0025; public static int material_grey_900=0x7f0c0026; public static int notification_action_color_filter=0x7f0c0045; public static int notification_icon_bg_color=0x7f0c0046; public static int notification_material_background_media_default_color=0x7f0c003b; public static int primary_dark_material_dark=0x7f0c0027; public static int primary_dark_material_light=0x7f0c0028; public static int primary_material_dark=0x7f0c0029; public static int primary_material_light=0x7f0c002a; public static int primary_text_default_material_dark=0x7f0c002b; public static int primary_text_default_material_light=0x7f0c002c; public static int primary_text_disabled_material_dark=0x7f0c002d; public static int primary_text_disabled_material_light=0x7f0c002e; public static int ripple_material_dark=0x7f0c002f; public static int ripple_material_light=0x7f0c0030; public static int secondary_text_default_material_dark=0x7f0c0031; public static int secondary_text_default_material_light=0x7f0c0032; public static int secondary_text_disabled_material_dark=0x7f0c0033; public static int secondary_text_disabled_material_light=0x7f0c0034; public static int switch_thumb_disabled_material_dark=0x7f0c0035; public static int switch_thumb_disabled_material_light=0x7f0c0036; public static int switch_thumb_material_dark=0x7f0c0061; public static int switch_thumb_material_light=0x7f0c0062; public static int switch_thumb_normal_material_dark=0x7f0c0037; public static int switch_thumb_normal_material_light=0x7f0c0038; public static int tooltip_background_dark=0x7f0c0039; public static int tooltip_background_light=0x7f0c003a; } public static final class dimen { public static int abc_action_bar_content_inset_material=0x7f070012; public static int abc_action_bar_content_inset_with_nav=0x7f070013; public static int abc_action_bar_default_height_material=0x7f070007; public static int abc_action_bar_default_padding_end_material=0x7f070014; public static int abc_action_bar_default_padding_start_material=0x7f070015; public static int abc_action_bar_elevation_material=0x7f070017; public static int abc_action_bar_icon_vertical_padding_material=0x7f070018; public static int abc_action_bar_overflow_padding_end_material=0x7f070019; public static int abc_action_bar_overflow_padding_start_material=0x7f07001a; public static int abc_action_bar_progress_bar_size=0x7f070008; public static int abc_action_bar_stacked_max_height=0x7f07001b; public static int abc_action_bar_stacked_tab_max_width=0x7f07001c; public static int abc_action_bar_subtitle_bottom_margin_material=0x7f07001d; public static int abc_action_bar_subtitle_top_margin_material=0x7f07001e; public static int abc_action_button_min_height_material=0x7f07001f; public static int abc_action_button_min_width_material=0x7f070020; public static int abc_action_button_min_width_overflow_material=0x7f070021; public static int abc_alert_dialog_button_bar_height=0x7f070006; public static int abc_button_inset_horizontal_material=0x7f070022; public static int abc_button_inset_vertical_material=0x7f070023; public static int abc_button_padding_horizontal_material=0x7f070024; public static int abc_button_padding_vertical_material=0x7f070025; public static int abc_cascading_menus_min_smallest_width=0x7f070026; public static int abc_config_prefDialogWidth=0x7f07000b; public static int abc_control_corner_material=0x7f070027; public static int abc_control_inset_material=0x7f070028; public static int abc_control_padding_material=0x7f070029; public static int abc_dialog_fixed_height_major=0x7f07000c; public static int abc_dialog_fixed_height_minor=0x7f07000d; public static int abc_dialog_fixed_width_major=0x7f07000e; public static int abc_dialog_fixed_width_minor=0x7f07000f; public static int abc_dialog_list_padding_bottom_no_buttons=0x7f07002a; public static int abc_dialog_list_padding_top_no_title=0x7f07002b; public static int abc_dialog_min_width_major=0x7f070010; public static int abc_dialog_min_width_minor=0x7f070011; public static int abc_dialog_padding_material=0x7f07002c; public static int abc_dialog_padding_top_material=0x7f07002d; public static int abc_dialog_title_divider_material=0x7f07002e; public static int abc_disabled_alpha_material_dark=0x7f07002f; public static int abc_disabled_alpha_material_light=0x7f070030; public static int abc_dropdownitem_icon_width=0x7f070031; public static int abc_dropdownitem_text_padding_left=0x7f070032; public static int abc_dropdownitem_text_padding_right=0x7f070033; public static int abc_edit_text_inset_bottom_material=0x7f070034; public static int abc_edit_text_inset_horizontal_material=0x7f070035; public static int abc_edit_text_inset_top_material=0x7f070036; public static int abc_floating_window_z=0x7f070037; public static int abc_list_item_padding_horizontal_material=0x7f070038; public static int abc_panel_menu_list_width=0x7f070039; public static int abc_progress_bar_height_material=0x7f07003a; public static int abc_search_view_preferred_height=0x7f07003b; public static int abc_search_view_preferred_width=0x7f07003c; public static int abc_seekbar_track_background_height_material=0x7f07003d; public static int abc_seekbar_track_progress_height_material=0x7f07003e; public static int abc_select_dialog_padding_start_material=0x7f07003f; public static int abc_switch_padding=0x7f070016; public static int abc_text_size_body_1_material=0x7f070040; public static int abc_text_size_body_2_material=0x7f070041; public static int abc_text_size_button_material=0x7f070042; public static int abc_text_size_caption_material=0x7f070043; public static int abc_text_size_display_1_material=0x7f070044; public static int abc_text_size_display_2_material=0x7f070045; public static int abc_text_size_display_3_material=0x7f070046; public static int abc_text_size_display_4_material=0x7f070047; public static int abc_text_size_headline_material=0x7f070048; public static int abc_text_size_large_material=0x7f070049; public static int abc_text_size_medium_material=0x7f07004a; public static int abc_text_size_menu_header_material=0x7f07004b; public static int abc_text_size_menu_material=0x7f07004c; public static int abc_text_size_small_material=0x7f07004d; public static int abc_text_size_subhead_material=0x7f07004e; public static int abc_text_size_subtitle_material_toolbar=0x7f070009; public static int abc_text_size_title_material=0x7f07004f; public static int abc_text_size_title_material_toolbar=0x7f07000a; public static int compat_button_inset_horizontal_material=0x7f07008b; public static int compat_button_inset_vertical_material=0x7f07008c; public static int compat_button_padding_horizontal_material=0x7f07008d; public static int compat_button_padding_vertical_material=0x7f07008e; public static int compat_control_corner_material=0x7f07008f; public static int design_appbar_elevation=0x7f070069; public static int design_bottom_navigation_active_item_max_width=0x7f07006a; public static int design_bottom_navigation_active_text_size=0x7f07006b; public static int design_bottom_navigation_elevation=0x7f07006c; public static int design_bottom_navigation_height=0x7f07006d; public static int design_bottom_navigation_item_max_width=0x7f07006e; public static int design_bottom_navigation_item_min_width=0x7f07006f; public static int design_bottom_navigation_margin=0x7f070070; public static int design_bottom_navigation_shadow_height=0x7f070071; public static int design_bottom_navigation_text_size=0x7f070072; public static int design_bottom_sheet_modal_elevation=0x7f070073; public static int design_bottom_sheet_peek_height_min=0x7f070074; public static int design_fab_border_width=0x7f070075; public static int design_fab_elevation=0x7f070076; public static int design_fab_image_size=0x7f070077; public static int design_fab_size_mini=0x7f070078; public static int design_fab_size_normal=0x7f070079; public static int design_fab_translation_z_pressed=0x7f07007a; public static int design_navigation_elevation=0x7f07007b; public static int design_navigation_icon_padding=0x7f07007c; public static int design_navigation_icon_size=0x7f07007d; public static int design_navigation_max_width=0x7f070061; public static int design_navigation_padding_bottom=0x7f07007e; public static int design_navigation_separator_vertical_padding=0x7f07007f; public static int design_snackbar_action_inline_max_width=0x7f070062; public static int design_snackbar_background_corner_radius=0x7f070063; public static int design_snackbar_elevation=0x7f070080; public static int design_snackbar_extra_spacing_horizontal=0x7f070064; public static int design_snackbar_max_width=0x7f070065; public static int design_snackbar_min_width=0x7f070066; public static int design_snackbar_padding_horizontal=0x7f070081; public static int design_snackbar_padding_vertical=0x7f070082; public static int design_snackbar_padding_vertical_2lines=0x7f070067; public static int design_snackbar_text_size=0x7f070083; public static int design_tab_max_width=0x7f070084; public static int design_tab_scrollable_min_width=0x7f070068; public static int design_tab_text_size=0x7f070085; public static int design_tab_text_size_2line=0x7f070086; public static int disabled_alpha_material_dark=0x7f070050; public static int disabled_alpha_material_light=0x7f070051; public static int fab_margin=0x7f07009b; public static int fastscroll_default_thickness=0x7f070000; public static int fastscroll_margin=0x7f070001; public static int fastscroll_minimum_range=0x7f070002; public static int highlight_alpha_material_colored=0x7f070052; public static int highlight_alpha_material_dark=0x7f070053; public static int highlight_alpha_material_light=0x7f070054; public static int hint_alpha_material_dark=0x7f070055; public static int hint_alpha_material_light=0x7f070056; public static int hint_pressed_alpha_material_dark=0x7f070057; public static int hint_pressed_alpha_material_light=0x7f070058; public static int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; public static int item_touch_helper_swipe_escape_max_velocity=0x7f070004; public static int item_touch_helper_swipe_escape_velocity=0x7f070005; public static int notification_action_icon_size=0x7f070090; public static int notification_action_text_size=0x7f070091; public static int notification_big_circle_margin=0x7f070092; public static int notification_content_margin_start=0x7f070088; public static int notification_large_icon_height=0x7f070093; public static int notification_large_icon_width=0x7f070094; public static int notification_main_column_padding_top=0x7f070089; public static int notification_media_narrow_margin=0x7f07008a; public static int notification_right_icon_size=0x7f070095; public static int notification_right_side_padding_top=0x7f070087; public static int notification_small_icon_background_padding=0x7f070096; public static int notification_small_icon_size_as_large=0x7f070097; public static int notification_subtext_size=0x7f070098; public static int notification_top_pad=0x7f070099; public static int notification_top_pad_large_text=0x7f07009a; public static int tooltip_corner_radius=0x7f070059; public static int tooltip_horizontal_padding=0x7f07005a; public static int tooltip_margin=0x7f07005b; public static int tooltip_precise_anchor_extra_offset=0x7f07005c; public static int tooltip_precise_anchor_threshold=0x7f07005d; public static int tooltip_vertical_padding=0x7f07005e; public static int tooltip_y_offset_non_touch=0x7f07005f; public static int tooltip_y_offset_touch=0x7f070060; } public static final class drawable { public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static int abc_action_bar_item_background_material=0x7f020001; public static int abc_btn_borderless_material=0x7f020002; public static int abc_btn_check_material=0x7f020003; public static int abc_btn_check_to_on_mtrl_000=0x7f020004; public static int abc_btn_check_to_on_mtrl_015=0x7f020005; public static int abc_btn_colored_material=0x7f020006; public static int abc_btn_default_mtrl_shape=0x7f020007; public static int abc_btn_radio_material=0x7f020008; public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static int abc_cab_background_internal_bg=0x7f02000d; public static int abc_cab_background_top_material=0x7f02000e; public static int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static int abc_control_background_material=0x7f020010; public static int abc_dialog_material_background=0x7f020011; public static int abc_edit_text_material=0x7f020012; public static int abc_ic_ab_back_material=0x7f020013; public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static int abc_ic_clear_material=0x7f020015; public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static int abc_ic_go_search_api_material=0x7f020017; public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static int abc_ic_menu_overflow_material=0x7f02001a; public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static int abc_ic_search_api_material=0x7f02001e; public static int abc_ic_star_black_16dp=0x7f02001f; public static int abc_ic_star_black_36dp=0x7f020020; public static int abc_ic_star_black_48dp=0x7f020021; public static int abc_ic_star_half_black_16dp=0x7f020022; public static int abc_ic_star_half_black_36dp=0x7f020023; public static int abc_ic_star_half_black_48dp=0x7f020024; public static int abc_ic_voice_search_api_material=0x7f020025; public static int abc_item_background_holo_dark=0x7f020026; public static int abc_item_background_holo_light=0x7f020027; public static int abc_list_divider_mtrl_alpha=0x7f020028; public static int abc_list_focused_holo=0x7f020029; public static int abc_list_longpressed_holo=0x7f02002a; public static int abc_list_pressed_holo_dark=0x7f02002b; public static int abc_list_pressed_holo_light=0x7f02002c; public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static int abc_list_selector_background_transition_holo_light=0x7f02002e; public static int abc_list_selector_disabled_holo_dark=0x7f02002f; public static int abc_list_selector_disabled_holo_light=0x7f020030; public static int abc_list_selector_holo_dark=0x7f020031; public static int abc_list_selector_holo_light=0x7f020032; public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static int abc_popup_background_mtrl_mult=0x7f020034; public static int abc_ratingbar_indicator_material=0x7f020035; public static int abc_ratingbar_material=0x7f020036; public static int abc_ratingbar_small_material=0x7f020037; public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static int abc_seekbar_thumb_material=0x7f02003d; public static int abc_seekbar_tick_mark_material=0x7f02003e; public static int abc_seekbar_track_material=0x7f02003f; public static int abc_spinner_mtrl_am_alpha=0x7f020040; public static int abc_spinner_textfield_background_material=0x7f020041; public static int abc_switch_thumb_material=0x7f020042; public static int abc_switch_track_mtrl_alpha=0x7f020043; public static int abc_tab_indicator_material=0x7f020044; public static int abc_tab_indicator_mtrl_alpha=0x7f020045; public static int abc_text_cursor_material=0x7f020046; public static int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static int abc_text_select_handle_left_mtrl_light=0x7f020048; public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static int abc_textfield_default_mtrl_alpha=0x7f02004e; public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static int abc_textfield_search_material=0x7f020051; public static int abc_vector_test=0x7f020052; public static int avd_hide_password=0x7f020053; public static int avd_hide_password_1=0x7f02006a; public static int avd_hide_password_2=0x7f02006b; public static int avd_hide_password_3=0x7f02006c; public static int avd_show_password=0x7f020054; public static int avd_show_password_1=0x7f02006d; public static int avd_show_password_2=0x7f02006e; public static int avd_show_password_3=0x7f02006f; public static int design_bottom_navigation_item_background=0x7f020055; public static int design_fab_background=0x7f020056; public static int design_ic_visibility=0x7f020057; public static int design_ic_visibility_off=0x7f020058; public static int design_password_eye=0x7f020059; public static int design_snackbar_background=0x7f02005a; public static int navigation_empty_icon=0x7f02005b; public static int notification_action_background=0x7f02005c; public static int notification_bg=0x7f02005d; public static int notification_bg_low=0x7f02005e; public static int notification_bg_low_normal=0x7f02005f; public static int notification_bg_low_pressed=0x7f020060; public static int notification_bg_normal=0x7f020061; public static int notification_bg_normal_pressed=0x7f020062; public static int notification_icon_background=0x7f020063; public static int notification_template_icon_bg=0x7f020068; public static int notification_template_icon_low_bg=0x7f020069; public static int notification_tile_bg=0x7f020064; public static int notify_panel_notification_icon_bg=0x7f020065; public static int tooltip_frame_dark=0x7f020066; public static int tooltip_frame_light=0x7f020067; } public static final class id { public static int ALT=0x7f080032; public static int CTRL=0x7f080033; public static int FUNCTION=0x7f080034; public static int META=0x7f080035; public static int MyButton=0x7f08008e; public static int SHIFT=0x7f080036; public static int SYM=0x7f080037; public static int action0=0x7f0800a1; public static int action_bar=0x7f08007c; public static int action_bar_activity_content=0x7f080001; public static int action_bar_container=0x7f08007b; public static int action_bar_root=0x7f080077; public static int action_bar_spinner=0x7f080002; public static int action_bar_subtitle=0x7f08005b; public static int action_bar_title=0x7f08005a; public static int action_container=0x7f08009e; public static int action_context_bar=0x7f08007d; public static int action_divider=0x7f0800a5; public static int action_image=0x7f08009f; public static int action_menu_divider=0x7f080003; public static int action_menu_presenter=0x7f080004; public static int action_mode_bar=0x7f080079; public static int action_mode_bar_stub=0x7f080078; public static int action_mode_close_button=0x7f08005c; public static int action_settings=0x7f0800b4; public static int action_text=0x7f0800a0; public static int actions=0x7f0800ae; public static int activity_chooser_view_content=0x7f08005d; public static int add=0x7f080027; public static int alertTitle=0x7f080070; public static int all=0x7f080052; public static int always=0x7f080038; public static int async=0x7f080056; public static int auto=0x7f080044; public static int beginning=0x7f08002f; public static int blocking=0x7f080057; public static int bottom=0x7f08003d; public static int buttonPanel=0x7f080063; public static int cancel_action=0x7f0800a2; public static int center=0x7f080045; public static int center_horizontal=0x7f080046; public static int center_vertical=0x7f080047; public static int checkbox=0x7f080073; public static int chronometer=0x7f0800aa; public static int clip_horizontal=0x7f08004e; public static int clip_vertical=0x7f08004f; public static int collapseActionView=0x7f080039; public static int container=0x7f080092; public static int contentPanel=0x7f080066; public static int coordinator=0x7f080093; public static int custom=0x7f08006d; public static int customPanel=0x7f08006c; public static int decor_content_parent=0x7f08007a; public static int default_activity_button=0x7f080060; public static int design_bottom_sheet=0x7f080095; public static int design_menu_item_action_area=0x7f08009c; public static int design_menu_item_action_area_stub=0x7f08009b; public static int design_menu_item_text=0x7f08009a; public static int design_navigation_view=0x7f080099; public static int disableHome=0x7f080020; public static int edit_query=0x7f08007e; public static int end=0x7f080030; public static int end_padder=0x7f0800b0; public static int enterAlways=0x7f08003f; public static int enterAlwaysCollapsed=0x7f080040; public static int etWidth1=0x7f08008d; public static int etWidth2=0x7f08008f; public static int exitUntilCollapsed=0x7f080041; public static int expand_activities_button=0x7f08005e; public static int expanded_menu=0x7f080072; public static int fab=0x7f08008c; public static int fill=0x7f080050; public static int fill_horizontal=0x7f080051; public static int fill_vertical=0x7f080048; public static int fixed=0x7f080054; public static int forever=0x7f080058; public static int ghost_view=0x7f08000a; public static int home=0x7f080005; public static int homeAsUp=0x7f080021; public static int icon=0x7f080062; public static int icon_group=0x7f0800af; public static int ifRoom=0x7f08003a; public static int image=0x7f08005f; public static int info=0x7f0800ab; public static int italic=0x7f080059; public static int item_touch_helper_previous_elevation=0x7f080000; public static int largeLabel=0x7f080091; public static int left=0x7f080049; public static int line1=0x7f080017; public static int line3=0x7f080018; public static int listMode=0x7f08001d; public static int list_item=0x7f080061; public static int masked=0x7f0800b3; public static int media_actions=0x7f0800a4; public static int message=0x7f0800b1; public static int middle=0x7f080031; public static int mini=0x7f080053; public static int multiply=0x7f080028; public static int navigation_header_container=0x7f080098; public static int never=0x7f08003b; public static int none=0x7f080022; public static int normal=0x7f08001e; public static int notification_background=0x7f0800ad; public static int notification_main_column=0x7f0800a7; public static int notification_main_column_container=0x7f0800a6; public static int parallax=0x7f08004c; public static int parentPanel=0x7f080065; public static int parent_matrix=0x7f08000b; public static int pin=0x7f08004d; public static int progress_circular=0x7f080006; public static int progress_horizontal=0x7f080007; public static int radio=0x7f080075; public static int right=0x7f08004a; public static int right_icon=0x7f0800ac; public static int right_side=0x7f0800a8; public static int save_image_matrix=0x7f08000c; public static int save_non_transition_alpha=0x7f08000d; public static int save_scale_type=0x7f08000e; public static int screen=0x7f080029; public static int scroll=0x7f080042; public static int scrollIndicatorDown=0x7f08006b; public static int scrollIndicatorUp=0x7f080067; public static int scrollView=0x7f080068; public static int scrollable=0x7f080055; public static int search_badge=0x7f080080; public static int search_bar=0x7f08007f; public static int search_button=0x7f080081; public static int search_close_btn=0x7f080086; public static int search_edit_frame=0x7f080082; public static int search_go_btn=0x7f080088; public static int search_mag_icon=0x7f080083; public static int search_plate=0x7f080084; public static int search_src_text=0x7f080085; public static int search_voice_btn=0x7f080089; public static int select_dialog_listview=0x7f08008a; public static int shortcut=0x7f080074; public static int showCustom=0x7f080023; public static int showHome=0x7f080024; public static int showTitle=0x7f080025; public static int smallLabel=0x7f080090; public static int snackbar_action=0x7f080097; public static int snackbar_text=0x7f080096; public static int snap=0x7f080043; public static int spacer=0x7f080064; public static int split_action_bar=0x7f080008; public static int src_atop=0x7f08002a; public static int src_in=0x7f08002b; public static int src_over=0x7f08002c; public static int start=0x7f08004b; public static int status_bar_latest_event_content=0x7f0800a3; public static int submenuarrow=0x7f080076; public static int submit_area=0x7f080087; public static int tabMode=0x7f08001f; public static int tag_transition_group=0x7f080019; public static int text=0x7f08001a; public static int text2=0x7f08001b; public static int textSpacerNoButtons=0x7f08006a; public static int textSpacerNoTitle=0x7f080069; public static int text_input_password_toggle=0x7f08009d; public static int textinput_counter=0x7f080014; public static int textinput_error=0x7f080015; public static int time=0x7f0800a9; public static int title=0x7f08001c; public static int titleDividerNoCustom=0x7f080071; public static int title_template=0x7f08006f; public static int toolbar=0x7f08008b; public static int top=0x7f08003e; public static int topPanel=0x7f08006e; public static int touch_outside=0x7f080094; public static int transition_current_scene=0x7f08000f; public static int transition_layout_save=0x7f080010; public static int transition_position=0x7f080011; public static int transition_scene_layoutid_cache=0x7f080012; public static int transition_transform=0x7f080013; public static int uniform=0x7f08002d; public static int up=0x7f080009; public static int useLogo=0x7f080026; public static int view_offset_helper=0x7f080016; public static int visible=0x7f0800b2; public static int withText=0x7f08003c; public static int wrap_content=0x7f08002e; } public static final class integer { public static int abc_config_activityDefaultDur=0x7f0d0000; public static int abc_config_activityShortDur=0x7f0d0001; public static int app_bar_elevation_anim_duration=0x7f0d0005; public static int bottom_sheet_slide_duration=0x7f0d0006; public static int cancel_button_image_alpha=0x7f0d0002; public static int config_tooltipAnimTime=0x7f0d0003; public static int design_snackbar_text_max_lines=0x7f0d0004; public static int hide_password_duration=0x7f0d0007; public static int show_password_duration=0x7f0d0008; public static int status_bar_notification_info_maxnum=0x7f0d0009; } public static final class layout { public static int abc_action_bar_title_item=0x7f040000; public static int abc_action_bar_up_container=0x7f040001; public static int abc_action_menu_item_layout=0x7f040002; public static int abc_action_menu_layout=0x7f040003; public static int abc_action_mode_bar=0x7f040004; public static int abc_action_mode_close_item_material=0x7f040005; public static int abc_activity_chooser_view=0x7f040006; public static int abc_activity_chooser_view_list_item=0x7f040007; public static int abc_alert_dialog_button_bar_material=0x7f040008; public static int abc_alert_dialog_material=0x7f040009; public static int abc_alert_dialog_title_material=0x7f04000a; public static int abc_dialog_title_material=0x7f04000b; public static int abc_expanded_menu_layout=0x7f04000c; public static int abc_list_menu_item_checkbox=0x7f04000d; public static int abc_list_menu_item_icon=0x7f04000e; public static int abc_list_menu_item_layout=0x7f04000f; public static int abc_list_menu_item_radio=0x7f040010; public static int abc_popup_menu_header_item_layout=0x7f040011; public static int abc_popup_menu_item_layout=0x7f040012; public static int abc_screen_content_include=0x7f040013; public static int abc_screen_simple=0x7f040014; public static int abc_screen_simple_overlay_action_mode=0x7f040015; public static int abc_screen_toolbar=0x7f040016; public static int abc_search_dropdown_item_icons_2line=0x7f040017; public static int abc_search_view=0x7f040018; public static int abc_select_dialog_material=0x7f040019; public static int activity_main=0x7f04001a; public static int content_main=0x7f04001b; public static int design_bottom_navigation_item=0x7f04001c; public static int design_bottom_sheet_dialog=0x7f04001d; public static int design_layout_snackbar=0x7f04001e; public static int design_layout_snackbar_include=0x7f04001f; public static int design_layout_tab_icon=0x7f040020; public static int design_layout_tab_text=0x7f040021; public static int design_menu_item_action_area=0x7f040022; public static int design_navigation_item=0x7f040023; public static int design_navigation_item_header=0x7f040024; public static int design_navigation_item_separator=0x7f040025; public static int design_navigation_item_subheader=0x7f040026; public static int design_navigation_menu=0x7f040027; public static int design_navigation_menu_item=0x7f040028; public static int design_text_input_password_icon=0x7f040029; public static int notification_action=0x7f04002a; public static int notification_action_tombstone=0x7f04002b; public static int notification_media_action=0x7f04002c; public static int notification_media_cancel_action=0x7f04002d; public static int notification_template_big_media=0x7f04002e; public static int notification_template_big_media_custom=0x7f04002f; public static int notification_template_big_media_narrow=0x7f040030; public static int notification_template_big_media_narrow_custom=0x7f040031; public static int notification_template_custom_big=0x7f040032; public static int notification_template_icon_group=0x7f040033; public static int notification_template_lines_media=0x7f040034; public static int notification_template_media=0x7f040035; public static int notification_template_media_custom=0x7f040036; public static int notification_template_part_chronometer=0x7f040037; public static int notification_template_part_time=0x7f040038; public static int select_dialog_item_material=0x7f040039; public static int select_dialog_multichoice_material=0x7f04003a; public static int select_dialog_singlechoice_material=0x7f04003b; public static int support_simple_spinner_dropdown_item=0x7f04003c; public static int tooltip=0x7f04003d; } public static final class menu { public static int menu_main=0x7f0e0000; } public static final class mipmap { public static int ic_launcher=0x7f030000; public static int ic_launcher_foreground=0x7f030001; public static int ic_launcher_round=0x7f030002; } public static final class string { public static int abc_action_bar_home_description=0x7f090000; public static int abc_action_bar_up_description=0x7f090001; public static int abc_action_menu_overflow_description=0x7f090002; public static int abc_action_mode_done=0x7f090003; public static int abc_activity_chooser_view_see_all=0x7f090004; public static int abc_activitychooserview_choose_application=0x7f090005; public static int abc_capital_off=0x7f090006; public static int abc_capital_on=0x7f090007; public static int abc_font_family_body_1_material=0x7f090012; public static int abc_font_family_body_2_material=0x7f090013; public static int abc_font_family_button_material=0x7f090014; public static int abc_font_family_caption_material=0x7f090015; public static int abc_font_family_display_1_material=0x7f090016; public static int abc_font_family_display_2_material=0x7f090017; public static int abc_font_family_display_3_material=0x7f090018; public static int abc_font_family_display_4_material=0x7f090019; public static int abc_font_family_headline_material=0x7f09001a; public static int abc_font_family_menu_material=0x7f09001b; public static int abc_font_family_subhead_material=0x7f09001c; public static int abc_font_family_title_material=0x7f09001d; public static int abc_search_hint=0x7f090008; public static int abc_searchview_description_clear=0x7f090009; public static int abc_searchview_description_query=0x7f09000a; public static int abc_searchview_description_search=0x7f09000b; public static int abc_searchview_description_submit=0x7f09000c; public static int abc_searchview_description_voice=0x7f09000d; public static int abc_shareactionprovider_share_with=0x7f09000e; public static int abc_shareactionprovider_share_with_application=0x7f09000f; public static int abc_toolbar_collapse_description=0x7f090010; public static int action_settings=0x7f090028; public static int app_name=0x7f090027; public static int appbar_scrolling_view_behavior=0x7f09001e; public static int bottom_sheet_behavior=0x7f09001f; public static int character_counter_pattern=0x7f090020; public static int password_toggle_content_description=0x7f090021; public static int path_password_eye=0x7f090022; public static int path_password_eye_mask_strike_through=0x7f090023; public static int path_password_eye_mask_visible=0x7f090024; public static int path_password_strike_through=0x7f090025; public static int search_menu_title=0x7f090011; public static int status_bar_notification_info_overflow=0x7f090026; } public static final class style { public static int AlertDialog_AppCompat=0x7f0a0095; public static int AlertDialog_AppCompat_Light=0x7f0a0096; public static int Animation_AppCompat_Dialog=0x7f0a0097; public static int Animation_AppCompat_DropDownUp=0x7f0a0098; public static int Animation_AppCompat_Tooltip=0x7f0a0099; public static int Animation_Design_BottomSheetDialog=0x7f0a015f; /** Base application theme. */ public static int AppTheme=0x7f0a0180; public static int AppTheme_AppBarOverlay=0x7f0a0182; public static int AppTheme_NoActionBar=0x7f0a0181; public static int AppTheme_PopupOverlay=0x7f0a0183; public static int Base_AlertDialog_AppCompat=0x7f0a009a; public static int Base_AlertDialog_AppCompat_Light=0x7f0a009b; public static int Base_Animation_AppCompat_Dialog=0x7f0a009c; public static int Base_Animation_AppCompat_DropDownUp=0x7f0a009d; public static int Base_Animation_AppCompat_Tooltip=0x7f0a009e; public static int Base_DialogWindowTitle_AppCompat=0x7f0a009f; public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00a0; public static int Base_TextAppearance_AppCompat=0x7f0a0039; public static int Base_TextAppearance_AppCompat_Body1=0x7f0a003a; public static int Base_TextAppearance_AppCompat_Body2=0x7f0a003b; public static int Base_TextAppearance_AppCompat_Button=0x7f0a0027; public static int Base_TextAppearance_AppCompat_Caption=0x7f0a003c; public static int Base_TextAppearance_AppCompat_Display1=0x7f0a003d; public static int Base_TextAppearance_AppCompat_Display2=0x7f0a003e; public static int Base_TextAppearance_AppCompat_Display3=0x7f0a003f; public static int Base_TextAppearance_AppCompat_Display4=0x7f0a0040; public static int Base_TextAppearance_AppCompat_Headline=0x7f0a0041; public static int Base_TextAppearance_AppCompat_Inverse=0x7f0a000b; public static int Base_TextAppearance_AppCompat_Large=0x7f0a0042; public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000c; public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0043; public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a0044; public static int Base_TextAppearance_AppCompat_Medium=0x7f0a0045; public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000d; public static int Base_TextAppearance_AppCompat_Menu=0x7f0a0046; public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00a1; public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0047; public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0048; public static int Base_TextAppearance_AppCompat_Small=0x7f0a0049; public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000e; public static int Base_TextAppearance_AppCompat_Subhead=0x7f0a004a; public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a000f; public static int Base_TextAppearance_AppCompat_Title=0x7f0a004b; public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0010; public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0a00a2; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0086; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a004c; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a004d; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a004e; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a004f; public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0050; public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0051; public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0052; public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a008d; public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a008e; public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0087; public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00a3; public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a0053; public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a0054; public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a0055; public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a0056; public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0057; public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00a4; public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0058; public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0059; public static int Base_Theme_AppCompat=0x7f0a005a; public static int Base_Theme_AppCompat_CompactMenu=0x7f0a00a5; public static int Base_Theme_AppCompat_Dialog=0x7f0a0011; public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0012; public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00a6; public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0013; public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0001; public static int Base_Theme_AppCompat_Light=0x7f0a005b; public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00a7; public static int Base_Theme_AppCompat_Light_Dialog=0x7f0a0014; public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0015; public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00a8; public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0016; public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0002; public static int Base_ThemeOverlay_AppCompat=0x7f0a00a9; public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00aa; public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00ab; public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00ac; public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0a0017; public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0018; public static int Base_ThemeOverlay_AppCompat_Light=0x7f0a00ad; public static int Base_V11_Theme_AppCompat_Dialog=0x7f0a0019; public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a001a; public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0a001b; public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0023; public static int Base_V12_Widget_AppCompat_EditText=0x7f0a0024; public static int Base_V14_Widget_Design_AppBarLayout=0x7f0a0160; public static int Base_V21_Theme_AppCompat=0x7f0a005c; public static int Base_V21_Theme_AppCompat_Dialog=0x7f0a005d; public static int Base_V21_Theme_AppCompat_Light=0x7f0a005e; public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a005f; public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0a0060; public static int Base_V21_Widget_Design_AppBarLayout=0x7f0a015c; public static int Base_V22_Theme_AppCompat=0x7f0a0084; public static int Base_V22_Theme_AppCompat_Light=0x7f0a0085; public static int Base_V23_Theme_AppCompat=0x7f0a0088; public static int Base_V23_Theme_AppCompat_Light=0x7f0a0089; public static int Base_V26_Theme_AppCompat=0x7f0a0091; public static int Base_V26_Theme_AppCompat_Light=0x7f0a0092; public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0a0093; public static int Base_V26_Widget_Design_AppBarLayout=0x7f0a015e; public static int Base_V7_Theme_AppCompat=0x7f0a00ae; public static int Base_V7_Theme_AppCompat_Dialog=0x7f0a00af; public static int Base_V7_Theme_AppCompat_Light=0x7f0a00b0; public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00b1; public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0a00b2; public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00b3; public static int Base_V7_Widget_AppCompat_EditText=0x7f0a00b4; public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0a00b5; public static int Base_Widget_AppCompat_ActionBar=0x7f0a00b6; public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00b7; public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00b8; public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0061; public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0062; public static int Base_Widget_AppCompat_ActionButton=0x7f0a0063; public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a0064; public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a0065; public static int Base_Widget_AppCompat_ActionMode=0x7f0a00b9; public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00ba; public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0025; public static int Base_Widget_AppCompat_Button=0x7f0a0066; public static int Base_Widget_AppCompat_Button_Borderless=0x7f0a0067; public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0068; public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00bb; public static int Base_Widget_AppCompat_Button_Colored=0x7f0a008a; public static int Base_Widget_AppCompat_Button_Small=0x7f0a0069; public static int Base_Widget_AppCompat_ButtonBar=0x7f0a006a; public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00bc; public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a006b; public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a006c; public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00bd; public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000; public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00be; public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a006d; public static int Base_Widget_AppCompat_EditText=0x7f0a0026; public static int Base_Widget_AppCompat_ImageButton=0x7f0a006e; public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00bf; public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00c0; public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00c1; public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a006f; public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0070; public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0071; public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0072; public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0073; public static int Base_Widget_AppCompat_ListMenuView=0x7f0a00c2; public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0a0074; public static int Base_Widget_AppCompat_ListView=0x7f0a0075; public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0a0076; public static int Base_Widget_AppCompat_ListView_Menu=0x7f0a0077; public static int Base_Widget_AppCompat_PopupMenu=0x7f0a0078; public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0079; public static int Base_Widget_AppCompat_PopupWindow=0x7f0a00c3; public static int Base_Widget_AppCompat_ProgressBar=0x7f0a001c; public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a001d; public static int Base_Widget_AppCompat_RatingBar=0x7f0a007a; public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a008b; public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0a008c; public static int Base_Widget_AppCompat_SearchView=0x7f0a00c4; public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00c5; public static int Base_Widget_AppCompat_SeekBar=0x7f0a007b; public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0a00c6; public static int Base_Widget_AppCompat_Spinner=0x7f0a007c; public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0003; public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a007d; public static int Base_Widget_AppCompat_Toolbar=0x7f0a0094; public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a007e; public static int Base_Widget_Design_AppBarLayout=0x7f0a015d; public static int Base_Widget_Design_TabLayout=0x7f0a0161; public static int Platform_AppCompat=0x7f0a001e; public static int Platform_AppCompat_Light=0x7f0a001f; public static int Platform_ThemeOverlay_AppCompat=0x7f0a007f; public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0080; public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0081; public static int Platform_V11_AppCompat=0x7f0a0020; public static int Platform_V11_AppCompat_Light=0x7f0a0021; public static int Platform_V14_AppCompat=0x7f0a0028; public static int Platform_V14_AppCompat_Light=0x7f0a0029; public static int Platform_V21_AppCompat=0x7f0a0082; public static int Platform_V21_AppCompat_Light=0x7f0a0083; public static int Platform_V25_AppCompat=0x7f0a008f; public static int Platform_V25_AppCompat_Light=0x7f0a0090; public static int Platform_Widget_AppCompat_Spinner=0x7f0a0022; public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a002b; public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a002c; public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a002d; public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a002e; public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a002f; public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0030; public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0031; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0032; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0033; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a0034; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a0035; public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a0036; public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a0037; public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0038; public static int TextAppearance_AppCompat=0x7f0a00c7; public static int TextAppearance_AppCompat_Body1=0x7f0a00c8; public static int TextAppearance_AppCompat_Body2=0x7f0a00c9; public static int TextAppearance_AppCompat_Button=0x7f0a00ca; public static int TextAppearance_AppCompat_Caption=0x7f0a00cb; public static int TextAppearance_AppCompat_Display1=0x7f0a00cc; public static int TextAppearance_AppCompat_Display2=0x7f0a00cd; public static int TextAppearance_AppCompat_Display3=0x7f0a00ce; public static int TextAppearance_AppCompat_Display4=0x7f0a00cf; public static int TextAppearance_AppCompat_Headline=0x7f0a00d0; public static int TextAppearance_AppCompat_Inverse=0x7f0a00d1; public static int TextAppearance_AppCompat_Large=0x7f0a00d2; public static int TextAppearance_AppCompat_Large_Inverse=0x7f0a00d3; public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00d4; public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00d5; public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00d6; public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00d7; public static int TextAppearance_AppCompat_Medium=0x7f0a00d8; public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00d9; public static int TextAppearance_AppCompat_Menu=0x7f0a00da; public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00db; public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00dc; public static int TextAppearance_AppCompat_Small=0x7f0a00dd; public static int TextAppearance_AppCompat_Small_Inverse=0x7f0a00de; public static int TextAppearance_AppCompat_Subhead=0x7f0a00df; public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00e0; public static int TextAppearance_AppCompat_Title=0x7f0a00e1; public static int TextAppearance_AppCompat_Title_Inverse=0x7f0a00e2; public static int TextAppearance_AppCompat_Tooltip=0x7f0a002a; public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00e3; public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00e4; public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00e5; public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00e6; public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00e7; public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00e8; public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00e9; public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00ea; public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00eb; public static int TextAppearance_AppCompat_Widget_Button=0x7f0a00ec; public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a00ed; public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a00ee; public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00ef; public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f0; public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a00f1; public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00f2; public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00f3; public static int TextAppearance_AppCompat_Widget_Switch=0x7f0a00f4; public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00f5; public static int TextAppearance_Compat_Notification=0x7f0a0179; public static int TextAppearance_Compat_Notification_Info=0x7f0a017a; public static int TextAppearance_Compat_Notification_Info_Media=0x7f0a0156; public static int TextAppearance_Compat_Notification_Line2=0x7f0a017f; public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0a015a; public static int TextAppearance_Compat_Notification_Media=0x7f0a0157; public static int TextAppearance_Compat_Notification_Time=0x7f0a017b; public static int TextAppearance_Compat_Notification_Time_Media=0x7f0a0158; public static int TextAppearance_Compat_Notification_Title=0x7f0a017c; public static int TextAppearance_Compat_Notification_Title_Media=0x7f0a0159; public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a0162; public static int TextAppearance_Design_Counter=0x7f0a0163; public static int TextAppearance_Design_Counter_Overflow=0x7f0a0164; public static int TextAppearance_Design_Error=0x7f0a0165; public static int TextAppearance_Design_Hint=0x7f0a0166; public static int TextAppearance_Design_Snackbar_Message=0x7f0a0167; public static int TextAppearance_Design_Tab=0x7f0a0168; public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00f6; public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00f7; public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00f8; public static int Theme_AppCompat=0x7f0a00f9; public static int Theme_AppCompat_CompactMenu=0x7f0a00fa; public static int Theme_AppCompat_DayNight=0x7f0a0004; public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0005; public static int Theme_AppCompat_DayNight_Dialog=0x7f0a0006; public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0007; public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0008; public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0009; public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000a; public static int Theme_AppCompat_Dialog=0x7f0a00fb; public static int Theme_AppCompat_Dialog_Alert=0x7f0a00fc; public static int Theme_AppCompat_Dialog_MinWidth=0x7f0a00fd; public static int Theme_AppCompat_DialogWhenLarge=0x7f0a00fe; public static int Theme_AppCompat_Light=0x7f0a00ff; public static int Theme_AppCompat_Light_DarkActionBar=0x7f0a0100; public static int Theme_AppCompat_Light_Dialog=0x7f0a0101; public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0a0102; public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0103; public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0104; public static int Theme_AppCompat_Light_NoActionBar=0x7f0a0105; public static int Theme_AppCompat_NoActionBar=0x7f0a0106; public static int Theme_Design=0x7f0a0169; public static int Theme_Design_BottomSheetDialog=0x7f0a016a; public static int Theme_Design_Light=0x7f0a016b; public static int Theme_Design_Light_BottomSheetDialog=0x7f0a016c; public static int Theme_Design_Light_NoActionBar=0x7f0a016d; public static int Theme_Design_NoActionBar=0x7f0a016e; public static int ThemeOverlay_AppCompat=0x7f0a0107; public static int ThemeOverlay_AppCompat_ActionBar=0x7f0a0108; public static int ThemeOverlay_AppCompat_Dark=0x7f0a0109; public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a010a; public static int ThemeOverlay_AppCompat_Dialog=0x7f0a010b; public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a010c; public static int ThemeOverlay_AppCompat_Light=0x7f0a010d; public static int Widget_AppCompat_ActionBar=0x7f0a010e; public static int Widget_AppCompat_ActionBar_Solid=0x7f0a010f; public static int Widget_AppCompat_ActionBar_TabBar=0x7f0a0110; public static int Widget_AppCompat_ActionBar_TabText=0x7f0a0111; public static int Widget_AppCompat_ActionBar_TabView=0x7f0a0112; public static int Widget_AppCompat_ActionButton=0x7f0a0113; public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0114; public static int Widget_AppCompat_ActionButton_Overflow=0x7f0a0115; public static int Widget_AppCompat_ActionMode=0x7f0a0116; public static int Widget_AppCompat_ActivityChooserView=0x7f0a0117; public static int Widget_AppCompat_AutoCompleteTextView=0x7f0a0118; public static int Widget_AppCompat_Button=0x7f0a0119; public static int Widget_AppCompat_Button_Borderless=0x7f0a011a; public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0a011b; public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a011c; public static int Widget_AppCompat_Button_Colored=0x7f0a011d; public static int Widget_AppCompat_Button_Small=0x7f0a011e; public static int Widget_AppCompat_ButtonBar=0x7f0a011f; public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0120; public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0121; public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0122; public static int Widget_AppCompat_CompoundButton_Switch=0x7f0a0123; public static int Widget_AppCompat_DrawerArrowToggle=0x7f0a0124; public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0a0125; public static int Widget_AppCompat_EditText=0x7f0a0126; public static int Widget_AppCompat_ImageButton=0x7f0a0127; public static int Widget_AppCompat_Light_ActionBar=0x7f0a0128; public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0129; public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012a; public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a012b; public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a012c; public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a012d; public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a012e; public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a012f; public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0130; public static int Widget_AppCompat_Light_ActionButton=0x7f0a0131; public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0132; public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0133; public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0134; public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0a0135; public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a0136; public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a0137; public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0a0138; public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0139; public static int Widget_AppCompat_Light_PopupMenu=0x7f0a013a; public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a013b; public static int Widget_AppCompat_Light_SearchView=0x7f0a013c; public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a013d; public static int Widget_AppCompat_ListMenuView=0x7f0a013e; public static int Widget_AppCompat_ListPopupWindow=0x7f0a013f; public static int Widget_AppCompat_ListView=0x7f0a0140; public static int Widget_AppCompat_ListView_DropDown=0x7f0a0141; public static int Widget_AppCompat_ListView_Menu=0x7f0a0142; public static int Widget_AppCompat_PopupMenu=0x7f0a0143; public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0144; public static int Widget_AppCompat_PopupWindow=0x7f0a0145; public static int Widget_AppCompat_ProgressBar=0x7f0a0146; public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0147; public static int Widget_AppCompat_RatingBar=0x7f0a0148; public static int Widget_AppCompat_RatingBar_Indicator=0x7f0a0149; public static int Widget_AppCompat_RatingBar_Small=0x7f0a014a; public static int Widget_AppCompat_SearchView=0x7f0a014b; public static int Widget_AppCompat_SearchView_ActionBar=0x7f0a014c; public static int Widget_AppCompat_SeekBar=0x7f0a014d; public static int Widget_AppCompat_SeekBar_Discrete=0x7f0a014e; public static int Widget_AppCompat_Spinner=0x7f0a014f; public static int Widget_AppCompat_Spinner_DropDown=0x7f0a0150; public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0151; public static int Widget_AppCompat_Spinner_Underlined=0x7f0a0152; public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0153; public static int Widget_AppCompat_Toolbar=0x7f0a0154; public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0155; public static int Widget_Compat_NotificationActionContainer=0x7f0a017d; public static int Widget_Compat_NotificationActionText=0x7f0a017e; public static int Widget_Design_AppBarLayout=0x7f0a016f; public static int Widget_Design_BottomNavigationView=0x7f0a0170; public static int Widget_Design_BottomSheet_Modal=0x7f0a0171; public static int Widget_Design_CollapsingToolbar=0x7f0a0172; public static int Widget_Design_CoordinatorLayout=0x7f0a0173; public static int Widget_Design_FloatingActionButton=0x7f0a0174; public static int Widget_Design_NavigationView=0x7f0a0175; public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0a0176; public static int Widget_Design_Snackbar=0x7f0a0177; public static int Widget_Design_TabLayout=0x7f0a015b; public static int Widget_Design_TextInputLayout=0x7f0a0178; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background android.support.v7.appcompat:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit android.support.v7.appcompat:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked android.support.v7.appcompat:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd android.support.v7.appcompat:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.v7.appcompat:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft android.support.v7.appcompat:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight android.support.v7.appcompat:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart android.support.v7.appcompat:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.v7.appcompat:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout android.support.v7.appcompat:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions android.support.v7.appcompat:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider android.support.v7.appcompat:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height android.support.v7.appcompat:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.v7.appcompat:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.v7.appcompat:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout android.support.v7.appcompat:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon android.support.v7.appcompat:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.v7.appcompat:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding android.support.v7.appcompat:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo android.support.v7.appcompat:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode android.support.v7.appcompat:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme android.support.v7.appcompat:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding android.support.v7.appcompat:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle android.support.v7.appcompat:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle android.support.v7.appcompat:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.v7.appcompat:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title android.support.v7.appcompat:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle android.support.v7.appcompat: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, 0x7f01006c }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:background */ public static int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:backgroundSplit */ public static int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:backgroundStacked */ public static int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetEnd */ public static int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetEndWithActions */ public static int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetLeft */ public static int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetRight */ public static int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetStart */ public static int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetStartWithNavigation */ public static int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:customNavigationLayout */ public static int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name android.support.v7.appcompat:displayOptions */ public static int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:divider */ public static int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:elevation */ public static int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:height */ public static int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:hideOnContentScroll */ public static int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:homeAsUpIndicator */ public static int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:homeLayout */ public static int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:icon */ public static int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:indeterminateProgressStyle */ public static int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:itemPadding */ public static int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:logo */ public static int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name android.support.v7.appcompat:navigationMode */ public static int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:popupTheme */ public static int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:progressBarPadding */ public static int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:progressBarStyle */ public static int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:subtitle */ public static int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:subtitleTextStyle */ public static int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:title */ public static int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:titleTextStyle */ public static int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background android.support.v7.appcompat:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit android.support.v7.appcompat:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout android.support.v7.appcompat:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height android.support.v7.appcompat:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.v7.appcompat:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle android.support.v7.appcompat: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 android.support.v7.appcompat.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:background */ public static int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:backgroundSplit */ public static int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:closeItemLayout */ public static int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:height */ public static int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:subtitleTextStyle */ public static int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:titleTextStyle */ public static int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.v7.appcompat:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.v7.appcompat: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 android.support.v7.appcompat.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:expandActivityOverflowButtonDrawable */ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:initialActivityCount */ public static int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout android.support.v7.appcompat:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout android.support.v7.appcompat:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout android.support.v7.appcompat:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.v7.appcompat:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle android.support.v7.appcompat:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.v7.appcompat:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonPanelSideLayout */ public static int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:listItemLayout */ public static int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:listLayout */ public static int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:multiChoiceItemLayout */ public static int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showTitle} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:showTitle */ public static int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:singleChoiceItemLayout */ public static int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded android.support.v7.appcompat: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, 0x7f0100ff }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:keyboardNavigationCluster */ public static int AppBarLayout_android_keyboardNavigationCluster = 2; /** <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:touchscreenBlocksFocus */ public static int AppBarLayout_android_touchscreenBlocksFocus = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:elevation */ public static int AppBarLayout_elevation = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:expanded */ public static int AppBarLayout_expanded = 4; /** Attributes that can be used with a AppBarLayoutStates. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsed android.support.v7.appcompat:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.v7.appcompat:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010100, 0x7f010101 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#state_collapsed} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:state_collapsed */ public static int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#state_collapsible} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:state_collapsible */ public static int AppBarLayoutStates_state_collapsible = 1; /** Attributes that can be used with a AppBarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags android.support.v7.appcompat:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.v7.appcompat:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010102, 0x7f010103 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name android.support.v7.appcompat:layout_scrollFlags */ public static int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:layout_scrollInterpolator */ public static int AppBarLayout_Layout_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat android.support.v7.appcompat:srcCompat}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tint android.support.v7.appcompat:tint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode android.support.v7.appcompat: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, 0x7f010030, 0x7f010031, 0x7f010032 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:srcCompat */ public static int AppCompatImageView_srcCompat = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tint} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tint */ public static int AppCompatImageView_tint = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tintMode} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:tintMode */ public static int AppCompatImageView_tintMode = 3; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark android.support.v7.appcompat:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.v7.appcompat:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.v7.appcompat: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, 0x7f010033, 0x7f010034, 0x7f010035 }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:tickMark */ public static int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tickMarkTint */ public static int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:tickMarkTintMode */ public static int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize android.support.v7.appcompat:autoSizeMaxTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.v7.appcompat:autoSizeMinTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.v7.appcompat:autoSizePresetSizes}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.v7.appcompat:autoSizeStepGranularity}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.v7.appcompat:autoSizeTextType}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_fontFamily android.support.v7.appcompat:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.v7.appcompat: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, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoSizeMaxTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:autoSizeMaxTextSize */ public static int AppCompatTextView_autoSizeMaxTextSize = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoSizeMinTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:autoSizeMinTextSize */ public static int AppCompatTextView_autoSizeMinTextSize = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoSizePresetSizes} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:autoSizePresetSizes */ public static int AppCompatTextView_autoSizePresetSizes = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoSizeStepGranularity} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:autoSizeStepGranularity */ public static int AppCompatTextView_autoSizeStepGranularity = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoSizeTextType} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:autoSizeTextType */ public static int AppCompatTextView_autoSizeTextType = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontFamily} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fontFamily */ public static int AppCompatTextView_fontFamily = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name android.support.v7.appcompat:textAllCaps */ public static int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider android.support.v7.appcompat:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.v7.appcompat:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.v7.appcompat:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.v7.appcompat:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.v7.appcompat:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.v7.appcompat:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.v7.appcompat:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.v7.appcompat:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.v7.appcompat:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.v7.appcompat:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.v7.appcompat:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.v7.appcompat:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.v7.appcompat:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.v7.appcompat:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.v7.appcompat:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.v7.appcompat:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v7.appcompat:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.v7.appcompat:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.v7.appcompat:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.v7.appcompat:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.v7.appcompat:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.v7.appcompat:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v7.appcompat:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v7.appcompat:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.v7.appcompat:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.v7.appcompat:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.v7.appcompat:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v7.appcompat:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v7.appcompat:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v7.appcompat:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.v7.appcompat:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v7.appcompat:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.v7.appcompat:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.v7.appcompat:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.v7.appcompat:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.v7.appcompat:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.v7.appcompat:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.v7.appcompat:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v7.appcompat:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v7.appcompat:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v7.appcompat:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.v7.appcompat:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.v7.appcompat:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.v7.appcompat:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.v7.appcompat:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.v7.appcompat:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent android.support.v7.appcompat:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.v7.appcompat:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.v7.appcompat:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.v7.appcompat:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.v7.appcompat:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.v7.appcompat:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorError android.support.v7.appcompat:colorError}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.v7.appcompat:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.v7.appcompat:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v7.appcompat:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground android.support.v7.appcompat:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.v7.appcompat:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.v7.appcompat:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.v7.appcompat:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.v7.appcompat:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.v7.appcompat:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v7.appcompat:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.v7.appcompat:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor android.support.v7.appcompat:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.v7.appcompat:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.v7.appcompat:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.v7.appcompat:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v7.appcompat:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.v7.appcompat:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.v7.appcompat:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.v7.appcompat:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.v7.appcompat:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v7.appcompat:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v7.appcompat:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v7.appcompat:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v7.appcompat:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground android.support.v7.appcompat:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.v7.appcompat:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.v7.appcompat:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.v7.appcompat:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.v7.appcompat:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.v7.appcompat:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.v7.appcompat:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v7.appcompat:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.v7.appcompat:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.v7.appcompat:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.v7.appcompat:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.v7.appcompat:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v7.appcompat:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v7.appcompat:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.v7.appcompat:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle android.support.v7.appcompat:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v7.appcompat:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.v7.appcompat:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.v7.appcompat:textAppearanceListItemSecondary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v7.appcompat:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.v7.appcompat:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v7.appcompat:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v7.appcompat:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v7.appcompat:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v7.appcompat:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.v7.appcompat:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v7.appcompat:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.v7.appcompat:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.v7.appcompat:tooltipForegroundColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.v7.appcompat:tooltipFrameBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.v7.appcompat:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.v7.appcompat:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.v7.appcompat:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.v7.appcompat:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.v7.appcompat:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.v7.appcompat:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.v7.appcompat:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.v7.appcompat:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.v7.appcompat:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.v7.appcompat:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorError @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSecondary @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_tooltipForegroundColor @see #AppCompatTheme_tooltipFrameBackground @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01003d, 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 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarDivider */ public static int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarItemBackground */ public static int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarPopupTheme */ public static int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name android.support.v7.appcompat:actionBarSize */ public static int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarSplitStyle */ public static int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarStyle */ public static int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarTabBarStyle */ public static int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarTabStyle */ public static int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarTabTextStyle */ public static int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarTheme */ public static int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionBarWidgetTheme */ public static int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionButtonStyle */ public static int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionDropDownStyle */ public static int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionMenuTextAppearance */ public static int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:actionMenuTextColor */ public static int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeBackground */ public static int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeCloseButtonStyle */ public static int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeCloseDrawable */ public static int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeCopyDrawable */ public static int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeCutDrawable */ public static int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeFindDrawable */ public static int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModePasteDrawable */ public static int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModePopupWindowStyle */ public static int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeSelectAllDrawable */ public static int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeShareDrawable */ public static int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeSplitBackground */ public static int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeStyle */ public static int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionModeWebSearchDrawable */ public static int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionOverflowButtonStyle */ public static int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionOverflowMenuStyle */ public static int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:activityChooserViewStyle */ public static int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:alertDialogButtonGroupStyle */ public static int AppCompatTheme_alertDialogButtonGroupStyle = 95; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:alertDialogCenterButtons */ public static int AppCompatTheme_alertDialogCenterButtons = 96; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:alertDialogStyle */ public static int AppCompatTheme_alertDialogStyle = 94; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:alertDialogTheme */ public static int AppCompatTheme_alertDialogTheme = 97; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:autoCompleteTextViewStyle */ public static int AppCompatTheme_autoCompleteTextViewStyle = 102; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:borderlessButtonStyle */ public static int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonBarButtonStyle */ public static int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonBarNegativeButtonStyle */ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonBarNeutralButtonStyle */ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonBarPositiveButtonStyle */ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonBarStyle */ public static int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonStyle */ public static int AppCompatTheme_buttonStyle = 103; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:buttonStyleSmall */ public static int AppCompatTheme_buttonStyleSmall = 104; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:checkboxStyle */ public static int AppCompatTheme_checkboxStyle = 105; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:checkedTextViewStyle */ public static int AppCompatTheme_checkedTextViewStyle = 106; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorAccent */ public static int AppCompatTheme_colorAccent = 86; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorBackgroundFloating */ public static int AppCompatTheme_colorBackgroundFloating = 93; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorButtonNormal */ public static int AppCompatTheme_colorButtonNormal = 90; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorControlActivated */ public static int AppCompatTheme_colorControlActivated = 88; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorControlHighlight */ public static int AppCompatTheme_colorControlHighlight = 89; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorControlNormal */ public static int AppCompatTheme_colorControlNormal = 87; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorError} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:colorError */ public static int AppCompatTheme_colorError = 118; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorPrimary */ public static int AppCompatTheme_colorPrimary = 84; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorPrimaryDark */ public static int AppCompatTheme_colorPrimaryDark = 85; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:colorSwitchThumbNormal */ public static int AppCompatTheme_colorSwitchThumbNormal = 91; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:controlBackground */ public static int AppCompatTheme_controlBackground = 92; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:dialogPreferredPadding */ public static int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:dialogTheme */ public static int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:dividerHorizontal */ public static int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:dividerVertical */ public static int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:dropDownListViewStyle */ public static int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:dropdownListPreferredItemHeight */ public static int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:editTextBackground */ public static int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:editTextColor */ public static int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:editTextStyle */ public static int AppCompatTheme_editTextStyle = 107; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:homeAsUpIndicator */ public static int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:imageButtonStyle */ public static int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:listChoiceBackgroundIndicator */ public static int AppCompatTheme_listChoiceBackgroundIndicator = 83; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:listDividerAlertDialog */ public static int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:listMenuViewStyle */ public static int AppCompatTheme_listMenuViewStyle = 115; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:listPopupWindowStyle */ public static int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:listPreferredItemHeight */ public static int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:listPreferredItemHeightLarge */ public static int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:listPreferredItemHeightSmall */ public static int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:listPreferredItemPaddingLeft */ public static int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:listPreferredItemPaddingRight */ public static int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:panelBackground */ public static int AppCompatTheme_panelBackground = 80; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:panelMenuListTheme */ public static int AppCompatTheme_panelMenuListTheme = 82; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:panelMenuListWidth */ public static int AppCompatTheme_panelMenuListWidth = 81; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:popupMenuStyle */ public static int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:popupWindowStyle */ public static int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:radioButtonStyle */ public static int AppCompatTheme_radioButtonStyle = 108; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:ratingBarStyle */ public static int AppCompatTheme_ratingBarStyle = 109; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:ratingBarStyleIndicator */ public static int AppCompatTheme_ratingBarStyleIndicator = 110; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:ratingBarStyleSmall */ public static int AppCompatTheme_ratingBarStyleSmall = 111; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:searchViewStyle */ public static int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:seekBarStyle */ public static int AppCompatTheme_seekBarStyle = 112; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:selectableItemBackground */ public static int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:selectableItemBackgroundBorderless */ public static int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:spinnerDropDownItemStyle */ public static int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:spinnerStyle */ public static int AppCompatTheme_spinnerStyle = 113; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:switchStyle */ public static int AppCompatTheme_switchStyle = 114; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceLargePopupMenu */ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceListItem */ public static int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceListItemSecondary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceListItemSecondary */ public static int AppCompatTheme_textAppearanceListItemSecondary = 78; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceListItemSmall */ public static int AppCompatTheme_textAppearanceListItemSmall = 79; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearancePopupMenuHeader */ public static int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceSearchResultSubtitle */ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceSearchResultTitle */ public static int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:textAppearanceSmallPopupMenu */ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:textColorAlertDialogListItem */ public static int AppCompatTheme_textColorAlertDialogListItem = 98; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:textColorSearchUrl */ public static int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:toolbarNavigationButtonStyle */ public static int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:toolbarStyle */ public static int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tooltipForegroundColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:tooltipForegroundColor */ public static int AppCompatTheme_tooltipForegroundColor = 117; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tooltipFrameBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:tooltipFrameBackground */ public static int AppCompatTheme_tooltipFrameBackground = 116; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowActionBar */ public static int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowActionBarOverlay */ public static int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowActionModeOverlay */ public static int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowFixedHeightMajor */ public static int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowFixedHeightMinor */ public static int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowFixedWidthMajor */ public static int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowFixedWidthMinor */ public static int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowMinWidthMajor */ public static int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowMinWidthMinor */ public static int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:windowNoTitle */ public static int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomNavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomNavigationView_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground android.support.v7.appcompat:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.v7.appcompat:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.v7.appcompat:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu android.support.v7.appcompat: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, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:elevation */ public static int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemBackground} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:itemBackground */ public static int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemIconTint} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:itemIconTint */ public static int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemTextColor} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:itemTextColor */ public static int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#menu} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:menu */ public static int BottomNavigationView_menu = 1; /** Attributes that can be used with a BottomSheetBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable android.support.v7.appcompat:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.v7.appcompat:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.v7.appcompat: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 = { 0x7f010104, 0x7f010105, 0x7f010106 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_hideable} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:behavior_hideable */ public static int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_peekHeight} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:behavior_peekHeight */ public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_skipCollapsed} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:behavior_skipCollapsed */ public static int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking android.support.v7.appcompat:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100b2 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:allowStacking */ public static int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.v7.appcompat:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v7.appcompat:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.v7.appcompat:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v7.appcompat:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v7.appcompat:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v7.appcompat:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v7.appcompat:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v7.appcompat:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v7.appcompat:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v7.appcompat:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.v7.appcompat:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.v7.appcompat:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.v7.appcompat:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title android.support.v7.appcompat:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.v7.appcompat:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.v7.appcompat: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, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name android.support.v7.appcompat:collapsedTitleGravity */ public static int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:collapsedTitleTextAppearance */ public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentScrim */ public static int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name android.support.v7.appcompat:expandedTitleGravity */ public static int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:expandedTitleMargin */ public static int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:expandedTitleMarginBottom */ public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:expandedTitleMarginEnd */ public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:expandedTitleMarginStart */ public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:expandedTitleMarginTop */ public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:expandedTitleTextAppearance */ public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#scrimAnimationDuration} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:scrimAnimationDuration */ public static int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#scrimVisibleHeightTrigger} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:scrimVisibleHeightTrigger */ public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:statusBarScrim */ public static int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:title */ public static int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleEnabled */ public static int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:toolbarId */ public static int CollapsingToolbarLayout_toolbarId = 10; /** Attributes that can be used with a CollapsingToolbarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode android.support.v7.appcompat:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.v7.appcompat:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name android.support.v7.appcompat:layout_collapseMode */ public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:layout_collapseParallaxMultiplier */ public static int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha android.support.v7.appcompat: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, 0x7f0100b3 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:alpha */ public static int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint android.support.v7.appcompat:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode android.support.v7.appcompat:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100b4, 0x7f0100b5 }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:buttonTint */ public static int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:buttonTintMode */ public static int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines android.support.v7.appcompat:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.v7.appcompat:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:keylines */ public static int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:statusBarBackground */ public static int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor android.support.v7.appcompat:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.v7.appcompat:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.v7.appcompat:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.v7.appcompat:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.v7.appcompat:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.v7.appcompat: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, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. @attr name android:layout_gravity */ public static int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:layout_anchor */ public static int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name android.support.v7.appcompat:layout_anchorGravity */ public static int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:layout_behavior */ public static int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_dodgeInsetEdges} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> @attr name android.support.v7.appcompat:layout_dodgeInsetEdges */ public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_insetEdge} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name android.support.v7.appcompat:layout_insetEdge */ public static int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:layout_keyline */ public static int CoordinatorLayout_Layout_layout_keyline = 3; /** Attributes that can be used with a DesignTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme android.support.v7.appcompat:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.v7.appcompat:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError android.support.v7.appcompat:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f010120, 0x7f010121, 0x7f010122 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:bottomSheetDialogTheme */ public static int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:bottomSheetStyle */ public static int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:textColorError */ public static int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength android.support.v7.appcompat:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.v7.appcompat:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength android.support.v7.appcompat:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color android.support.v7.appcompat:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.v7.appcompat:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.v7.appcompat:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.v7.appcompat:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness android.support.v7.appcompat: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 = { 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:arrowHeadLength */ public static int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:arrowShaftLength */ public static int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:barLength */ public static int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:color */ public static int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:drawableSize */ public static int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:gapBetweenBars */ public static int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:spinBars */ public static int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:thickness */ public static int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint android.support.v7.appcompat:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.v7.appcompat:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth android.support.v7.appcompat:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize android.support.v7.appcompat:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.v7.appcompat:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor android.support.v7.appcompat:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.v7.appcompat:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f010025, 0x7f0100fd, 0x7f0100fe, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:backgroundTint */ public static int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:backgroundTintMode */ public static int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:borderWidth */ public static int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:elevation */ public static int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fabSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:fabSize */ public static int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:pressedTranslationZ */ public static int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:rippleColor */ public static int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#useCompatPadding} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:useCompatPadding */ public static int FloatingActionButton_useCompatPadding = 7; /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide android.support.v7.appcompat:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010128 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_autoHide} attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:behavior_autoHide */ public static int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a FontFamily. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamily_fontProviderAuthority android.support.v7.appcompat:fontProviderAuthority}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderCerts android.support.v7.appcompat:fontProviderCerts}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.v7.appcompat:fontProviderFetchStrategy}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.v7.appcompat:fontProviderFetchTimeout}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderPackage android.support.v7.appcompat:fontProviderPackage}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderQuery android.support.v7.appcompat: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 = { 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontProviderAuthority} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fontProviderAuthority */ public static int FontFamily_fontProviderAuthority = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontProviderCerts} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:fontProviderCerts */ public static int FontFamily_fontProviderCerts = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontProviderFetchStrategy} attribute's value can be found in the {@link #FontFamily} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:fontProviderFetchStrategy */ public static int FontFamily_fontProviderFetchStrategy = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontProviderFetchTimeout} attribute's value can be found in the {@link #FontFamily} array. <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:fontProviderFetchTimeout */ public static int FontFamily_fontProviderFetchTimeout = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontProviderPackage} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fontProviderPackage */ public static int FontFamily_fontProviderPackage = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontProviderQuery} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fontProviderQuery */ public static int FontFamily_fontProviderQuery = 2; /** Attributes that can be used with a FontFamilyFont. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_font android.support.v7.appcompat:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontStyle android.support.v7.appcompat:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontWeight android.support.v7.appcompat: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, 0x7f010157, 0x7f010158, 0x7f010159 }; /** <p>This symbol is the offset where the {@link android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:font */ public static int FontFamilyFont_android_font = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontStyle */ public static int FontFamilyFont_android_fontStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontWeight */ public static int FontFamilyFont_android_fontWeight = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:font */ public static int FontFamilyFont_font = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:fontStyle */ public static int FontFamilyFont_fontStyle = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fontWeight */ public static int FontFamilyFont_fontWeight = 5; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.v7.appcompat: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, 0x7f010129 }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:foregroundInsidePadding */ public static int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider android.support.v7.appcompat:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.v7.appcompat:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.v7.appcompat:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.v7.appcompat: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, 0x7f0100be, 0x7f0100bf, 0x7f0100c0 }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:divider */ public static int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:dividerPadding */ public static int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:measureWithLargestChild */ public static int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name android.support.v7.appcompat:showDividers */ public static int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout android.support.v7.appcompat:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass android.support.v7.appcompat:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass android.support.v7.appcompat:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.v7.appcompat:alphabeticModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_contentDescription android.support.v7.appcompat:contentDescription}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTint android.support.v7.appcompat:iconTint}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTintMode android.support.v7.appcompat:iconTintMode}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_numericModifiers android.support.v7.appcompat:numericModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction android.support.v7.appcompat:showAsAction}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_tooltipText android.support.v7.appcompat: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, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:actionLayout */ public static int MenuItem_actionLayout = 16; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:actionProviderClass */ public static int MenuItem_actionProviderClass = 18; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:actionViewClass */ public static int MenuItem_actionViewClass = 17; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alphabeticModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name android.support.v7.appcompat:alphabeticModifiers */ public static int MenuItem_alphabeticModifiers = 13; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentDescription} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentDescription */ public static int MenuItem_contentDescription = 19; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#iconTint} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:iconTint */ public static int MenuItem_iconTint = 21; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#iconTintMode} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:iconTintMode */ public static int MenuItem_iconTintMode = 22; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#numericModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name android.support.v7.appcompat:numericModifiers */ public static int MenuItem_numericModifiers = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name android.support.v7.appcompat:showAsAction */ public static int MenuItem_showAsAction = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tooltipText} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tooltipText */ public static int MenuItem_tooltipText = 20; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing android.support.v7.appcompat:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow android.support.v7.appcompat: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, 0x7f0100cb, 0x7f0100cc }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:preserveIconSpacing */ public static int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:subMenuArrow */ public static int MenuView_subMenuArrow = 8; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout android.support.v7.appcompat:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground android.support.v7.appcompat:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint android.support.v7.appcompat:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance android.support.v7.appcompat:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor android.support.v7.appcompat:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu android.support.v7.appcompat: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, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:elevation */ public static int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:headerLayout */ public static int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:itemBackground */ public static int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:itemIconTint */ public static int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:itemTextAppearance */ public static int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:itemTextColor */ public static int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:menu */ public static int NavigationView_menu = 4; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor android.support.v7.appcompat: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, 0x7f0100cd }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:overlapAnchor */ public static int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor android.support.v7.appcompat:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100ce }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:state_above_anchor */ public static int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecycleListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons android.support.v7.appcompat:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.v7.appcompat:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100cf, 0x7f0100d0 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#paddingBottomNoButtons} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:paddingBottomNoButtons */ public static int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#paddingTopNoTitle} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:paddingTopNoTitle */ public static int RecycleListView_paddingTopNoTitle = 1; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollEnabled android.support.v7.appcompat:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.v7.appcompat:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.v7.appcompat:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.v7.appcompat:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.v7.appcompat:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager android.support.v7.appcompat:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout android.support.v7.appcompat:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount android.support.v7.appcompat:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd android.support.v7.appcompat:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_fastScrollEnabled @see #RecyclerView_fastScrollHorizontalThumbDrawable @see #RecyclerView_fastScrollHorizontalTrackDrawable @see #RecyclerView_fastScrollVerticalThumbDrawable @see #RecyclerView_fastScrollVerticalTrackDrawable @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fastScrollEnabled} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fastScrollEnabled */ public static int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fastScrollHorizontalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:fastScrollHorizontalThumbDrawable */ public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fastScrollHorizontalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:fastScrollHorizontalTrackDrawable */ public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fastScrollVerticalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:fastScrollVerticalThumbDrawable */ public static int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fastScrollVerticalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:fastScrollVerticalTrackDrawable */ public static int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:layoutManager */ public static int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:reverseLayout */ public static int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:spanCount */ public static int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:stackFromEnd */ public static int RecyclerView_stackFromEnd = 5; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground android.support.v7.appcompat:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010130 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name android.support.v7.appcompat:insetForeground */ public static int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop android.support.v7.appcompat:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f010131 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:behavior_overlapTop */ public static int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon android.support.v7.appcompat:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon android.support.v7.appcompat:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint android.support.v7.appcompat:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon android.support.v7.appcompat:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault android.support.v7.appcompat:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout android.support.v7.appcompat:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground android.support.v7.appcompat:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint android.support.v7.appcompat:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon android.support.v7.appcompat:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon android.support.v7.appcompat:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground android.support.v7.appcompat:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout android.support.v7.appcompat:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon android.support.v7.appcompat: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, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:closeIcon */ public static int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:commitIcon */ public static int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:defaultQueryHint */ public static int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:goIcon */ public static int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:iconifiedByDefault */ public static int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:layout */ public static int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:queryBackground */ public static int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:queryHint */ public static int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:searchHintIcon */ public static int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:searchIcon */ public static int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:submitBackground */ public static int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:suggestionRowLayout */ public static int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:voiceIcon */ public static int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.v7.appcompat:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010025, 0x7f010132 }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:elevation */ public static int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:maxActionInlineWidth */ public static int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme android.support.v7.appcompat: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 int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:popupTheme */ public static int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText android.support.v7.appcompat:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack android.support.v7.appcompat:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.v7.appcompat:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding android.support.v7.appcompat:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.v7.appcompat:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.v7.appcompat:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint android.support.v7.appcompat:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.v7.appcompat:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track android.support.v7.appcompat:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint android.support.v7.appcompat:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode android.support.v7.appcompat: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, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8 }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:showText */ public static int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:splitTrack */ public static int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:switchMinWidth */ public static int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:switchPadding */ public static int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:switchTextAppearance */ public static int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:thumbTextPadding */ public static int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:thumbTint */ public static int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:thumbTintMode */ public static int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:track */ public static int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:trackTint */ public static int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:trackTintMode */ public static int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TabItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> </table> @see #TabItem_android_icon @see #TabItem_android_layout @see #TabItem_android_text */ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f }; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #TabItem} array. @attr name android:icon */ public static int TabItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #TabItem} array. @attr name android:layout */ public static int TabItem_android_layout = 1; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #TabItem} array. @attr name android:text */ public static int TabItem_android_text = 2; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground android.support.v7.appcompat:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart android.support.v7.appcompat:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity android.support.v7.appcompat:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.v7.appcompat:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.v7.appcompat:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth android.support.v7.appcompat:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth android.support.v7.appcompat:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode android.support.v7.appcompat:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding android.support.v7.appcompat:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.v7.appcompat:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.v7.appcompat:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart android.support.v7.appcompat:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop android.support.v7.appcompat:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.v7.appcompat:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance android.support.v7.appcompat:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor android.support.v7.appcompat: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 = { 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:tabBackground */ public static int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabContentStart */ public static int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:tabGravity */ public static int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabIndicatorColor */ public static int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabIndicatorHeight */ public static int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabMaxWidth */ public static int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabMinWidth */ public static int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name android.support.v7.appcompat:tabMode */ public static int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabPadding */ public static int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabPaddingBottom */ public static int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabPaddingEnd */ public static int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabPaddingStart */ public static int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabPaddingTop */ public static int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabSelectedTextColor */ public static int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:tabTextAppearance */ public static int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:tabTextColor */ public static int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_fontFamily android.support.v7.appcompat:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps android.support.v7.appcompat: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, 0x7f010036, 0x7f01003c }; /** <p>This symbol is the offset where the {@link android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:fontFamily */ public static int TextAppearance_android_fontFamily = 10; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static int TextAppearance_android_shadowColor = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static int TextAppearance_android_shadowDx = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static int TextAppearance_android_shadowDy = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static int TextAppearance_android_shadowRadius = 9; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textColorLink} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorLink */ public static int TextAppearance_android_textColorLink = 5; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:fontFamily */ public static int TextAppearance_fontFamily = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name android.support.v7.appcompat:textAllCaps */ public static int TextAppearance_textAllCaps = 11; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled android.support.v7.appcompat:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.v7.appcompat:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.v7.appcompat:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.v7.appcompat:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled android.support.v7.appcompat:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.v7.appcompat:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.v7.appcompat:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled android.support.v7.appcompat:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.v7.appcompat:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.v7.appcompat:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.v7.appcompat:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.v7.appcompat:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.v7.appcompat:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.v7.appcompat: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, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150 }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:counterEnabled */ public static int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:counterMaxLength */ public static int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:counterOverflowTextAppearance */ public static int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:counterTextAppearance */ public static int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:errorEnabled */ public static int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:errorTextAppearance */ public static int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:hintAnimationEnabled */ public static int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hintEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:hintEnabled */ public static int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:hintTextAppearance */ public static int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#passwordToggleContentDescription} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:passwordToggleContentDescription */ public static int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#passwordToggleDrawable} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:passwordToggleDrawable */ public static int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#passwordToggleEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:passwordToggleEnabled */ public static int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#passwordToggleTint} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:passwordToggleTint */ public static int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#passwordToggleTintMode} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name android.support.v7.appcompat:passwordToggleTintMode */ public static int TextInputLayout_passwordToggleTintMode = 15; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity android.support.v7.appcompat:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription android.support.v7.appcompat:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon android.support.v7.appcompat:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd android.support.v7.appcompat:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.v7.appcompat:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft android.support.v7.appcompat:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight android.support.v7.appcompat:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart android.support.v7.appcompat:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.v7.appcompat:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo android.support.v7.appcompat:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription android.support.v7.appcompat:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight android.support.v7.appcompat:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription android.support.v7.appcompat:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon android.support.v7.appcompat:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme android.support.v7.appcompat:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle android.support.v7.appcompat:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.v7.appcompat:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor android.support.v7.appcompat:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title android.support.v7.appcompat:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin android.support.v7.appcompat:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom android.support.v7.appcompat:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd android.support.v7.appcompat:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart android.support.v7.appcompat:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop android.support.v7.appcompat:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins android.support.v7.appcompat:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance android.support.v7.appcompat:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor android.support.v7.appcompat: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, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9 }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name android.support.v7.appcompat:buttonGravity */ public static int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:collapseContentDescription */ public static int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:collapseIcon */ public static int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetEnd */ public static int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetEndWithActions */ public static int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetLeft */ public static int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetRight */ public static int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetStart */ public static int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:contentInsetStartWithNavigation */ public static int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:logo */ public static int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:logoDescription */ public static int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:maxButtonHeight */ public static int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:navigationContentDescription */ public static int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:navigationIcon */ public static int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:popupTheme */ public static int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:subtitle */ public static int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:subtitleTextAppearance */ public static int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:subtitleTextColor */ public static int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:title */ public static int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleMargin */ public static int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleMarginBottom */ public static int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleMarginEnd */ public static int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleMarginStart */ public static int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleMarginTop */ public static int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleMargins */ public static int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:titleTextAppearance */ public static int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:titleTextColor */ public static int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd android.support.v7.appcompat:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart android.support.v7.appcompat:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme android.support.v7.appcompat: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, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static int View_android_theme = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:paddingEnd */ public static int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:paddingStart */ public static int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name android.support.v7.appcompat:theme */ public static int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint android.support.v7.appcompat:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.v7.appcompat:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100fd, 0x7f0100fe }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name android.support.v7.appcompat:backgroundTint */ public static int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.v7.appcompat:backgroundTintMode */ public static int ViewBackgroundHelper_backgroundTintMode = 2; /** Attributes that can be used with a ViewStubCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static int ViewStubCompat_android_layout = 1; }; }
[ "61790750+whatisdeadmayneverdi3@users.noreply.github.com" ]
61790750+whatisdeadmayneverdi3@users.noreply.github.com
a6a1df9a024844908e0503141d34b1963e03e0af
0671b5ebc2448c849353370015c11216bec756c4
/Java/EjerciciosHerencia/ejer1/Titular.java
b9768c2503e420cc8a65f60715df1b32dad5b86e
[]
no_license
egarsan176/GitLinkedIn
739b610b8e5271136015fb7b081c864f79d545c9
1ddf888b7e882e1442605549790c740efef59ae8
refs/heads/main
2023-07-28T13:14:54.898873
2021-09-13T11:41:39
2021-09-13T11:41:39
383,934,910
0
0
null
null
null
null
UTF-8
Java
false
false
443
java
package ejeHERENCIA.ejer1; public class Titular { private String nombre; protected int edad; public Titular() {} public Titular(String nombre, int edad) { super(); this.nombre = nombre; this.edad = edad; } @Override public String toString() { return "El titular es " + this.nombre + "y su edad es "+this.edad; } public int getEdad() { return edad; } public void setEdad(int edad) { this.edad = edad; } }
[ "estefaniagarci@gmail.com" ]
estefaniagarci@gmail.com
f0b913910402ebce756c0451b5ded7c757b0bb0e
eac2da6738a80ab04330262fab9cf9c2321bb270
/app/src/main/java/com/kxl/recyclerviewaddheadview/HeaderBottomAdapter.java
d766bda728254b647a0c311f13a53b20744c22c7
[]
no_license
kongxianglei0403/RecyclerViewAddHeadView
592eaa3a7226e56fda0f579d09d947e1e8c25468
ef3a0e4694ea6e101c72a723fe80d7fc984bffa9
refs/heads/master
2020-04-09T23:39:20.496799
2016-09-13T03:58:32
2016-09-13T03:58:32
68,072,693
2
0
null
null
null
null
UTF-8
Java
false
false
3,695
java
package com.kxl.recyclerviewaddheadview;/** * @author by atu **/ import android.content.Context; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; /** * Created by Administrator on 2016/9/12. */ public class HeaderBottomAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> { public static final int ITEM_TYPE_HEADER = 0; public static final int ITEM_TYPE_CONTENT = 1; public static final int ITEM_TYPE_BOTTOM = 2; //数据源 public String[] texts = {"java", "python", "C++", "Php", ".NET", "js", "Ruby", "Swift", "OC"}; private int mHeaderCount = 1;//头部View个数 private int mBottomCount = 1;//底部View个数 private LayoutInflater mLayoutInflater; private Context mContext; public HeaderBottomAdapter(Context context) { this.mContext = context; mLayoutInflater = LayoutInflater.from(context); } //判断当前item是否是HeadView public boolean isHeaderView(int position) { return mHeaderCount != 0 && position < mHeaderCount; } //判断当前item是否是FooterView public boolean isBottomView(int position) { return mBottomCount != 0 && position >= (mHeaderCount + getContentItemCount()); } private int getContentItemCount() { return texts.length; } //判断当前item类型 @Override public int getItemViewType(int position) { int dataItemCount = getContentItemCount(); if (mHeaderCount != 0 && position < mHeaderCount) { //头view return ITEM_TYPE_HEADER; } else if (mBottomCount != 0 && mBottomCount > (dataItemCount + mHeaderCount)) { //脚view return ITEM_TYPE_BOTTOM; } else { //内容view return ITEM_TYPE_CONTENT; } } //内容 ViewHolder public static class ContentViewHolder extends RecyclerView.ViewHolder { private TextView textView; public ContentViewHolder(View itemView) { super(itemView); textView = (TextView) itemView.findViewById(R.id.tv_item_text); } } //头部 ViewHolder public static class HeaderViewHolder extends RecyclerView.ViewHolder { public HeaderViewHolder(View itemView) { super(itemView); } } //底部 ViewHolder public static class BottomViewHolder extends RecyclerView.ViewHolder { public BottomViewHolder(View itemView) { super(itemView); } } @Override public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { if (viewType == ITEM_TYPE_HEADER) { return new HeaderViewHolder(mLayoutInflater.inflate(R.layout.rv_header, parent, false)); } else if (viewType == mHeaderCount) { return new ContentViewHolder(mLayoutInflater.inflate(R.layout.rv_item, parent, false)); } else if (viewType == ITEM_TYPE_BOTTOM) { return new BottomViewHolder(mLayoutInflater.inflate(R.layout.rv_footer, parent, false)); } return null; } @Override public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) { if (holder instanceof HeaderViewHolder) { } else if (holder instanceof ContentViewHolder) { ((ContentViewHolder) holder).textView.setText(texts[position - mHeaderCount]); } else if (holder instanceof BottomViewHolder) { } } @Override public int getItemCount() { return mHeaderCount + getContentItemCount() + mBottomCount; } }
[ "5877076hn" ]
5877076hn
89a50994092d910c5c3732fe418273e5ea74a032
411fdcd1ddeb37b7a6e45ef40fd7b13b5e163d8e
/app/src/main/java/io/github/mobileteacher/wordsexchange/MainActivity.java
c71cbaad888628c743cfe144a364a31cc5821911
[]
no_license
MobileTeacher/WordsExchange
10a88a76ecbe4a9d7b018749b083ba6d2f0b3c54
2b6b9d48a3aec81789222e8a9e31402be48834a3
refs/heads/master
2020-03-28T22:17:22.960807
2018-09-18T03:08:37
2018-09-18T03:08:37
149,221,377
0
0
null
null
null
null
UTF-8
Java
false
false
350
java
package io.github.mobileteacher.wordsexchange; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
[ "hallpaaz@gmail.com" ]
hallpaaz@gmail.com
f18d71da80de803385d6076167ab73c416bd5e81
76b76940f3106d2c3db8205e23b47e407e5e00ff
/app/src/main/java/com/example/haidangdam/myapplication/add_task/AddEditTaskPresenter.java
a08e211ecdd95c96d1e227d34be5645bce6b21bc
[]
no_license
haidangdam/TO-DO-APP-MVP
c886950451a4a907ff61b776b6125c3f8600984b
66b7bfd3741daff74244967cbdeda26d0a8df3d7
refs/heads/master
2021-01-23T06:10:59.081833
2017-06-06T08:59:01
2017-06-06T08:59:01
93,013,793
0
0
null
null
null
null
UTF-8
Java
false
false
2,529
java
package com.example.haidangdam.myapplication.add_task; import android.os.Bundle; import android.util.Log; import com.example.haidangdam.myapplication.Task; import com.example.haidangdam.myapplication.main_activity.MainActivityInterface; import com.example.haidangdam.myapplication.main_activity.MainActivityView; /** * Created by haidangdam on 5/31/17. */ public class AddEditTaskPresenter implements AddEditTaskInterface.Presenter { AddEditTaskRepository repo; AddEditTaskInterface.View addTaskView; Bundle bundle; public AddEditTaskPresenter(AddEditTaskRepository repo, AddEditTaskInterface.View addTaskInterface) { this.repo = repo; this.addTaskView = addTaskInterface; addTaskView.setPresenter(this); } /** * Save button press * @param taskName the new task name * @param description the new description * @param bundle bundle to differentiate between edit or add (edit * will have already existed data in bundle) */ @Override public void buttonPress(String taskName, String description, Bundle bundle) { Log.d("Main Application", "Add button press"); if (taskName.isEmpty() || description.isEmpty()) { addTaskView.emptyField(); } else { if (bundle == null) { saveTask(taskName, description, false); } else { this.bundle = bundle; saveTask(taskName, description, true); addTaskView.submitButton(); } } } /** * To save the task to the database * @param taskName task name in the name field * @param description task description in description field * @param alreadyExisted boolean to differentiate between edit or first-add. If edit, use * update, otherwise, use add */ @Override public void saveTask(String taskName, String description, boolean alreadyExisted) { if (!alreadyExisted) { repo.r.addTaskToFirebase(new Task(taskName, description, false), new MainActivityInterface.AddFirebaseCallback() { @Override public void callback() { addTaskView.submitButton(); } }); } else { repo.r.updateTask(taskName, description, bundle.getString(MainActivityView.ID), bundle.getInt(MainActivityView.STATUS) == 1); } } /** * If press the delete button when editting the task * @param bundle the data getting from the task */ @Override public void deleteButtonPress(Bundle bundle) { repo.r.deleteTask(bundle.getString(MainActivityView.ID)); addTaskView.submitButton(); } }
[ "JDzqt995" ]
JDzqt995
fa27b84b4b73efdd43d94616bb09149d853d4ca9
fa3893cd5593cb0475e5a2308931a356c9bcab26
/src/org.xtuml.bp.ui.graphics/src/org/xtuml/bp/ui/graphics/layout/FixedTextLocator.java
4ece2602c04f37278fcf75cf7e2ba0cdbbc3fd8c
[ "Apache-2.0", "EPL-1.0" ]
permissive
leviathan747/bridgepoint
a2c13d615ff255eb64c8a4e21fcf1824f9eff3d5
cf7deed47d20290d422d4b4636e7486784d17c34
refs/heads/master
2023-08-04T11:05:10.679674
2023-07-06T19:10:37
2023-07-06T19:10:37
28,143,415
0
1
Apache-2.0
2023-05-08T13:26:39
2014-12-17T15:40:25
HTML
UTF-8
Java
false
false
3,450
java
//======================================================================== // //File: $RCSfile: FixedTextLocator.java,v $ //Version: $Revision: 1.5 $ //Modified: $Date: 2013/01/10 23:06:00 $ // //(c) Copyright 2005-2014 by Mentor Graphics Corp. All rights reserved. // //======================================================================== // Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. 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.xtuml.bp.ui.graphics.layout; import org.eclipse.draw2d.Connection; import org.eclipse.draw2d.FigureUtilities; import org.eclipse.draw2d.IFigure; import org.eclipse.draw2d.Label; import org.eclipse.draw2d.Locator; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.draw2d.geometry.Point; import org.xtuml.bp.ui.canvas.Direction_c; import org.xtuml.bp.ui.canvas.Gr_c; public class FixedTextLocator implements Locator { private boolean fIsEnd; private Connection fConnection; public FixedTextLocator(Connection connection, boolean isEnd) { fConnection = connection; fIsEnd = isEnd; } @Override public void relocate(IFigure target) { float angle = 0f; int text_x = 0; int text_y = 0; if (fIsEnd) { text_x = fConnection.getPoints().getLastPoint().x; text_y = fConnection.getPoints().getLastPoint().y; angle = Gr_c.Getangle(fConnection.getPoints().getLastPoint().x, fConnection.getPoints().getPoint( fConnection.getPoints().size() - 2).x, fConnection .getPoints().getLastPoint().y, fConnection .getPoints().getPoint( fConnection.getPoints().size() - 2).y); } else { text_x = fConnection.getPoints().getFirstPoint().x; text_y = fConnection.getPoints().getFirstPoint().y; angle = Gr_c.Getangle(fConnection.getPoints().getFirstPoint().x, fConnection.getPoints().getPoint(1).x, fConnection .getPoints().getFirstPoint().y, fConnection .getPoints().getPoint(1).y); } int direction = Gr_c.Getdirection(angle); int spacing = Gr_c.Getgraphicspacing() + 3; Label label = (Label) target; Dimension stringExtents = FigureUtilities.getStringExtents(label .getText(), label.getFont()); switch (direction) { case Direction_c.East: text_x = text_x + spacing; text_y = text_y - spacing - stringExtents.height; break; case Direction_c.South: text_x = text_x - spacing - stringExtents.width; text_y = text_y + spacing; break; case Direction_c.North: text_x = text_x - spacing - stringExtents.width; text_y = text_y - spacing - stringExtents.height; break; case Direction_c.West: text_x = text_x - spacing - stringExtents.width; text_y = text_y - spacing - stringExtents.height; break; default: break; } target.setSize(stringExtents); target.setLocation(new Point(text_x, text_y)); } }
[ "s.keith.brown@gmail.com" ]
s.keith.brown@gmail.com
295dea6f1c3fc472bc7badc6efe249cd9b4189b2
945da52dec387f2a82341f7ead2219477b3e70bc
/mobileassistant/MobileAssistant/endpoint-libs/libmessageEndpoint-v1/messageEndpoint/messageendpoint-v1-generated-source/com/codesdk/mobileassistant/messageEndpoint/MessageEndpointRequestInitializer.java
29326df21b7f1f626aa4f852fb848e52c0edabd7
[ "Apache-2.0" ]
permissive
codelabspro/mobileassistant
1e8c6f677c08a8756f8a2985da727ba531433a5b
4548d2bac7d1a7474332c8b599c5b424577bb3c7
refs/heads/master
2022-10-29T00:30:50.612511
2014-08-05T05:36:42
2014-08-05T05:36:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,616
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ /* * This code was generated by https://code.google.com/p/google-apis-client-generator/ * (build: 2014-07-22 21:53:01 UTC) * on 2014-08-05 at 05:05:12 UTC * Modify at your own risk. */ package com.codesdk.mobileassistant.messageEndpoint; /** * MessageEndpoint request initializer for setting properties like key and userIp. * * <p> * The simplest usage is to use it to set the key parameter: * </p> * * <pre> public static final GoogleClientRequestInitializer KEY_INITIALIZER = new MessageEndpointRequestInitializer(KEY); * </pre> * * <p> * There is also a constructor to set both the key and userIp parameters: * </p> * * <pre> public static final GoogleClientRequestInitializer INITIALIZER = new MessageEndpointRequestInitializer(KEY, USER_IP); * </pre> * * <p> * If you want to implement custom logic, extend it like this: * </p> * * <pre> public static class MyRequestInitializer extends MessageEndpointRequestInitializer { {@literal @}Override public void initializeMessageEndpointRequest(MessageEndpointRequest{@literal <}?{@literal >} request) throws IOException { // custom logic } } * </pre> * * <p> * Finally, to set the key and userIp parameters and insert custom logic, extend it like this: * </p> * * <pre> public static class MyRequestInitializer2 extends MessageEndpointRequestInitializer { public MyKeyRequestInitializer() { super(KEY, USER_IP); } {@literal @}Override public void initializeMessageEndpointRequest(MessageEndpointRequest{@literal <}?{@literal >} request) throws IOException { // custom logic } } * </pre> * * <p> * Subclasses should be thread-safe. * </p> * * @since 1.12 */ public class MessageEndpointRequestInitializer extends com.google.api.client.googleapis.services.json.CommonGoogleJsonClientRequestInitializer { public MessageEndpointRequestInitializer() { super(); } /** * @param key API key or {@code null} to leave it unchanged */ public MessageEndpointRequestInitializer(String key) { super(key); } /** * @param key API key or {@code null} to leave it unchanged * @param userIp user IP or {@code null} to leave it unchanged */ public MessageEndpointRequestInitializer(String key, String userIp) { super(key, userIp); } @Override public final void initializeJsonRequest(com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest<?> request) throws java.io.IOException { super.initializeJsonRequest(request); initializeMessageEndpointRequest((MessageEndpointRequest<?>) request); } /** * Initializes MessageEndpoint request. * * <p> * Default implementation does nothing. Called from * {@link #initializeJsonRequest(com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest)}. * </p> * * @throws java.io.IOException I/O exception */ protected void initializeMessageEndpointRequest(MessageEndpointRequest<?> request) throws java.io.IOException { } }
[ "codesdktutorials@gmail.com" ]
codesdktutorials@gmail.com
bb5c1d7d71bb7c87dcd096d31a33668e3bea00fc
c885ef92397be9d54b87741f01557f61d3f794f3
/tests-without-trycatch/Gson-17/com.google.gson.DefaultDateTypeAdapter/BBC-F0-opt-70/8/com/google/gson/DefaultDateTypeAdapter_ESTest_scaffolding.java
45c24216a52b16e7f24bf7d2dfa4ad1f29d14e81
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
8,085
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Thu Oct 14 01:15:47 GMT 2021 */ package com.google.gson; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After; import org.junit.AfterClass; import org.evosuite.runtime.sandbox.Sandbox; import org.evosuite.runtime.sandbox.Sandbox.SandboxMode; @EvoSuiteClassExclude public class DefaultDateTypeAdapter_ESTest_scaffolding { @org.junit.Rule public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); @BeforeClass public static void initEvoSuiteFramework() { org.evosuite.runtime.RuntimeSettings.className = "com.google.gson.DefaultDateTypeAdapter"; org.evosuite.runtime.GuiSupport.initialize(); org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); org.evosuite.runtime.classhandling.JDKClassResetter.init(); setSystemProperties(); initializeClasses(); org.evosuite.runtime.Runtime.getInstance().resetRuntime(); } @AfterClass public static void clearEvoSuiteFramework(){ Sandbox.resetDefaultSecurityManager(); java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); } @Before public void initTestCase(){ threadStopper.storeCurrentThreads(); threadStopper.startRecordingTime(); org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); setSystemProperties(); org.evosuite.runtime.GuiSupport.setHeadless(); org.evosuite.runtime.Runtime.getInstance().resetRuntime(); org.evosuite.runtime.agent.InstrumentingAgent.activate(); } @After public void doneWithTestCase(){ threadStopper.killAndJoinClientThreads(); org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); org.evosuite.runtime.classhandling.JDKClassResetter.reset(); resetClasses(); org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); } public static void setSystemProperties() { java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); java.lang.System.setProperty("user.dir", "/experiment"); } private static void initializeClasses() { org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(DefaultDateTypeAdapter_ESTest_scaffolding.class.getClassLoader() , "com.google.gson.JsonParseException", "com.google.gson.stream.JsonReader$1", "com.google.gson.JsonObject", "com.google.gson.internal.bind.JsonTreeReader$1", "com.google.gson.TypeAdapter$1", "com.google.gson.internal.$Gson$Preconditions", "com.google.gson.JsonSyntaxException", "com.google.gson.TypeAdapter", "com.google.gson.internal.bind.JsonTreeWriter", "com.google.gson.stream.JsonReader", "com.google.gson.internal.bind.util.ISO8601Utils", "com.google.gson.JsonElement", "com.google.gson.stream.MalformedJsonException", "com.google.gson.stream.JsonToken", "com.google.gson.JsonArray", "com.google.gson.internal.bind.JsonTreeReader", "com.google.gson.internal.bind.JsonTreeWriter$1", "com.google.gson.internal.JsonReaderInternalAccess", "com.google.gson.JsonNull", "com.google.gson.JsonIOException", "com.google.gson.DefaultDateTypeAdapter", "com.google.gson.JsonPrimitive", "com.google.gson.stream.JsonWriter", "com.google.gson.internal.LazilyParsedNumber" ); } private static void resetClasses() { org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(DefaultDateTypeAdapter_ESTest_scaffolding.class.getClassLoader()); org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses( "com.google.gson.TypeAdapter", "com.google.gson.DefaultDateTypeAdapter", "com.google.gson.stream.JsonToken", "com.google.gson.internal.bind.util.ISO8601Utils", "com.google.gson.internal.JsonReaderInternalAccess", "com.google.gson.stream.JsonReader$1", "com.google.gson.stream.JsonReader", "com.google.gson.stream.JsonWriter", "com.google.gson.TypeAdapter$1", "com.google.gson.internal.bind.JsonTreeWriter$1", "com.google.gson.JsonElement", "com.google.gson.JsonPrimitive", "com.google.gson.internal.$Gson$Preconditions", "com.google.gson.internal.bind.JsonTreeWriter", "com.google.gson.JsonNull", "com.google.gson.stream.MalformedJsonException", "com.google.gson.internal.bind.JsonTreeReader$1", "com.google.gson.internal.bind.JsonTreeReader", "com.google.gson.JsonParseException", "com.google.gson.JsonArray", "com.google.gson.internal.Streams", "com.google.gson.internal.bind.TypeAdapters$6", "com.google.gson.internal.bind.TypeAdapters$32", "com.google.gson.internal.bind.TypeAdapters$5", "com.google.gson.internal.bind.TypeAdapters$7", "com.google.gson.internal.bind.TypeAdapters$8", "com.google.gson.internal.bind.TypeAdapters$33", "com.google.gson.internal.bind.TypeAdapters$9", "com.google.gson.internal.bind.TypeAdapters$10", "com.google.gson.internal.bind.TypeAdapters$11", "com.google.gson.internal.bind.TypeAdapters$1", "com.google.gson.internal.bind.TypeAdapters$2", "com.google.gson.internal.bind.TypeAdapters$3", "com.google.gson.internal.bind.TypeAdapters$12", "com.google.gson.internal.bind.TypeAdapters$13", "com.google.gson.internal.bind.TypeAdapters$14", "com.google.gson.internal.bind.TypeAdapters$15", "com.google.gson.internal.bind.TypeAdapters$16", "com.google.gson.internal.bind.TypeAdapters$17", "com.google.gson.internal.bind.TypeAdapters$18", "com.google.gson.internal.bind.TypeAdapters$19", "com.google.gson.internal.bind.TypeAdapters$20", "com.google.gson.internal.bind.TypeAdapters$21", "com.google.gson.internal.bind.TypeAdapters$22", "com.google.gson.internal.bind.TypeAdapters$23", "com.google.gson.internal.bind.TypeAdapters$24", "com.google.gson.internal.bind.TypeAdapters$35", "com.google.gson.internal.bind.TypeAdapters$25", "com.google.gson.internal.bind.TypeAdapters$4", "com.google.gson.internal.bind.TypeAdapters$26", "com.google.gson.internal.bind.TypeAdapters$27", "com.google.gson.internal.bind.TypeAdapters$34", "com.google.gson.internal.bind.TypeAdapters$28", "com.google.gson.internal.bind.TypeAdapters$29", "com.google.gson.internal.bind.TypeAdapters$30", "com.google.gson.internal.bind.TypeAdapters", "com.google.gson.JsonObject", "com.google.gson.internal.LinkedTreeMap$1", "com.google.gson.internal.LinkedTreeMap", "com.google.gson.internal.LinkedTreeMap$Node", "com.google.gson.internal.LinkedTreeMap$EntrySet", "com.google.gson.internal.LinkedTreeMap$LinkedTreeMapIterator", "com.google.gson.internal.LinkedTreeMap$EntrySet$1", "com.google.gson.JsonSyntaxException", "com.google.gson.internal.LazilyParsedNumber" ); } }
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
f7157d01f1dec7c867afe907e931d43a307f9d4c
332297e5b7277ad48ec867933bd2c88bf49e8ff4
/chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuItemDelegate.java
45c7a620bf5f6828bb03fca63dfe6791911f92dc
[ "BSD-3-Clause" ]
permissive
chorman0773/chromium
3b4147a24e41dab4abe82cde84b9a6f52dd7ee67
ba837a33fd29823d60e8119daf0d5b8113384ca6
refs/heads/master
2022-11-29T21:39:15.228897
2018-11-13T15:42:24
2018-11-13T15:42:24
157,396,636
1
0
NOASSERTION
2018-11-13T15:42:25
2018-11-13T14:52:16
null
UTF-8
Java
false
false
12,363
java
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.chrome.browser.tab; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.net.MailTo; import android.net.Uri; import android.provider.Browser; import android.provider.ContactsContract; import android.support.customtabs.CustomTabsIntent; import org.chromium.base.ContextUtils; import org.chromium.base.metrics.RecordUserAction; import org.chromium.chrome.browser.DefaultBrowserInfo; import org.chromium.chrome.browser.IntentHandler; import org.chromium.chrome.browser.LaunchIntentDispatcher; import org.chromium.chrome.browser.UrlConstants; import org.chromium.chrome.browser.contextmenu.ContextMenuItemDelegate; import org.chromium.chrome.browser.document.ChromeLauncherActivity; import org.chromium.chrome.browser.download.ChromeDownloadDelegate; import org.chromium.chrome.browser.experiments.EphemeralTab; import org.chromium.chrome.browser.multiwindow.MultiWindowUtils; import org.chromium.chrome.browser.net.spdyproxy.DataReductionProxySettings; import org.chromium.chrome.browser.preferences.PrefServiceBridge; import org.chromium.chrome.browser.tabmodel.TabModel.TabLaunchType; import org.chromium.chrome.browser.tabmodel.document.TabDelegate; import org.chromium.chrome.browser.util.IntentUtils; import org.chromium.chrome.browser.util.UrlUtilities; import org.chromium.content_public.browser.LoadUrlParams; import org.chromium.content_public.common.Referrer; import org.chromium.ui.base.Clipboard; import org.chromium.ui.base.PageTransition; import java.net.URI; import java.util.Locale; /** * A default {@link ContextMenuItemDelegate} that supports the context menu functionality in Tab. */ public class TabContextMenuItemDelegate implements ContextMenuItemDelegate { private final Tab mTab; private boolean mLoadOriginalImageRequestedForPageLoad; private EmptyTabObserver mDataReductionProxyContextMenuTabObserver; /** * Builds a {@link TabContextMenuItemDelegate} instance. */ public TabContextMenuItemDelegate(Tab tab) { mTab = tab; mDataReductionProxyContextMenuTabObserver = new EmptyTabObserver() { @Override public void onPageLoadStarted(Tab tab, String url) { mLoadOriginalImageRequestedForPageLoad = false; } }; mTab.addObserver(mDataReductionProxyContextMenuTabObserver); } @Override public void onDestroy() { mTab.removeObserver(mDataReductionProxyContextMenuTabObserver); } @Override public boolean isIncognito() { return mTab.isIncognito(); } @Override public boolean isIncognitoSupported() { return PrefServiceBridge.getInstance().isIncognitoModeEnabled(); } @Override public boolean isOpenInOtherWindowSupported() { return MultiWindowUtils.getInstance().isOpenInOtherWindowSupported(mTab.getActivity()); } @Override public boolean isDataReductionProxyEnabledForURL(String url) { return isSpdyProxyEnabledForUrl(url); } @Override public boolean startDownload(String url, boolean isLink) { return !isLink || !ChromeDownloadDelegate.from(mTab).shouldInterceptContextMenuDownload(url); } @Override public void onSaveToClipboard(String text, int clipboardType) { Clipboard.getInstance().setText(text); } @Override public boolean supportsCall() { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("tel:")); return mTab.getWindowAndroid().canResolveActivity(intent); } @Override public void onCall(String uri) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setData(Uri.parse(uri)); IntentUtils.safeStartActivity(mTab.getActivity(), intent); } @Override public boolean supportsSendEmailMessage() { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("mailto:test@example.com")); return mTab.getWindowAndroid().canResolveActivity(intent); } @Override public void onSendEmailMessage(String url) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setData(Uri.parse(url)); IntentUtils.safeStartActivity(mTab.getActivity(), intent); } @Override public boolean supportsSendTextMessage() { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("sms:")); return mTab.getWindowAndroid().canResolveActivity(intent); } @Override public void onSendTextMessage(String url) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("sms:" + UrlUtilities.getTelNumber(url))); IntentUtils.safeStartActivity(mTab.getActivity(), intent); } @Override public boolean supportsAddToContacts() { Intent intent = new Intent(Intent.ACTION_INSERT); intent.setType(ContactsContract.Contacts.CONTENT_TYPE); return mTab.getWindowAndroid().canResolveActivity(intent); } @Override public void onAddToContacts(String url) { Intent intent = new Intent(Intent.ACTION_INSERT); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setType(ContactsContract.Contacts.CONTENT_TYPE); if (MailTo.isMailTo(url)) { intent.putExtra( ContactsContract.Intents.Insert.EMAIL, MailTo.parse(url).getTo().split(",")[0]); } else if (UrlUtilities.isTelScheme(url)) { intent.putExtra(ContactsContract.Intents.Insert.PHONE, UrlUtilities.getTelNumber(url)); } IntentUtils.safeStartActivity(mTab.getActivity(), intent); } @Override public void onOpenInOtherWindow(String url, Referrer referrer) { TabDelegate tabDelegate = new TabDelegate(mTab.isIncognito()); LoadUrlParams loadUrlParams = new LoadUrlParams(url); loadUrlParams.setReferrer(referrer); tabDelegate.createTabInOtherWindow(loadUrlParams, mTab.getActivity(), mTab.getParentId()); } @Override public void onOpenInNewTab(String url, Referrer referrer) { RecordUserAction.record("MobileNewTabOpened"); LoadUrlParams loadUrlParams = new LoadUrlParams(url); loadUrlParams.setReferrer(referrer); mTab.getTabModelSelector().openNewTab( loadUrlParams, TabLaunchType.FROM_LONGPRESS_BACKGROUND, mTab, isIncognito()); } @Override public void onLoadOriginalImage() { mLoadOriginalImageRequestedForPageLoad = true; mTab.loadOriginalImage(); } @Override public boolean wasLoadOriginalImageRequestedForPageLoad() { return mLoadOriginalImageRequestedForPageLoad; } @Override public void onOpenInNewIncognitoTab(String url) { RecordUserAction.record("MobileNewTabOpened"); mTab.getTabModelSelector().openNewTab(new LoadUrlParams(url), TabLaunchType.FROM_LONGPRESS_FOREGROUND, mTab, true); } @Override public String getPageUrl() { return mTab.getUrl(); } @Override public void onOpenImageUrl(String url, Referrer referrer) { LoadUrlParams loadUrlParams = new LoadUrlParams(url); loadUrlParams.setTransitionType(PageTransition.LINK); loadUrlParams.setReferrer(referrer); mTab.loadUrl(loadUrlParams); } @Override public void onOpenImageInNewTab(String url, Referrer referrer) { boolean useOriginal = isSpdyProxyEnabledForUrl(url); LoadUrlParams loadUrlParams = new LoadUrlParams(url); loadUrlParams.setVerbatimHeaders(useOriginal ? DataReductionProxySettings.getInstance() .getDataReductionProxyPassThroughHeader() : null); loadUrlParams.setReferrer(referrer); mTab.getActivity().getTabModelSelector().openNewTab(loadUrlParams, TabLaunchType.FROM_LONGPRESS_BACKGROUND, mTab, isIncognito()); } @Override public void onOpenInChrome(String linkUrl, String pageUrl) { Context applicationContext = ContextUtils.getApplicationContext(); Intent chromeIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(linkUrl)); chromeIntent.setPackage(applicationContext.getPackageName()); chromeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); PackageManager packageManager = applicationContext.getPackageManager(); if (packageManager.queryIntentActivities(chromeIntent, 0).isEmpty()) { // If Chrome can't handle intent fallback to using any other VIEW handlers. chromeIntent.setPackage(null); // Query again without the package name set and if there are still no handlers for the // URI fail gracefully, and do nothing, since this will still cause a crash if launched. if (packageManager.queryIntentActivities(chromeIntent, 0).isEmpty()) return; } // For "Open in Chrome" from the context menu in FullscreenActivity we want to bypass // CustomTab, and this flag ensures we open in TabbedChrome. chromeIntent.putExtra(LaunchIntentDispatcher.EXTRA_IS_ALLOWED_TO_RETURN_TO_PARENT, false); boolean activityStarted = false; if (pageUrl != null) { try { URI pageUri = URI.create(pageUrl); if (UrlUtilities.isInternalScheme(pageUri)) { IntentHandler.startChromeLauncherActivityForTrustedIntent(chromeIntent); activityStarted = true; } } catch (IllegalArgumentException ex) { // Ignore the exception for creating the URI and launch the intent // without the trusted intent extras. } } if (!activityStarted) { Context context = mTab.getActivity(); if (context == null) context = applicationContext; context.startActivity(chromeIntent); activityStarted = true; } } @Override public void onOpenInNewChromeTabFromCCT(String linkUrl, boolean isIncognito) { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(linkUrl)); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setClass(mTab.getApplicationContext(), ChromeLauncherActivity.class); intent.putExtra(LaunchIntentDispatcher.EXTRA_IS_ALLOWED_TO_RETURN_TO_PARENT, false); if (isIncognito) { intent.putExtra(IntentHandler.EXTRA_OPEN_NEW_INCOGNITO_TAB, true); intent.putExtra( Browser.EXTRA_APPLICATION_ID, mTab.getApplicationContext().getPackageName()); IntentHandler.addTrustedIntentExtras(intent); IntentHandler.setTabLaunchType(intent, TabLaunchType.FROM_EXTERNAL_APP); } IntentUtils.safeStartActivity(mTab.getActivity(), intent); } @Override public String getTitleForOpenTabInExternalApp() { return DefaultBrowserInfo.getTitleOpenInDefaultBrowser(false); } @Override public void onOpenInDefaultBrowser(String url) { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); CustomTabsIntent.setAlwaysUseBrowserUI(intent); IntentUtils.safeStartActivity(mTab.getActivity(), intent); } @Override public void onOpenInEphemeralTab(String url, Referrer referrer) { EphemeralTab.onOpen(url, referrer, isIncognito()); } /** * Checks if spdy proxy is enabled for input url. * @param url Input url to check for spdy setting. * @return true if url is enabled for spdy proxy. */ private boolean isSpdyProxyEnabledForUrl(String url) { if (DataReductionProxySettings.getInstance().isDataReductionProxyEnabled() && url != null && !url.toLowerCase(Locale.US).startsWith( UrlConstants.HTTPS_URL_PREFIX) && !isIncognito()) { return true; } return false; } }
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
0aa4570dfca3b61edd2f128c20968f36790a3c27
3bc88bad2063e40a3f9f4bce4bd18cd474798cce
/백준/BOJ 2884 알람 시계/Main.java
f76f4f52f79d95cc002101924b9bb9584ea99d08
[]
no_license
cocobino/ACM-ICPC
b1793403bf4f759adf6457f36a78d47dd5988135
03c1f8a24f50229abebe03657dc2ef75d2816244
refs/heads/master
2023-02-26T02:09:15.120403
2023-02-20T15:08:44
2023-02-20T15:08:44
128,730,398
3
1
null
null
null
null
UTF-8
Java
false
false
1,098
java
import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.LinkedList; import java.util.Queue; import java.util.StringTokenizer; public class Main { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static StringTokenizer st; static int h,m; static int dx[] = {0,0,-1,1}; static int dy[] = {1,-1,0,0}; static int x,y; public static void main(String[] args) throws NumberFormatException, IOException { // TODO Auto-generated method stub st = new StringTokenizer(br.readLine()); h = Integer.parseInt(st.nextToken()); m = Integer.parseInt(st.nextToken()); if(m-45>=0) { m-=45; }else if(m-45<0){ if(h>0)h--; else if(h==0)h=23; m-=45; m+=60; } bw.write(String.valueOf(h +" "+m)); bw.flush(); }// main }// class
[ "coolbino@naver.com" ]
coolbino@naver.com
e4d0a7d7932e51607d0190d5be8b6799d7af06ea
25e8388c82afad04a4351cafa3e11c7ba972b0e9
/Geico/src/main/java/motorVehicle/MotorVehicleCustomerInfo.java
299019bd3259acbf0a8e865fa5ba98d7ce9f8dfe
[]
no_license
mohammad898/PNT_HybridFreamwork
20b539221d988ec6d99e0730977515c4bf46da9e
37773d12f20397cd7605ffa243c973950ce8952e
refs/heads/master
2020-04-01T11:52:12.341679
2018-10-16T00:12:01
2018-10-16T00:12:01
153,181,225
0
0
null
null
null
null
UTF-8
Java
false
false
899
java
package motorVehicle; import base.CommonClass; import homePage.InsuranceProducts; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; public class MotorVehicleCustomerInfo extends CommonClass { InsuranceProducts obj = new InsuranceProducts(); @FindBy(css = "#mainContent > div.padding-top > form > div:nth-child(2) > div:nth-child(3)") public static WebElement noDIv; public void navigateToMotorVehiclePage() throws InterruptedException { WebElement motorVehicle = InsuranceProducts.motorCycleInsuranceIcon; obj.clickOnIconwithZipCode(motorVehicle); } public void clickOnNoRD(){ driver.findElement(By.xpath("//label[@for='hasGeico1']")).click(); } public boolean isNoDivVisible(){ clickOnNoRD(); waitToBeVisible(noDIv); return noDIv.isDisplayed(); } }
[ "afiafarjana560@gmail.com" ]
afiafarjana560@gmail.com
0a83a94717a0ced1165160636376d7dfbe10c441
284c213ed17ea373eb241ada9f830ca6742942c6
/src/datastructure/BinarySearchTree.java
cf9948857e98495c93f03e4f8e098b7c9fa45858
[]
no_license
mars920314/LeetCode
d0a50b951185249af61fd6681c65224dca4ec653
654e59797d19437cac8d1cf7e171770729f901f4
refs/heads/master
2021-01-10T07:17:54.057857
2016-03-19T15:51:29
2016-03-19T15:51:29
54,273,953
0
0
null
null
null
null
UTF-8
Java
false
false
1,550
java
package datastructure; public class BinarySearchTree { TreeNode root=null; BinarySearchTree(int x){ this.root=new TreeNode(x); } void insert(int x){ insert_current(root, x); } TreeNode insert_current(TreeNode current, int x){ if(current==null){ return new TreeNode(x); } else if(x<current.val) current.left=insert_current(current.left, x); else if(x>current.val) current.right=insert_current(current.right, x); else ; return current; } TreeNode search(int x){ TreeNode tmp=root; while(tmp!=null){ if(tmp.val==x) return tmp; else if(x<tmp.val) tmp=tmp.left; else tmp=tmp.right; } return null; } void delete(int x){ delete_current(root, x); } TreeNode delete_current(TreeNode current, int x){ if(x<current.val) current.left=delete_current(current.left, x); else if(x>current.val) current.right=delete_current(current.right, x); else if(current.left!=null && current.right!=null){ TreeNode tmp=current.right; while(tmp.left!=null) tmp=tmp.left; current.val=tmp.val; delete_current(current.right, tmp.val); } else if(current.left==null && current.right!=null) return current.right; else if(current.left!=null && current.right==null) return current.left; else return null; return current; } public static void main(String[] args){ BinarySearchTree BST=new BinarySearchTree(10); BST.insert(5); BST.insert(8); BST.insert(3); BST.insert(7); BST.insert(6); BST.delete(5); TreeNode se=BST.search(1); } }
[ "mars.314@hotmail.com" ]
mars.314@hotmail.com
2bc15d5c58a9f097c10baa32410f287b9fe96957
5f3fddd2ead0102c4ddd3d074370152e3ee7fd0d
/app/src/main/java/com/number26/anibal/myapplication/service/Number26Service.java
b509ff4820604c0567e0f2a4e0f7cb7ab26fea93
[]
no_license
Hannibalem/mygraph
aef0a37ee4686da90bfeb8695ef1ea1dc784f9ba
4536eb8d3bb37e232bc552019c85eefd93e42109
refs/heads/master
2021-01-17T17:36:33.898562
2016-08-12T18:59:50
2016-08-12T18:59:50
63,176,464
1
0
null
null
null
null
UTF-8
Java
false
false
455
java
package com.number26.anibal.myapplication.service; import com.number26.anibal.myapplication.api.BaseResponse; import com.number26.anibal.myapplication.model.Interval; import java.util.List; import retrofit2.http.GET; import retrofit2.http.Query; import rx.Observable; /** * Created by anibal on 30.06.16. */ public interface Number26Service { @GET("charts/market-price") Observable<BaseResponse> getGraph(@Query("format") String format); }
[ "anibal.camunas@gmail.com" ]
anibal.camunas@gmail.com
a1373c270e31fad4918984c1cc428c05e5915a86
b382c12025087b169bdc66158bdba6098af04bc1
/src/main/java/my/project/log/analysis/service/filters/impl/LogFilterByTime.java
113bf536b22f9658b28201424c0fef96bbab8e9d
[]
no_license
NikolayNN/LogAnalysis
d4a516e4e8b4a1cabbe6a618ffd15325bea85de9
7db4bf044dde50f7ed65f715f78f1e9a62f597c4
refs/heads/master
2021-07-03T05:12:36.884742
2017-09-19T22:21:29
2017-09-19T22:21:29
103,733,261
0
0
null
null
null
null
UTF-8
Java
false
false
745
java
package my.project.log.analysis.service.filters.impl; import lombok.AllArgsConstructor; import my.project.log.analysis.exception.LogFilterInterruptingException; import my.project.log.analysis.model.LogMessage; import my.project.log.analysis.service.filters.LogFilter; import java.time.LocalDateTime; /** * @author Nikolay Horushko */ @AllArgsConstructor public class LogFilterByTime implements LogFilter { private LocalDateTime startDate; private LocalDateTime finishDate; @Override public void doFilter(LogMessage logMessage) { LocalDateTime date = logMessage.getDate(); if(date.isBefore(startDate) || date.isAfter(finishDate)){ throw new LogFilterInterruptingException(); } } }
[ "kolya.by@mail.ru" ]
kolya.by@mail.ru
33935a3992edfc0dbee43ff938def0c0ec577fad
e24f3d5d3e0ea1398244fbc450f5ea33bb08f0ab
/dmd_project-dao/src/main/java/ru/innopolis/dmd/project/dao/postgresql/AbstractDaoImpl.java
b8adab3f642aa8a51258a9128cefdd6367932f6f
[]
no_license
TimurKasatkin/dmd_project
17e506098ffc76bb304815f0d5442bc09213f60d
c62ce95ec0b96f3bedb1d03dd50ce3ab5e18efc7
refs/heads/master
2020-04-05T23:04:24.365487
2016-12-29T09:19:27
2016-12-29T09:19:27
42,849,613
0
0
null
null
null
null
UTF-8
Java
false
false
3,752
java
package ru.innopolis.dmd.project.dao.postgresql; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.jdbc.core.ResultSetExtractor; import org.springframework.jdbc.core.RowMapper; import org.springframework.jdbc.datasource.DriverManagerDataSource; import ru.innopolis.dmd.project.dao.AbstractDao; import ru.innopolis.dmd.project.dao.postgresql.utils.EntityMappingUtils; import ru.innopolis.dmd.project.dao.postgresql.utils.FetchUtils; import ru.innopolis.dmd.project.dao.util.Constants; import ru.innopolis.dmd.project.model.IdentifiedEntity; import javax.sql.DataSource; import java.io.Serializable; import java.util.List; import static java.text.MessageFormat.format; import static ru.innopolis.dmd.project.dao.postgresql.utils.SQLUtils.alias; import static ru.innopolis.dmd.project.dao.postgresql.utils.SQLUtils.fieldsStr; /** * Created by timur on 15.10.15. */ public abstract class AbstractDaoImpl<E extends IdentifiedEntity, I extends Serializable> implements AbstractDao<E, I> { /** * JUST FOR TESTS IN MAIN METHOD!!! */ protected static DataSource testDataSource = new DriverManagerDataSource(Constants.POSTGRESQL_URL, Constants.POSTGRESQL_LOGIN, Constants.POSTGRESQL_PASSWORD); protected Class<E> entityClass; @Autowired protected DataSource dataSource; protected JdbcTemplate jdbcTemplate; protected String alias; protected String tableName; protected String tableFieldsStr; public AbstractDaoImpl(Class<E> entityClass, DataSource dataSource) { this(Constants.ENTITY_TABLE_NAME.get(entityClass), entityClass, dataSource); } public AbstractDaoImpl(String tableName, Class<E> entityClass, DataSource dataSource) { this.tableName = tableName; this.alias = alias(tableName); this.entityClass = entityClass; this.dataSource = dataSource; this.jdbcTemplate = new JdbcTemplate(dataSource, true); this.tableFieldsStr = fieldsStr(entityClass); } @Override public E findById(I id) { return proxy(jdbcTemplate.queryForObject(format("SELECT {0} FROM {1} {2} WHERE {2}.id=?;", tableFieldsStr, tableName, alias(tableName)), rowMapper(), id)); } @Override public long count() { return jdbcTemplate.queryForObject(format("SELECT count(*) AS {0}_count FROM {1};", entityClass.getSimpleName().toLowerCase(), tableName), Long.class); } @Override public void delete(I id) { jdbcTemplate.update(format("DELETE FROM {0} WHERE id=?", tableName), id); } @Override public List<E> findAllAndSortBy(String columnName, boolean isAsc, Integer offset, Integer limit) { return proxy(jdbcTemplate.query( format("SELECT {0} FROM {1} {2} ORDER BY {3} {4} LIMIT {5} OFFSET {6};", tableFieldsStr, tableName, alias, columnName, isAsc ? "ASC" : "DESC", limit.toString(), offset.toString()), rowMapper())); } protected RowMapper<E> rowMapper() { return (rs, rowNum) -> EntityMappingUtils.extractEntity(entityClass, rs); } protected ResultSetExtractor<E> resExtractor() { return rs -> rs.next() ? EntityMappingUtils.extractEntity(entityClass, rs) : null; } protected E proxy(E entity) { FetchUtils.proxy(entityClass, entity, jdbcTemplate); return entity; } protected <ET extends IdentifiedEntity> List<ET> proxy(List<ET> entities) { entities.forEach(entity -> FetchUtils.proxy((Class<ET>) entity.getClass(), entity, jdbcTemplate)); return entities; } }
[ "aronwest001@gmail.com" ]
aronwest001@gmail.com
c4c8a3c6a3d8ff331947d068ff76e067172e039d
fa7a06a099386cc7d4a4414c9914259835962006
/microservicecloud-provider-dept-hystrix-8001/src/main/java/com/sk/springcloud/service/DeptService.java
fb40cb4e3a7563162c8d14fda196c4c641e5f494
[]
no_license
xuepengcheng-001/microservicecloud
54911d1e0afeffd47576a68618f202fb2506985b
1953532b026b6b4e49235f966d55fb923cd33c9c
refs/heads/master
2022-06-21T09:59:29.061928
2019-08-10T08:49:50
2019-08-10T08:49:50
201,603,850
0
0
null
2022-06-21T04:05:11
2019-08-10T08:43:05
Java
UTF-8
Java
false
false
224
java
package com.sk.springcloud.service; import java.util.List; import com.sk.springcloud.entitys.Dept; public interface DeptService { public boolean add(Dept dept); public Dept get(Long id); public List<Dept> list(); }
[ "349625012@qq.com" ]
349625012@qq.com
1919b6de89abf43a8a70f82aed4c25fa25ea7eb9
0a6360134dbf6400383e119e618615e4c2aaeeff
/app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/fragment/R.java
a42ee741d5959fd04720a092f4b881ae76c3cecc
[]
no_license
eduardscaueru/ContractSimplify
716a0e59b57477948fa4a542c18df78c8cff8e30
8006dd7861a440c2f225d4ae9964aa103b293190
refs/heads/main
2023-02-09T12:22:55.437455
2021-01-07T13:35:14
2021-01-07T13:35:14
311,032,961
0
0
null
null
null
null
UTF-8
Java
false
false
12,390
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.fragment; public final class R { private R() {} public static final class attr { private attr() {} public static final int alpha = 0x7f020027; public static final int coordinatorLayoutStyle = 0x7f020064; public static final int font = 0x7f02007a; public static final int fontProviderAuthority = 0x7f02007c; public static final int fontProviderCerts = 0x7f02007d; public static final int fontProviderFetchStrategy = 0x7f02007e; public static final int fontProviderFetchTimeout = 0x7f02007f; public static final int fontProviderPackage = 0x7f020080; public static final int fontProviderQuery = 0x7f020081; public static final int fontStyle = 0x7f020082; public static final int fontVariationSettings = 0x7f020083; public static final int fontWeight = 0x7f020084; public static final int keylines = 0x7f020094; public static final int layout_anchor = 0x7f020097; public static final int layout_anchorGravity = 0x7f020098; public static final int layout_behavior = 0x7f020099; public static final int layout_dodgeInsetEdges = 0x7f0200c3; public static final int layout_insetEdge = 0x7f0200cc; public static final int layout_keyline = 0x7f0200cd; public static final int statusBarBackground = 0x7f020109; public static final int ttcIndex = 0x7f02013c; } public static final class color { private color() {} public static final int notification_action_color_filter = 0x7f04003f; public static final int notification_icon_bg_color = 0x7f040040; public static final int ripple_material_light = 0x7f04004a; public static final int secondary_text_default_material_light = 0x7f04004c; } public static final class dimen { private dimen() {} public static final int compat_button_inset_horizontal_material = 0x7f05004b; public static final int compat_button_inset_vertical_material = 0x7f05004c; public static final int compat_button_padding_horizontal_material = 0x7f05004d; public static final int compat_button_padding_vertical_material = 0x7f05004e; public static final int compat_control_corner_material = 0x7f05004f; public static final int compat_notification_large_icon_max_height = 0x7f050050; public static final int compat_notification_large_icon_max_width = 0x7f050051; public static final int notification_action_icon_size = 0x7f05005b; public static final int notification_action_text_size = 0x7f05005c; public static final int notification_big_circle_margin = 0x7f05005d; public static final int notification_content_margin_start = 0x7f05005e; public static final int notification_large_icon_height = 0x7f05005f; public static final int notification_large_icon_width = 0x7f050060; public static final int notification_main_column_padding_top = 0x7f050061; public static final int notification_media_narrow_margin = 0x7f050062; public static final int notification_right_icon_size = 0x7f050063; public static final int notification_right_side_padding_top = 0x7f050064; public static final int notification_small_icon_background_padding = 0x7f050065; public static final int notification_small_icon_size_as_large = 0x7f050066; public static final int notification_subtext_size = 0x7f050067; public static final int notification_top_pad = 0x7f050068; public static final int notification_top_pad_large_text = 0x7f050069; } public static final class drawable { private drawable() {} public static final int notification_action_background = 0x7f060058; public static final int notification_bg = 0x7f060059; public static final int notification_bg_low = 0x7f06005a; public static final int notification_bg_low_normal = 0x7f06005b; public static final int notification_bg_low_pressed = 0x7f06005c; public static final int notification_bg_normal = 0x7f06005d; public static final int notification_bg_normal_pressed = 0x7f06005e; public static final int notification_icon_background = 0x7f06005f; public static final int notification_template_icon_bg = 0x7f060060; public static final int notification_template_icon_low_bg = 0x7f060061; public static final int notification_tile_bg = 0x7f060062; public static final int notify_panel_notification_icon_bg = 0x7f060063; } public static final class id { private id() {} public static final int action_container = 0x7f07000d; public static final int action_divider = 0x7f07000f; public static final int action_image = 0x7f070010; public static final int action_text = 0x7f070016; public static final int actions = 0x7f070017; public static final int async = 0x7f07001d; public static final int blocking = 0x7f070020; public static final int bottom = 0x7f070021; public static final int chronometer = 0x7f070029; public static final int end = 0x7f070037; public static final int forever = 0x7f07003d; public static final int icon = 0x7f070043; public static final int icon_group = 0x7f070044; public static final int info = 0x7f070048; public static final int italic = 0x7f07004a; public static final int left = 0x7f07004b; public static final int line1 = 0x7f07004c; public static final int line3 = 0x7f07004d; public static final int none = 0x7f070054; public static final int normal = 0x7f070055; public static final int notification_background = 0x7f070056; public static final int notification_main_column = 0x7f070057; public static final int notification_main_column_container = 0x7f070058; public static final int right = 0x7f070060; public static final int right_icon = 0x7f070061; public static final int right_side = 0x7f070062; public static final int start = 0x7f07007e; public static final int tag_transition_group = 0x7f070082; public static final int tag_unhandled_key_event_manager = 0x7f070083; public static final int tag_unhandled_key_listeners = 0x7f070084; public static final int text = 0x7f070085; public static final int text2 = 0x7f070086; public static final int time = 0x7f07008b; public static final int title = 0x7f07008c; public static final int top = 0x7f07008f; } public static final class integer { private integer() {} public static final int status_bar_notification_info_maxnum = 0x7f080004; } public static final class layout { private layout() {} public static final int notification_action = 0x7f09001d; public static final int notification_action_tombstone = 0x7f09001e; public static final int notification_template_custom_big = 0x7f09001f; public static final int notification_template_icon_group = 0x7f090020; public static final int notification_template_part_chronometer = 0x7f090021; public static final int notification_template_part_time = 0x7f090022; } public static final class string { private string() {} public static final int status_bar_notification_info_overflow = 0x7f0b002c; } public static final class style { private style() {} public static final int TextAppearance_Compat_Notification = 0x7f0c00ec; public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee; public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef; public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0; public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158; public static final int Widget_Compat_NotificationActionText = 0x7f0c0159; public static final int Widget_Support_CoordinatorLayout = 0x7f0c015a; } public static final class styleable { private styleable() {} public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f020109 }; public static final int CoordinatorLayout_keylines = 0; public static final int CoordinatorLayout_statusBarBackground = 1; public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd }; public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; public static final int CoordinatorLayout_Layout_layout_anchor = 1; public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; public static final int CoordinatorLayout_Layout_layout_behavior = 3; public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; public static final int CoordinatorLayout_Layout_layout_keyline = 6; public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_android_ttcIndex = 3; public static final int FontFamilyFont_android_fontVariationSettings = 4; public static final int FontFamilyFont_font = 5; public static final int FontFamilyFont_fontStyle = 6; public static final int FontFamilyFont_fontVariationSettings = 7; public static final int FontFamilyFont_fontWeight = 8; public static final int FontFamilyFont_ttcIndex = 9; public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; public static final int GradientColor_android_startColor = 0; public static final int GradientColor_android_endColor = 1; public static final int GradientColor_android_type = 2; public static final int GradientColor_android_centerX = 3; public static final int GradientColor_android_centerY = 4; public static final int GradientColor_android_gradientRadius = 5; public static final int GradientColor_android_tileMode = 6; public static final int GradientColor_android_centerColor = 7; public static final int GradientColor_android_startX = 8; public static final int GradientColor_android_startY = 9; public static final int GradientColor_android_endX = 10; public static final int GradientColor_android_endY = 11; public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; public static final int GradientColorItem_android_color = 0; public static final int GradientColorItem_android_offset = 1; } }
[ "edi_scaueru@yahoo.com" ]
edi_scaueru@yahoo.com
6a8ffd0aaa87d491c707ced0fd61fc7344e2c27a
2bb0ab75288031a14a0494379e668c1c20d11540
/src/com/massivecraft/factions/entity/BoardColls.java
8ce013b6d6a2d78dd19fcf58e0a4d8ba970a9a36
[]
no_license
crazyskink25/Factions
9fbf6d2b42f229aef3a3c6e011d6131b95640650
cf03bd5b8a8bf65a0829a1c37421501ca74b2150
refs/heads/master
2021-01-16T17:48:31.178179
2013-04-29T14:29:10
2013-04-29T14:29:10
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,347
java
package com.massivecraft.factions.entity; import java.io.File; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashSet; import java.util.Map; import java.util.Set; import java.util.Map.Entry; import com.massivecraft.factions.Const; import com.massivecraft.factions.Factions; import com.massivecraft.factions.RelationParticipator; import com.massivecraft.factions.TerritoryAccess; import com.massivecraft.mcore.ps.PS; import com.massivecraft.mcore.ps.PSBuilder; import com.massivecraft.mcore.usys.Aspect; import com.massivecraft.mcore.util.DiscUtil; import com.massivecraft.mcore.xlib.gson.reflect.TypeToken; public class BoardColls extends XColls<BoardColl, Board> implements BoardInterface { // -------------------------------------------- // // INSTANCE & CONSTRUCT // -------------------------------------------- // private static BoardColls i = new BoardColls(); public static BoardColls get() { return i; } // -------------------------------------------- // // OVERRIDE: COLLS // -------------------------------------------- // @Override public BoardColl createColl(String collName) { return new BoardColl(collName); } @Override public Aspect getAspect() { return Factions.get().getAspect(); } @Override public String getBasename() { return Const.COLLECTION_BASENAME_BOARD; } @Override public void init() { super.init(); this.migrate(); } // This method is for the 1.8.X --> 2.0.0 migration public void migrate() { // Create file objects File oldFile = new File(Factions.get().getDataFolder(), "board.json"); File newFile = new File(Factions.get().getDataFolder(), "board.json.migrated"); // Already migrated? if ( ! oldFile.exists()) return; // Read the file content through GSON. Type type = new TypeToken<Map<String,Map<String,TerritoryAccess>>>(){}.getType(); Map<String,Map<String,TerritoryAccess>> worldCoordIds = Factions.get().gson.fromJson(DiscUtil.readCatch(oldFile), type); // Set the data for (Entry<String,Map<String,TerritoryAccess>> entry : worldCoordIds.entrySet()) { String worldName = entry.getKey(); BoardColl boardColl = this.getForWorld(worldName); Board board = boardColl.get(worldName); for (Entry<String,TerritoryAccess> entry2 : entry.getValue().entrySet()) { String[] ChunkCoordParts = entry2.getKey().trim().split("[,\\s]+"); int chunkX = Integer.parseInt(ChunkCoordParts[0]); int chunkZ = Integer.parseInt(ChunkCoordParts[1]); PS ps = new PSBuilder().chunkX(chunkX).chunkZ(chunkZ).build(); TerritoryAccess territoryAccess = entry2.getValue(); board.setTerritoryAccessAt(ps, territoryAccess); } } // Mark as migrated oldFile.renameTo(newFile); } // -------------------------------------------- // // OVERRIDE: BOARD // -------------------------------------------- // @Override public TerritoryAccess getTerritoryAccessAt(PS ps) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return null; return coll.getTerritoryAccessAt(ps); } @Override public Faction getFactionAt(PS ps) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return null; return coll.getFactionAt(ps); } // SET @Override public void setTerritoryAccessAt(PS ps, TerritoryAccess territoryAccess) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return; coll.setTerritoryAccessAt(ps, territoryAccess); } @Override public void setFactionAt(PS ps, Faction faction) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return; coll.setFactionAt(ps, faction); } // REMOVE @Override public void removeAt(PS ps) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return; coll.removeAt(ps); } @Override public void removeAll(Faction faction) { for (BoardColl coll : this.getColls()) { coll.removeAll(faction); } } @Override public void clean() { for (BoardColl coll : this.getColls()) { coll.clean(); } } // CHUNKS @Override public Set<PS> getChunks(Faction faction) { Set<PS> ret = new HashSet<PS>(); for (BoardColl coll : this.getColls()) { ret.addAll(coll.getChunks(faction)); } return ret; } // COUNT @Override public int getCount(Faction faction) { int ret = 0; for (BoardColl coll : this.getColls()) { ret += coll.getCount(faction); } return ret; } // NEARBY DETECTION @Override public boolean isBorderPs(PS ps) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return false; return coll.isBorderPs(ps); } @Override public boolean isConnectedPs(PS ps, Faction faction) { BoardColl coll = this.getForWorld(ps.getWorld()); if (coll == null) return false; return coll.isConnectedPs(ps, faction); } // MAP GENERATION @Override public ArrayList<String> getMap(RelationParticipator observer, PS centerPs, double inDegrees) { BoardColl coll = this.getForWorld(centerPs.getWorld()); if (coll == null) return null; return coll.getMap(observer, centerPs, inDegrees); } }
[ "olof@sylt.nu" ]
olof@sylt.nu
ef2f276685d60eca89aab458b80190ddc6a5526c
78a9a4aadf6758d38754c0a398fe0c3659731a76
/src/main/java/com/nirav/demo/ApplicationWebXml.java
c80cde367da6d8df1577df3dd1aa19b3d95a4613
[]
no_license
nrvmodi/jhipster-sample-application
ff44d97f6096709ce909ccec0bfa2c094d0d3c8e
0daa12e9a4ed6a260d5045275af99041f5c7a6b4
refs/heads/main
2023-02-07T10:29:58.233552
2021-01-01T11:24:26
2021-01-01T11:24:26
325,965,600
0
0
null
null
null
null
UTF-8
Java
false
false
813
java
package com.nirav.demo; import io.github.jhipster.config.DefaultProfileUtil; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; /** * This is a helper Java class that provides an alternative to creating a {@code web.xml}. * This will be invoked only when the application is deployed to a Servlet container like Tomcat, JBoss etc. */ public class ApplicationWebXml extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { // set a default to use when no profile is configured. DefaultProfileUtil.addDefaultProfile(application.application()); return application.sources(SpringJibDemoApp.class); } }
[ "jhipster-bot@jhipster.tech" ]
jhipster-bot@jhipster.tech
f4e5ae5401ab9334dbaeca94cfd2b2e3fa10a02e
bd390bbe0e630eb402066955cc5d68cb7919521e
/src/officehours/April23.java
91a40d6f705e70df4394a98b4a8cc9eded79f16b
[]
no_license
msarikoc/Spring2019Online_Project
77bfb8904ff2571ba2d2006a0b1cb6b35f4e5024
ef73f76911447763ed538f51b8dbbcd2440987a4
refs/heads/master
2020-05-27T17:16:45.311073
2019-05-26T17:24:52
2019-05-26T17:24:52
188,717,403
1
0
null
2019-05-26T18:22:44
2019-05-26T18:22:44
null
UTF-8
Java
false
false
1,523
java
package officehours; import java.util.Arrays; public class April23 { public static void main(String[] args) { // isPalindrome(43234); // int num = 1; // System.out.println("Result: "+ (num%10)); // int reversed = reverseNumber(123456789); // System.out.println(reversed); System.out.println(fib(20) == 6765); System.out.println(fib(20)); System.out.println(Arrays.toString(Integer.toBinaryString(255).toCharArray())); } public static void isPalindrome(int num) { // WRITE YOUR CODE HERE int reversedNum = 0; int originalNum = num; while (num > 0) { // 1 iteration (0 * 10)+ 1 , reversedNum = 1, num/10 -> 100 // 2 iteration 1 * 10 + 0, reversedNum = 10, num/10 -> 10 // 3 iteration (10 * 10) + 0, revesedNum = 100, num/10 -> 1 // 4 iteration (100 * 10) + 1, revesedNum = 1001 // 8%10 = 8, 1%10 = 1, 10%10 = 0 reversedNum = reversedNum * 10 + num % 10; num = num / 10; } System.out.println(reversedNum == originalNum); } public static int reverseNumber(int num) { int reversedNum = 0; while (num > 0) { reversedNum = reversedNum * 10 + num % 10; num = num / 10; } return reversedNum; } public static int fib(int num) { // WRITE YOUR CODE HERE int num1 = 0; System.out.println("Fib 0 : " + num1); int num2 = 1; System.out.println("Fib 1 : " + num2); int result = 0; for (int i = 2; i <= num; i++) { result = num1 + num2; num1 = num2; num2 = result; System.out.println("Fib " + i + ": " + result); } return result; } }
[ "cybertekstudio@wsip-70-166-39-41.dc.dc.cox.net" ]
cybertekstudio@wsip-70-166-39-41.dc.dc.cox.net
9a543dc20a04a2d8044b502c31fd4fc8f623bb0d
a8e092c1f877317f54882d66ccf5e6c5148fcce3
/src/main/java/bitmap/BitMapFile.java
6562235286c1ea4d773fb91c7c464373691d2486
[]
no_license
shikhar1sharma/Columnar_DB
6f8401dac9f57f3663422037be2071dddbe16602
c913bd18bf1cee5026b22238d2255a3b2201000f
refs/heads/master
2021-09-09T06:17:19.604371
2018-03-14T05:21:21
2018-03-14T05:21:21
125,158,868
0
1
null
null
null
null
UTF-8
Java
false
false
7,613
java
package bitmap; import java.io.IOException; import bufmgr.HashEntryNotFoundException; import bufmgr.InvalidFrameNumberException; import bufmgr.PageUnpinnedException; import bufmgr.ReplacerException; import columnar.ColumnarFile; import diskmgr.Page; import global.*; public class BitMapFile { private BitMapHeaderPage headerPage; private PageId headerPageId; private String fileName; private ColumnarFile columnarFile; /** * Access method to data member. * * @return Return a BitMapHeaderPage object that is the header page * of this bitmap file. */ public BitMapHeaderPage getHeaderPage() { return headerPage; } private PageId getFileEntry(String fileName) throws GetFileEntryException { try { return SystemDefs.JavabaseDB.getFileEntry(fileName); } catch (Exception e) { e.printStackTrace(); throw new GetFileEntryException(e, ""); } } private Page pinPage(PageId pageId) throws PinPageException { try { Page page = new Page(); SystemDefs.JavabaseBM.pinPage(pageId, page, false/*Rdisk*/); return page; } catch (Exception e) { e.printStackTrace(); throw new PinPageException(e, ""); } } private void addFileEntry(String fileName, PageId pageId) throws AddFileEntryException { try { SystemDefs.JavabaseDB.addFileEntry(fileName, pageId); } catch (Exception e) { e.printStackTrace(); throw new AddFileEntryException(e, ""); } } private void unpinPage(PageId pageId) throws UnpinPageException { try { SystemDefs.JavabaseBM.unpinPage(pageId, false); } catch (Exception e) { e.printStackTrace(); throw new UnpinPageException(e, ""); } } private void freePage(PageId pageId) throws FreePageException { try { SystemDefs.JavabaseBM.freePage(pageId); } catch (Exception e) { e.printStackTrace(); throw new FreePageException(e, ""); } } private void deleteFileEntry(String fileName) throws DeleteFileEntryException { try { SystemDefs.JavabaseDB.deleteFileEntry(fileName); } catch (Exception e) { e.printStackTrace(); throw new DeleteFileEntryException(e, ""); } } private void unpinPage(PageId pageId, boolean dirty) throws UnpinPageException { try { SystemDefs.JavabaseBM.unpinPage(pageId, dirty); } catch (Exception e) { e.printStackTrace(); throw new UnpinPageException(e, ""); } } public BitMapFile(String fileName) throws GetFileEntryException, PinPageException, ConstructPageException { headerPageId = getFileEntry(fileName); headerPage = new BitMapHeaderPage(headerPageId); this.fileName = fileName; } public BitMapFile(String fileName, ColumnarFile columnarFile, int columnNo, ValueClass value) throws GetFileEntryException, ConstructPageException, IOException, AddFileEntryException { headerPageId = getFileEntry(fileName); if (headerPageId == null) // file not exist { headerPage = new BitMapHeaderPage(); headerPageId = headerPage.getCurrPage(); addFileEntry(fileName, headerPageId); headerPage.setColumnIndex((short)columnNo); headerPage.setValueType((short)value.getValueType()); this.columnarFile = columnarFile; } else { headerPage = new BitMapHeaderPage(headerPageId); } init(value); this.fileName = fileName; } /* * Initialize our bitMap */ private boolean compareValues(int a, int b){ if (a==b) return true; else return false; } private boolean compareValues(float a, float b){ if (a==b) return true; else return false; } private boolean compareValues(String a, String b){ if (a.equals(b)) return true; else return false; } private boolean compareValues(int c,int a, int b){ //a must be smaller than b if (c>= a && c<=b) return true; else return false; } private boolean compareValues(float c,float a, float b){ //a must be smaller than b if (c>= a && c<=b) return true; else return false; } private boolean compareValues(String c,String a, String b){ //a must be smaller than b if (c.compareTo(a)>=0 && c.compareTo(b)>=0) return true; else return false; } private void init(ValueClass value) { //initialize a sequential scan on the //Scan scan = columnarFile.openColumnScan(1); //check if scan object is not valid int val_type=value.getValueType(); boolean flag=false; int position=0; /*check if the tuple match the value*/ switch(val_type) { case 1:/*IntegerValue value_new1=scan.getnext(); IntegerValue value_given1=(IntegerValue) value; do { flag = compareValues(value_new1.getIntValue(), value_given1.getIntValue()); if (flag) { //set bit at the given position as 1 insert(position); } else { position = position + 1; // access next column value value_new1 = scan.getnext(); } }while(value_new1!=NULL); *///how the scan will end case 2:/*StringValue value_new2=scan.getnext(); StringValue value_given2=(StringValue) value; flag=compareValues(value_new2.getStringValue(),value_given2.getStringValue());*/ case 3:/*FloatValue value_new3=scan.getnext(); FloatValue value_given3=(FloatValue)value; flag=compareValues(value_new3.getFloatValue(),value_given3.getFloatValue());*/ /* Issue : How to know that value_new object is range as it will be a single value case 4:RangeIntValue value_new4=scan.getnext(); flag=compareValues(value_new4.getIntValue(),value.getIntValue1(),value.getIntValue2()); case 5:RangeStringValue value_new5=scan.getnext(); flag=compareValues(value_new5.getStringValue(),value.getStringValue1(),value.getStringValue2()); case 6:RangeFloatValue value_new6=scan.getnext(); flag=compareValues(value_new6.getFloatValue(),value.getFloatValue1(),value.getFloatValue2()); */ } } public void close() throws PageUnpinnedException, InvalidFrameNumberException, HashEntryNotFoundException, ReplacerException { if (headerPage != null) { SystemDefs.JavabaseBM.unpinPage(headerPageId, true); headerPage = null; } } public void destroyBitMapFile() { } public boolean Delete(int position) { return false; } public boolean Insert(int position) { return false; } }
[ "shikhar1.sharma@gmail.com" ]
shikhar1.sharma@gmail.com
e6a7a792d93cff4d8dd8b53945dfe04463e13779
5c751af50b8766802c19e2e1d39aed9e55ff478c
/src/subject/observer/pattern/ISubject.java
070f75eb06b25574c508889664637b5abd5c423b
[]
no_license
rabbitmz/HeadFirstDesignPatternBook
6e3e4422610b3a037ea888055bcc48c3269929b8
3cd4de9e5a4bb95c734e1ec5771b80973a34ed07
refs/heads/master
2020-04-07T07:04:34.762118
2018-11-22T04:57:06
2018-11-22T04:57:06
158,162,492
0
0
null
null
null
null
UTF-8
Java
false
false
321
java
package subject.observer.pattern; /** * An interface that represents the subjects * * A subject is responsible to publish the data to the observers * @author rabbit * */ public interface ISubject { void registerObserver(IObserver observer); void removeObserver(IObserver observer); void notifyObservers(); }
[ "yuri2jwingeter@gmail.com" ]
yuri2jwingeter@gmail.com
d7455f7928b411a494d24c16a61b3f30154e2b1a
0ada9e37f14143f182498206cd3bec4db0eb4661
/oap-stdlib/src/test/java/oap/util/MemoryMeterTest.java
f6e40860c58988ea5719d8818e5375dad873bbdf
[ "MIT" ]
permissive
vi-ai/oap
b5d428d0ac96c97a9cf93989e964b9adec91bb44
b5f907d572a36a40dcd7ce1c68aea709f6542349
refs/heads/master
2023-07-21T14:18:41.248753
2017-12-11T12:10:02
2017-12-11T12:10:02
82,679,470
0
0
null
2018-01-12T14:11:29
2017-02-21T12:52:03
Java
UTF-8
Java
false
false
1,450
java
/* * The MIT License (MIT) * * Copyright (c) Open Application Platform Authors * * 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 oap.util; import org.testng.annotations.Test; /** * Created by igor.petrenko on 29.11.2016. */ public class MemoryMeterTest { @Test public void testGet() throws Exception { MemoryMeter.get().measure( "sdfsdf" ); MemoryMeter.get().measure( "sdfsdf" ); } }
[ "nofate@ukr.net" ]
nofate@ukr.net
9bb72b96500f1b3c3e3e33d83a1e3b736b05419c
b01eab4165d36bf5c50e8c28deca9991bfc963f2
/src/dp/behaviour/state/problem/ToolType.java
49931a18f608951c7a59ce0181dce1165cd14001
[]
no_license
Hmida-Rojbani/DP-Samples
0925c57349de610cbbd999a697fc445e35f40db3
4d73370f8756bb6d34d974b4e6f8f5bf9d920999
refs/heads/master
2023-03-14T13:13:43.782838
2021-03-05T12:39:51
2021-03-05T12:39:51
344,777,251
0
0
null
null
null
null
UTF-8
Java
false
false
91
java
package dp.behaviour.state.problem; public enum ToolType { SELECTION, BRUSH, ERASER }
[ "31728681+Hmida-Rojbani@users.noreply.github.com" ]
31728681+Hmida-Rojbani@users.noreply.github.com
16307b6fe907d4556f48da1ef582f461ef0b7453
7cfe6d59908021d848d580df3c5024a1207e41aa
/customwidget/src/main/java/cn/xxt/customwidget/thinkinginjava/io/file18_7/BinaryFile.java
5f9c1233dbec4d43f8ad23db73593116478562da
[ "Apache-2.0" ]
permissive
Martin-zhq/someexercise
ee80f469769eeeec6eb11c28267d2ad7d750bc40
6edd6cc4ce260c189727a487652738549ca61d56
refs/heads/master
2022-03-04T21:16:51.379746
2019-12-02T10:04:24
2019-12-02T10:04:24
114,429,305
0
0
null
null
null
null
UTF-8
Java
false
false
748
java
package cn.xxt.customwidget.thinkinginjava.io.file18_7; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; /** * @Author zhq * @Date 2019-12-02-17:25 * @Description * @Email 1457453696@qq.com */ public class BinaryFile { public static byte[] read(File file) throws IOException { BufferedInputStream bf = new BufferedInputStream(new FileInputStream(file)); try { byte[] data = new byte[bf.available()]; bf.read(data); return data; } finally { bf.close(); } } public static byte[] read(String file) throws IOException { return read(new File(file).getAbsoluteFile()); } }
[ "1457453696@qq.com" ]
1457453696@qq.com
bcf4ffb33c2d5550b4620b9ed0a7775c19d85ebe
04b3202071e9be38bb6d800c7b348edc88dc11d5
/src/main/java/br/com/ifood/vehiclerouting/entity/Client.java
b75ec2eddd1a13dbc32636af23f507b19cb053ac
[]
no_license
jeffersonrodrigues92/vehiclerouting
d9e2d0f09023fd4b1a2f8948fba5e1c2fa3428d1
bce4ff780c15b47eae3b2e31306492085b34b978
refs/heads/master
2020-04-09T15:38:44.369043
2018-12-10T13:27:03
2018-12-10T13:27:03
160,431,870
0
0
null
null
null
null
UTF-8
Java
false
false
697
java
package br.com.ifood.vehiclerouting.entity; import javax.persistence.*; import javax.validation.constraints.NotNull; @Entity @Table(name = "client") public class Client { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @NotNull private Double lat; @NotNull private Double lon; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Double getLat() { return lat; } public void setLat(Double lat) { this.lat = lat; } public Double getLon() { return lon; } public void setLon(Double lon) { this.lon = lon; } }
[ "jefferson.rodrigues@MacBook-Pro-de-Jefferson-2.local" ]
jefferson.rodrigues@MacBook-Pro-de-Jefferson-2.local
c531b982e733aaf7dbd2a7002a96de73a3fb69d4
6baf1fe00541560788e78de5244ae17a7a2b375a
/hollywood/com.oculus.browser-base/sources/org/chromium/chrome/browser/notifications/settings/NotificationSettings.java
7a4d95d23132d716c3e7f55a8ace9f2bcf5631f9
[]
no_license
phwd/quest-tracker
286e605644fc05f00f4904e51f73d77444a78003
3d46fbb467ba11bee5827f7cae7dfeabeb1fd2ba
refs/heads/main
2023-03-29T20:33:10.959529
2021-04-10T22:14:11
2021-04-10T22:14:11
357,185,040
4
2
null
2021-04-12T12:28:09
2021-04-12T12:28:08
null
UTF-8
Java
false
false
1,856
java
package org.chromium.chrome.browser.notifications.settings; import J.N; import android.os.Bundle; import androidx.preference.Preference; import com.oculus.browser.R; import org.chromium.chrome.browser.profiles.Profile; import org.chromium.components.browser_ui.settings.ChromeSwitchPreference; /* compiled from: chromium-OculusBrowser.apk-stable-281887347 */ public class NotificationSettings extends AbstractC2324eF0 { public static final /* synthetic */ int G0 = 0; public Preference H0; public ChromeSwitchPreference I0; @Override // defpackage.AbstractComponentCallbacksC3550lS public void B0() { boolean z = true; this.i0 = true; if (this.I0 != null) { boolean a2 = AbstractC5056uF0.a(); boolean d = NU0.f8549a.d("prefetch_notification_enabled", true); ChromeSwitchPreference chromeSwitchPreference = this.I0; if (!a2 || !d) { z = false; } chromeSwitchPreference.a0(z); this.I0.K(a2); this.I0.S(a2 ? R.string.f56240_resource_name_obfuscated_RES_2131952941 : R.string.f56250_resource_name_obfuscated_RES_2131952942); } this.H0.S(AbstractC1154Sy.b(6, N.MJSt3Ocq(Profile.b(), 6))); } @Override // defpackage.AbstractC2324eF0 public void g1(Bundle bundle, String str) { AbstractC2870hT0.a(this, R.xml.f76310_resource_name_obfuscated_RES_2132213787); u().setTitle(R.string.f59140_resource_name_obfuscated_RES_2131953231); ChromeSwitchPreference chromeSwitchPreference = (ChromeSwitchPreference) f1("content_suggestions"); this.I0 = chromeSwitchPreference; chromeSwitchPreference.f9480J = new C1381Wp0(); Preference f1 = f1("from_websites"); this.H0 = f1; f1.j().putString("category", QX0.p(14)); } }
[ "cyuubiapps@gmail.com" ]
cyuubiapps@gmail.com
bbc44861963aa66201bfe230c8aab2348b34f141
1c311ca46807a37b50b494c0f0a0f9d57744b570
/src/admin/frames/ItemExtendedFrame.java
5f087f6616ac59d1b78db8f0b820516ae9f61a20
[]
no_license
MrHistone/Admin
d6ef9159f8bf7b502fca0acf5d9f509365079bc1
c3c807bcd517dd1a7cf68a256770c61ff46010f2
refs/heads/master
2020-12-30T13:20:00.564691
2017-05-15T14:36:38
2017-05-15T14:36:38
91,342,965
0
0
null
null
null
null
UTF-8
Java
false
false
8,009
java
package admin.frames; import admin.ConfigWindow; import admin.MDIStart; import admin.Preferences; import java.awt.Dimension; import java.awt.Point; public class ItemExtendedFrame extends javax.swing.JInternalFrame { /** * Creates new form ItemExtendedFrame */ public ItemExtendedFrame() { initComponents(); if (!java.beans.Beans.isDesignTime()) { loadAndSetPositionAndSizeOfWindow(); } } /** * 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() { itemExtended = new admin.frames.ItemExtended(); jMenuBar1 = new javax.swing.JMenuBar(); jMenuFile = new javax.swing.JMenu(); jMenuItemSluit = new javax.swing.JMenuItem(); jMenuEdit = new javax.swing.JMenu(); jMenuItemNieuw = new javax.swing.JMenuItem(); jMenuItemBewerken = new javax.swing.JMenuItem(); jMenuItemVerwijderen = new javax.swing.JMenuItem(); jMenuDiversen = new javax.swing.JMenu(); jMenuItemSaveKolommen = new javax.swing.JMenuItem(); jMenuItemReadDirectory = new javax.swing.JMenuItem(); setClosable(true); setIconifiable(true); setMaximizable(true); setResizable(true); setTitle("Administratie Bestanden"); addInternalFrameListener(new javax.swing.event.InternalFrameListener() { public void internalFrameActivated(javax.swing.event.InternalFrameEvent evt) { } public void internalFrameClosed(javax.swing.event.InternalFrameEvent evt) { } public void internalFrameClosing(javax.swing.event.InternalFrameEvent evt) { formInternalFrameClosing(evt); } public void internalFrameDeactivated(javax.swing.event.InternalFrameEvent evt) { } public void internalFrameDeiconified(javax.swing.event.InternalFrameEvent evt) { } public void internalFrameIconified(javax.swing.event.InternalFrameEvent evt) { } public void internalFrameOpened(javax.swing.event.InternalFrameEvent evt) { } }); jMenuFile.setText("File"); jMenuItemSluit.setText("Sluit scherm"); jMenuItemSluit.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jMenuItemSluitActionPerformed(evt); } }); jMenuFile.add(jMenuItemSluit); jMenuBar1.add(jMenuFile); jMenuEdit.setText("Edit"); jMenuItemNieuw.setText("Nieuw bestand"); jMenuEdit.add(jMenuItemNieuw); jMenuItemBewerken.setText("Bewerken"); jMenuEdit.add(jMenuItemBewerken); jMenuItemVerwijderen.setText("Verwijderen"); jMenuEdit.add(jMenuItemVerwijderen); jMenuBar1.add(jMenuEdit); jMenuDiversen.setText("Diversen"); jMenuItemSaveKolommen.setText("Save Kolommen"); jMenuDiversen.add(jMenuItemSaveKolommen); jMenuItemReadDirectory.setText("Lees Komplete Directory Bestanden"); jMenuItemReadDirectory.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jMenuItemReadDirectoryActionPerformed(evt); } }); jMenuDiversen.add(jMenuItemReadDirectory); jMenuBar1.add(jMenuDiversen); setJMenuBar(jMenuBar1); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(itemExtended, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap() .addComponent(itemExtended, javax.swing.GroupLayout.DEFAULT_SIZE, 590, Short.MAX_VALUE) .addContainerGap()) ); pack(); }// </editor-fold>//GEN-END:initComponents private void formInternalFrameClosing(javax.swing.event.InternalFrameEvent evt) {//GEN-FIRST:event_formInternalFrameClosing savePositionAndSizeOfWindow(); }//GEN-LAST:event_formInternalFrameClosing private void jMenuItemSluitActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMenuItemSluitActionPerformed dispose(); }//GEN-LAST:event_jMenuItemSluitActionPerformed private void jMenuItemReadDirectoryActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMenuItemReadDirectoryActionPerformed itemExtended.importFilesFromDirectory(); }//GEN-LAST:event_jMenuItemReadDirectoryActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private admin.frames.ItemExtended itemExtended; private javax.swing.JMenuBar jMenuBar1; private javax.swing.JMenu jMenuDiversen; private javax.swing.JMenu jMenuEdit; private javax.swing.JMenu jMenuFile; private javax.swing.JMenuItem jMenuItemBewerken; private javax.swing.JMenuItem jMenuItemNieuw; private javax.swing.JMenuItem jMenuItemReadDirectory; private javax.swing.JMenuItem jMenuItemSaveKolommen; private javax.swing.JMenuItem jMenuItemSluit; private javax.swing.JMenuItem jMenuItemVerwijderen; // End of variables declaration//GEN-END:variables private void savePositionAndSizeOfWindow() { try { // Get window name String className = this.getClass().getName(); Dimension size = this.getSize(); Point point = this.getLocation(); ConfigWindow confWin = new ConfigWindow(); confWin.setDimension(size); confWin.setPoint(point); confWin.setWindowName(className); Preferences.saveProperties(confWin); } catch (Exception ex) { System.out.println("Something terrible happened with saving " + "the window size and position. " + "(loadAndSetPositionAndSizeOfWindow) of " + this.getClass().getName() + ex); } } private void loadAndSetPositionAndSizeOfWindow() { ConfigWindow confWin = Preferences.loadProperties(this.getClass().getName()); if (confWin == null){ System.out.println("Geen confWin gevonden voor " + this.getClass().getName()); } try { if (confWin.getDimension() != null && confWin.getDimension().getWidth() > 0 && confWin.getDimension().getHeight() > 0) { this.setSize(confWin.getDimension()); } if (confWin.getPoint() != null && confWin.getPoint().getX() > 0 && confWin.getPoint().getY() > 0) { this.setLocation(confWin.getPoint()); } } catch (Exception ex) { System.out.println("Something terrible happened with loading " + "and/or setting the window size and position. " + "(loadAndSetPositionAndSizeOfWindow) of " + this.getClass().getName() + ex); } } public void setMDIHandle (MDIStart mdiStart){ itemExtended.setMDIStart(mdiStart); } }
[ "Bart Jansen@SOSDE49" ]
Bart Jansen@SOSDE49
6f27817a844cbc79d1ca4358658a123538d5f109
9db3b3baec2fdc7b93bd268595d127996b28e44b
/src/main/java/org/web3j/protocol/http/HttpService.java
a48d3186d4697556003366140e9d8b849de1768f
[ "Apache-2.0" ]
permissive
h2mch/web3j
9f2831f15ca0f499e9401976619036e1ffd38efd
3c6f609c7ce43c3c8655fac436ed487aa787e5b5
refs/heads/master
2023-08-06T21:19:38.756059
2017-05-14T22:30:43
2017-05-14T22:30:43
75,410,621
0
0
NOASSERTION
2023-08-01T22:44:27
2016-12-02T16:08:05
Java
UTF-8
Java
false
false
2,900
java
package org.web3j.protocol.http; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.http.Header; import org.apache.http.HttpEntity; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.ResponseHandler; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.ByteArrayEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicHeader; import org.web3j.protocol.Service; import org.web3j.protocol.core.Request; import org.web3j.protocol.core.Response; /** * HTTP implementation of our services API. */ public class HttpService extends Service { public static final String DEFAULT_URL = "http://localhost:8545/"; private CloseableHttpClient httpClient; private final String url; public HttpService(String url, CloseableHttpClient httpClient) { this.url = url; this.httpClient = httpClient; } public HttpService(String url) { this(url, HttpClients.custom().setConnectionManagerShared(true).build()); } public HttpService() { this(DEFAULT_URL); } protected void setHttpClient(CloseableHttpClient httpClient) { this.httpClient = httpClient; } @Override public <T extends Response> T send( Request request, Class<T> responseType) throws IOException { byte[] payload = objectMapper.writeValueAsBytes(request); HttpPost httpPost = new HttpPost(this.url); httpPost.setEntity(new ByteArrayEntity(payload)); Header[] headers = buildHeaders(); httpPost.setHeaders(headers); ResponseHandler<T> responseHandler = getResponseHandler(responseType); try { return httpClient.execute(httpPost, responseHandler); } finally { httpClient.close(); } } private Header[] buildHeaders() { List<Header> headers = new ArrayList<>(); headers.add(new BasicHeader("Content-Type", "application/json; charset=UTF-8")); addHeaders(headers); return headers.toArray(new Header[0]); } protected void addHeaders(List<Header> headers) { } public <T extends Response> ResponseHandler<T> getResponseHandler(Class<T> type) { return response -> { int status = response.getStatusLine().getStatusCode(); if (status >= 200 && status < 300) { HttpEntity entity = response.getEntity(); if (entity != null) { return objectMapper.readValue(response.getEntity().getContent(), type); } else { return null; } } else { throw new ClientProtocolException("Unexpected response status: " + status); } }; } }
[ "conor10@gmail.com" ]
conor10@gmail.com
3ba2d2ae714fd2ace48b425f1cbf0e54c969196c
d71e879b3517cf4fccde29f7bf82cff69856cfcd
/ExtractedJars/iRobot_com.irobot.home/javafiles/com/irobot/core/PushNotificationPayloadUtils.java
1d20cb50f8f5b77a57ddb84c7a1d18c907d2f180
[ "MIT" ]
permissive
Andreas237/AndroidPolicyAutomation
b8e949e072d08cf6c6166c3f15c9c63379b8f6ce
c1ed10a2c6d4cf3dfda8b8e6291dee2c2a15ee8a
refs/heads/master
2020-04-10T02:14:08.789751
2019-05-16T19:29:11
2019-05-16T19:29:11
160,739,088
5
1
null
null
null
null
UTF-8
Java
false
false
3,112
java
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.kpdus.com/jad.html // Decompiler options: packimports(3) annotate safe package com.irobot.core; import java.util.concurrent.atomic.AtomicBoolean; // Referenced classes of package com.irobot.core: // AssetId public abstract class PushNotificationPayloadUtils { private static final class CppProxy extends PushNotificationPayloadUtils { private native void nativeDestroy(long l); public void destroy() { if(!destroyed.getAndSet(true)) //* 0 0:aload_0 //* 1 1:getfield #21 <Field AtomicBoolean destroyed> //* 2 4:iconst_1 //* 3 5:invokevirtual #37 <Method boolean AtomicBoolean.getAndSet(boolean)> //* 4 8:ifne 19 nativeDestroy(nativeRef); // 5 11:aload_0 // 6 12:aload_0 // 7 13:getfield #30 <Field long nativeRef> // 8 16:invokespecial #39 <Method void nativeDestroy(long)> // 9 19:return } protected void finalize() { destroy(); // 0 0:aload_0 // 1 1:invokevirtual #42 <Method void destroy()> ((Object)this).finalize(); // 2 4:aload_0 // 3 5:invokespecial #46 <Method void Object.finalize()> // 4 8:return } private final AtomicBoolean destroyed = new AtomicBoolean(false); private final long nativeRef; private CppProxy(long l) { // 0 0:aload_0 // 1 1:invokespecial #14 <Method void PushNotificationPayloadUtils()> // 2 4:aload_0 // 3 5:new #16 <Class AtomicBoolean> // 4 8:dup // 5 9:iconst_0 // 6 10:invokespecial #19 <Method void AtomicBoolean(boolean)> // 7 13:putfield #21 <Field AtomicBoolean destroyed> if(l == 0L) //* 8 16:lload_1 //* 9 17:lconst_0 //* 10 18:lcmp //* 11 19:ifne 32 { throw new RuntimeException("nativeRef is zero"); // 12 22:new #23 <Class RuntimeException> // 13 25:dup // 14 26:ldc1 #25 <String "nativeRef is zero"> // 15 28:invokespecial #28 <Method void RuntimeException(String)> // 16 31:athrow } else { nativeRef = l; // 17 32:aload_0 // 18 33:lload_1 // 19 34:putfield #30 <Field long nativeRef> return; // 20 37:return } } } public PushNotificationPayloadUtils() { // 0 0:aload_0 // 1 1:invokespecial #11 <Method void Object()> // 2 4:return } public static native AssetId assetId(String s); public static native int errorCode(String s); public static native int missionId(String s); public static native String persistentMapId(String s); public static native String persistentMapVersionId(String s); public static native String sku(String s); public static native int stateCode(String s); }
[ "silenta237@gmail.com" ]
silenta237@gmail.com
05fb26cd1aad70beb0755f11509249facb624f51
afda65607d49070cf980497acd9789dcef64a186
/src/main/java/net/smartcosmos/edge/things/converter/RestThingResponseToMapConverter.java
a8a008b5ab925af8ace34be3db5e75717c550905
[ "Apache-2.0" ]
permissive
SMARTRACTECHNOLOGY/smartcosmos-edge-things
35bbf802407ec18e54e6bf6b14623fbf0bb71df9
5987823f965ebf423c38d3ecaedfe6f9470ee94e
refs/heads/master
2020-04-11T02:09:07.085873
2017-01-24T21:17:02
2017-01-24T21:17:02
61,788,340
0
1
null
2017-01-27T11:49:49
2016-06-23T08:27:21
Java
UTF-8
Java
false
false
790
java
package net.smartcosmos.edge.things.converter; import java.util.LinkedHashMap; import java.util.Map; import org.springframework.core.convert.converter.Converter; import org.springframework.stereotype.Component; import net.smartcosmos.edge.things.domain.things.RestThingResponse; @Component public class RestThingResponseToMapConverter implements Converter<RestThingResponse, Map<String, Object>> { @Override public Map<String, Object> convert(RestThingResponse thingResponse) { Map<String, Object> map = new LinkedHashMap<>(); map.put("urn", thingResponse.getUrn()); map.put("type", thingResponse.getType()); map.put("tenantUrn", thingResponse.getTenantUrn()); map.put("active", thingResponse.getActive()); return map; } }
[ "andreas.siegel@smartrac-group.com" ]
andreas.siegel@smartrac-group.com
40b65868e8877076db2de437108e3f58c9eecef0
f3649575b113bb24591e95d16088ee58d91bf21e
/Source_Code/fBReader/src/main/java/org/geometerplus/fbreader/formats/oeb/OEBAnnotationReader.java
bc810f9634456289c5160dd6b72c922fcd522b82
[]
no_license
lurongshuang/FBReader-Mupdf_library
8b12cd4cb4d7d014491c0a20726908f539822cf7
6c08865a7cf7d5f1b6ec1cfde301a194b9900329
refs/heads/master
2021-05-08T21:38:29.037300
2019-12-02T07:34:52
2019-12-02T07:34:52
119,648,514
53
18
null
null
null
null
UTF-8
Java
false
false
2,669
java
/* * Copyright (C) 2007-2015 FBReader.ORG Limited <contact@fbreader.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 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. */ package org.geometerplus.fbreader.formats.oeb; import java.io.IOException; import org.geometerplus.zlibrary.core.constants.XMLNamespaces; import org.geometerplus.zlibrary.core.filesystem.ZLFile; import org.geometerplus.zlibrary.core.xml.*; class OEBAnnotationReader extends ZLXMLReaderAdapter implements XMLNamespaces { private static final int READ_NONE = 0; private static final int READ_DESCRIPTION = 1; private int myReadState; private final StringBuilder myBuffer = new StringBuilder(); String readAnnotation(ZLFile file) { myReadState = READ_NONE; myBuffer.delete(0, myBuffer.length()); try { ZLXMLProcessor.read(this, file, 512); final int len = myBuffer.length(); if (len > 1) { if (myBuffer.charAt(len - 1) == '\n') { myBuffer.delete(len - 1, len); } return myBuffer.toString(); } return null; } catch (IOException e) { return null; } } @Override public boolean processNamespaces() { return true; } @Override public boolean startElementHandler(String tag, ZLStringMap attributes) { tag = tag.toLowerCase(); if (testTag(DublinCore, "description", tag) || testTag(DublinCoreLegacy, "description", tag)) { myReadState = READ_DESCRIPTION; } else if (myReadState == READ_DESCRIPTION) { // TODO: process tags myBuffer.append(" "); } return false; } @Override public void characterDataHandler(char[] data, int start, int len) { if (myReadState == READ_DESCRIPTION) { myBuffer.append(new String(data, start, len).trim()); } } @Override public boolean endElementHandler(String tag) { if (myReadState != READ_DESCRIPTION) { return false; } tag = tag.toLowerCase(); if (testTag(DublinCore, "description", tag) || testTag(DublinCoreLegacy, "description", tag)) { return true; } // TODO: process tags myBuffer.append(" "); return false; } }
[ "13269779672@163.com" ]
13269779672@163.com
5702aedd39fd0c66178a24a04480a807b943da4c
73308ecf567af9e5f4ef8d5ff10f5e9a71e81709
/jaso83310/src/main/java/com/example/jaso83310/UserService.java
30450c55ff1d7045434e3b2cb0996ef4410037ff
[]
no_license
yukihane/stackoverflow-qa
bfaf371e3c61919492e2084ed4c65f33323d7231
ba5e6a0d51f5ecfa80bb149456adea49de1bf6fb
refs/heads/main
2023-08-03T06:54:32.086724
2023-07-26T20:02:07
2023-07-26T20:02:07
194,699,870
3
3
null
2023-03-02T23:37:45
2019-07-01T15:34:08
Java
UTF-8
Java
false
false
1,116
java
package com.example.jaso83310; import java.util.List; import java.util.Optional; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @Service @Transactional public class UserService { @Autowired UserRepository userRepository; public List<User> findBynameLike(String name){ return userRepository.findBynameLike(name + "%"); } public List<User> findAll() { return userRepository.findAll(); } public void insert(User user) { userRepository.save(user); } public void update(User user) { userRepository.save(user); } public void delete(String id) { userRepository.deleteById(id); } public Optional<User> selectById(String id) { return userRepository.findById(id); } public User Login(String id,String pass) { User u = userRepository.getById(id); if (null != u) { if (u.getPass().equals(pass)) { return u; } } else { } return null; } }
[ "yukihane.feather@gmail.com" ]
yukihane.feather@gmail.com