blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
592a74b64163ba572b0580d242bc24ba0f63931f | 6e8e1e2fa1bf883ca657dd1cf8e6a17d5a086f90 | /ViewElements4/src/course/android/graphics/GraphicsXml.java | c1961d414a8a03bf44951e77a152caff328fafe7 | [] | no_license | Amir13/Android_Basic_Steps | 2f3319621f6b46cee884f1ab69cd909980b82d61 | d0535094b1d39a149b1d09a3b93149c00bdd47d8 | refs/heads/master | 2021-01-25T03:48:26.556079 | 2014-07-04T13:37:16 | 2014-07-04T13:37:16 | 20,086,276 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 322 | java | package course.android.graphics;
import android.app.Activity;
import android.os.Bundle;
import com.course.android.R;
public class GraphicsXml extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_graphics_xml);
}
}
| [
"[email protected]"
] | |
1e842ac132e0f5eee72550535c279cb094c39803 | a7dfb2bd0d08442b27a2d54bc3b3e43fc49c874d | /app/src/main/java/model/Weather.java | 3796c9a11ed79985d9abcdca9c3ffff2e5579a4a | [] | no_license | jcole13/Daily-Planner | 1077fa1b3fe0f76794b15abe6d2c55583a93dd73 | 2b871fa9491a478c136f4a4be94ee7a32bfafa30 | refs/heads/master | 2021-01-21T19:07:01.190750 | 2019-02-09T22:58:52 | 2019-02-09T22:58:52 | 92,115,883 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 373 | java | package model;
/**
* Created by Jared Cole on 11/27/2016.
*/
//holds all relevant data
public class Weather {
public Place place;
public String iconData;
public CurrentCondition currentcondition = new CurrentCondition();
public Temperature temperature = new Temperature();
public Wind wind = new Wind();
public Clouds clouds = new Clouds();
}
| [
"[email protected]"
] | |
aba2d7f559a2d8b45644a0b55ee64f6fe54c407f | 609029aa8319550ded0dbeb0bb06eaf5885b25d6 | /src/repository/appointment/AppointmentRepository.java | 20176a61659b153188637dab2558da5bac7748fe | [] | no_license | sinishawt/cs472-eclinical-api | 9c020b4c6703c9bd8b967fb8205f49e5b95e1b97 | 6a5c0a01d159dceff333c0401647ba49dc85d150 | refs/heads/master | 2022-04-21T13:40:20.119822 | 2020-04-15T23:03:09 | 2020-04-15T23:03:09 | 256,012,837 | 0 | 0 | null | 2020-04-15T19:10:42 | 2020-04-15T19:10:41 | null | UTF-8 | Java | false | false | 4,329 | java | package repository.appointment;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import dao.Database;
import model.appointment.Appointment;
import model.doctorpatient.Specialization;
import model.user.User;
import repository.patientdoctor.SpecializationRepository;
import repository.user.UserRepository;
public class AppointmentRepository {
private static AppointmentRepository appointmentRepository;
private Database database = Database.getInstance();
private AppointmentRepository() {}
public static AppointmentRepository getInstance() {
if(appointmentRepository == null)
appointmentRepository = new AppointmentRepository();
return appointmentRepository;
}
public boolean saveAppointmentRepository(Appointment appointment) {
boolean isSuccess = false;
try {
if(appointment != null) {
//load auto appointmentNumber here
ResultSet result = database.getResult("SELECT IFNULL(MAX(RIGHT(appointment_number, LENGTH(doctor_number) - 3)),0) + 1 As appointment_number FROM appointment", null);
if(result.next())
appointment.setAppointmentNumber("AP#" + result.getInt("appointment_number"));
database.executeStatement("INSERT into appointment(appointment_number, appointmentdate, appointmenttime, specializationid, appointedby) VALUES(?, ?, ?, ?, ?)",
Arrays.asList(appointment.getAppointmentNumber(),
appointment.getAppointmentDate(),
appointment.getAppointmentTime(),
appointment.getSpecialization().getSpecializationId(),
appointment.getAppointedBy().getUserId()));
isSuccess = true;
}
}catch(Exception ex) {
ex.printStackTrace();
}
return isSuccess;
}
public List<Appointment> loadAppointments() {
List<Appointment> appointments = new ArrayList<>();
UserRepository userRepo = UserRepository.getInstance();
SpecializationRepository specializationRepo = SpecializationRepository.getInstance();
try {
ResultSet result = database.getResult("SELECT * FROM appointment", null);
while(result.next()) {
User user = userRepo.loadUserById(result.getInt("appointedby"));
Specialization specialization = specializationRepo.loadSpecializationById(result.getInt("specializationid"));
appointments.add(new Appointment(result.getInt(1), result.getString(2),
result.getDate(3).toLocalDate(),
result.getTime(4).toLocalTime(),
specialization,
user));
}
}catch(Exception ex) {
ex.printStackTrace();
}
return appointments;
}
public Appointment loadAppointmentById(int appointmentId) {
Appointment appointment = new Appointment();
UserRepository userRepo = UserRepository.getInstance();
SpecializationRepository specializationRepo = SpecializationRepository.getInstance();
try {
ResultSet result = database.getResult("SELECT * FROM appointment where appointmentid = ?", Arrays.asList(appointmentId));
while(result.next()) {
User user = userRepo.loadUserById(result.getInt("appointedby"));
Specialization specialization = specializationRepo.loadSpecializationById(result.getInt("specializationid"));
appointment = new Appointment(result.getInt(1), result.getString(2),
result.getDate(3).toLocalDate(),
result.getTime(4).toLocalTime(),
specialization,
user);
}
}catch(Exception ex) {
ex.printStackTrace();
}
return appointment;
}
public boolean deleteAppointmentById(int appointmentId) {
boolean isSuccess = false;
try {
database.executeStatement("DELETE FROM appointment where appointmentid = ?", Arrays.asList(appointmentId));
isSuccess = true;
}catch(Exception ex) {
ex.printStackTrace();
}
return isSuccess;
}
public boolean updateAppointmentById(Appointment appointment) {
boolean isSuccess = false;
try {
database.executeStatement("UPDATE appointment SET appointmentdate = ?, appointmenttime = ?, specializationid = ?, appointedby = ? WHERE appointmentid = ?",
Arrays.asList(appointment.getAppointmentDate(), appointment.getAppointmentTime(), appointment.getSpecialization().getSpecializationId(), appointment.getAppointedBy().getUserId()));
isSuccess = true;
}catch(Exception ex) {
ex.printStackTrace();
}
return isSuccess;
}
}
| [
"[email protected]"
] | |
4eeaeaa6f7579dae99f7748aae97d269d5711b4e | 831c1753a0edc3943a0c8dcad811539f9700776e | /app/src/main/java/com/tsitsing/translation/animation/ManyCircle.java | d7009e7ba9a2148a83aa59cc17f1087d5bc2c795 | [] | no_license | Tsitsing/Translation | 5c73a23b07fb9f22e42930aa29f30c638bf2e6b5 | 0ffe34847614f7fecf7018700fe4ad3620e40aed | refs/heads/master | 2022-04-09T19:09:01.458716 | 2020-03-03T11:28:56 | 2020-03-03T11:28:56 | 171,450,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,344 | java | package com.tsitsing.translation.animation;
import android.animation.ValueAnimator;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.View;
import android.view.animation.LinearInterpolator;
/**
* Created by bigwen on 2016/1/14.
*/
public class ManyCircle extends View {
private Paint paint;
private int maxRadius = 16;
private ValueAnimator valueAnimator;
private boolean init = false;
private float radiu = 10;
public ManyCircle(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public ManyCircle(Context context) {
super(context);
init();
}
private void init() {
paint = new Paint();
paint.setColor(Color.RED);
}
private int width;
private int height;
private float pi2;
private float r;
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (!init) {
init = true;
start();
width = getWidth() / 2;
height = getHeight() / 2;
pi2 = 2*(float) Math.PI;
r = width-maxRadius;
}
canvas.drawCircle((float) (width + r * Math.sin(0)), (float) (height + r * Math.cos(0)), f(radiu+0), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8)), (float) (height + r * Math.cos(pi2 /8)), f(radiu+2), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8*2)), (float) (height + r * Math.cos(pi2 /8*2)), f(radiu+4), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8*3)), (float) (height + r * Math.cos(pi2 /8*3)), f(radiu+6), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8*4)), (float) (height + r * Math.cos(pi2 /8*4)), f(radiu+8), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8*5)), (float) (height + r * Math.cos(pi2 /8*5)), f(radiu+10), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8*6)), (float) (height + r * Math.cos(pi2 /8*6)), f(radiu+12), paint);
canvas.drawCircle((float) (width + r * Math.sin(pi2 /8*7)), (float) (height + r * Math.cos(pi2 /8*7)), f(radiu+14), paint);
if (valueAnimator.isRunning()) {
radiu = (float) valueAnimator.getAnimatedValue();
invalidate();
}
}
private void start() {
if (valueAnimator == null) {
valueAnimator = ValueAnimator.ofFloat(0, maxRadius);
valueAnimator.setInterpolator(new LinearInterpolator());
valueAnimator.setDuration(1000);
valueAnimator.start();
}else {
valueAnimator.start();
}
postDelayed(new Runnable() {
@Override
public void run() {
start();
invalidate();
}
}, valueAnimator.getDuration());
invalidate();
}
//分段函数
private float f(float x) {
if (x <=maxRadius / 2) {
return x;
} else if(x<maxRadius){
return maxRadius - x;
}else
if(x<maxRadius*3/2)
{
return x-maxRadius;
}else {
return 2*maxRadius-x;
}
}
}
| [
"[email protected]"
] | |
10d2618ad0bd0b089a59052f9de4623ddf8436ee | 1a1c753771c629900cee6b897be44b5620aba506 | /src/main/java/amongusminecraftblock/block/BlockCarpetpolus.java | 1bdd5ada3185122ef91a01d2627ed2865948d1bc | [] | no_license | Soeiz/Among-Us-blocks | 330e87b4ab90a19a720aa7d02569a48b68fee2b6 | cb8b1e7a4877ba683b101b0429762e51456fcd6e | refs/heads/master | 2023-01-18T18:12:21.491131 | 2020-11-27T21:54:07 | 2020-11-27T21:54:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,890 | java |
package amongusminecraftblock.block;
import net.minecraftforge.fml.relauncher.SideOnly;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.Item;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.block.material.Material;
import net.minecraft.block.SoundType;
import net.minecraft.block.Block;
import amongusminecraftblock.creativetab.TabAMONGUSminecraftBlocksTEST;
import amongusminecraftblock.ElementsAmongusminecraftblockMod;
@ElementsAmongusminecraftblockMod.ModElement.Tag
public class BlockCarpetpolus extends ElementsAmongusminecraftblockMod.ModElement {
@GameRegistry.ObjectHolder("amongusminecraftblock:carpetpolus")
public static final Block block = null;
public BlockCarpetpolus(ElementsAmongusminecraftblockMod instance) {
super(instance, 45);
}
@Override
public void initElements() {
elements.blocks.add(() -> new BlockCustom().setRegistryName("carpetpolus"));
elements.items.add(() -> new ItemBlock(block).setRegistryName(block.getRegistryName()));
}
@SideOnly(Side.CLIENT)
@Override
public void registerModels(ModelRegistryEvent event) {
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0,
new ModelResourceLocation("amongusminecraftblock:carpetpolus", "inventory"));
}
public static class BlockCustom extends Block {
public BlockCustom() {
super(Material.CARPET);
setUnlocalizedName("carpetpolus");
setSoundType(SoundType.CLOTH);
setHardness(1F);
setResistance(10F);
setLightLevel(0F);
setLightOpacity(255);
setCreativeTab(TabAMONGUSminecraftBlocksTEST.tab);
}
}
}
| [
"[email protected]"
] | |
c67102b0ad04bc040e5470e861d71c0509c04390 | dae97725f0664c15ad6f8c77c78a7ba108cb368a | /src/main/java/com/resourses/tool/ftp/FtpUtils.java | b87885426244f10e2a665a7abc678b2850a5d8e2 | [] | no_license | 15213222722/resources-demo | af2ac7a671e95b8fd3bf9301b09b52615085721e | 5eb97ff31d622c73499a394f699eb744210a94b4 | refs/heads/master | 2022-12-09T23:25:22.881857 | 2020-03-24T01:22:21 | 2020-03-24T01:22:21 | 153,251,420 | 0 | 0 | null | 2022-12-06T00:41:45 | 2018-10-16T08:36:43 | Java | UTF-8 | Java | false | false | 10,747 | java | package com.resourses.tool.ftp;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.MalformedURLException;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;
public class FtpUtils {
//ftp服务器地址
public String hostname = "172.19.10.12";
//ftp服务器端口号默认为21
public Integer port = 21 ;
//ftp登录账号
public String username = "ftp";
//ftp登录密码
public String password = "ecftp";
public FTPClient ftpClient = null;
/**
* 初始化ftp服务器
*/
public void initFtpClient() {
ftpClient = new FTPClient();
ftpClient.setControlEncoding("utf-8");
try {
System.out.println("connecting...ftp服务器:"+this.hostname+":"+this.port);
ftpClient.connect(hostname, port); //连接ftp服务器
ftpClient.login(username, password); //登录ftp服务器
int replyCode = ftpClient.getReplyCode(); //是否成功登录服务器
if(!FTPReply.isPositiveCompletion(replyCode)){
System.out.println("connect failed...ftp服务器:"+this.hostname+":"+this.port);
}
System.out.println("connect successful...ftp服务器:"+this.hostname+":"+this.port);
}catch (MalformedURLException e) {
e.printStackTrace();
}catch (IOException e) {
e.printStackTrace();
}
}
/**
* 上传文件
* @param pathname ftp服务保存地址
* @param fileName 上传到ftp的文件名
* @param originfilename 待上传文件的名称(绝对地址) *
* @return
*/
public boolean uploadFile( String pathname, String fileName,String originfilename){
boolean flag = false;
InputStream inputStream = null;
try{
System.out.println("开始上传文件");
inputStream = new FileInputStream(new File(originfilename));
initFtpClient();
//ftpClient.enterLocalPassiveMode();
ftpClient.setFileType(ftpClient.BINARY_FILE_TYPE);
CreateDirecroty(pathname);
ftpClient.makeDirectory(pathname);
ftpClient.changeWorkingDirectory(pathname);
flag = ftpClient.storeFile(fileName, inputStream);
inputStream.close();
ftpClient.logout();
System.out.println("上传文件成功"+flag);
}catch (Exception e) {
System.out.println("上传文件失败");
e.printStackTrace();
}finally{
if(ftpClient.isConnected()){
try{
ftpClient.disconnect();
}catch(IOException e){
e.printStackTrace();
}
}
if(null != inputStream){
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return flag;
}
/**
* 上传文件
* @param pathname ftp服务保存地址
* @param fileName 上传到ftp的文件名
* @param inputStream 输入文件流
* @return
*/
public boolean uploadFile( String pathname, String fileName,InputStream inputStream){
boolean flag = false;
try{
System.out.println("开始上传文件");
initFtpClient();
ftpClient.enterLocalPassiveMode();
ftpClient.setFileType(ftpClient.BINARY_FILE_TYPE);
CreateDirecroty(pathname);
ftpClient.makeDirectory(pathname);
ftpClient.changeWorkingDirectory(pathname);
flag = ftpClient.storeFile(fileName, inputStream);
inputStream.close();
ftpClient.logout();
System.out.println("上传文件成功" + flag);
}catch (Exception e) {
System.out.println("上传文件失败");
e.printStackTrace();
}finally{
if(ftpClient.isConnected()){
try{
ftpClient.disconnect();
}catch(IOException e){
e.printStackTrace();
}
}
if(null != inputStream){
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return flag;
}
//改变目录路径
public boolean changeWorkingDirectory(String directory) {
boolean flag = true;
try {
flag = ftpClient.changeWorkingDirectory(directory);
if (flag) {
System.out.println("进入文件夹" + directory + " 成功!");
} else {
System.out.println("进入文件夹" + directory + " 失败!开始创建文件夹");
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
return flag;
}
//创建多层目录文件,如果有ftp服务器已存在该文件,则不创建,如果无,则创建
public boolean CreateDirecroty(String remote) throws IOException {
boolean success = true;
String directory = remote + "/";
// 如果远程目录不存在,则递归创建远程服务器目录
if (!directory.equalsIgnoreCase("/") && !changeWorkingDirectory(new String(directory))) {
int start = 0;
int end = 0;
if (directory.startsWith("/")) {
start = 1;
} else {
start = 0;
}
end = directory.indexOf("/", start);
String path = "";
String paths = "";
while (true) {
String subDirectory = new String(remote.substring(start, end).getBytes("GBK"), "iso-8859-1");
path = path + "/" + subDirectory;
if (!existFile(path)) {
if (makeDirectory(subDirectory)) {
changeWorkingDirectory(subDirectory);
} else {
System.out.println("创建目录[" + subDirectory + "]失败");
changeWorkingDirectory(subDirectory);
}
} else {
changeWorkingDirectory(subDirectory);
}
paths = paths + "/" + subDirectory;
start = end + 1;
end = directory.indexOf("/", start);
// 检查所有目录是否创建完毕
if (end <= start) {
break;
}
}
}
return success;
}
//判断ftp服务器文件是否存在
public boolean existFile(String path) throws IOException {
boolean flag = false;
FTPFile[] ftpFileArr = ftpClient.listFiles(path);
if (ftpFileArr.length > 0) {
flag = true;
}
return flag;
}
//创建目录
public boolean makeDirectory(String dir) {
boolean flag = true;
try {
flag = ftpClient.makeDirectory(dir);
if (flag) {
System.out.println("创建文件夹" + dir + " 成功!");
} else {
System.out.println("创建文件夹" + dir + " 失败!");
}
} catch (Exception e) {
e.printStackTrace();
}
return flag;
}
/** * 下载文件 *
* @param pathname FTP服务器文件目录 *
* @param filename 文件名称 *
* @param localpath 下载后的文件路径 *
* @return */
public boolean downloadFile(String pathname, String filename, String localpath){
boolean flag = false;
OutputStream os=null;
try {
System.out.println("开始下载文件");
initFtpClient();
//切换FTP目录
ftpClient.enterLocalPassiveMode();
ftpClient.changeWorkingDirectory(pathname);
FTPFile[] ftpFiles = ftpClient.listFiles();
for(FTPFile file : ftpFiles){
if(filename.equalsIgnoreCase(file.getName())){
File localFile = new File(localpath + "/" + file.getName());
os = new FileOutputStream(localFile);
flag = ftpClient.retrieveFile(file.getName(), os);
os.close();
}
}
ftpClient.logout();
System.out.println("下载文件:" + flag);
} catch (Exception e) {
System.out.println("下载文件失败");
e.printStackTrace();
} finally{
if(ftpClient.isConnected()){
try{
ftpClient.disconnect();
}catch(IOException e){
e.printStackTrace();
}
}
if(null != os){
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return flag;
}
/** * 删除文件 *
* @param pathname FTP服务器保存目录 *
* @param filename 要删除的文件名称 *
* @return */
public boolean deleteFile(String pathname, String filename){
boolean flag = false;
try {
System.out.println("开始删除文件");
initFtpClient();
//切换FTP目录
ftpClient.changeWorkingDirectory(pathname);
ftpClient.dele(filename);
ftpClient.logout();
flag = true;
System.out.println("删除文件成功");
} catch (Exception e) {
System.out.println("删除文件失败");
e.printStackTrace();
} finally {
if(ftpClient.isConnected()){
try{
ftpClient.disconnect();
}catch(IOException e){
e.printStackTrace();
}
}
}
return flag;
}
public static void main(String[] args) {
FtpUtils ftp =new FtpUtils();
ftp.uploadFile("/1", "dgh.txt", "D://123.txt");
// ftp.downloadFile("/dgh", "123.txt", "D://");
// ftp.deleteFile("/dgh", "123.txt");
System.out.println("ok");
}
}
| [
"[email protected]"
] | |
7698e1c5c59ab4ec2f86f55e4b639740ca0d2adc | 79ff49224af8a5b7f0086f7e7ae133badc289c57 | /new_community_bird_web/app/src/main/java/com/example/new_community_bird/MainActivity.java | 6d5c437695d164df41d0ae413a81fd75e9073740 | [] | no_license | cj20010613/community_bird | ab562b7be41e906e940bdf9dc779613aa0152179 | ac78701662326db7dbbfba3b3ffef84f1a922af1 | refs/heads/main | 2023-07-17T07:49:08.364466 | 2021-08-17T15:05:54 | 2021-08-17T15:05:54 | 397,290,340 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,829 | java | package com.example.new_community_bird;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
private DBOpenHelper mDBOpenHelper;
private EditText userId_editText;
private EditText password_editText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
mDBOpenHelper = new DBOpenHelper(this);
}
private void initView() {
userId_editText = findViewById(R.id.name);
password_editText = findViewById(R.id.password);
}
//注册按钮事件,跳转到注册界面
public void register_onClick(View view) {
Intent intent = new Intent(MainActivity.this, register.class);
startActivity(intent);
}
// 登录按钮事件,进行登录
public void login_onClick(View view) {
final String userId = userId_editText.getText().toString().trim();
final String password = password_editText.getText().toString().trim();
if (!TextUtils.isEmpty(userId) && !TextUtils.isEmpty(password)) {
ArrayList<User> data = mDBOpenHelper.getAllData();
boolean match = false;
String istiao = "";//是否跳过信息登记
for (int i = 0; i < data.size(); i++) {
User user = data.get(i);
if (userId.equals(user.getId()) && password.equals(user.getPassword())) {
match = true;
istiao=user.getAge();
break;
} else {
match = false;
}
}
if (match) {
Toast.makeText(this, "登录成功", Toast.LENGTH_SHORT).show();
if (!istiao.equals("")){
Intent intent = new Intent(this, zhixun_activity.class);
startActivity(intent);
finish();//销毁此Activity
// Toast.makeText(this, "老用户可以直接进入主页面了", Toast.LENGTH_SHORT).show();
}else{
Intent intent = new Intent(this, infoActivity.class);
startActivity(intent);
finish();//销毁此Activity
}
} else {
Toast.makeText(this, "用户名或密码不正确,请重新输入", Toast.LENGTH_SHORT).show();
}
} else {
Toast.makeText(this, "请输入你的用户名或密码", Toast.LENGTH_SHORT).show();
}
}
}
| [
"[email protected]"
] | |
b2cf927d76408744cc5ebe02465bb4bf48bdf3ec | 102333cbb5540b581f12b22da45f1d66c4d85dc8 | /Odev2/src/Main/StudentManager.java | 4881c3908e319153d4a56fc2daa4d4b2f60f91d7 | [] | no_license | gulsan-celep/JavaExample | 98781b12f8b4b41ab9c8bdc6c2323825fd9bfa1e | 997d1aeae2ddbaa7f09b261aaaad72639e09dd89 | refs/heads/main | 2023-04-09T16:19:41.362461 | 2021-04-29T21:33:42 | 2021-04-29T21:33:42 | 362,952,208 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 266 | java | package Main;
public class StudentManager extends UserManager {
@Override
public void add(User user) {
System.out.println(user.getFirstName() + " student added");
}
public void buyCourse() {
System.out.println("You bought the course");
}
}
| [
"[email protected]"
] | |
9f1c7e59edd11f098a7c9cbccca72889c75635a5 | 8af1164bac943cef64e41bae312223c3c0e38114 | /results-java/shardingjdbc--sharding-jdbc/27610564e89c4fefdcd5f2308b3766f7bb290940/before/IteratorStreamResultSetMergerTest.java | 11545da6be66b4b163f8141ed8240a8977ee9ccc | [] | no_license | fracz/refactor-extractor | 3ae45c97cc63f26d5cb8b92003b12f74cc9973a9 | dd5e82bfcc376e74a99e18c2bf54c95676914272 | refs/heads/master | 2021-01-19T06:50:08.211003 | 2018-11-30T13:00:57 | 2018-11-30T13:00:57 | 87,353,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,299 | java | /*
* Copyright 1999-2015 dangdang.com.
* <p>
* 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.
* </p>
*/
package com.dangdang.ddframe.rdb.sharding.merger.iterator;
import com.dangdang.ddframe.rdb.sharding.merger.MergeEngine;
import com.dangdang.ddframe.rdb.sharding.merger.ResultSetMerger;
import com.dangdang.ddframe.rdb.sharding.parsing.parser.statement.select.SelectStatement;
import com.google.common.collect.Lists;
import org.junit.Before;
import org.junit.Test;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.List;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public final class IteratorStreamResultSetMergerTest {
private MergeEngine mergeEngine;
private List<ResultSet> resultSets;
private SelectStatement selectStatement;
@Before
public void setUp() throws SQLException {
ResultSet resultSet = mock(ResultSet.class);
ResultSetMetaData resultSetMetaData = mock(ResultSetMetaData.class);
when(resultSet.getMetaData()).thenReturn(resultSetMetaData);
resultSets = Lists.newArrayList(resultSet, mock(ResultSet.class), mock(ResultSet.class));
selectStatement = new SelectStatement();
}
@Test
public void assertNextForResultSetsAllEmpty() throws SQLException {
mergeEngine = new MergeEngine(resultSets, selectStatement);
ResultSetMerger actual = mergeEngine.merge();
assertFalse(actual.next());
}
@Test
public void assertNextForResultSetsAllNotEmpty() throws SQLException {
for (ResultSet each : resultSets) {
when(each.next()).thenReturn(true, false);
}
mergeEngine = new MergeEngine(resultSets, selectStatement);
ResultSetMerger actual = mergeEngine.merge();
assertTrue(actual.next());
assertTrue(actual.next());
assertTrue(actual.next());
assertFalse(actual.next());
}
@Test
public void assertNextForFirstResultSetsNotEmptyOnly() throws SQLException {
when(resultSets.get(0).next()).thenReturn(true, false);
mergeEngine = new MergeEngine(resultSets, selectStatement);
ResultSetMerger actual = mergeEngine.merge();
assertTrue(actual.next());
assertFalse(actual.next());
}
@Test
public void assertNextForMiddleResultSetsNotEmpty() throws SQLException {
when(resultSets.get(1).next()).thenReturn(true, false);
mergeEngine = new MergeEngine(resultSets, selectStatement);
ResultSetMerger actual = mergeEngine.merge();
assertTrue(actual.next());
assertFalse(actual.next());
}
@Test
public void assertNextForLastResultSetsNotEmptyOnly() throws SQLException {
when(resultSets.get(2).next()).thenReturn(true, false);
mergeEngine = new MergeEngine(resultSets, selectStatement);
ResultSetMerger actual = mergeEngine.merge();
assertTrue(actual.next());
assertFalse(actual.next());
}
@Test
public void assertNextForMix() throws SQLException {
resultSets.add(mock(ResultSet.class));
resultSets.add(mock(ResultSet.class));
resultSets.add(mock(ResultSet.class));
when(resultSets.get(1).next()).thenReturn(true, false);
when(resultSets.get(3).next()).thenReturn(true, false);
when(resultSets.get(5).next()).thenReturn(true, false);
mergeEngine = new MergeEngine(resultSets, selectStatement);
ResultSetMerger actual = mergeEngine.merge();
assertTrue(actual.next());
assertTrue(actual.next());
assertTrue(actual.next());
assertFalse(actual.next());
}
} | [
"[email protected]"
] | |
1a12eec60bb54db05757bf8e2c1b156212a3c27f | c78a416e58314426a27718b91b3a51e029df8941 | /android/app/src/debug/java/com/paymentapp/ReactNativeFlipper.java | ed64afc382b0abb8891827b6564f78163d288580 | [] | no_license | Rashmiranjan00/React-native-payment-integration | 38346e24c785912f96d3b7a7edae356298b8fe18 | 63347e42ce9c79da9189c05aea63244d82b95387 | refs/heads/master | 2023-01-29T15:27:23.424112 | 2020-04-07T06:28:52 | 2020-04-07T06:28:52 | 253,255,974 | 1 | 0 | null | 2023-01-26T18:59:10 | 2020-04-05T14:36:45 | JavaScript | UTF-8 | Java | false | false | 3,265 | java | /**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.paymentapp;
import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;
import com.facebook.flipper.android.utils.FlipperUtils;
import com.facebook.flipper.core.FlipperClient;
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
import com.facebook.flipper.plugins.inspector.DescriptorMapping;
import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.bridge.ReactContext;
import com.facebook.react.modules.network.NetworkingModule;
import okhttp3.OkHttpClient;
public class ReactNativeFlipper {
public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
if (FlipperUtils.shouldEnableFlipper(context)) {
final FlipperClient client = AndroidFlipperClient.getInstance(context);
client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
client.addPlugin(new ReactFlipperPlugin());
client.addPlugin(new DatabasesFlipperPlugin(context));
client.addPlugin(new SharedPreferencesFlipperPlugin(context));
client.addPlugin(CrashReporterPlugin.getInstance());
NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
NetworkingModule.setCustomClientBuilder(
new NetworkingModule.CustomClientBuilder() {
@Override
public void apply(OkHttpClient.Builder builder) {
builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
}
});
client.addPlugin(networkFlipperPlugin);
client.start();
// Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
// Hence we run if after all native modules have been initialized
ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
if (reactContext == null) {
reactInstanceManager.addReactInstanceEventListener(
new ReactInstanceManager.ReactInstanceEventListener() {
@Override
public void onReactContextInitialized(ReactContext reactContext) {
reactInstanceManager.removeReactInstanceEventListener(this);
reactContext.runOnNativeModulesQueueThread(
new Runnable() {
@Override
public void run() {
client.addPlugin(new FrescoFlipperPlugin());
}
});
}
});
} else {
client.addPlugin(new FrescoFlipperPlugin());
}
}
}
}
| [
"[email protected]"
] | |
25f7077db9edbed65489034e0ef2be73a9708c8d | 6244e4a8b0d48f58162e9e81eda251a9fb5aba5c | /src/players/GrayCat.java | 8b11c146234d3f701b97d3c5dec23001775197da | [] | no_license | mdiannna/SocketsProjectJava | 35c31b357fe1b7cdf1564b417623f66a2a210cb3 | ca8bb14692a0890c6e41c40ad67825abd8bf3f37 | refs/heads/master | 2020-03-18T09:41:50.893116 | 2018-05-26T18:26:50 | 2018-05-26T18:26:50 | 134,576,703 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 533 | 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 players;
public class GrayCat extends CatDecorator {
public GrayCat(Cat c) {
super(c);
c.setColor("gray");
System.out.println("A black cat was created");
}
@Override
public void setColor(String color) {
System.out.println("The color of gray cat can't be changed");
}
} | [
"[email protected]"
] | |
25ed3c26f73fe41cafb112063dc213f72b02c59b | d9223a2b7d53ef7405c5161b68cb8fc312302dd8 | /java/com/chartboost/sdk/impl/al.java | b46effbd1d00796c085bfe9bec0ebfc4857f3965 | [] | no_license | cpjreynolds/swar | 24e3ad2ec35cec55afe8c620c2d90c08654f061c | 39911c3580b37e5f3425e0e13d5e4341412d3b0e | refs/heads/master | 2021-01-10T12:41:58.223328 | 2015-12-01T23:51:14 | 2015-12-01T23:51:14 | 47,224,636 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,234 | java | package com.chartboost.sdk.impl;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.graphics.Path;
import android.graphics.Path.Direction;
import android.graphics.RectF;
public class al extends bo {
private Paint a;
private Paint b;
private Path c;
private RectF d;
private RectF e;
private int f = 0;
private float g;
private float h;
public al(Context context) {
super(context);
a(context);
}
private void a(Context context) {
float f = context.getResources().getDisplayMetrics().density;
this.g = 4.5f * f;
this.a = new Paint();
this.a.setColor(-1);
this.a.setStyle(Style.STROKE);
this.a.setStrokeWidth(f * 1.0f);
this.a.setAntiAlias(true);
this.b = new Paint();
this.b.setColor(-855638017);
this.b.setStyle(Style.FILL);
this.b.setAntiAlias(true);
this.c = new Path();
this.e = new RectF();
this.d = new RectF();
}
protected void a(Canvas canvas) {
float f = getContext().getResources().getDisplayMetrics().density;
this.d.set(0.0f, 0.0f, (float) getWidth(), (float) getHeight());
int min = Math.min(1, Math.round(f * 0.5f));
this.d.inset((float) min, (float) min);
this.c.reset();
this.c.addRoundRect(this.d, this.g, this.g, Direction.CW);
canvas.save();
canvas.clipPath(this.c);
canvas.drawColor(this.f);
this.e.set(this.d);
this.e.right = ((this.e.right - this.e.left) * this.h) + this.e.left;
canvas.drawRect(this.e, this.b);
canvas.restore();
canvas.drawRoundRect(this.d, this.g, this.g, this.a);
}
public void a(int i) {
this.f = i;
invalidate();
}
public void b(int i) {
this.a.setColor(i);
invalidate();
}
public void c(int i) {
this.b.setColor(i);
invalidate();
}
public void a(float f) {
this.h = f;
if (getVisibility() != 8) {
invalidate();
}
}
public void b(float f) {
this.g = f;
}
}
| [
"[email protected]"
] | |
70e9f69ebab489a4621debc1f716e3c24c76ace4 | 1eb18c9e5543834ad5609c99a659a6ddc1a4c802 | /app/src/main/java/com/mx/sy/adapter/DishesSpecifAdapter.java | 31ed9aae8e0d91cca3941a0e7e9adb6467237d52 | [] | no_license | lishouping/MxCodeAndroid | 20e3bdde4f0882e3a432e6302a57a13ec9d438d6 | 626fe5dffc5c6696e5c400b312e82200aeccd733 | refs/heads/master | 2021-06-08T19:48:32.087726 | 2019-11-17T11:02:02 | 2019-11-17T11:02:02 | 139,582,058 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 869 | java | package com.mx.sy.adapter;
import android.support.annotation.Nullable;
import android.support.v4.content.ContextCompat;
import com.chad.library.adapter.base.BaseQuickAdapter;
import com.chad.library.adapter.base.BaseViewHolder;
import com.mx.sy.R;
import java.util.HashMap;
import java.util.List;
/**
* @author lenovo
*/
public class DishesSpecifAdapter extends BaseQuickAdapter<HashMap<String,String>,BaseViewHolder>{
public DishesSpecifAdapter(int layoutResId, @Nullable List<HashMap<String, String>> data) {
super(layoutResId, data);
}
@Override
protected void convert(BaseViewHolder helper, HashMap<String, String> item) {
helper.setText(R.id.tv_partition_name,"正常量");
helper.setText(R.id.tv_crate_time,"12").setTextColor(R.id.tv_crate_time, ContextCompat.getColor(mContext,R.color.red_btn_bg_color));
}
}
| [
"[email protected]"
] | |
2d437870db2e96954c0ecff9e9595c04558995b5 | c0bd54702db658087e83b0754266ecde0e5d80f7 | /branches/working/src/domein/KaartKleur.java | 2109cbd2a20eb16fed65e1f0a8f083a672e6a684 | [] | no_license | BGCX262/zwartjas-svn-to-git | 1c998cae6e2f5b3b16a6a74763f600023ba5c4b7 | f8e2d48591ca8be8473f18044a5718df5ba6a7ac | refs/heads/master | 2021-01-20T05:32:02.050462 | 2015-08-23T06:54:56 | 2015-08-23T06:54:56 | 41,258,942 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 99 | java | package domein;
public enum KaartKleur {
Harten,
Schoppen,
Ruiten,
Klaveren,
Geen
}
| [
"[email protected]"
] | |
59aa42304068e3cd475f71e922ff9f10d3f090a1 | a24184aca11ab7cfce7d290422d25fa2224f9289 | /app/src/main/java/com/civi/jni/TypeConvertion.java | 244ea10c660c178cf9e0685b8bc572d654125c26 | [] | no_license | Opendat/U0293C4 | d325575f397fad14433600ada0f82f64db027807 | e22474041dd4a956b059cc7008fac390bd1e125e | refs/heads/master | 2021-06-09T12:30:07.790757 | 2016-11-30T19:21:42 | 2016-11-30T19:21:42 | 74,577,259 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 986 | java | package com.civi.jni;
public class TypeConvertion {
private static final String TAG = "SerialPort";
public static byte GetByte(byte src){
byte bRet = 0x10;
if((src >= 0x30) && (src <= 0x39)){
bRet = (byte)(src - 0x30);
}
else if((src >= 0x41) && (src <= 0x46)){
bRet = (byte)(src - 0x41 + 0x0A);
}
return bRet;
}
public static int String2Hex(String strData, byte[] desData){
int length = 0;
strData = strData.toUpperCase();
byte[] strByte = strData.getBytes();
for(int i=0; i<strData.length(); i+=2){
desData[i/2] = (byte)(GetByte(strByte[i])*0x10 + GetByte(strByte[i+1]));
length++;
}
return length;
}
public static String Bytes2HexString(byte[] b, int length) {
String ret = "";
for (int i = 0; i < length; i++) {
String hex = Integer.toHexString(b[i] & 0xFF);
if (hex.length() == 1) {
hex = "0" + hex;
}
ret += hex.toUpperCase();
ret += " ";
}
return ret;
}
}
| [
"[email protected]"
] | |
492a587b1e8ed4bfce69a85cc0bd64192bbabba9 | 751074944bd92b5e355b3dfe8f945fa208114e7a | /souvenir/src/main/java/com/mtsmda/souvenir/model/SouvenirAudit.java | 36fc0679bcbc6208a4c9bafeadadfd98dc2a0a27 | [] | no_license | akbars95/springExperiments_03052015 | f4ae64653cf87dbded361afbf9ee21af07def19c | 7f89a215fda4ecf271fe2b28c1ba5288852feabe | refs/heads/master | 2020-06-05T01:17:46.198821 | 2016-02-26T15:59:55 | 2016-02-26T16:00:02 | 34,976,279 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,747 | java | package com.mtsmda.souvenir.model;
import java.io.Serializable;
import java.util.Date;
import com.mtsmda.souvenir.annotation.ModelClassInfo;
/**
* Created by c-DMITMINZ on 29.01.2016.
*/
@ModelClassInfo(tableName = "SOUVENIRS_AUDIT")
public class SouvenirAudit implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private Souvenir souvenir;
private Date createdDatetime;
private Date lastUpdateDatetime;
public SouvenirAudit() {
}
public Souvenir getSouvenir() {
return souvenir;
}
public void setSouvenir(Souvenir souvenir) {
this.souvenir = souvenir;
}
public Date getCreatedDatetime() {
return createdDatetime;
}
public void setCreatedDatetime(Date createdDatetime) {
this.createdDatetime = createdDatetime;
}
public Date getLastUpdateDatetime() {
return lastUpdateDatetime;
}
public void setLastUpdateDatetime(Date lastUpdateDatetime) {
this.lastUpdateDatetime = lastUpdateDatetime;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
SouvenirAudit that = (SouvenirAudit) o;
if (!souvenir.equals(that.souvenir))
return false;
if (!createdDatetime.equals(that.createdDatetime))
return false;
return lastUpdateDatetime.equals(that.lastUpdateDatetime);
}
@Override
public int hashCode() {
int result = souvenir.hashCode();
result = 31 * result + createdDatetime.hashCode();
result = 31 * result + lastUpdateDatetime.hashCode();
return result;
}
@Override
public String toString() {
return "SouvenirsAudit{" + "souvenir=" + souvenir + ", createdDatetime=" + createdDatetime
+ ", lastUpdateDatetime=" + lastUpdateDatetime + '}';
}
} | [
"[email protected]"
] | |
21d9868b2d50a49747e8e5c65f58ea6eb9d52c86 | 4f3bea76a3a51a96b12be4069e5d1f8f74edb1e3 | /src/main/java/fitnesse/slimx/reflection/ErrorValue.java | 278be5523dace12daf0b6ca759614dac8d70bfce | [] | no_license | dwhelan/slimx | 0be88c8c031e03c1c904134665f29254dc06ea4b | 4b84879182ec3cea2466dc356d84582431b1ae58 | refs/heads/master | 2021-01-01T19:28:47.468704 | 2010-03-01T06:28:43 | 2010-03-01T06:28:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 230 | java | package fitnesse.slimx.reflection;
public class ErrorValue {
private String message;
public ErrorValue(String message) {
this.message = message;
}
public String toString() {
return message;
}
}
| [
"[email protected]"
] | |
55511c02be49c26eee7330c9e976e46537408e90 | f4e2a45ca4d8cbfd1488821acb0680d1a663be9e | /app/src/chat/bean/ChatMoneyRobListBean.java | fa0896280f54c9db67762589869204bc7b9488c5 | [] | no_license | LightningAntMarket/lightningant-android | 2c818babc8555ae95f593cdfd48940c46778ad1e | 0f7136f4dbc785d0c87f817605c7716e97123a5a | refs/heads/master | 2021-05-10T08:25:54.981611 | 2018-10-30T06:05:33 | 2018-10-30T06:05:33 | 118,889,650 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,945 | java | package inter.baisong.chat.bean;
import java.util.List;
/**
* Created by 于德海 on 2018/1/20.
* 因变量命名较为直白,相关注释就省略了。
*
* @description
*/
public class ChatMoneyRobListBean {
private int status;
private String msg;
private List<MoneyLog> data;
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public List<MoneyLog> getData() {
return data;
}
public void setData(List<MoneyLog> data) {
this.data = data;
}
public class MoneyLog{
// private String id; 注释的都是不需要的字段 防止服务器智障 解析错误
// private String userid;
private String score;
// private String detail;
// private String type;
private String time;
// private String gid;
// private String fromuid;
// private String oid;
// private String txid;
// public String getId() {
// return id;
// }
//
// public void setId(String id) {
// this.id = id;
// }
//
// public String getUserid() {
// return userid;
// }
//
// public void setUserid(String userid) {
// this.userid = userid;
// }
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
// public String getDetail() {
// return detail;
// }
//
// public void setDetail(String detail) {
// this.detail = detail;
// }
//
// public String getType() {
// return type;
// }
//
// public void setType(String type) {
// this.type = type;
// }
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
// public String getGid() {
// return gid;
// }
//
// public void setGid(String gid) {
// this.gid = gid;
// }
//
// public String getFromuid() {
// return fromuid;
// }
//
// public void setFromuid(String fromuid) {
// this.fromuid = fromuid;
// }
//
// public String getOid() {
// return oid;
// }
//
// public void setOid(String oid) {
// this.oid = oid;
// }
//
// public String getTxid() {
// return txid;
// }
//
// public void setTxid(String txid) {
// this.txid = txid;
// }
}
}
| [
"[email protected]"
] | |
9acd96ecfa9ac8ddb7d27ad7e18be3ce9205c857 | 71d7fa367b3a4188ea5b6aa386a878a22e87e586 | /app/src/main/java/com/example/haithamayyash/mvpsimpleexample/ApiInterface.java | 9333a10eb80a07191f70802e2a17ddc4f05b5555 | [] | no_license | haythamayyash/AndroidMVPExample | 58cad9d56adcf27893f19ee17e8aff2b5b4be0d5 | fee464c3644d18b3831be77a5ac4f0be09f6b471 | refs/heads/master | 2020-04-21T00:09:13.460868 | 2019-02-05T04:04:13 | 2019-02-05T04:04:13 | 169,187,847 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 344 | java | package com.example.haithamayyash.mvpsimpleexample;
import com.example.haithamayyash.mvpsimpleexample.question_list.model.QuestionResponse;
import retrofit2.Call;
import retrofit2.http.GET;
public interface ApiInterface {
@GET("/2.2/questions?order=desc&sort=activity&site=stackoverflow")
Call<QuestionResponse> getQuestionList();
}
| [
"[email protected]"
] | |
a28a3800cdddeee99fd24e2eea792088110ea722 | e5af7917ba6ea15fcd3ce75d4a563c90453a3759 | /app/build/generated/source/r/debug/cn/jcex/R.java | 2018814cbf7ed90db65f67dc2cc7be767ed508e2 | [] | no_license | sunyaqin413/JCEX | 32df6974cf34de32ab99b45c6e9986150f453f10 | 4aae6d868e485f7700fd4248c9bee7a01c74b7f7 | refs/heads/master | 2020-03-11T17:48:58.817043 | 2018-04-19T04:05:40 | 2018-04-19T04:09:33 | 130,158,158 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 715,383 | 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 cn.jcex;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f010000;
public static final int abc_fade_out=0x7f010001;
public static final int abc_grow_fade_in_from_bottom=0x7f010002;
public static final int abc_popup_enter=0x7f010003;
public static final int abc_popup_exit=0x7f010004;
public static final int abc_shrink_fade_out_from_bottom=0x7f010005;
public static final int abc_slide_in_bottom=0x7f010006;
public static final int abc_slide_in_top=0x7f010007;
public static final int abc_slide_out_bottom=0x7f010008;
public static final int abc_slide_out_top=0x7f010009;
public static final int anim_bottom_in=0x7f01000a;
public static final int anim_bottom_out=0x7f01000b;
public static final int anim_left_in=0x7f01000c;
public static final int anim_left_out=0x7f01000d;
public static final int anim_right_in=0x7f01000e;
public static final int anim_right_out=0x7f01000f;
public static final int anim_top_in=0x7f010010;
public static final int anim_top_out=0x7f010011;
public static final int btn_shake=0x7f010012;
public static final int collapse=0x7f010013;
public static final int cycle=0x7f010014;
public static final int design_bottom_sheet_slide_in=0x7f010015;
public static final int design_bottom_sheet_slide_out=0x7f010016;
public static final int design_fab_in=0x7f010017;
public static final int design_fab_out=0x7f010018;
public static final int design_snackbar_in=0x7f010019;
public static final int design_snackbar_out=0x7f01001a;
public static final int error_frame_in=0x7f01001b;
public static final int error_x_in=0x7f01001c;
public static final int expand=0x7f01001d;
public static final int fade_in_center=0x7f01001e;
public static final int fade_out=0x7f01001f;
public static final int fade_out_center=0x7f010020;
public static final int gridview_item_anim=0x7f010021;
public static final int hold=0x7f010022;
public static final int item_alpha_in=0x7f010023;
public static final int iv_refresh=0x7f010024;
public static final int modal_in=0x7f010025;
public static final int modal_out=0x7f010026;
public static final int popup_enter=0x7f010027;
public static final int popup_out=0x7f010028;
public static final int push_buttom_in=0x7f010029;
public static final int push_buttom_out=0x7f01002a;
public static final int push_top_in_quick=0x7f01002b;
public static final int push_top_out_quick=0x7f01002c;
public static final int rotate=0x7f01002d;
public static final int rotate_down=0x7f01002e;
public static final int slide_in_bottom=0x7f01002f;
public static final int slide_in_from_left=0x7f010030;
public static final int slide_in_from_right=0x7f010031;
public static final int slide_left_in=0x7f010032;
public static final int slide_left_out=0x7f010033;
public static final int slide_out_bottom=0x7f010034;
public static final int slide_out_to_left=0x7f010035;
public static final int slide_out_to_right=0x7f010036;
public static final int slide_right_in=0x7f010037;
public static final int slide_right_out=0x7f010038;
public static final int success_bow_roate=0x7f010039;
public static final int success_mask_layout=0x7f01003a;
public static final int translate_left_in=0x7f01003b;
public static final int zoom_enter=0x7f01003c;
public static final int zoom_exit=0x7f01003d;
public static final int zoom_exit_left=0x7f01003e;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f020000;
public static final int scale_with_alpha=0x7f020001;
}
public static final class attr {
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f030000;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f030001;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f030002;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*/
public static final int actionBarSize=0x7f030003;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f030004;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f030005;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f030006;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f030007;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f030008;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f030009;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f03000a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f03000b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f03000c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionLayout=0x7f03000d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f03000e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f03000f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f030010;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f030011;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f030012;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f030013;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f030014;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f030015;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f030016;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f030017;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f030018;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f030019;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f03001a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f03001b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f03001c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f03001d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f03001e;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionProviderClass=0x7f03001f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionViewClass=0x7f030020;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f030021;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f030022;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int alertDialogCenterButtons=0x7f030023;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f030024;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f030025;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowStacking=0x7f030026;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int alpha=0x7f030027;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowHeadLength=0x7f030028;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowShaftLength=0x7f030029;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f03002a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int background=0x7f03002b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f03002c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f03002d;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundTint=0x7f03002e;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int backgroundTintMode=0x7f03002f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int barLength=0x7f030030;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_autoHide=0x7f030031;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_hideable=0x7f030032;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int behavior_overlapTop=0x7f030033;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* </table>
*/
public static final int behavior_peekHeight=0x7f030034;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_skipCollapsed=0x7f030035;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int borderWidth=0x7f030036;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f030037;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f030038;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f030039;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f03003a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f03003b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f03003c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f03003d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f03003e;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int buttonGravity=0x7f03003f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f030040;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonStyle=0x7f030041;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f030042;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int buttonTint=0x7f030043;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int buttonTintMode=0x7f030044;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f030045;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f030046;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int closeIcon=0x7f030047;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f030048;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int collapseContentDescription=0x7f030049;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int collapseIcon=0x7f03004a;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int collapsedTitleGravity=0x7f03004b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f03004c;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int color=0x7f03004d;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorAccent=0x7f03004e;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorBackgroundFloating=0x7f03004f;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorButtonNormal=0x7f030050;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlActivated=0x7f030051;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlHighlight=0x7f030052;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlNormal=0x7f030053;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorPrimary=0x7f030054;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorPrimaryDark=0x7f030055;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorSwitchThumbNormal=0x7f030056;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int commitIcon=0x7f030057;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetEnd=0x7f030058;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetEndWithActions=0x7f030059;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetLeft=0x7f03005a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetRight=0x7f03005b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetStart=0x7f03005c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetStartWithNavigation=0x7f03005d;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int contentScrim=0x7f03005e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int controlBackground=0x7f03005f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int counterEnabled=0x7f030060;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int counterMaxLength=0x7f030061;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f030062;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f030063;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f030064;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int defaultQueryHint=0x7f030065;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int delay_time=0x7f030066;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dhDrawable1=0x7f030067;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dhDrawable2=0x7f030068;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dhDrawable3=0x7f030069;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dialogPreferredPadding=0x7f03006a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dialogTheme=0x7f03006b;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>disableHome</td><td>20</td><td></td></tr>
* <tr><td>homeAsUp</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>showCustom</td><td>10</td><td></td></tr>
* <tr><td>showHome</td><td>2</td><td></td></tr>
* <tr><td>showTitle</td><td>8</td><td></td></tr>
* <tr><td>useLogo</td><td>1</td><td></td></tr>
* </table>
*/
public static final int displayOptions=0x7f03006c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int divider=0x7f03006d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f03006e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dividerPadding=0x7f03006f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dividerVertical=0x7f030070;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int drawableSize=0x7f030071;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f030072;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f030073;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dropdownListPreferredItemHeight=0x7f030074;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextBackground=0x7f030075;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f030076;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextStyle=0x7f030077;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int elevation=0x7f030078;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int errorEnabled=0x7f030079;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f03007a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f03007b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int expanded=0x7f03007c;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int expandedTitleGravity=0x7f03007d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMargin=0x7f03007e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginBottom=0x7f03007f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginEnd=0x7f030080;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginStart=0x7f030081;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginTop=0x7f030082;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f030083;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>mini</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fabSize=0x7f030084;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int fghBackColor=0x7f030085;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fghBallSpeed=0x7f030086;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int fghBlockHorizontalNum=0x7f030087;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int fghLeftColor=0x7f030088;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghMaskTextBottom=0x7f030089;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fghMaskTextSizeBottom=0x7f03008a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fghMaskTextSizeTop=0x7f03008b;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghMaskTextTop=0x7f03008c;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghMaskTextTopPull=0x7f03008d;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghMaskTextTopRelease=0x7f03008e;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int fghMiddleColor=0x7f03008f;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int fghRightColor=0x7f030090;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghTextGameOver=0x7f030091;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghTextLoading=0x7f030092;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghTextLoadingFailed=0x7f030093;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fghTextLoadingFinished=0x7f030094;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int foregroundInsidePadding=0x7f030095;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int fromDeg=0x7f030096;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int gapBetweenBars=0x7f030097;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int goIcon=0x7f030098;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int headerLayout=0x7f030099;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int height=0x7f03009a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hideOnContentScroll=0x7f03009b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hintAnimationEnabled=0x7f03009c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hintEnabled=0x7f03009d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f03009e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f03009f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int homeLayout=0x7f0300a0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int icon=0x7f0300a1;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int iconifiedByDefault=0x7f0300a2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f0300a3;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>0</td><td></td></tr>
* <tr><td>center_crop</td><td>1</td><td></td></tr>
* <tr><td>center_inside</td><td>2</td><td></td></tr>
* <tr><td>fit_center</td><td>3</td><td></td></tr>
* <tr><td>fit_end</td><td>4</td><td></td></tr>
* <tr><td>fit_start</td><td>5</td><td></td></tr>
* <tr><td>fit_xy</td><td>6</td><td></td></tr>
* <tr><td>matrix</td><td>7</td><td></td></tr>
* </table>
*/
public static final int image_scale_type=0x7f0300a4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f0300a5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int indicator_drawable_selected=0x7f0300a6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int indicator_drawable_unselected=0x7f0300a7;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int indicator_height=0x7f0300a8;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int indicator_margin=0x7f0300a9;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int indicator_width=0x7f0300aa;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int initialActivityCount=0x7f0300ab;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int inner_corner_color=0x7f0300ac;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int inner_corner_length=0x7f0300ad;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int inner_corner_width=0x7f0300ae;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int inner_height=0x7f0300af;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int inner_margintop=0x7f0300b0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int inner_scan_bitmap=0x7f0300b1;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int inner_scan_iscircle=0x7f0300b2;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int inner_scan_speed=0x7f0300b3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int inner_width=0x7f0300b4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f0300b5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int isLightTheme=0x7f0300b6;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int is_auto_play=0x7f0300b7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemBackground=0x7f0300b8;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int itemIconTint=0x7f0300b9;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemPadding=0x7f0300ba;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f0300bb;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int itemTextColor=0x7f0300bc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int keylines=0x7f0300bd;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout=0x7f0300be;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layoutManager=0x7f0300bf;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_anchor=0x7f0300c0;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int layout_anchorGravity=0x7f0300c1;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layout_behavior=0x7f0300c2;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>parallax</td><td>2</td><td></td></tr>
* <tr><td>pin</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_collapseMode=0x7f0300c3;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_collapseParallaxMultiplier=0x7f0300c4;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>77</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>3</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int layout_dodgeInsetEdges=0x7f0300c5;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>3</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int layout_insetEdge=0x7f0300c6;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_keyline=0x7f0300c7;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>enterAlways</td><td>4</td><td></td></tr>
* <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr>
* <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr>
* <tr><td>scroll</td><td>1</td><td></td></tr>
* <tr><td>snap</td><td>10</td><td></td></tr>
* </table>
*/
public static final int layout_scrollFlags=0x7f0300c8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f0300c9;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int layout_srlBackgroundColor=0x7f0300ca;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>FixedBehind</td><td>2</td><td></td></tr>
* <tr><td>FixedFront</td><td>3</td><td></td></tr>
* <tr><td>MatchLayout</td><td>4</td><td></td></tr>
* <tr><td>Scale</td><td>1</td><td></td></tr>
* <tr><td>Translate</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_srlSpinnerStyle=0x7f0300cb;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f0300cc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f0300cd;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listItemLayout=0x7f0300ce;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listLayout=0x7f0300cf;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0300d0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f0300d1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeight=0x7f0300d2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeightLarge=0x7f0300d3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeightSmall=0x7f0300d4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemPaddingLeft=0x7f0300d5;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemPaddingRight=0x7f0300d6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int logo=0x7f0300d7;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int logoDescription=0x7f0300d8;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int matProg_barColor=0x7f0300d9;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int matProg_barSpinCycleTime=0x7f0300da;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int matProg_barWidth=0x7f0300db;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int matProg_circleRadius=0x7f0300dc;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int matProg_fillRadius=0x7f0300dd;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int matProg_linearProgress=0x7f0300de;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int matProg_progressIndeterminate=0x7f0300df;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int matProg_rimColor=0x7f0300e0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int matProg_rimWidth=0x7f0300e1;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int matProg_spinSpeed=0x7f0300e2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxActionInlineWidth=0x7f0300e3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxButtonHeight=0x7f0300e4;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int measureWithLargestChild=0x7f0300e5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int menu=0x7f0300e6;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int mhPrimaryColor=0x7f0300e7;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int mhShadowColor=0x7f0300e8;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int mhShadowRadius=0x7f0300e9;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int mhShowBezierWave=0x7f0300ea;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int msvPrimaryColor=0x7f0300eb;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int msvViewportHeight=0x7f0300ec;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f0300ed;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int mvAnimDuration=0x7f0300ee;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom_to_top</td><td>0</td><td></td></tr>
* <tr><td>left_to_right</td><td>3</td><td></td></tr>
* <tr><td>right_to_left</td><td>2</td><td></td></tr>
* <tr><td>top_to_bottom</td><td>1</td><td></td></tr>
* </table>
*/
public static final int mvDirection=0x7f0300ef;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>left</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>2</td><td></td></tr>
* </table>
*/
public static final int mvGravity=0x7f0300f0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int mvInterval=0x7f0300f1;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int mvSingleLine=0x7f0300f2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int mvTextColor=0x7f0300f3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int mvTextSize=0x7f0300f4;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int mwhAlphaColor=0x7f0300f5;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int mwhCloseColor=0x7f0300f6;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int mwhStartColor=0x7f0300f7;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int mwhWaveHeight=0x7f0300f8;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int mwhWaves=0x7f0300f9;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int navigationContentDescription=0x7f0300fa;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0300fb;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>listMode</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>tabMode</td><td>2</td><td></td></tr>
* </table>
*/
public static final int navigationMode=0x7f0300fc;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int overlapAnchor=0x7f0300fd;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingBottomNoButtons=0x7f0300fe;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingEnd=0x7f0300ff;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingStart=0x7f030100;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingTopNoTitle=0x7f030101;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int panelBackground=0x7f030102;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f030103;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int panelMenuListWidth=0x7f030104;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int passwordToggleContentDescription=0x7f030105;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f030106;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int passwordToggleEnabled=0x7f030107;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int passwordToggleTint=0x7f030108;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int passwordToggleTintMode=0x7f030109;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int phAccentColor=0x7f03010a;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int phPrimaryColor=0x7f03010b;
/**
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int pivotX=0x7f03010c;
/**
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int pivotY=0x7f03010d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f03010e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupTheme=0x7f03010f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f030110;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int preserveIconSpacing=0x7f030111;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int pressedTranslationZ=0x7f030112;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int progressBarPadding=0x7f030113;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f030114;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int queryBackground=0x7f030115;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int queryHint=0x7f030116;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f030117;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f030118;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f030119;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f03011a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int reverseLayout=0x7f03011b;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int rippleColor=0x7f03011c;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>x</td><td>0</td><td></td></tr>
* <tr><td>y</td><td>1</td><td></td></tr>
* <tr><td>z</td><td>2</td><td></td></tr>
* </table>
*/
public static final int rollType=0x7f03011d;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int scrimAnimationDuration=0x7f03011e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int scrimVisibleHeightTrigger=0x7f03011f;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int scroll_time=0x7f030120;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f030121;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchIcon=0x7f030122;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f030123;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f030124;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f030125;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f030126;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int shhDropHeight=0x7f030127;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int shhEnableFadeAnimation=0x7f030128;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int shhLineWidth=0x7f030129;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int shhText=0x7f03012a;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>always</td><td>2</td><td></td></tr>
* <tr><td>collapseActionView</td><td>8</td><td></td></tr>
* <tr><td>ifRoom</td><td>1</td><td></td></tr>
* <tr><td>never</td><td>0</td><td></td></tr>
* <tr><td>withText</td><td>4</td><td></td></tr>
* </table>
*/
public static final int showAsAction=0x7f03012b;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>beginning</td><td>1</td><td></td></tr>
* <tr><td>end</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* </table>
*/
public static final int showDividers=0x7f03012c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showText=0x7f03012d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showTitle=0x7f03012e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f03012f;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int spanCount=0x7f030130;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int spinBars=0x7f030131;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f030132;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f030133;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int splitTrack=0x7f030134;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srcCompat=0x7f030135;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int srlAccentColor=0x7f030136;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int srlAnimatingColor=0x7f030137;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>FixedBehind</td><td>2</td><td></td></tr>
* <tr><td>Scale</td><td>1</td><td></td></tr>
* <tr><td>Translate</td><td>0</td><td></td></tr>
* </table>
*/
public static final int srlClassicsSpinnerStyle=0x7f030138;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlDisableContentWhenLoading=0x7f030139;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlDisableContentWhenRefresh=0x7f03013a;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlDragRate=0x7f03013b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srlDrawableArrow=0x7f03013c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlDrawableArrowSize=0x7f03013d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlDrawableMarginRight=0x7f03013e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srlDrawableProgress=0x7f03013f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlDrawableProgressSize=0x7f030140;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlDrawableSize=0x7f030141;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableAutoLoadMore=0x7f030142;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableClipFooterWhenFixedBehind=0x7f030143;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableClipHeaderWhenFixedBehind=0x7f030144;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableFooterFollowWhenLoadFinished=0x7f030145;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableFooterTranslationContent=0x7f030146;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableHeaderTranslationContent=0x7f030147;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableHorizontalDrag=0x7f030148;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableLastTime=0x7f030149;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableLoadMore=0x7f03014a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableLoadMoreWhenContentNotFull=0x7f03014b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableNestedScrolling=0x7f03014c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableOverScrollBounce=0x7f03014d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableOverScrollDrag=0x7f03014e;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnablePreviewInEditMode=0x7f03014f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnablePullToCloseTwoLevel=0x7f030150;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnablePureScrollMode=0x7f030151;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableRefresh=0x7f030152;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableScrollContentWhenLoaded=0x7f030153;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableScrollContentWhenRefreshed=0x7f030154;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int srlEnableTwoLevel=0x7f030155;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int srlFinishDuration=0x7f030156;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srlFixedFooterViewId=0x7f030157;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srlFixedHeaderViewId=0x7f030158;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int srlFloorDuration=0x7f030159;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlFloorRage=0x7f03015a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlFooterHeight=0x7f03015b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlFooterInsetStart=0x7f03015c;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlFooterMaxDragRate=0x7f03015d;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlFooterTriggerRate=0x7f03015e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlHeaderHeight=0x7f03015f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlHeaderInsetStart=0x7f030160;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlHeaderMaxDragRate=0x7f030161;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlHeaderTriggerRate=0x7f030162;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlMaxRage=0x7f030163;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int srlNormalColor=0x7f030164;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int srlPrimaryColor=0x7f030165;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int srlReboundDuration=0x7f030166;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int srlRefreshRage=0x7f030167;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlTextSizeTime=0x7f030168;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlTextSizeTitle=0x7f030169;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int srlTextTimeMarginTop=0x7f03016a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int stackFromEnd=0x7f03016b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_above_anchor=0x7f03016c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_collapsed=0x7f03016d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_collapsible=0x7f03016e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int statusBarBackground=0x7f03016f;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarScrim=0x7f030170;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f030171;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int submitBackground=0x7f030172;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int subtitle=0x7f030173;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f030174;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int subtitleTextColor=0x7f030175;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f030176;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f030177;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int switchMinWidth=0x7f030178;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int switchPadding=0x7f030179;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchStyle=0x7f03017a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f03017b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabBackground=0x7f03017c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabContentStart=0x7f03017d;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>fill</td><td>0</td><td></td></tr>
* </table>
*/
public static final int tabGravity=0x7f03017e;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabIndicatorColor=0x7f03017f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabIndicatorHeight=0x7f030180;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabMaxWidth=0x7f030181;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabMinWidth=0x7f030182;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fixed</td><td>1</td><td></td></tr>
* <tr><td>scrollable</td><td>0</td><td></td></tr>
* </table>
*/
public static final int tabMode=0x7f030183;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPadding=0x7f030184;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingBottom=0x7f030185;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingEnd=0x7f030186;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingStart=0x7f030187;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingTop=0x7f030188;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabSelectedTextColor=0x7f030189;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f03018a;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabTextColor=0x7f03018b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int textAllCaps=0x7f03018c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f03018d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f03018e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f03018f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f030190;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f030191;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f030192;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f030193;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f030194;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorError=0x7f030195;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f030196;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int thPrimaryColor=0x7f030197;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int theme=0x7f030198;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int thickness=0x7f030199;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int thumbTextPadding=0x7f03019a;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int thumbTint=0x7f03019b;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int thumbTintMode=0x7f03019c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tickMark=0x7f03019d;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tickMarkTint=0x7f03019e;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int tickMarkTintMode=0x7f03019f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int title=0x7f0301a0;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int titleEnabled=0x7f0301a1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMargin=0x7f0301a2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginBottom=0x7f0301a3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginEnd=0x7f0301a4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginStart=0x7f0301a5;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginTop=0x7f0301a6;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMargins=0x7f0301a7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0301a8;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int titleTextColor=0x7f0301a9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f0301aa;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int title_background=0x7f0301ab;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int title_height=0x7f0301ac;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int title_textcolor=0x7f0301ad;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int title_textsize=0x7f0301ae;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int toDeg=0x7f0301af;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarId=0x7f0301b0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f0301b1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f0301b2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int track=0x7f0301b3;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int trackTint=0x7f0301b4;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int trackTintMode=0x7f0301b5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int useCompatPadding=0x7f0301b6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0301b7;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBar=0x7f0301b8;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBarOverlay=0x7f0301b9;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionModeOverlay=0x7f0301ba;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedHeightMajor=0x7f0301bb;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedHeightMinor=0x7f0301bc;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedWidthMajor=0x7f0301bd;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedWidthMinor=0x7f0301be;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowMinWidthMajor=0x7f0301bf;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowMinWidthMinor=0x7f0301c0;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowNoTitle=0x7f0301c1;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int wshAccentColor=0x7f0301c2;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int wshPrimaryColor=0x7f0301c3;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int wshShadowColor=0x7f0301c4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int wshShadowRadius=0x7f0301c5;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f040000;
public static final int abc_allow_stacked_button_bar=0x7f040001;
public static final int abc_config_actionMenuItemAllCaps=0x7f040002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f040003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f040004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f050000;
public static final int abc_background_cache_hint_selector_material_light=0x7f050001;
public static final int abc_btn_colored_borderless_text_material=0x7f050002;
public static final int abc_btn_colored_text_material=0x7f050003;
public static final int abc_color_highlight_material=0x7f050004;
public static final int abc_hint_foreground_material_dark=0x7f050005;
public static final int abc_hint_foreground_material_light=0x7f050006;
public static final int abc_input_method_navigation_guard=0x7f050007;
public static final int abc_primary_text_disable_only_material_dark=0x7f050008;
public static final int abc_primary_text_disable_only_material_light=0x7f050009;
public static final int abc_primary_text_material_dark=0x7f05000a;
public static final int abc_primary_text_material_light=0x7f05000b;
public static final int abc_search_url_text=0x7f05000c;
public static final int abc_search_url_text_normal=0x7f05000d;
public static final int abc_search_url_text_pressed=0x7f05000e;
public static final int abc_search_url_text_selected=0x7f05000f;
public static final int abc_secondary_text_material_dark=0x7f050010;
public static final int abc_secondary_text_material_light=0x7f050011;
public static final int abc_tint_btn_checkable=0x7f050012;
public static final int abc_tint_default=0x7f050013;
public static final int abc_tint_edittext=0x7f050014;
public static final int abc_tint_seek_thumb=0x7f050015;
public static final int abc_tint_spinner=0x7f050016;
public static final int abc_tint_switch_thumb=0x7f050017;
public static final int abc_tint_switch_track=0x7f050018;
public static final int accent_material_dark=0x7f050019;
public static final int accent_material_light=0x7f05001a;
public static final int background_floating_material_dark=0x7f05001b;
public static final int background_floating_material_light=0x7f05001c;
public static final int background_material_dark=0x7f05001d;
public static final int background_material_light=0x7f05001e;
public static final int bgColor_actionsheet_cancel_nor=0x7f05001f;
public static final int bgColor_alert_button_press=0x7f050020;
public static final int bgColor_alertview_alert=0x7f050021;
public static final int bgColor_alertview_alert_start=0x7f050022;
public static final int bgColor_divier=0x7f050023;
public static final int bgColor_overlay=0x7f050024;
public static final int bg_color=0x7f050025;
public static final int blue_btn_bg_color=0x7f050026;
public static final int blue_btn_bg_pressed_color=0x7f050027;
public static final int bright_foreground_disabled_material_dark=0x7f050028;
public static final int bright_foreground_disabled_material_light=0x7f050029;
public static final int bright_foreground_inverse_material_dark=0x7f05002a;
public static final int bright_foreground_inverse_material_light=0x7f05002b;
public static final int bright_foreground_material_dark=0x7f05002c;
public static final int bright_foreground_material_light=0x7f05002d;
public static final int button_material_dark=0x7f05002e;
public static final int button_material_light=0x7f05002f;
public static final int button_text_color=0x7f050030;
public static final int cc=0x7f050031;
public static final int colorAccent=0x7f050032;
public static final int colorPrimary=0x7f050033;
public static final int colorPrimaryDark=0x7f050034;
public static final int common_btn_normal=0x7f050035;
public static final int common_btn_press=0x7f050036;
public static final int content_bg_while=0x7f050037;
public static final int contents_text=0x7f050038;
public static final int context_bg=0x7f050039;
public static final int design_bottom_navigation_shadow_color=0x7f05003a;
public static final int design_error=0x7f05003b;
public static final int design_fab_shadow_end_color=0x7f05003c;
public static final int design_fab_shadow_mid_color=0x7f05003d;
public static final int design_fab_shadow_start_color=0x7f05003e;
public static final int design_fab_stroke_end_inner_color=0x7f05003f;
public static final int design_fab_stroke_end_outer_color=0x7f050040;
public static final int design_fab_stroke_top_inner_color=0x7f050041;
public static final int design_fab_stroke_top_outer_color=0x7f050042;
public static final int design_snackbar_background_color=0x7f050043;
public static final int design_textinput_error_color_dark=0x7f050044;
public static final int design_textinput_error_color_light=0x7f050045;
public static final int design_tint_password_toggle=0x7f050046;
public static final int dim_foreground_disabled_material_dark=0x7f050047;
public static final int dim_foreground_disabled_material_light=0x7f050048;
public static final int dim_foreground_material_dark=0x7f050049;
public static final int dim_foreground_material_light=0x7f05004a;
public static final int encode_view=0x7f05004b;
public static final int error_stroke_color=0x7f05004c;
public static final int float_transparent=0x7f05004d;
public static final int foreground_material_dark=0x7f05004e;
public static final int foreground_material_light=0x7f05004f;
public static final int gray_btn_bg_color=0x7f050050;
public static final int gray_btn_bg_pressed_color=0x7f050051;
public static final int grgray=0x7f050052;
public static final int header=0x7f050053;
public static final int help_button_view=0x7f050054;
public static final int help_view=0x7f050055;
public static final int highlighted_text_material_dark=0x7f050056;
public static final int highlighted_text_material_light=0x7f050057;
public static final int icon_grey=0x7f050058;
public static final int line_blue=0x7f050059;
public static final int line_grey=0x7f05005a;
public static final int material_blue_grey_80=0x7f05005b;
public static final int material_blue_grey_800=0x7f05005c;
public static final int material_blue_grey_90=0x7f05005d;
public static final int material_blue_grey_900=0x7f05005e;
public static final int material_blue_grey_95=0x7f05005f;
public static final int material_blue_grey_950=0x7f050060;
public static final int material_deep_teal_20=0x7f050061;
public static final int material_deep_teal_200=0x7f050062;
public static final int material_deep_teal_50=0x7f050063;
public static final int material_deep_teal_500=0x7f050064;
public static final int material_grey_100=0x7f050065;
public static final int material_grey_300=0x7f050066;
public static final int material_grey_50=0x7f050067;
public static final int material_grey_600=0x7f050068;
public static final int material_grey_800=0x7f050069;
public static final int material_grey_850=0x7f05006a;
public static final int material_grey_900=0x7f05006b;
public static final int notification_action_color_filter=0x7f05006c;
public static final int notification_icon_bg_color=0x7f05006d;
public static final int notification_material_background_media_default_color=0x7f05006e;
public static final int possible_result_points=0x7f05006f;
public static final int primary_dark_material_dark=0x7f050070;
public static final int primary_dark_material_light=0x7f050071;
public static final int primary_material_dark=0x7f050072;
public static final int primary_material_light=0x7f050073;
public static final int primary_text_default_material_dark=0x7f050074;
public static final int primary_text_default_material_light=0x7f050075;
public static final int primary_text_disabled_material_dark=0x7f050076;
public static final int primary_text_disabled_material_light=0x7f050077;
public static final int red_btn_bg_color=0x7f050078;
public static final int red_btn_bg_pressed_color=0x7f050079;
public static final int result_image_border=0x7f05007a;
public static final int result_minor_text=0x7f05007b;
public static final int result_points=0x7f05007c;
public static final int result_text=0x7f05007d;
public static final int result_view=0x7f05007e;
public static final int ripple_material_dark=0x7f05007f;
public static final int ripple_material_light=0x7f050080;
public static final int sbc_header_text=0x7f050081;
public static final int sbc_header_view=0x7f050082;
public static final int sbc_layout_view=0x7f050083;
public static final int sbc_list_item=0x7f050084;
public static final int sbc_page_number_text=0x7f050085;
public static final int sbc_snippet_text=0x7f050086;
public static final int secondary_text_default_material_dark=0x7f050087;
public static final int secondary_text_default_material_light=0x7f050088;
public static final int secondary_text_disabled_material_dark=0x7f050089;
public static final int secondary_text_disabled_material_light=0x7f05008a;
public static final int share_text=0x7f05008b;
public static final int share_view=0x7f05008c;
public static final int status_text=0x7f05008d;
public static final int status_view=0x7f05008e;
public static final int success_stroke_color=0x7f05008f;
public static final int sweet_dialog_bg_color=0x7f050090;
public static final int switch_thumb_disabled_material_dark=0x7f050091;
public static final int switch_thumb_disabled_material_light=0x7f050092;
public static final int switch_thumb_material_dark=0x7f050093;
public static final int switch_thumb_material_light=0x7f050094;
public static final int switch_thumb_normal_material_dark=0x7f050095;
public static final int switch_thumb_normal_material_light=0x7f050096;
public static final int textColor_actionsheet_msg=0x7f050097;
public static final int textColor_actionsheet_title=0x7f050098;
public static final int textColor_alert_button_cancel=0x7f050099;
public static final int textColor_alert_button_destructive=0x7f05009a;
public static final int textColor_alert_button_others=0x7f05009b;
public static final int textColor_alert_msg=0x7f05009c;
public static final int textColor_alert_title=0x7f05009d;
public static final int text_color=0x7f05009e;
public static final int text_grey=0x7f05009f;
public static final int title_bg_blue=0x7f0500a0;
public static final int title_bg_white=0x7f0500a1;
public static final int title_word_back=0x7f0500a2;
public static final int trans_success_stroke_color=0x7f0500a3;
public static final int transparent=0x7f0500a4;
public static final int viewfinder_frame=0x7f0500a5;
public static final int viewfinder_laser=0x7f0500a6;
public static final int viewfinder_mask=0x7f0500a7;
public static final int warning_stroke_color=0x7f0500a8;
public static final int word_black=0x7f0500a9;
public static final int word_blue=0x7f0500aa;
public static final int word_green=0x7f0500ab;
public static final int word_grey=0x7f0500ac;
public static final int word_orange=0x7f0500ad;
public static final int word_purple=0x7f0500ae;
public static final int word_red=0x7f0500af;
public static final int word_white=0x7f0500b0;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f060000;
public static final int abc_action_bar_content_inset_with_nav=0x7f060001;
public static final int abc_action_bar_default_height_material=0x7f060002;
public static final int abc_action_bar_default_padding_end_material=0x7f060003;
public static final int abc_action_bar_default_padding_start_material=0x7f060004;
public static final int abc_action_bar_elevation_material=0x7f060005;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006;
public static final int abc_action_bar_overflow_padding_end_material=0x7f060007;
public static final int abc_action_bar_overflow_padding_start_material=0x7f060008;
public static final int abc_action_bar_progress_bar_size=0x7f060009;
public static final int abc_action_bar_stacked_max_height=0x7f06000a;
public static final int abc_action_bar_stacked_tab_max_width=0x7f06000b;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000c;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000d;
public static final int abc_action_button_min_height_material=0x7f06000e;
public static final int abc_action_button_min_width_material=0x7f06000f;
public static final int abc_action_button_min_width_overflow_material=0x7f060010;
public static final int abc_alert_dialog_button_bar_height=0x7f060011;
public static final int abc_button_inset_horizontal_material=0x7f060012;
public static final int abc_button_inset_vertical_material=0x7f060013;
public static final int abc_button_padding_horizontal_material=0x7f060014;
public static final int abc_button_padding_vertical_material=0x7f060015;
public static final int abc_cascading_menus_min_smallest_width=0x7f060016;
public static final int abc_config_prefDialogWidth=0x7f060017;
public static final int abc_control_corner_material=0x7f060018;
public static final int abc_control_inset_material=0x7f060019;
public static final int abc_control_padding_material=0x7f06001a;
public static final int abc_dialog_fixed_height_major=0x7f06001b;
public static final int abc_dialog_fixed_height_minor=0x7f06001c;
public static final int abc_dialog_fixed_width_major=0x7f06001d;
public static final int abc_dialog_fixed_width_minor=0x7f06001e;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f06001f;
public static final int abc_dialog_list_padding_top_no_title=0x7f060020;
public static final int abc_dialog_min_width_major=0x7f060021;
public static final int abc_dialog_min_width_minor=0x7f060022;
public static final int abc_dialog_padding_material=0x7f060023;
public static final int abc_dialog_padding_top_material=0x7f060024;
public static final int abc_dialog_title_divider_material=0x7f060025;
public static final int abc_disabled_alpha_material_dark=0x7f060026;
public static final int abc_disabled_alpha_material_light=0x7f060027;
public static final int abc_dropdownitem_icon_width=0x7f060028;
public static final int abc_dropdownitem_text_padding_left=0x7f060029;
public static final int abc_dropdownitem_text_padding_right=0x7f06002a;
public static final int abc_edit_text_inset_bottom_material=0x7f06002b;
public static final int abc_edit_text_inset_horizontal_material=0x7f06002c;
public static final int abc_edit_text_inset_top_material=0x7f06002d;
public static final int abc_floating_window_z=0x7f06002e;
public static final int abc_list_item_padding_horizontal_material=0x7f06002f;
public static final int abc_panel_menu_list_width=0x7f060030;
public static final int abc_progress_bar_height_material=0x7f060031;
public static final int abc_search_view_preferred_height=0x7f060032;
public static final int abc_search_view_preferred_width=0x7f060033;
public static final int abc_seekbar_track_background_height_material=0x7f060034;
public static final int abc_seekbar_track_progress_height_material=0x7f060035;
public static final int abc_select_dialog_padding_start_material=0x7f060036;
public static final int abc_switch_padding=0x7f060037;
public static final int abc_text_size_body_1_material=0x7f060038;
public static final int abc_text_size_body_2_material=0x7f060039;
public static final int abc_text_size_button_material=0x7f06003a;
public static final int abc_text_size_caption_material=0x7f06003b;
public static final int abc_text_size_display_1_material=0x7f06003c;
public static final int abc_text_size_display_2_material=0x7f06003d;
public static final int abc_text_size_display_3_material=0x7f06003e;
public static final int abc_text_size_display_4_material=0x7f06003f;
public static final int abc_text_size_headline_material=0x7f060040;
public static final int abc_text_size_large_material=0x7f060041;
public static final int abc_text_size_medium_material=0x7f060042;
public static final int abc_text_size_menu_header_material=0x7f060043;
public static final int abc_text_size_menu_material=0x7f060044;
public static final int abc_text_size_small_material=0x7f060045;
public static final int abc_text_size_subhead_material=0x7f060046;
public static final int abc_text_size_subtitle_material_toolbar=0x7f060047;
public static final int abc_text_size_title_material=0x7f060048;
public static final int abc_text_size_title_material_toolbar=0x7f060049;
public static final int activity_horizontal_margin=0x7f06004a;
public static final int activity_vertical_margin=0x7f06004b;
public static final int alert_width=0x7f06004c;
public static final int common_bottom_bar=0x7f06004d;
public static final int common_circle_width=0x7f06004e;
public static final int common_header_bar=0x7f06004f;
public static final int common_item_height=0x7f060050;
public static final int common_item_text=0x7f060051;
public static final int content_padding_bottom=0x7f060052;
public static final int content_padding_left=0x7f060053;
public static final int content_padding_right=0x7f060054;
public static final int content_padding_top=0x7f060055;
public static final int def_height=0x7f060056;
public static final int design_appbar_elevation=0x7f060057;
public static final int design_bottom_navigation_active_item_max_width=0x7f060058;
public static final int design_bottom_navigation_active_text_size=0x7f060059;
public static final int design_bottom_navigation_elevation=0x7f06005a;
public static final int design_bottom_navigation_height=0x7f06005b;
public static final int design_bottom_navigation_item_max_width=0x7f06005c;
public static final int design_bottom_navigation_item_min_width=0x7f06005d;
public static final int design_bottom_navigation_margin=0x7f06005e;
public static final int design_bottom_navigation_shadow_height=0x7f06005f;
public static final int design_bottom_navigation_text_size=0x7f060060;
public static final int design_bottom_sheet_modal_elevation=0x7f060061;
public static final int design_bottom_sheet_peek_height_min=0x7f060062;
public static final int design_fab_border_width=0x7f060063;
public static final int design_fab_elevation=0x7f060064;
public static final int design_fab_image_size=0x7f060065;
public static final int design_fab_size_mini=0x7f060066;
public static final int design_fab_size_normal=0x7f060067;
public static final int design_fab_translation_z_pressed=0x7f060068;
public static final int design_navigation_elevation=0x7f060069;
public static final int design_navigation_icon_padding=0x7f06006a;
public static final int design_navigation_icon_size=0x7f06006b;
public static final int design_navigation_max_width=0x7f06006c;
public static final int design_navigation_padding_bottom=0x7f06006d;
public static final int design_navigation_separator_vertical_padding=0x7f06006e;
public static final int design_snackbar_action_inline_max_width=0x7f06006f;
public static final int design_snackbar_background_corner_radius=0x7f060070;
public static final int design_snackbar_elevation=0x7f060071;
public static final int design_snackbar_extra_spacing_horizontal=0x7f060072;
public static final int design_snackbar_max_width=0x7f060073;
public static final int design_snackbar_min_width=0x7f060074;
public static final int design_snackbar_padding_horizontal=0x7f060075;
public static final int design_snackbar_padding_vertical=0x7f060076;
public static final int design_snackbar_padding_vertical_2lines=0x7f060077;
public static final int design_snackbar_text_size=0x7f060078;
public static final int design_tab_max_width=0x7f060079;
public static final int design_tab_scrollable_min_width=0x7f06007a;
public static final int design_tab_text_size=0x7f06007b;
public static final int design_tab_text_size_2line=0x7f06007c;
public static final int disabled_alpha_material_dark=0x7f06007d;
public static final int disabled_alpha_material_light=0x7f06007e;
public static final int dp_10=0x7f06007f;
public static final int dp_4=0x7f060080;
public static final int dp_40=0x7f060081;
public static final int dp_72=0x7f060082;
public static final int height_actionsheet_title=0x7f060083;
public static final int height_alert_button=0x7f060084;
public static final int height_alert_title=0x7f060085;
public static final int highlight_alpha_material_colored=0x7f060086;
public static final int highlight_alpha_material_dark=0x7f060087;
public static final int highlight_alpha_material_light=0x7f060088;
public static final int hint_alpha_material_dark=0x7f060089;
public static final int hint_alpha_material_light=0x7f06008a;
public static final int hint_pressed_alpha_material_dark=0x7f06008b;
public static final int hint_pressed_alpha_material_light=0x7f06008c;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06008d;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f06008e;
public static final int item_touch_helper_swipe_escape_velocity=0x7f06008f;
public static final int marginBottom_actionsheet_msg=0x7f060090;
public static final int marginBottom_alert_msg=0x7f060091;
public static final int margin_actionsheet_left_right=0x7f060092;
public static final int margin_alert_left_right=0x7f060093;
public static final int notification_action_icon_size=0x7f060094;
public static final int notification_action_text_size=0x7f060095;
public static final int notification_big_circle_margin=0x7f060096;
public static final int notification_content_margin_start=0x7f060097;
public static final int notification_large_icon_height=0x7f060098;
public static final int notification_large_icon_width=0x7f060099;
public static final int notification_main_column_padding_top=0x7f06009a;
public static final int notification_media_narrow_margin=0x7f06009b;
public static final int notification_right_icon_size=0x7f06009c;
public static final int notification_right_side_padding_top=0x7f06009d;
public static final int notification_small_icon_background_padding=0x7f06009e;
public static final int notification_small_icon_size_as_large=0x7f06009f;
public static final int notification_subtext_size=0x7f0600a0;
public static final int notification_top_pad=0x7f0600a1;
public static final int notification_top_pad_large_text=0x7f0600a2;
public static final int progress_circle_radius=0x7f0600a3;
public static final int radius_alertview=0x7f0600a4;
public static final int size_divier=0x7f0600a5;
public static final int sp_12=0x7f0600a6;
public static final int sp_14=0x7f0600a7;
public static final int sp_16=0x7f0600a8;
public static final int textSize_actionsheet_msg=0x7f0600a9;
public static final int textSize_actionsheet_title=0x7f0600aa;
public static final int textSize_alert_button=0x7f0600ab;
public static final int textSize_alert_msg=0x7f0600ac;
public static final int textSize_alert_title=0x7f0600ad;
public static final int word_sub_title=0x7f0600ae;
public static final int word_them_btn=0x7f0600af;
public static final int word_them_least=0x7f0600b0;
public static final int word_them_little=0x7f0600b1;
public static final int word_them_main=0x7f0600b2;
public static final int word_them_ordinary=0x7f0600b3;
public static final int word_them_small=0x7f0600b4;
public static final int word_title=0x7f0600b5;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006;
public static final int abc_action_bar_item_background_material=0x7f070007;
public static final int abc_btn_borderless_material=0x7f070008;
public static final int abc_btn_check_material=0x7f070009;
public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a;
public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b;
public static final int abc_btn_colored_material=0x7f07000c;
public static final int abc_btn_default_mtrl_shape=0x7f07000d;
public static final int abc_btn_radio_material=0x7f07000e;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012;
public static final int abc_cab_background_internal_bg=0x7f070013;
public static final int abc_cab_background_top_material=0x7f070014;
public static final int abc_cab_background_top_mtrl_alpha=0x7f070015;
public static final int abc_control_background_material=0x7f070016;
public static final int abc_dialog_material_background=0x7f070017;
public static final int abc_edit_text_material=0x7f070018;
public static final int abc_ic_ab_back_material=0x7f070019;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a;
public static final int abc_ic_clear_material=0x7f07001b;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c;
public static final int abc_ic_go_search_api_material=0x7f07001d;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f;
public static final int abc_ic_menu_overflow_material=0x7f070020;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023;
public static final int abc_ic_search_api_material=0x7f070024;
public static final int abc_ic_star_black_16dp=0x7f070025;
public static final int abc_ic_star_black_36dp=0x7f070026;
public static final int abc_ic_star_black_48dp=0x7f070027;
public static final int abc_ic_star_half_black_16dp=0x7f070028;
public static final int abc_ic_star_half_black_36dp=0x7f070029;
public static final int abc_ic_star_half_black_48dp=0x7f07002a;
public static final int abc_ic_voice_search_api_material=0x7f07002b;
public static final int abc_item_background_holo_dark=0x7f07002c;
public static final int abc_item_background_holo_light=0x7f07002d;
public static final int abc_list_divider_mtrl_alpha=0x7f07002e;
public static final int abc_list_focused_holo=0x7f07002f;
public static final int abc_list_longpressed_holo=0x7f070030;
public static final int abc_list_pressed_holo_dark=0x7f070031;
public static final int abc_list_pressed_holo_light=0x7f070032;
public static final int abc_list_selector_background_transition_holo_dark=0x7f070033;
public static final int abc_list_selector_background_transition_holo_light=0x7f070034;
public static final int abc_list_selector_disabled_holo_dark=0x7f070035;
public static final int abc_list_selector_disabled_holo_light=0x7f070036;
public static final int abc_list_selector_holo_dark=0x7f070037;
public static final int abc_list_selector_holo_light=0x7f070038;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f070039;
public static final int abc_popup_background_mtrl_mult=0x7f07003a;
public static final int abc_ratingbar_indicator_material=0x7f07003b;
public static final int abc_ratingbar_material=0x7f07003c;
public static final int abc_ratingbar_small_material=0x7f07003d;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003e;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f07003f;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070040;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f070041;
public static final int abc_scrubber_track_mtrl_alpha=0x7f070042;
public static final int abc_seekbar_thumb_material=0x7f070043;
public static final int abc_seekbar_tick_mark_material=0x7f070044;
public static final int abc_seekbar_track_material=0x7f070045;
public static final int abc_spinner_mtrl_am_alpha=0x7f070046;
public static final int abc_spinner_textfield_background_material=0x7f070047;
public static final int abc_switch_thumb_material=0x7f070048;
public static final int abc_switch_track_mtrl_alpha=0x7f070049;
public static final int abc_tab_indicator_material=0x7f07004a;
public static final int abc_tab_indicator_mtrl_alpha=0x7f07004b;
public static final int abc_text_cursor_material=0x7f07004c;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004d;
public static final int abc_text_select_handle_left_mtrl_light=0x7f07004e;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f07004f;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f070050;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f070051;
public static final int abc_text_select_handle_right_mtrl_light=0x7f070052;
public static final int abc_textfield_activated_mtrl_alpha=0x7f070053;
public static final int abc_textfield_default_mtrl_alpha=0x7f070054;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070055;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f070056;
public static final int abc_textfield_search_material=0x7f070057;
public static final int abc_vector_test=0x7f070058;
public static final int avd_hide_password=0x7f070059;
public static final int avd_show_password=0x7f07005a;
public static final int bg_actionsheet_cancel=0x7f07005b;
public static final int bg_actionsheet_header=0x7f07005c;
public static final int bg_alertbutton_bottom=0x7f07005d;
public static final int bg_alertbutton_left=0x7f07005e;
public static final int bg_alertbutton_none=0x7f07005f;
public static final int bg_alertbutton_right=0x7f070060;
public static final int bg_alertview_alert=0x7f070061;
public static final int bg_button_orange=0x7f070062;
public static final int bg_search_normal=0x7f070063;
public static final int bg_view_letter_blue=0x7f070064;
public static final int black_background=0x7f070065;
public static final int blue_button_background=0x7f070066;
public static final int btn_bg_product_other=0x7f070067;
public static final int btn_home_product_more=0x7f070068;
public static final int btn_home_search_bg=0x7f070069;
public static final int btn_submit_normal=0x7f07006a;
public static final int btn_submit_pressed=0x7f07006b;
public static final int design_bottom_navigation_item_background=0x7f07006c;
public static final int design_fab_background=0x7f07006d;
public static final int design_ic_visibility=0x7f07006e;
public static final int design_ic_visibility_off=0x7f07006f;
public static final int design_password_eye=0x7f070070;
public static final int design_snackbar_background=0x7f070071;
public static final int dialog_background=0x7f070072;
public static final int error_center_x=0x7f070073;
public static final int error_circle=0x7f070074;
public static final int gray_button_background=0x7f070075;
public static final int gray_radius=0x7f070076;
public static final int navigation_empty_icon=0x7f070077;
public static final int notification_action_background=0x7f070078;
public static final int notification_bg=0x7f070079;
public static final int notification_bg_low=0x7f07007a;
public static final int notification_bg_low_normal=0x7f07007b;
public static final int notification_bg_low_pressed=0x7f07007c;
public static final int notification_bg_normal=0x7f07007d;
public static final int notification_bg_normal_pressed=0x7f07007e;
public static final int notification_icon_background=0x7f07007f;
public static final int notification_template_icon_bg=0x7f070080;
public static final int notification_template_icon_low_bg=0x7f070081;
public static final int notification_tile_bg=0x7f070082;
public static final int notify_panel_notification_icon_bg=0x7f070083;
public static final int red_button_background=0x7f070084;
public static final int sample_footer_loading=0x7f070085;
public static final int sample_footer_loading_progress=0x7f070086;
public static final int scan_light=0x7f070087;
public static final int sh_bg_btn_grey_press=0x7f070088;
public static final int sh_bg_btn_white_normal=0x7f070089;
public static final int sl_checkbox_style=0x7f07008a;
public static final int sl_common_btn_grey=0x7f07008b;
public static final int sl_footer_main_home=0x7f07008c;
public static final int sl_footer_main_join=0x7f07008d;
public static final int sl_footer_main_mine=0x7f07008e;
public static final int sl_footer_main_station=0x7f07008f;
public static final int success_bow=0x7f070090;
public static final int success_circle=0x7f070091;
public static final int text_color_button_black_white=0x7f070092;
public static final int text_color_button_grey_orange=0x7f070093;
public static final int text_color_button_white_blue=0x7f070094;
public static final int text_color_white_blue=0x7f070095;
public static final int warning_circle=0x7f070096;
public static final int warning_sigh=0x7f070097;
public static final int white_radius=0x7f070098;
}
public static final class id {
public static final int BaseQuickAdapter_databinding_support=0x7f080000;
public static final int BaseQuickAdapter_dragging_support=0x7f080001;
public static final int BaseQuickAdapter_swiping_support=0x7f080002;
public static final int BaseQuickAdapter_viewholder_support=0x7f080003;
public static final int FixedBehind=0x7f080004;
public static final int FixedFront=0x7f080005;
public static final int MatchLayout=0x7f080006;
public static final int Scale=0x7f080007;
public static final int Translate=0x7f080008;
public static final int action0=0x7f080009;
public static final int action_bar=0x7f08000a;
public static final int action_bar_activity_content=0x7f08000b;
public static final int action_bar_container=0x7f08000c;
public static final int action_bar_root=0x7f08000d;
public static final int action_bar_spinner=0x7f08000e;
public static final int action_bar_subtitle=0x7f08000f;
public static final int action_bar_title=0x7f080010;
public static final int action_container=0x7f080011;
public static final int action_context_bar=0x7f080012;
public static final int action_divider=0x7f080013;
public static final int action_image=0x7f080014;
public static final int action_menu_divider=0x7f080015;
public static final int action_menu_presenter=0x7f080016;
public static final int action_mode_bar=0x7f080017;
public static final int action_mode_bar_stub=0x7f080018;
public static final int action_mode_close_button=0x7f080019;
public static final int action_text=0x7f08001a;
public static final int actions=0x7f08001b;
public static final int activity_chooser_view_content=0x7f08001c;
public static final int add=0x7f08001d;
public static final int alertButtonListView=0x7f08001e;
public static final int alertTitle=0x7f08001f;
public static final int all=0x7f080020;
public static final int always=0x7f080021;
public static final int auto=0x7f080022;
public static final int auto_focus=0x7f080023;
public static final int banner=0x7f080024;
public static final int bannerContainer=0x7f080025;
public static final int bannerTitle=0x7f080026;
public static final int bannerViewPager=0x7f080027;
public static final int beginning=0x7f080028;
public static final int bottom=0x7f080029;
public static final int bottom_to_top=0x7f08002a;
public static final int btn_01=0x7f08002b;
public static final int btn_02=0x7f08002c;
public static final int btn_03=0x7f08002d;
public static final int btn_join=0x7f08002e;
public static final int btn_save=0x7f08002f;
public static final int btn_setting_logout=0x7f080030;
public static final int btn_submit=0x7f080031;
public static final int buttonPanel=0x7f080032;
public static final int cancel_action=0x7f080033;
public static final int cancel_button=0x7f080034;
public static final int center=0x7f080035;
public static final int center_crop=0x7f080036;
public static final int center_horizontal=0x7f080037;
public static final int center_inside=0x7f080038;
public static final int center_vertical=0x7f080039;
public static final int checkbox=0x7f08003a;
public static final int chkBtn_setting_sound=0x7f08003b;
public static final int chkBtn_setting_vibration=0x7f08003c;
public static final int chronometer=0x7f08003d;
public static final int circleIndicator=0x7f08003e;
public static final int clip_horizontal=0x7f08003f;
public static final int clip_vertical=0x7f080040;
public static final int collapseActionView=0x7f080041;
public static final int confirm_button=0x7f080042;
public static final int contentPanel=0x7f080043;
public static final int content_container=0x7f080044;
public static final int content_text=0x7f080045;
public static final int custom=0x7f080046;
public static final int customPanel=0x7f080047;
public static final int custom_image=0x7f080048;
public static final int decode=0x7f080049;
public static final int decode_failed=0x7f08004a;
public static final int decode_succeeded=0x7f08004b;
public static final int decor_content_parent=0x7f08004c;
public static final int default_activity_button=0x7f08004d;
public static final int design_bottom_sheet=0x7f08004e;
public static final int design_menu_item_action_area=0x7f08004f;
public static final int design_menu_item_action_area_stub=0x7f080050;
public static final int design_menu_item_text=0x7f080051;
public static final int design_navigation_view=0x7f080052;
public static final int disableHome=0x7f080053;
public static final int edit_query=0x7f080054;
public static final int encode_failed=0x7f080055;
public static final int encode_succeeded=0x7f080056;
public static final int end=0x7f080057;
public static final int end_padder=0x7f080058;
public static final int enterAlways=0x7f080059;
public static final int enterAlwaysCollapsed=0x7f08005a;
public static final int error_frame=0x7f08005b;
public static final int error_x=0x7f08005c;
public static final int et_address=0x7f08005d;
public static final int et_bags=0x7f08005e;
public static final int et_email=0x7f08005f;
public static final int et_money=0x7f080060;
public static final int et_name=0x7f080061;
public static final int et_phone=0x7f080062;
public static final int et_postcode=0x7f080063;
public static final int et_price=0x7f080064;
public static final int et_search=0x7f080065;
public static final int et_weight=0x7f080066;
public static final int exitUntilCollapsed=0x7f080067;
public static final int expand_activities_button=0x7f080068;
public static final int expanded_menu=0x7f080069;
public static final int fill=0x7f08006a;
public static final int fill_horizontal=0x7f08006b;
public static final int fill_vertical=0x7f08006c;
public static final int fit_center=0x7f08006d;
public static final int fit_end=0x7f08006e;
public static final int fit_start=0x7f08006f;
public static final int fit_xy=0x7f080070;
public static final int fixed=0x7f080071;
public static final int fl_container=0x7f080072;
public static final int fl_containers=0x7f080073;
public static final int fl_zxing_container=0x7f080074;
public static final int home=0x7f080075;
public static final int homeAsUp=0x7f080076;
public static final int icon=0x7f080077;
public static final int icon_group=0x7f080078;
public static final int ifRoom=0x7f080079;
public static final int image=0x7f08007a;
public static final int indicatorInside=0x7f08007b;
public static final int info=0x7f08007c;
public static final int item_touch_helper_previous_elevation=0x7f08007d;
public static final int iv=0x7f08007e;
public static final int iv_head=0x7f08007f;
public static final int iv_menu=0x7f080080;
public static final int iv_menu_home=0x7f080081;
public static final int iv_msg=0x7f080082;
public static final int iv_order=0x7f080083;
public static final int iv_scan=0x7f080084;
public static final int iv_set=0x7f080085;
public static final int iv_splash=0x7f080086;
public static final int iv_top_scan=0x7f080087;
public static final int largeLabel=0x7f080088;
public static final int launch_product_query=0x7f080089;
public static final int left=0x7f08008a;
public static final int left_to_right=0x7f08008b;
public static final int line1=0x7f08008c;
public static final int line3=0x7f08008d;
public static final int line_prompt_statement=0x7f08008e;
public static final int listMode=0x7f08008f;
public static final int list_item=0x7f080090;
public static final int ll_menu_home=0x7f080091;
public static final int loAlertButtons=0x7f080092;
public static final int loAlertHeader=0x7f080093;
public static final int load_more_load_end_view=0x7f080094;
public static final int load_more_load_fail_view=0x7f080095;
public static final int load_more_loading_view=0x7f080096;
public static final int loading=0x7f080097;
public static final int loading_progress=0x7f080098;
public static final int loading_text=0x7f080099;
public static final int marqueeView1=0x7f08009a;
public static final int mask_left=0x7f08009b;
public static final int mask_right=0x7f08009c;
public static final int masked=0x7f08009d;
public static final int matrix=0x7f08009e;
public static final int media_actions=0x7f08009f;
public static final int middle=0x7f0800a0;
public static final int mini=0x7f0800a1;
public static final int multiply=0x7f0800a2;
public static final int navigation_header_container=0x7f0800a3;
public static final int never=0x7f0800a4;
public static final int none=0x7f0800a5;
public static final int normal=0x7f0800a6;
public static final int notification_background=0x7f0800a7;
public static final int notification_main_column=0x7f0800a8;
public static final int notification_main_column_container=0x7f0800a9;
public static final int numIndicator=0x7f0800aa;
public static final int numIndicatorInside=0x7f0800ab;
public static final int outmost_container=0x7f0800ac;
public static final int parallax=0x7f0800ad;
public static final int parentPanel=0x7f0800ae;
public static final int pin=0x7f0800af;
public static final int preview_view=0x7f0800b0;
public static final int progressWheel=0x7f0800b1;
public static final int progress_circular=0x7f0800b2;
public static final int progress_dialog=0x7f0800b3;
public static final int progress_horizontal=0x7f0800b4;
public static final int prompt_frame=0x7f0800b5;
public static final int quick_view=0x7f0800b6;
public static final int quit=0x7f0800b7;
public static final int radio=0x7f0800b8;
public static final int rb_cfragment_mine=0x7f0800b9;
public static final int rb_fragment_home=0x7f0800ba;
public static final int rb_fragment_join=0x7f0800bb;
public static final int rb_fragment_station=0x7f0800bc;
public static final int recycleView=0x7f0800bd;
public static final int restart_preview=0x7f0800be;
public static final int return_scan_result=0x7f0800bf;
public static final int rg_contact=0x7f0800c0;
public static final int rg_fragment=0x7f0800c1;
public static final int right=0x7f0800c2;
public static final int right_icon=0x7f0800c3;
public static final int right_side=0x7f0800c4;
public static final int right_to_left=0x7f0800c5;
public static final int rl_address=0x7f0800c6;
public static final int rl_cost=0x7f0800c7;
public static final int rl_feedback=0x7f0800c8;
public static final int rl_forecast=0x7f0800c9;
public static final int rl_mine_order=0x7f0800ca;
public static final int rl_pick_records=0x7f0800cb;
public static final int rl_sales_line=0x7f0800cc;
public static final int rl_select_address=0x7f0800cd;
public static final int rl_select_class=0x7f0800ce;
public static final int rl_select_country=0x7f0800cf;
public static final int rl_select_destination=0x7f0800d0;
public static final int rl_select_time=0x7f0800d1;
public static final int rl_select_transport_mode=0x7f0800d2;
public static final int rl_select_type=0x7f0800d3;
public static final int rl_select_weight=0x7f0800d4;
public static final int rl_service_line=0x7f0800d5;
public static final int rl_service_online=0x7f0800d6;
public static final int rl_setting_about=0x7f0800d7;
public static final int rl_setting_sound=0x7f0800d8;
public static final int rl_setting_vibration=0x7f0800d9;
public static final int rl_track=0x7f0800da;
public static final int rl_version=0x7f0800db;
public static final int screen=0x7f0800dc;
public static final int scroll=0x7f0800dd;
public static final int scrollIndicatorDown=0x7f0800de;
public static final int scrollIndicatorUp=0x7f0800df;
public static final int scrollView=0x7f0800e0;
public static final int scrollable=0x7f0800e1;
public static final int search_badge=0x7f0800e2;
public static final int search_bar=0x7f0800e3;
public static final int search_book_contents_failed=0x7f0800e4;
public static final int search_book_contents_succeeded=0x7f0800e5;
public static final int search_button=0x7f0800e6;
public static final int search_close_btn=0x7f0800e7;
public static final int search_edit_frame=0x7f0800e8;
public static final int search_go_btn=0x7f0800e9;
public static final int search_mag_icon=0x7f0800ea;
public static final int search_plate=0x7f0800eb;
public static final int search_src_text=0x7f0800ec;
public static final int search_voice_btn=0x7f0800ed;
public static final int select_dialog_listview=0x7f0800ee;
public static final int shortcut=0x7f0800ef;
public static final int showCustom=0x7f0800f0;
public static final int showHome=0x7f0800f1;
public static final int showTitle=0x7f0800f2;
public static final int smallLabel=0x7f0800f3;
public static final int smart_refresh_layout=0x7f0800f4;
public static final int snackbar_action=0x7f0800f5;
public static final int snackbar_text=0x7f0800f6;
public static final int snap=0x7f0800f7;
public static final int spacer=0x7f0800f8;
public static final int split_action_bar=0x7f0800f9;
public static final int src_atop=0x7f0800fa;
public static final int src_in=0x7f0800fb;
public static final int src_over=0x7f0800fc;
public static final int start=0x7f0800fd;
public static final int status_bar_latest_event_content=0x7f0800fe;
public static final int submenuarrow=0x7f0800ff;
public static final int submit_area=0x7f080100;
public static final int success_frame=0x7f080101;
public static final int success_tick=0x7f080102;
public static final int tabMode=0x7f080103;
public static final int tab_layout=0x7f080104;
public static final int tag_layout_helper_bg=0x7f080105;
public static final int text=0x7f080106;
public static final int text2=0x7f080107;
public static final int textSpacerNoButtons=0x7f080108;
public static final int textSpacerNoTitle=0x7f080109;
public static final int textView=0x7f08010a;
public static final int textView2=0x7f08010b;
public static final int text_input_password_toggle=0x7f08010c;
public static final int textinput_counter=0x7f08010d;
public static final int textinput_error=0x7f08010e;
public static final int time=0x7f08010f;
public static final int title=0x7f080110;
public static final int titleDividerNoCustom=0x7f080111;
public static final int titleView=0x7f080112;
public static final int title_template=0x7f080113;
public static final int title_text=0x7f080114;
public static final int top=0x7f080115;
public static final int topPanel=0x7f080116;
public static final int top_to_bottom=0x7f080117;
public static final int touch_outside=0x7f080118;
public static final int transition_current_scene=0x7f080119;
public static final int transition_scene_layoutid_cache=0x7f08011a;
public static final int tv=0x7f08011b;
public static final int tvAlert=0x7f08011c;
public static final int tvAlertCancel=0x7f08011d;
public static final int tvAlertMsg=0x7f08011e;
public static final int tvAlertTitle=0x7f08011f;
public static final int tv_add_info=0x7f080120;
public static final int tv_address=0x7f080121;
public static final int tv_apply_info=0x7f080122;
public static final int tv_cancel=0x7f080123;
public static final int tv_city=0x7f080124;
public static final int tv_count=0x7f080125;
public static final int tv_country=0x7f080126;
public static final int tv_destination=0x7f080127;
public static final int tv_header=0x7f080128;
public static final int tv_left=0x7f080129;
public static final int tv_login=0x7f08012a;
public static final int tv_menu_title=0x7f08012b;
public static final int tv_menu_title_home=0x7f08012c;
public static final int tv_name=0x7f08012d;
public static final int tv_number=0x7f08012e;
public static final int tv_ok=0x7f08012f;
public static final int tv_order_id=0x7f080130;
public static final int tv_order_status=0x7f080131;
public static final int tv_prompt=0x7f080132;
public static final int tv_recipient=0x7f080133;
public static final int tv_register=0x7f080134;
public static final int tv_remote_class=0x7f080135;
public static final int tv_right=0x7f080136;
public static final int tv_scan=0x7f080137;
public static final int tv_search=0x7f080138;
public static final int tv_sender=0x7f080139;
public static final int tv_service_online=0x7f08013a;
public static final int tv_service_people=0x7f08013b;
public static final int tv_text=0x7f08013c;
public static final int tv_time=0x7f08013d;
public static final int tv_total_freight=0x7f08013e;
public static final int tv_transport_mode=0x7f08013f;
public static final int tv_type=0x7f080140;
public static final int tv_volume=0x7f080141;
public static final int tv_weight=0x7f080142;
public static final int up=0x7f080143;
public static final int useLogo=0x7f080144;
public static final int vDivier=0x7f080145;
public static final int viewStubHorizontal=0x7f080146;
public static final int viewStubVertical=0x7f080147;
public static final int view_offset_helper=0x7f080148;
public static final int view_pager=0x7f080149;
public static final int viewfinder_view=0x7f08014a;
public static final int visible=0x7f08014b;
public static final int warning_frame=0x7f08014c;
public static final int waves=0x7f08014d;
public static final int withText=0x7f08014e;
public static final int wrap_content=0x7f08014f;
public static final int x=0x7f080150;
public static final int y=0x7f080151;
public static final int z=0x7f080152;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f090000;
public static final int abc_config_activityShortDur=0x7f090001;
public static final int animation_default_duration=0x7f090002;
public static final int app_bar_elevation_anim_duration=0x7f090003;
public static final int bottom_sheet_slide_duration=0x7f090004;
public static final int cancel_button_image_alpha=0x7f090005;
public static final int design_snackbar_text_max_lines=0x7f090006;
public static final int hide_password_duration=0x7f090007;
public static final int show_password_duration=0x7f090008;
public static final int status_bar_notification_info_maxnum=0x7f090009;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f0a0000;
public static final int abc_action_bar_up_container=0x7f0a0001;
public static final int abc_action_bar_view_list_nav_layout=0x7f0a0002;
public static final int abc_action_menu_item_layout=0x7f0a0003;
public static final int abc_action_menu_layout=0x7f0a0004;
public static final int abc_action_mode_bar=0x7f0a0005;
public static final int abc_action_mode_close_item_material=0x7f0a0006;
public static final int abc_activity_chooser_view=0x7f0a0007;
public static final int abc_activity_chooser_view_list_item=0x7f0a0008;
public static final int abc_alert_dialog_button_bar_material=0x7f0a0009;
public static final int abc_alert_dialog_material=0x7f0a000a;
public static final int abc_alert_dialog_title_material=0x7f0a000b;
public static final int abc_dialog_title_material=0x7f0a000c;
public static final int abc_expanded_menu_layout=0x7f0a000d;
public static final int abc_list_menu_item_checkbox=0x7f0a000e;
public static final int abc_list_menu_item_icon=0x7f0a000f;
public static final int abc_list_menu_item_layout=0x7f0a0010;
public static final int abc_list_menu_item_radio=0x7f0a0011;
public static final int abc_popup_menu_header_item_layout=0x7f0a0012;
public static final int abc_popup_menu_item_layout=0x7f0a0013;
public static final int abc_screen_content_include=0x7f0a0014;
public static final int abc_screen_simple=0x7f0a0015;
public static final int abc_screen_simple_overlay_action_mode=0x7f0a0016;
public static final int abc_screen_toolbar=0x7f0a0017;
public static final int abc_search_dropdown_item_icons_2line=0x7f0a0018;
public static final int abc_search_view=0x7f0a0019;
public static final int abc_select_dialog_material=0x7f0a001a;
public static final int activity_common_header=0x7f0a001b;
public static final int activity_fragment_instance=0x7f0a001c;
public static final int activity_join_us=0x7f0a001d;
public static final int activity_login=0x7f0a001e;
public static final int activity_main=0x7f0a001f;
public static final int activity_setting=0x7f0a0020;
public static final int activity_splash=0x7f0a0021;
public static final int banner=0x7f0a0022;
public static final int camera=0x7f0a0023;
public static final int design_bottom_navigation_item=0x7f0a0024;
public static final int design_bottom_sheet_dialog=0x7f0a0025;
public static final int design_layout_snackbar=0x7f0a0026;
public static final int design_layout_snackbar_include=0x7f0a0027;
public static final int design_layout_tab_icon=0x7f0a0028;
public static final int design_layout_tab_text=0x7f0a0029;
public static final int design_menu_item_action_area=0x7f0a002a;
public static final int design_navigation_item=0x7f0a002b;
public static final int design_navigation_item_header=0x7f0a002c;
public static final int design_navigation_item_separator=0x7f0a002d;
public static final int design_navigation_item_subheader=0x7f0a002e;
public static final int design_navigation_menu=0x7f0a002f;
public static final int design_navigation_menu_item=0x7f0a0030;
public static final int design_text_input_password_icon=0x7f0a0031;
public static final int fragment_capture=0x7f0a0032;
public static final int fragment_deliver_application=0x7f0a0033;
public static final int fragment_forecast_order=0x7f0a0034;
public static final int fragment_forecast_order_select_destination=0x7f0a0035;
public static final int fragment_forecast_order_select_type=0x7f0a0036;
public static final int fragment_home=0x7f0a0037;
public static final int fragment_message=0x7f0a0038;
public static final int fragment_mine=0x7f0a0039;
public static final int fragment_mine_orders=0x7f0a003a;
public static final int fragment_price_calculate=0x7f0a003b;
public static final int fragment_remote_query=0x7f0a003c;
public static final int fragment_search=0x7f0a003d;
public static final int fragment_service_online=0x7f0a003e;
public static final int fragment_station=0x7f0a003f;
public static final int fragment_station_china=0x7f0a0040;
public static final int fragment_station_foreign=0x7f0a0041;
public static final int fragment_to_forecast_orders=0x7f0a0042;
public static final int fragment_to_join=0x7f0a0043;
public static final int include_alertheader=0x7f0a0044;
public static final int item_alertbutton=0x7f0a0045;
public static final int item_ca_price_check=0x7f0a0046;
public static final int item_grid_order=0x7f0a0047;
public static final int item_message=0x7f0a0048;
public static final int item_mine_orders=0x7f0a0049;
public static final int item_service_online=0x7f0a004a;
public static final int layout_alertview=0x7f0a004b;
public static final int layout_alertview_actionsheet=0x7f0a004c;
public static final int layout_alertview_alert=0x7f0a004d;
public static final int layout_alertview_alert_horizontal=0x7f0a004e;
public static final int layout_alertview_alert_vertical=0x7f0a004f;
public static final int notification_action=0x7f0a0050;
public static final int notification_action_tombstone=0x7f0a0051;
public static final int notification_media_action=0x7f0a0052;
public static final int notification_media_cancel_action=0x7f0a0053;
public static final int notification_template_big_media=0x7f0a0054;
public static final int notification_template_big_media_custom=0x7f0a0055;
public static final int notification_template_big_media_narrow=0x7f0a0056;
public static final int notification_template_big_media_narrow_custom=0x7f0a0057;
public static final int notification_template_custom_big=0x7f0a0058;
public static final int notification_template_icon_group=0x7f0a0059;
public static final int notification_template_lines_media=0x7f0a005a;
public static final int notification_template_media=0x7f0a005b;
public static final int notification_template_media_custom=0x7f0a005c;
public static final int notification_template_part_chronometer=0x7f0a005d;
public static final int notification_template_part_time=0x7f0a005e;
public static final int pop_alphasearch=0x7f0a005f;
public static final int quick_view_load_more=0x7f0a0060;
public static final int select_dialog_item_material=0x7f0a0061;
public static final int select_dialog_multichoice_material=0x7f0a0062;
public static final int select_dialog_singlechoice_material=0x7f0a0063;
public static final int station_search_title=0x7f0a0064;
public static final int support_simple_spinner_dropdown_item=0x7f0a0065;
public static final int sweet_alert_dialog=0x7f0a0066;
public static final int vlayout_banner=0x7f0a0067;
public static final int vlayout_grid=0x7f0a0068;
public static final int vlayout_join_banner=0x7f0a0069;
public static final int vlayout_join_menu=0x7f0a006a;
public static final int vlayout_menu=0x7f0a006b;
public static final int vlayout_news=0x7f0a006c;
public static final int vlayout_title=0x7f0a006d;
}
public static final class mipmap {
public static final int bg_mine_banner=0x7f0b0000;
public static final int btn_home_news_more=0x7f0b0001;
public static final int btn_home_notice=0x7f0b0002;
public static final int btn_home_scan=0x7f0b0003;
public static final int btn_nav_return=0x7f0b0004;
public static final int btn_table_next=0x7f0b0005;
public static final int checkswitch_bottom=0x7f0b0006;
public static final int checkswitch_btn_pressed=0x7f0b0007;
public static final int checkswitch_btn_unpressed=0x7f0b0008;
public static final int checkswitch_frame=0x7f0b0009;
public static final int checkswitch_mask=0x7f0b000a;
public static final int chkbox_selected=0x7f0b000b;
public static final int chkbox_unselect=0x7f0b000c;
public static final int home_product_1=0x7f0b000d;
public static final int home_product_2=0x7f0b000e;
public static final int home_product_3=0x7f0b000f;
public static final int home_product_4=0x7f0b0010;
public static final int home_product_5=0x7f0b0011;
public static final int home_product_6=0x7f0b0012;
public static final int ic_launcher=0x7f0b0013;
public static final int ic_launcher_round=0x7f0b0014;
public static final int icon_home_menu1=0x7f0b0015;
public static final int icon_home_menu2=0x7f0b0016;
public static final int icon_home_menu3=0x7f0b0017;
public static final int icon_home_menu4=0x7f0b0018;
public static final int icon_home_news=0x7f0b0019;
public static final int icon_home_search=0x7f0b001a;
public static final int icon_join_1=0x7f0b001b;
public static final int icon_join_2=0x7f0b001c;
public static final int icon_join_3=0x7f0b001d;
public static final int icon_join_4=0x7f0b001e;
public static final int icon_join_5=0x7f0b001f;
public static final int icon_join_6=0x7f0b0020;
public static final int icon_label_home_normal=0x7f0b0021;
public static final int icon_label_home_selected=0x7f0b0022;
public static final int icon_label_join_normal=0x7f0b0023;
public static final int icon_label_join_selected=0x7f0b0024;
public static final int icon_label_location_normal=0x7f0b0025;
public static final int icon_label_location_selected=0x7f0b0026;
public static final int icon_label_mine_normal=0x7f0b0027;
public static final int icon_label_mine_selected=0x7f0b0028;
public static final int icon_mine_cargo=0x7f0b0029;
public static final int icon_mine_draft=0x7f0b002a;
public static final int icon_mine_location=0x7f0b002b;
public static final int icon_mine_money=0x7f0b002c;
public static final int icon_mine_online=0x7f0b002d;
public static final int icon_mine_phone=0x7f0b002e;
public static final int icon_mine_set=0x7f0b002f;
public static final int icon_mine_track=0x7f0b0030;
public static final int icon_myorder=0x7f0b0031;
public static final int icon_scan_images=0x7f0b0032;
public static final int icon_scan_light=0x7f0b0033;
public static final int icon_scan_return=0x7f0b0034;
public static final int icon_table_add=0x7f0b0035;
public static final int icon_table_fa=0x7f0b0036;
public static final int icon_table_shou=0x7f0b0037;
public static final int iv_mine_set=0x7f0b0038;
public static final int iv_search_img=0x7f0b0039;
public static final int mine_go=0x7f0b003a;
public static final int pic_home_banner_1=0x7f0b003b;
public static final int pic_join_banner=0x7f0b003c;
public static final int top_left_back=0x7f0b003d;
public static final int top_right_scan=0x7f0b003e;
}
public static final class raw {
public static final int beep=0x7f0c0000;
}
public static final class string {
public static final int LOADING=0x7f0d0000;
public static final int abc_action_bar_home_description=0x7f0d0001;
public static final int abc_action_bar_home_description_format=0x7f0d0002;
public static final int abc_action_bar_home_subtitle_description_format=0x7f0d0003;
public static final int abc_action_bar_up_description=0x7f0d0004;
public static final int abc_action_menu_overflow_description=0x7f0d0005;
public static final int abc_action_mode_done=0x7f0d0006;
public static final int abc_activity_chooser_view_see_all=0x7f0d0007;
public static final int abc_activitychooserview_choose_application=0x7f0d0008;
public static final int abc_capital_off=0x7f0d0009;
public static final int abc_capital_on=0x7f0d000a;
public static final int abc_font_family_body_1_material=0x7f0d000b;
public static final int abc_font_family_body_2_material=0x7f0d000c;
public static final int abc_font_family_button_material=0x7f0d000d;
public static final int abc_font_family_caption_material=0x7f0d000e;
public static final int abc_font_family_display_1_material=0x7f0d000f;
public static final int abc_font_family_display_2_material=0x7f0d0010;
public static final int abc_font_family_display_3_material=0x7f0d0011;
public static final int abc_font_family_display_4_material=0x7f0d0012;
public static final int abc_font_family_headline_material=0x7f0d0013;
public static final int abc_font_family_menu_material=0x7f0d0014;
public static final int abc_font_family_subhead_material=0x7f0d0015;
public static final int abc_font_family_title_material=0x7f0d0016;
public static final int abc_search_hint=0x7f0d0017;
public static final int abc_searchview_description_clear=0x7f0d0018;
public static final int abc_searchview_description_query=0x7f0d0019;
public static final int abc_searchview_description_search=0x7f0d001a;
public static final int abc_searchview_description_submit=0x7f0d001b;
public static final int abc_searchview_description_voice=0x7f0d001c;
public static final int abc_shareactionprovider_share_with=0x7f0d001d;
public static final int abc_shareactionprovider_share_with_application=0x7f0d001e;
public static final int abc_toolbar_collapse_description=0x7f0d001f;
public static final int app_name=0x7f0d0020;
public static final int appbar_scrolling_view_behavior=0x7f0d0021;
public static final int bottom_sheet_behavior=0x7f0d0022;
public static final int character_counter_pattern=0x7f0d0023;
public static final int common_agree=0x7f0d0024;
public static final int common_all=0x7f0d0025;
public static final int common_back=0x7f0d0026;
public static final int common_cancel=0x7f0d0027;
public static final int common_confirm=0x7f0d0028;
public static final int common_data_no=0x7f0d0029;
public static final int common_delete=0x7f0d002a;
public static final int common_edit=0x7f0d002b;
public static final int common_expand_more=0x7f0d002c;
public static final int common_i_know=0x7f0d002d;
public static final int common_know=0x7f0d002e;
public static final int common_loading_data=0x7f0d002f;
public static final int common_next=0x7f0d0030;
public static final int common_pack_up_more=0x7f0d0031;
public static final int common_prompt=0x7f0d0032;
public static final int common_refuse=0x7f0d0033;
public static final int common_save=0x7f0d0034;
public static final int common_saved=0x7f0d0035;
public static final int common_search=0x7f0d0036;
public static final int common_select=0x7f0d0037;
public static final int common_send=0x7f0d0038;
public static final int common_sex_female=0x7f0d0039;
public static final int common_sex_male=0x7f0d003a;
public static final int common_show_home_page=0x7f0d003b;
public static final int common_show_scan=0x7f0d003c;
public static final int common_submit_data=0x7f0d003d;
public static final int common_un_set=0x7f0d003e;
public static final int common_unknown=0x7f0d003f;
public static final int common_update_data=0x7f0d0040;
public static final int common_uploading=0x7f0d0041;
public static final int default_progressbar=0x7f0d0042;
public static final int dialog_cancel=0x7f0d0043;
public static final int dialog_ok=0x7f0d0044;
public static final int fgh_mask_bottom=0x7f0d0045;
public static final int fgh_mask_top_pull=0x7f0d0046;
public static final int fgh_mask_top_release=0x7f0d0047;
public static final int fgh_text_game_over=0x7f0d0048;
public static final int fgh_text_loading=0x7f0d0049;
public static final int fgh_text_loading_failed=0x7f0d004a;
public static final int fgh_text_loading_finish=0x7f0d004b;
public static final int forget_password=0x7f0d004c;
public static final int forget_password_cannot_get_user=0x7f0d004d;
public static final int forget_password_get_sms=0x7f0d004e;
public static final int forget_password_input_new_psd=0x7f0d004f;
public static final int forget_password_input_new_psd_re=0x7f0d0050;
public static final int forget_password_input_sms=0x7f0d0051;
public static final int forget_password_next=0x7f0d0052;
public static final int forget_password_not_send_verification_code=0x7f0d0053;
public static final int hello_blank_fragment=0x7f0d0054;
public static final int home_exception_order=0x7f0d0055;
public static final int home_forecast_order=0x7f0d0056;
public static final int home_forecast_order_add_info=0x7f0d0057;
public static final int home_forecast_order_apply=0x7f0d0058;
public static final int home_forecast_order_country_hint=0x7f0d0059;
public static final int home_forecast_order_destination=0x7f0d005a;
public static final int home_forecast_order_destination_hint=0x7f0d005b;
public static final int home_forecast_order_multi=0x7f0d005c;
public static final int home_forecast_order_name_edit=0x7f0d005d;
public static final int home_forecast_order_number=0x7f0d005e;
public static final int home_forecast_order_number_etit=0x7f0d005f;
public static final int home_forecast_order_price_edit=0x7f0d0060;
public static final int home_forecast_order_save=0x7f0d0061;
public static final int home_forecast_order_select_country=0x7f0d0062;
public static final int home_forecast_order_select_type=0x7f0d0063;
public static final int home_forecast_order_single=0x7f0d0064;
public static final int home_forecast_order_transport_mode=0x7f0d0065;
public static final int home_forecast_order_transport_mode_hint=0x7f0d0066;
public static final int home_forecast_order_type=0x7f0d0067;
public static final int home_forecast_order_type_hint=0x7f0d0068;
public static final int home_forecast_order_volume=0x7f0d0069;
public static final int home_forecast_order_weight=0x7f0d006a;
public static final int home_my_pay=0x7f0d006b;
public static final int home_online_payment=0x7f0d006c;
public static final int home_order_tracking=0x7f0d006d;
public static final int home_pick_up=0x7f0d006e;
public static final int home_pick_up_address=0x7f0d006f;
public static final int home_pick_up_address_hint=0x7f0d0070;
public static final int home_pick_up_bags=0x7f0d0071;
public static final int home_pick_up_bags_hint=0x7f0d0072;
public static final int home_pick_up_submit=0x7f0d0073;
public static final int home_pick_up_time=0x7f0d0074;
public static final int home_pick_up_time_hint=0x7f0d0075;
public static final int home_pick_up_weight=0x7f0d0076;
public static final int home_pick_up_weight_hint=0x7f0d0077;
public static final int home_price_for_trial=0x7f0d0078;
public static final int home_price_for_trial_destination=0x7f0d0079;
public static final int home_price_for_trial_package_size=0x7f0d007a;
public static final int home_price_for_trial_package_type=0x7f0d007b;
public static final int home_price_for_trial_package_type_hint=0x7f0d007c;
public static final int home_price_for_trial_package_weight=0x7f0d007d;
public static final int home_price_for_trial_submit=0x7f0d007e;
public static final int home_remote_address=0x7f0d007f;
public static final int home_remote_address_hint=0x7f0d0080;
public static final int home_remote_class=0x7f0d0081;
public static final int home_remote_class_hint=0x7f0d0082;
public static final int home_remote_country_hint=0x7f0d0083;
public static final int home_remote_postcode=0x7f0d0084;
public static final int home_remote_postcode_hint=0x7f0d0085;
public static final int home_remote_query=0x7f0d0086;
public static final int join_to=0x7f0d0087;
public static final int join_to_jcex=0x7f0d0088;
public static final int join_to_jcex_request=0x7f0d0089;
public static final int load_end=0x7f0d008a;
public static final int load_failed=0x7f0d008b;
public static final int loading=0x7f0d008c;
public static final int login=0x7f0d008d;
public static final int login_failure=0x7f0d008e;
public static final int login_forget_password=0x7f0d008f;
public static final int login_input_name=0x7f0d0090;
public static final int login_input_password=0x7f0d0091;
public static final int login_input_password_show=0x7f0d0092;
public static final int login_name=0x7f0d0093;
public static final int login_password=0x7f0d0094;
public static final int login_register=0x7f0d0095;
public static final int login_register_title=0x7f0d0096;
public static final int login_success=0x7f0d0097;
public static final int main_home_page=0x7f0d0098;
public static final int main_mine=0x7f0d0099;
public static final int main_station=0x7f0d009a;
public static final int main_to_join=0x7f0d009b;
public static final int mine_order=0x7f0d009c;
public static final int mine_order_address=0x7f0d009d;
public static final int mine_order_forecast=0x7f0d009e;
public static final int mine_order_more=0x7f0d009f;
public static final int mine_order_pay=0x7f0d00a0;
public static final int mine_order_record=0x7f0d00a1;
public static final int mine_pick_record=0x7f0d00a2;
public static final int mine_sales_hotline=0x7f0d00a3;
public static final int mine_service_hotline=0x7f0d00a4;
public static final int mine_service_online=0x7f0d00a5;
public static final int mine_setting=0x7f0d00a6;
public static final int password_toggle_content_description=0x7f0d00a7;
public static final int path_password_eye=0x7f0d00a8;
public static final int path_password_eye_mask_strike_through=0x7f0d00a9;
public static final int path_password_eye_mask_visible=0x7f0d00aa;
public static final int path_password_strike_through=0x7f0d00ab;
public static final int register=0x7f0d00ac;
public static final int register_get_random_id=0x7f0d00ad;
public static final int register_input_password=0x7f0d00ae;
public static final int register_input_password_re=0x7f0d00af;
public static final int register_input_phone=0x7f0d00b0;
public static final int register_reader=0x7f0d00b1;
public static final int register_reader2=0x7f0d00b2;
public static final int register_sms_editor=0x7f0d00b3;
public static final int register_sms_get=0x7f0d00b4;
public static final int register_sms_getting=0x7f0d00b5;
public static final int register_sms_phone_num_after=0x7f0d00b6;
public static final int register_sms_send_success=0x7f0d00b7;
public static final int register_success=0x7f0d00b8;
public static final int search_menu_title=0x7f0d00b9;
public static final int srl_component_falsify=0x7f0d00ba;
public static final int srl_content_empty=0x7f0d00bb;
public static final int srl_footer_failed=0x7f0d00bc;
public static final int srl_footer_finish=0x7f0d00bd;
public static final int srl_footer_loading=0x7f0d00be;
public static final int srl_footer_nothing=0x7f0d00bf;
public static final int srl_footer_pulling=0x7f0d00c0;
public static final int srl_footer_refreshing=0x7f0d00c1;
public static final int srl_footer_release=0x7f0d00c2;
public static final int srl_header_failed=0x7f0d00c3;
public static final int srl_header_finish=0x7f0d00c4;
public static final int srl_header_loading=0x7f0d00c5;
public static final int srl_header_pulling=0x7f0d00c6;
public static final int srl_header_refreshing=0x7f0d00c7;
public static final int srl_header_release=0x7f0d00c8;
public static final int srl_header_secondary=0x7f0d00c9;
public static final int srl_header_update=0x7f0d00ca;
public static final int station_china=0x7f0d00cb;
public static final int station_foreign=0x7f0d00cc;
public static final int station_jcex=0x7f0d00cd;
public static final int station_search_address=0x7f0d00ce;
public static final int status_bar_notification_info_overflow=0x7f0d00cf;
}
public static final class style {
public static final int AlertActivity_AlertStyle=0x7f0e0000;
public static final int AlertDialog_AppCompat=0x7f0e0001;
public static final int AlertDialog_AppCompat_Light=0x7f0e0002;
public static final int AnimFade2=0x7f0e0003;
public static final int Animation_AppCompat_Dialog=0x7f0e0004;
public static final int Animation_AppCompat_DropDownUp=0x7f0e0005;
public static final int Animation_Design_BottomSheetDialog=0x7f0e0006;
public static final int AppBaseTheme=0x7f0e0007;
public static final int AppTheme=0x7f0e0008;
public static final int Base_AlertDialog_AppCompat=0x7f0e0009;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0e000a;
public static final int Base_Animation_AppCompat_Dialog=0x7f0e000b;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000c;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e000e;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000d;
public static final int Base_TextAppearance_AppCompat=0x7f0e000f;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0010;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0011;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0012;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0013;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0014;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0015;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0016;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0017;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e0018;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e0019;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001a;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001d;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e001e;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e001f;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0020;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0021;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0022;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0023;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0024;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0025;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0026;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0027;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0e0028;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e0029;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002a;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002b;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e002d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e002e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e002f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0030;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0031;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0032;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0033;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0034;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0035;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0036;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0037;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0038;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e0039;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003a;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003b;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003c;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e003d;
public static final int Base_ThemeOverlay_AppCompat=0x7f0e004c;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e004d;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e004e;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e004f;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0050;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0051;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0052;
public static final int Base_Theme_AppCompat=0x7f0e003e;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e003f;
public static final int Base_Theme_AppCompat_Dialog=0x7f0e0040;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0044;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0041;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0042;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0043;
public static final int Base_Theme_AppCompat_Light=0x7f0e0045;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0046;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e0047;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004b;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e0048;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e0049;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004a;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0e0055;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0e0053;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0e0054;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0e0056;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0e0057;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e005c;
public static final int Base_V21_Theme_AppCompat=0x7f0e0058;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e0059;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0e005a;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e005b;
public static final int Base_V22_Theme_AppCompat=0x7f0e005d;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0e005e;
public static final int Base_V23_Theme_AppCompat=0x7f0e005f;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0060;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e0065;
public static final int Base_V7_Theme_AppCompat=0x7f0e0061;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e0062;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0e0063;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e0064;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e0066;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e0067;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0e0068;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e0069;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e006a;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e006b;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e006c;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0e006d;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e006e;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e006f;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0e0070;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e0071;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e0072;
public static final int Base_Widget_AppCompat_Button=0x7f0e0073;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e0079;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e007a;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e0074;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e0075;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0076;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e0077;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0e0078;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e007b;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e007c;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e007d;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e007e;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e007f;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e0080;
public static final int Base_Widget_AppCompat_EditText=0x7f0e0081;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0e0082;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e0083;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e0086;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e0087;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e0088;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e0089;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e008a;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e008b;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e008c;
public static final int Base_Widget_AppCompat_ListView=0x7f0e008d;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e008e;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e008f;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e0090;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e0091;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e0092;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e0093;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e0094;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0e0095;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e0096;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e0097;
public static final int Base_Widget_AppCompat_SearchView=0x7f0e0098;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e0099;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0e009a;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e009b;
public static final int Base_Widget_AppCompat_Spinner=0x7f0e009c;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e009d;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e009e;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0e009f;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00a0;
public static final int Base_Widget_Design_AppBarLayout=0x7f0e00a1;
public static final int Base_Widget_Design_TabLayout=0x7f0e00a2;
public static final int CommonSubmitBtnTheme=0x7f0e00a3;
public static final int OrdinaryBlackTextTheme=0x7f0e00a4;
public static final int Platform_AppCompat=0x7f0e00a5;
public static final int Platform_AppCompat_Light=0x7f0e00a6;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00a7;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00a8;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00a9;
public static final int Platform_V11_AppCompat=0x7f0e00aa;
public static final int Platform_V11_AppCompat_Light=0x7f0e00ab;
public static final int Platform_V14_AppCompat=0x7f0e00ac;
public static final int Platform_V14_AppCompat_Light=0x7f0e00ad;
public static final int Platform_V21_AppCompat=0x7f0e00ae;
public static final int Platform_V21_AppCompat_Light=0x7f0e00af;
public static final int Platform_V25_AppCompat=0x7f0e00b0;
public static final int Platform_V25_AppCompat_Light=0x7f0e00b1;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00b2;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00b3;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00b4;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00b5;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00b6;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00b7;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00b8;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00be;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00b9;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00ba;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00bb;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00bc;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00bd;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00bf;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00c0;
public static final int SubTitleBlackTextTheme=0x7f0e00c1;
public static final int TextAppearance_AppCompat=0x7f0e00c2;
public static final int TextAppearance_AppCompat_Body1=0x7f0e00c3;
public static final int TextAppearance_AppCompat_Body2=0x7f0e00c4;
public static final int TextAppearance_AppCompat_Button=0x7f0e00c5;
public static final int TextAppearance_AppCompat_Caption=0x7f0e00c6;
public static final int TextAppearance_AppCompat_Display1=0x7f0e00c7;
public static final int TextAppearance_AppCompat_Display2=0x7f0e00c8;
public static final int TextAppearance_AppCompat_Display3=0x7f0e00c9;
public static final int TextAppearance_AppCompat_Display4=0x7f0e00ca;
public static final int TextAppearance_AppCompat_Headline=0x7f0e00cb;
public static final int TextAppearance_AppCompat_Inverse=0x7f0e00cc;
public static final int TextAppearance_AppCompat_Large=0x7f0e00cd;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00ce;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00cf;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00d0;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00d1;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00d2;
public static final int TextAppearance_AppCompat_Medium=0x7f0e00d3;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00d4;
public static final int TextAppearance_AppCompat_Menu=0x7f0e00d5;
public static final int TextAppearance_AppCompat_Notification=0x7f0e00d6;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0e00d7;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0e00d8;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0e00d9;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0e00da;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0e00db;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0e00dc;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0e00dd;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0e00de;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0e00df;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00e0;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00e1;
public static final int TextAppearance_AppCompat_Small=0x7f0e00e2;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00e3;
public static final int TextAppearance_AppCompat_Subhead=0x7f0e00e4;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e00e5;
public static final int TextAppearance_AppCompat_Title=0x7f0e00e6;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e00e7;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e00e8;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e00e9;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e00ea;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e00eb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e00ec;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e00ed;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e00ee;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e00ef;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e00f0;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e00f1;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e00f2;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e00f3;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e00f4;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e00f5;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e00f6;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e00f7;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e00f8;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e00f9;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e00fa;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e00fb;
public static final int TextAppearance_Design_Counter=0x7f0e00fc;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0e00fd;
public static final int TextAppearance_Design_Error=0x7f0e00fe;
public static final int TextAppearance_Design_Hint=0x7f0e00ff;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0100;
public static final int TextAppearance_Design_Tab=0x7f0e0101;
public static final int TextAppearance_StatusBar_EventContent=0x7f0e0102;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0e0103;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0e0104;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0e0105;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0e0106;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0107;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0108;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0109;
public static final int ThemeOverlay_AppCompat=0x7f0e0125;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e0126;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0e0127;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0128;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e0129;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e012a;
public static final int ThemeOverlay_AppCompat_Light=0x7f0e012b;
public static final int Theme_AppCompat=0x7f0e010a;
public static final int Theme_AppCompat_CompactMenu=0x7f0e010b;
public static final int Theme_AppCompat_DayNight=0x7f0e010c;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e010d;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e010e;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e0111;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e010f;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e0110;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e0112;
public static final int Theme_AppCompat_Dialog=0x7f0e0113;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0116;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0e0114;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e0115;
public static final int Theme_AppCompat_Light=0x7f0e0117;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0118;
public static final int Theme_AppCompat_Light_Dialog=0x7f0e0119;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e011c;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e011a;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e011b;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e011d;
public static final int Theme_AppCompat_NoActionBar=0x7f0e011e;
public static final int Theme_Design=0x7f0e011f;
public static final int Theme_Design_BottomSheetDialog=0x7f0e0120;
public static final int Theme_Design_Light=0x7f0e0121;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e0122;
public static final int Theme_Design_Light_NoActionBar=0x7f0e0123;
public static final int Theme_Design_NoActionBar=0x7f0e0124;
public static final int Widget_AppCompat_ActionBar=0x7f0e012c;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e012d;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e012e;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e012f;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e0130;
public static final int Widget_AppCompat_ActionButton=0x7f0e0131;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e0132;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e0133;
public static final int Widget_AppCompat_ActionMode=0x7f0e0134;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0135;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0136;
public static final int Widget_AppCompat_Button=0x7f0e0137;
public static final int Widget_AppCompat_ButtonBar=0x7f0e013d;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e013e;
public static final int Widget_AppCompat_Button_Borderless=0x7f0e0138;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e0139;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e013a;
public static final int Widget_AppCompat_Button_Colored=0x7f0e013b;
public static final int Widget_AppCompat_Button_Small=0x7f0e013c;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e013f;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e0140;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e0141;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e0142;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e0143;
public static final int Widget_AppCompat_EditText=0x7f0e0144;
public static final int Widget_AppCompat_ImageButton=0x7f0e0145;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0146;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0147;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e0148;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e0149;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e014a;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e014b;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e014c;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e014d;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e014e;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0e014f;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e0150;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e0151;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e0152;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e0153;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e0154;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e0155;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e0156;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e0157;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e0158;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e0159;
public static final int Widget_AppCompat_Light_SearchView=0x7f0e015a;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e015b;
public static final int Widget_AppCompat_ListMenuView=0x7f0e015c;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0e015d;
public static final int Widget_AppCompat_ListView=0x7f0e015e;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0e015f;
public static final int Widget_AppCompat_ListView_Menu=0x7f0e0160;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f0e0161;
public static final int Widget_AppCompat_NotificationActionText=0x7f0e0162;
public static final int Widget_AppCompat_PopupMenu=0x7f0e0163;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e0164;
public static final int Widget_AppCompat_PopupWindow=0x7f0e0165;
public static final int Widget_AppCompat_ProgressBar=0x7f0e0166;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e0167;
public static final int Widget_AppCompat_RatingBar=0x7f0e0168;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e0169;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0e016a;
public static final int Widget_AppCompat_SearchView=0x7f0e016b;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e016c;
public static final int Widget_AppCompat_SeekBar=0x7f0e016d;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e016e;
public static final int Widget_AppCompat_Spinner=0x7f0e016f;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e0170;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e0171;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e0172;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e0173;
public static final int Widget_AppCompat_Toolbar=0x7f0e0174;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e0175;
public static final int Widget_Design_AppBarLayout=0x7f0e0176;
public static final int Widget_Design_BottomNavigationView=0x7f0e0177;
public static final int Widget_Design_BottomSheet_Modal=0x7f0e0178;
public static final int Widget_Design_CollapsingToolbar=0x7f0e0179;
public static final int Widget_Design_CoordinatorLayout=0x7f0e017a;
public static final int Widget_Design_FloatingActionButton=0x7f0e017b;
public static final int Widget_Design_NavigationView=0x7f0e017c;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e017d;
public static final int Widget_Design_Snackbar=0x7f0e017e;
public static final int Widget_Design_TabLayout=0x7f0e017f;
public static final int Widget_Design_TextInputLayout=0x7f0e0180;
public static final int alert_dialog=0x7f0e0181;
public static final int commonCheckboxTheme=0x7f0e0182;
public static final int commonHorizontalViewBlueTheme=0x7f0e0183;
public static final int commonHorizontalViewTheme=0x7f0e0184;
public static final int commonLayoutViewTheme=0x7f0e0185;
public static final int commonRadioButtonTheme=0x7f0e0186;
public static final int dialog_blue_button=0x7f0e0187;
public static final int horizontal_slide=0x7f0e0188;
public static final int mineCommonEditTextTheme=0x7f0e0189;
public static final int mineCreateTextTheme01=0x7f0e018a;
public static final int mineOrderEditLvTheme=0x7f0e018b;
public static final int my_actionbar_style=0x7f0e018c;
}
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 cn.jcex:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_backgroundSplit cn.jcex:backgroundSplit}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_backgroundStacked cn.jcex:backgroundStacked}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEnd cn.jcex:contentInsetEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEndWithActions cn.jcex:contentInsetEndWithActions}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetLeft cn.jcex:contentInsetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetRight cn.jcex:contentInsetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStart cn.jcex:contentInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation cn.jcex:contentInsetStartWithNavigation}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_customNavigationLayout cn.jcex:customNavigationLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_displayOptions cn.jcex:displayOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_divider cn.jcex:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_elevation cn.jcex:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_height cn.jcex:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_hideOnContentScroll cn.jcex:hideOnContentScroll}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_homeAsUpIndicator cn.jcex:homeAsUpIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_homeLayout cn.jcex:homeLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_icon cn.jcex:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_indeterminateProgressStyle cn.jcex:indeterminateProgressStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_itemPadding cn.jcex:itemPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_logo cn.jcex:logo}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_navigationMode cn.jcex:navigationMode}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_popupTheme cn.jcex:popupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_progressBarPadding cn.jcex:progressBarPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_progressBarStyle cn.jcex:progressBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_subtitle cn.jcex:subtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_subtitleTextStyle cn.jcex:subtitleTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_title cn.jcex:title}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_titleTextStyle cn.jcex: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={
0x7f03002b, 0x7f03002c, 0x7f03002d, 0x7f030058,
0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c,
0x7f03005d, 0x7f030064, 0x7f03006c, 0x7f03006d,
0x7f030078, 0x7f03009a, 0x7f03009b, 0x7f03009f,
0x7f0300a0, 0x7f0300a1, 0x7f0300a5, 0x7f0300ba,
0x7f0300d7, 0x7f0300fc, 0x7f03010f, 0x7f030113,
0x7f030114, 0x7f030173, 0x7f030176, 0x7f0301a0,
0x7f0301aa
};
/**
* Attributes that can be used with a ActionBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* </table>
* @see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout={
0x010100b3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #ActionBarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#background}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:background
*/
public static final int ActionBar_background=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#backgroundSplit}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:backgroundSplit
*/
public static final int ActionBar_backgroundSplit=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#backgroundStacked}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:backgroundStacked
*/
public static final int ActionBar_backgroundStacked=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetEnd}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetEndWithActions}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetLeft}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetRight}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetRight
*/
public static final int ActionBar_contentInsetRight=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetStart}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetStart
*/
public static final int ActionBar_contentInsetStart=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetStartWithNavigation}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#customNavigationLayout}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#displayOptions}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>disableHome</td><td>20</td><td></td></tr>
* <tr><td>homeAsUp</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>showCustom</td><td>10</td><td></td></tr>
* <tr><td>showHome</td><td>2</td><td></td></tr>
* <tr><td>showTitle</td><td>8</td><td></td></tr>
* <tr><td>useLogo</td><td>1</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:displayOptions
*/
public static final int ActionBar_displayOptions=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#divider}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:divider
*/
public static final int ActionBar_divider=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#elevation}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:elevation
*/
public static final int ActionBar_elevation=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#height}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:height
*/
public static final int ActionBar_height=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#hideOnContentScroll}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#homeAsUpIndicator}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator=15;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#homeLayout}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:homeLayout
*/
public static final int ActionBar_homeLayout=16;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#icon}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:icon
*/
public static final int ActionBar_icon=17;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#indeterminateProgressStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle=18;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemPadding}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:itemPadding
*/
public static final int ActionBar_itemPadding=19;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#logo}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:logo
*/
public static final int ActionBar_logo=20;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#navigationMode}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>listMode</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>tabMode</td><td>2</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:navigationMode
*/
public static final int ActionBar_navigationMode=21;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#popupTheme}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:popupTheme
*/
public static final int ActionBar_popupTheme=22;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#progressBarPadding}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:progressBarPadding
*/
public static final int ActionBar_progressBarPadding=23;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#progressBarStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:progressBarStyle
*/
public static final int ActionBar_progressBarStyle=24;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subtitle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:subtitle
*/
public static final int ActionBar_subtitle=25;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subtitleTextStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle=26;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:title
*/
public static final int ActionBar_title=27;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleTextStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:titleTextStyle
*/
public static final int ActionBar_titleTextStyle=28;
/**
* Attributes that can be used with a ActionMenuItemView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
* </table>
* @see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView={
0x0101013f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #ActionMenuItemView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth=0;
public static final int[] ActionMenuView={
};
/**
* Attributes that can be used with a ActionMode.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMode_background cn.jcex:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_backgroundSplit cn.jcex:backgroundSplit}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_closeItemLayout cn.jcex:closeItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_height cn.jcex:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_subtitleTextStyle cn.jcex:subtitleTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_titleTextStyle cn.jcex: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={
0x7f03002b, 0x7f03002c, 0x7f030048, 0x7f03009a,
0x7f030176, 0x7f0301aa
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#background}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:background
*/
public static final int ActionMode_background=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#backgroundSplit}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:backgroundSplit
*/
public static final int ActionMode_backgroundSplit=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#closeItemLayout}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:closeItemLayout
*/
public static final int ActionMode_closeItemLayout=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#height}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:height
*/
public static final int ActionMode_height=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subtitleTextStyle}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleTextStyle}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:titleTextStyle
*/
public static final int ActionMode_titleTextStyle=5;
/**
* Attributes that can be used with a ActivityChooserView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable cn.jcex:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #ActivityChooserView_initialActivityCount cn.jcex:initialActivityCount}</code></td><td></td></tr>
* </table>
* @see #ActivityChooserView_expandActivityOverflowButtonDrawable
* @see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView={
0x7f03007b, 0x7f0300ab
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandActivityOverflowButtonDrawable}
* attribute's value can be found in the {@link #ActivityChooserView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#initialActivityCount}
* attribute's value can be found in the {@link #ActivityChooserView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount=1;
/**
* Attributes that can be used with a AlertDialog.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout cn.jcex:buttonPanelSideLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listItemLayout cn.jcex:listItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listLayout cn.jcex:listLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout cn.jcex:multiChoiceItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_showTitle cn.jcex:showTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout cn.jcex: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, 0x7f030040, 0x7f0300ce, 0x7f0300cf,
0x7f0300ed, 0x7f03012e, 0x7f03012f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int AlertDialog_android_layout=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonPanelSideLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:listItemLayout
*/
public static final int AlertDialog_listItemLayout=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:listLayout
*/
public static final int AlertDialog_listLayout=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#multiChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#showTitle}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:showTitle
*/
public static final int AlertDialog_showTitle=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#singleChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout=6;
/**
* Attributes that can be used with a AppBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_elevation cn.jcex:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_expanded cn.jcex:expanded}</code></td><td></td></tr>
* </table>
* @see #AppBarLayout_android_background
* @see #AppBarLayout_elevation
* @see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout={
0x010100d4, 0x7f030078, 0x7f03007c
};
/**
* 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 cn.jcex:state_collapsed}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayoutStates_state_collapsible cn.jcex:state_collapsible}</code></td><td></td></tr>
* </table>
* @see #AppBarLayoutStates_state_collapsed
* @see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates={
0x7f03016d, 0x7f03016e
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#state_collapsed}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#state_collapsible}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible=1;
/**
* Attributes that can be used with a AppBarLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags cn.jcex:layout_scrollFlags}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator cn.jcex:layout_scrollInterpolator}</code></td><td></td></tr>
* </table>
* @see #AppBarLayout_Layout_layout_scrollFlags
* @see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout={
0x7f0300c8, 0x7f0300c9
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_scrollFlags}
* attribute's value can be found in the {@link #AppBarLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>enterAlways</td><td>4</td><td></td></tr>
* <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr>
* <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr>
* <tr><td>scroll</td><td>1</td><td></td></tr>
* <tr><td>snap</td><td>10</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_scrollInterpolator}
* attribute's value can be found in the {@link #AppBarLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int AppBarLayout_android_background=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#elevation}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:elevation
*/
public static final int AppBarLayout_elevation=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expanded}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:expanded
*/
public static final int AppBarLayout_expanded=2;
/**
* 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 cn.jcex:srcCompat}</code></td><td></td></tr>
* </table>
* @see #AppCompatImageView_android_src
* @see #AppCompatImageView_srcCompat
*/
public static final int[] AppCompatImageView={
0x01010119, 0x7f030135
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#src}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:src
*/
public static final int AppCompatImageView_android_src=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srcCompat}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srcCompat
*/
public static final int AppCompatImageView_srcCompat=1;
/**
* 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 cn.jcex:tickMark}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint cn.jcex:tickMarkTint}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode cn.jcex: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, 0x7f03019d, 0x7f03019e, 0x7f03019f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#thumb}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tickMark}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:tickMark
*/
public static final int AppCompatSeekBar_tickMark=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tickMarkTint}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tickMarkTintMode}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode=3;
/**
* Attributes that can be used with a AppCompatTextHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
* </table>
* @see #AppCompatTextHelper_android_textAppearance
* @see #AppCompatTextHelper_android_drawableTop
* @see #AppCompatTextHelper_android_drawableBottom
* @see #AppCompatTextHelper_android_drawableLeft
* @see #AppCompatTextHelper_android_drawableRight
* @see #AppCompatTextHelper_android_drawableStart
* @see #AppCompatTextHelper_android_drawableEnd
*/
public static final int[] AppCompatTextHelper={
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableRight}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableStart}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableTop}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance=0;
/**
* Attributes that can be used with a AppCompatTextView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_textAllCaps cn.jcex:textAllCaps}</code></td><td></td></tr>
* </table>
* @see #AppCompatTextView_android_textAppearance
* @see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView={
0x01010034, 0x7f03018c
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAllCaps}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps=1;
/**
* Attributes that can be used with a AppCompatTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarDivider cn.jcex:actionBarDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground cn.jcex:actionBarItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme cn.jcex:actionBarPopupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSize cn.jcex:actionBarSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle cn.jcex:actionBarSplitStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarStyle cn.jcex:actionBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle cn.jcex:actionBarTabBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle cn.jcex:actionBarTabStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle cn.jcex:actionBarTabTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTheme cn.jcex:actionBarTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme cn.jcex:actionBarWidgetTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionButtonStyle cn.jcex:actionButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle cn.jcex:actionDropDownStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance cn.jcex:actionMenuTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor cn.jcex:actionMenuTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeBackground cn.jcex:actionModeBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle cn.jcex:actionModeCloseButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable cn.jcex:actionModeCloseDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable cn.jcex:actionModeCopyDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable cn.jcex:actionModeCutDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable cn.jcex:actionModeFindDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable cn.jcex:actionModePasteDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle cn.jcex:actionModePopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable cn.jcex:actionModeSelectAllDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable cn.jcex:actionModeShareDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground cn.jcex:actionModeSplitBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeStyle cn.jcex:actionModeStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable cn.jcex:actionModeWebSearchDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle cn.jcex:actionOverflowButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle cn.jcex:actionOverflowMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle cn.jcex:activityChooserViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle cn.jcex:alertDialogButtonGroupStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons cn.jcex:alertDialogCenterButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogStyle cn.jcex:alertDialogStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogTheme cn.jcex:alertDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle cn.jcex:autoCompleteTextViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle cn.jcex:borderlessButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle cn.jcex:buttonBarButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle cn.jcex:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle cn.jcex:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle cn.jcex:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarStyle cn.jcex:buttonBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyle cn.jcex:buttonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall cn.jcex:buttonStyleSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkboxStyle cn.jcex:checkboxStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle cn.jcex:checkedTextViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorAccent cn.jcex:colorAccent}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating cn.jcex:colorBackgroundFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorButtonNormal cn.jcex:colorButtonNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlActivated cn.jcex:colorControlActivated}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlHighlight cn.jcex:colorControlHighlight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlNormal cn.jcex:colorControlNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimary cn.jcex:colorPrimary}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark cn.jcex:colorPrimaryDark}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal cn.jcex:colorSwitchThumbNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_controlBackground cn.jcex:controlBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding cn.jcex:dialogPreferredPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogTheme cn.jcex:dialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerHorizontal cn.jcex:dividerHorizontal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerVertical cn.jcex:dividerVertical}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle cn.jcex:dropDownListViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight cn.jcex:dropdownListPreferredItemHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextBackground cn.jcex:editTextBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextColor cn.jcex:editTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextStyle cn.jcex:editTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator cn.jcex:homeAsUpIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_imageButtonStyle cn.jcex:imageButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator cn.jcex:listChoiceBackgroundIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog cn.jcex:listDividerAlertDialog}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle cn.jcex:listMenuViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle cn.jcex:listPopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight cn.jcex:listPreferredItemHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge cn.jcex:listPreferredItemHeightLarge}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall cn.jcex:listPreferredItemHeightSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft cn.jcex:listPreferredItemPaddingLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight cn.jcex:listPreferredItemPaddingRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelBackground cn.jcex:panelBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme cn.jcex:panelMenuListTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth cn.jcex:panelMenuListWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupMenuStyle cn.jcex:popupMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupWindowStyle cn.jcex:popupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_radioButtonStyle cn.jcex:radioButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyle cn.jcex:ratingBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator cn.jcex:ratingBarStyleIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall cn.jcex:ratingBarStyleSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_searchViewStyle cn.jcex:searchViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_seekBarStyle cn.jcex:seekBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackground cn.jcex:selectableItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless cn.jcex:selectableItemBackgroundBorderless}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle cn.jcex:spinnerDropDownItemStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerStyle cn.jcex:spinnerStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_switchStyle cn.jcex:switchStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu cn.jcex:textAppearanceLargePopupMenu}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem cn.jcex:textAppearanceListItem}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall cn.jcex:textAppearanceListItemSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader cn.jcex:textAppearancePopupMenuHeader}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle cn.jcex:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle cn.jcex:textAppearanceSearchResultTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu cn.jcex:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem cn.jcex:textColorAlertDialogListItem}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl cn.jcex:textColorSearchUrl}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle cn.jcex:toolbarNavigationButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarStyle cn.jcex:toolbarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBar cn.jcex:windowActionBar}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay cn.jcex:windowActionBarOverlay}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay cn.jcex:windowActionModeOverlay}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor cn.jcex:windowFixedHeightMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor cn.jcex:windowFixedHeightMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor cn.jcex:windowFixedWidthMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor cn.jcex:windowFixedWidthMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor cn.jcex:windowMinWidthMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor cn.jcex:windowMinWidthMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowNoTitle cn.jcex:windowNoTitle}</code></td><td></td></tr>
* </table>
* @see #AppCompatTheme_android_windowIsFloating
* @see #AppCompatTheme_android_windowAnimationStyle
* @see #AppCompatTheme_actionBarDivider
* @see #AppCompatTheme_actionBarItemBackground
* @see #AppCompatTheme_actionBarPopupTheme
* @see #AppCompatTheme_actionBarSize
* @see #AppCompatTheme_actionBarSplitStyle
* @see #AppCompatTheme_actionBarStyle
* @see #AppCompatTheme_actionBarTabBarStyle
* @see #AppCompatTheme_actionBarTabStyle
* @see #AppCompatTheme_actionBarTabTextStyle
* @see #AppCompatTheme_actionBarTheme
* @see #AppCompatTheme_actionBarWidgetTheme
* @see #AppCompatTheme_actionButtonStyle
* @see #AppCompatTheme_actionDropDownStyle
* @see #AppCompatTheme_actionMenuTextAppearance
* @see #AppCompatTheme_actionMenuTextColor
* @see #AppCompatTheme_actionModeBackground
* @see #AppCompatTheme_actionModeCloseButtonStyle
* @see #AppCompatTheme_actionModeCloseDrawable
* @see #AppCompatTheme_actionModeCopyDrawable
* @see #AppCompatTheme_actionModeCutDrawable
* @see #AppCompatTheme_actionModeFindDrawable
* @see #AppCompatTheme_actionModePasteDrawable
* @see #AppCompatTheme_actionModePopupWindowStyle
* @see #AppCompatTheme_actionModeSelectAllDrawable
* @see #AppCompatTheme_actionModeShareDrawable
* @see #AppCompatTheme_actionModeSplitBackground
* @see #AppCompatTheme_actionModeStyle
* @see #AppCompatTheme_actionModeWebSearchDrawable
* @see #AppCompatTheme_actionOverflowButtonStyle
* @see #AppCompatTheme_actionOverflowMenuStyle
* @see #AppCompatTheme_activityChooserViewStyle
* @see #AppCompatTheme_alertDialogButtonGroupStyle
* @see #AppCompatTheme_alertDialogCenterButtons
* @see #AppCompatTheme_alertDialogStyle
* @see #AppCompatTheme_alertDialogTheme
* @see #AppCompatTheme_autoCompleteTextViewStyle
* @see #AppCompatTheme_borderlessButtonStyle
* @see #AppCompatTheme_buttonBarButtonStyle
* @see #AppCompatTheme_buttonBarNegativeButtonStyle
* @see #AppCompatTheme_buttonBarNeutralButtonStyle
* @see #AppCompatTheme_buttonBarPositiveButtonStyle
* @see #AppCompatTheme_buttonBarStyle
* @see #AppCompatTheme_buttonStyle
* @see #AppCompatTheme_buttonStyleSmall
* @see #AppCompatTheme_checkboxStyle
* @see #AppCompatTheme_checkedTextViewStyle
* @see #AppCompatTheme_colorAccent
* @see #AppCompatTheme_colorBackgroundFloating
* @see #AppCompatTheme_colorButtonNormal
* @see #AppCompatTheme_colorControlActivated
* @see #AppCompatTheme_colorControlHighlight
* @see #AppCompatTheme_colorControlNormal
* @see #AppCompatTheme_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_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_windowActionBar
* @see #AppCompatTheme_windowActionBarOverlay
* @see #AppCompatTheme_windowActionModeOverlay
* @see #AppCompatTheme_windowFixedHeightMajor
* @see #AppCompatTheme_windowFixedHeightMinor
* @see #AppCompatTheme_windowFixedWidthMajor
* @see #AppCompatTheme_windowFixedWidthMinor
* @see #AppCompatTheme_windowMinWidthMajor
* @see #AppCompatTheme_windowMinWidthMinor
* @see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme={
0x01010057, 0x010100ae, 0x7f030000, 0x7f030001,
0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005,
0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009,
0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e,
0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012,
0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016,
0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a,
0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e,
0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024,
0x7f030025, 0x7f03002a, 0x7f030037, 0x7f03003a,
0x7f03003b, 0x7f03003c, 0x7f03003d, 0x7f03003e,
0x7f030041, 0x7f030042, 0x7f030045, 0x7f030046,
0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030051,
0x7f030052, 0x7f030053, 0x7f030054, 0x7f030055,
0x7f030056, 0x7f03005f, 0x7f03006a, 0x7f03006b,
0x7f03006e, 0x7f030070, 0x7f030073, 0x7f030074,
0x7f030075, 0x7f030076, 0x7f030077, 0x7f03009f,
0x7f0300a3, 0x7f0300cc, 0x7f0300cd, 0x7f0300d0,
0x7f0300d1, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4,
0x7f0300d5, 0x7f0300d6, 0x7f030102, 0x7f030103,
0x7f030104, 0x7f03010e, 0x7f030110, 0x7f030117,
0x7f030118, 0x7f030119, 0x7f03011a, 0x7f030123,
0x7f030124, 0x7f030125, 0x7f030126, 0x7f030132,
0x7f030133, 0x7f03017a, 0x7f03018d, 0x7f03018e,
0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030192,
0x7f030193, 0x7f030194, 0x7f030196, 0x7f0301b1,
0x7f0301b2, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba,
0x7f0301bb, 0x7f0301bc, 0x7f0301bd, 0x7f0301be,
0x7f0301bf, 0x7f0301c0, 0x7f0301c1
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarDivider}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarItemBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarPopupTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarSize}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarSplitStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarTabBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarTabStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarTabTextStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionBarWidgetTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionDropDownStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionMenuTextAppearance}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance=15;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionMenuTextColor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor=16;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground=17;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeCloseButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle=18;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeCloseDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable=19;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeCopyDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable=20;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeCutDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable=21;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeFindDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable=22;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModePasteDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable=23;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModePopupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle=24;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeSelectAllDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable=25;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeShareDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable=26;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeSplitBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground=27;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle=28;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionModeWebSearchDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable=29;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionOverflowButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle=30;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionOverflowMenuStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle=31;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#activityChooserViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle=32;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#alertDialogButtonGroupStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle=33;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#alertDialogCenterButtons}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons=34;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#alertDialogStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle=35;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#alertDialogTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme=36;
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#autoCompleteTextViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle=37;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#borderlessButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle=38;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonBarButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle=39;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonBarNegativeButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonBarNeutralButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonBarPositiveButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle=43;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle=44;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonStyleSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall=45;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#checkboxStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle=46;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#checkedTextViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle=47;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorAccent}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorAccent
*/
public static final int AppCompatTheme_colorAccent=48;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorBackgroundFloating}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating=49;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorButtonNormal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal=50;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorControlActivated}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated=51;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorControlHighlight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight=52;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorControlNormal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal=53;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorPrimary}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary=54;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorPrimaryDark}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark=55;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#colorSwitchThumbNormal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal=56;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#controlBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:controlBackground
*/
public static final int AppCompatTheme_controlBackground=57;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dialogPreferredPadding}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding=58;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dialogTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme=59;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dividerHorizontal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal=60;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dividerVertical}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical=61;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dropDownListViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle=62;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dropdownListPreferredItemHeight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight=63;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#editTextBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground=64;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#editTextColor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:editTextColor
*/
public static final int AppCompatTheme_editTextColor=65;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#editTextStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle=66;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#homeAsUpIndicator}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator=67;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#imageButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle=68;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listChoiceBackgroundIndicator}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator=69;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listDividerAlertDialog}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog=70;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listMenuViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle=71;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listPopupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle=72;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listPreferredItemHeight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight=73;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listPreferredItemHeightLarge}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge=74;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listPreferredItemHeightSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall=75;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listPreferredItemPaddingLeft}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft=76;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#listPreferredItemPaddingRight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight=77;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#panelBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:panelBackground
*/
public static final int AppCompatTheme_panelBackground=78;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#panelMenuListTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme=79;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#panelMenuListWidth}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth=80;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#popupMenuStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle=81;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#popupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle=82;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#radioButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle=83;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#ratingBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle=84;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#ratingBarStyleIndicator}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator=85;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#ratingBarStyleSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall=86;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#searchViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle=87;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#seekBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle=88;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#selectableItemBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground=89;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#selectableItemBackgroundBorderless}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless=90;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#spinnerDropDownItemStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle=91;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#spinnerStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle=92;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#switchStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:switchStyle
*/
public static final int AppCompatTheme_switchStyle=93;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearanceLargePopupMenu}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu=94;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearanceListItem}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem=95;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearanceListItemSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall=96;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearancePopupMenuHeader}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader=97;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearanceSearchResultSubtitle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=98;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearanceSearchResultTitle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle=99;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAppearanceSmallPopupMenu}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu=100;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textColorAlertDialogListItem}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem=101;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textColorSearchUrl}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl=102;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#toolbarNavigationButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle=103;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#toolbarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle=104;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowActionBar}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar=105;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowActionBarOverlay}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay=106;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowActionModeOverlay}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay=107;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowFixedHeightMajor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor=108;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowFixedHeightMinor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor=109;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowFixedWidthMajor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor=110;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowFixedWidthMinor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor=111;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowMinWidthMajor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor=112;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowMinWidthMinor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor=113;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#windowNoTitle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle=114;
/**
* Attributes that can be used with a BallPulseFooter.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BallPulseFooter_srlAnimatingColor cn.jcex:srlAnimatingColor}</code></td><td></td></tr>
* <tr><td><code>{@link #BallPulseFooter_srlClassicsSpinnerStyle cn.jcex:srlClassicsSpinnerStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #BallPulseFooter_srlNormalColor cn.jcex:srlNormalColor}</code></td><td></td></tr>
* </table>
* @see #BallPulseFooter_srlAnimatingColor
* @see #BallPulseFooter_srlClassicsSpinnerStyle
* @see #BallPulseFooter_srlNormalColor
*/
public static final int[] BallPulseFooter={
0x7f030137, 0x7f030138, 0x7f030164
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlAnimatingColor}
* attribute's value can be found in the {@link #BallPulseFooter} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlAnimatingColor
*/
public static final int BallPulseFooter_srlAnimatingColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlClassicsSpinnerStyle}
* attribute's value can be found in the {@link #BallPulseFooter} 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>FixedBehind</td><td>2</td><td></td></tr>
* <tr><td>Scale</td><td>1</td><td></td></tr>
* <tr><td>Translate</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:srlClassicsSpinnerStyle
*/
public static final int BallPulseFooter_srlClassicsSpinnerStyle=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlNormalColor}
* attribute's value can be found in the {@link #BallPulseFooter} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlNormalColor
*/
public static final int BallPulseFooter_srlNormalColor=2;
/**
* Attributes that can be used with a Banner.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Banner_delay_time cn.jcex:delay_time}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_image_scale_type cn.jcex:image_scale_type}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_indicator_drawable_selected cn.jcex:indicator_drawable_selected}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_indicator_drawable_unselected cn.jcex:indicator_drawable_unselected}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_indicator_height cn.jcex:indicator_height}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_indicator_margin cn.jcex:indicator_margin}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_indicator_width cn.jcex:indicator_width}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_is_auto_play cn.jcex:is_auto_play}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_scroll_time cn.jcex:scroll_time}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_title_background cn.jcex:title_background}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_title_height cn.jcex:title_height}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_title_textcolor cn.jcex:title_textcolor}</code></td><td></td></tr>
* <tr><td><code>{@link #Banner_title_textsize cn.jcex:title_textsize}</code></td><td></td></tr>
* </table>
* @see #Banner_delay_time
* @see #Banner_image_scale_type
* @see #Banner_indicator_drawable_selected
* @see #Banner_indicator_drawable_unselected
* @see #Banner_indicator_height
* @see #Banner_indicator_margin
* @see #Banner_indicator_width
* @see #Banner_is_auto_play
* @see #Banner_scroll_time
* @see #Banner_title_background
* @see #Banner_title_height
* @see #Banner_title_textcolor
* @see #Banner_title_textsize
*/
public static final int[] Banner={
0x7f030066, 0x7f0300a4, 0x7f0300a6, 0x7f0300a7,
0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300b7,
0x7f030120, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad,
0x7f0301ae
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#delay_time}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:delay_time
*/
public static final int Banner_delay_time=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#image_scale_type}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>0</td><td></td></tr>
* <tr><td>center_crop</td><td>1</td><td></td></tr>
* <tr><td>center_inside</td><td>2</td><td></td></tr>
* <tr><td>fit_center</td><td>3</td><td></td></tr>
* <tr><td>fit_end</td><td>4</td><td></td></tr>
* <tr><td>fit_start</td><td>5</td><td></td></tr>
* <tr><td>fit_xy</td><td>6</td><td></td></tr>
* <tr><td>matrix</td><td>7</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:image_scale_type
*/
public static final int Banner_image_scale_type=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#indicator_drawable_selected}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:indicator_drawable_selected
*/
public static final int Banner_indicator_drawable_selected=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#indicator_drawable_unselected}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:indicator_drawable_unselected
*/
public static final int Banner_indicator_drawable_unselected=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#indicator_height}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:indicator_height
*/
public static final int Banner_indicator_height=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#indicator_margin}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:indicator_margin
*/
public static final int Banner_indicator_margin=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#indicator_width}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:indicator_width
*/
public static final int Banner_indicator_width=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#is_auto_play}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:is_auto_play
*/
public static final int Banner_is_auto_play=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#scroll_time}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:scroll_time
*/
public static final int Banner_scroll_time=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title_background}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:title_background
*/
public static final int Banner_title_background=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title_height}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:title_height
*/
public static final int Banner_title_height=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title_textcolor}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:title_textcolor
*/
public static final int Banner_title_textcolor=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title_textsize}
* attribute's value can be found in the {@link #Banner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:title_textsize
*/
public static final int Banner_title_textsize=12;
/**
* Attributes that can be used with a BezierRadarHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BezierRadarHeader_srlAccentColor cn.jcex:srlAccentColor}</code></td><td></td></tr>
* <tr><td><code>{@link #BezierRadarHeader_srlEnableHorizontalDrag cn.jcex:srlEnableHorizontalDrag}</code></td><td></td></tr>
* <tr><td><code>{@link #BezierRadarHeader_srlPrimaryColor cn.jcex:srlPrimaryColor}</code></td><td></td></tr>
* </table>
* @see #BezierRadarHeader_srlAccentColor
* @see #BezierRadarHeader_srlEnableHorizontalDrag
* @see #BezierRadarHeader_srlPrimaryColor
*/
public static final int[] BezierRadarHeader={
0x7f030136, 0x7f030148, 0x7f030165
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlAccentColor}
* attribute's value can be found in the {@link #BezierRadarHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlAccentColor
*/
public static final int BezierRadarHeader_srlAccentColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableHorizontalDrag}
* attribute's value can be found in the {@link #BezierRadarHeader} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableHorizontalDrag
*/
public static final int BezierRadarHeader_srlEnableHorizontalDrag=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlPrimaryColor}
* attribute's value can be found in the {@link #BezierRadarHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlPrimaryColor
*/
public static final int BezierRadarHeader_srlPrimaryColor=2;
/**
* 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 cn.jcex:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemBackground cn.jcex:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemIconTint cn.jcex:itemIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemTextColor cn.jcex:itemTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_menu cn.jcex: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={
0x7f030078, 0x7f0300b8, 0x7f0300b9, 0x7f0300bc,
0x7f0300e6
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#elevation}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:elevation
*/
public static final int BottomNavigationView_elevation=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemBackground}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:itemBackground
*/
public static final int BottomNavigationView_itemBackground=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemIconTint}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemTextColor}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#menu}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:menu
*/
public static final int BottomNavigationView_menu=4;
/**
* 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 cn.jcex:behavior_hideable}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight cn.jcex:behavior_peekHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed cn.jcex: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={
0x7f030032, 0x7f030034, 0x7f030035
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#behavior_hideable}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#behavior_peekHeight}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#behavior_skipCollapsed}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=2;
/**
* Attributes that can be used with a ButtonBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ButtonBarLayout_allowStacking cn.jcex:allowStacking}</code></td><td></td></tr>
* </table>
* @see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout={
0x7f030026
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#allowStacking}
* attribute's value can be found in the {@link #ButtonBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:allowStacking
*/
public static final int ButtonBarLayout_allowStacking=0;
/**
* Attributes that can be used with a ClassicsFooter.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ClassicsFooter_srlAccentColor cn.jcex:srlAccentColor}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlClassicsSpinnerStyle cn.jcex:srlClassicsSpinnerStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlDrawableArrow cn.jcex:srlDrawableArrow}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlDrawableArrowSize cn.jcex:srlDrawableArrowSize}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlDrawableMarginRight cn.jcex:srlDrawableMarginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlDrawableProgress cn.jcex:srlDrawableProgress}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlDrawableProgressSize cn.jcex:srlDrawableProgressSize}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlDrawableSize cn.jcex:srlDrawableSize}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlFinishDuration cn.jcex:srlFinishDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlPrimaryColor cn.jcex:srlPrimaryColor}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsFooter_srlTextSizeTitle cn.jcex:srlTextSizeTitle}</code></td><td></td></tr>
* </table>
* @see #ClassicsFooter_srlAccentColor
* @see #ClassicsFooter_srlClassicsSpinnerStyle
* @see #ClassicsFooter_srlDrawableArrow
* @see #ClassicsFooter_srlDrawableArrowSize
* @see #ClassicsFooter_srlDrawableMarginRight
* @see #ClassicsFooter_srlDrawableProgress
* @see #ClassicsFooter_srlDrawableProgressSize
* @see #ClassicsFooter_srlDrawableSize
* @see #ClassicsFooter_srlFinishDuration
* @see #ClassicsFooter_srlPrimaryColor
* @see #ClassicsFooter_srlTextSizeTitle
*/
public static final int[] ClassicsFooter={
0x7f030136, 0x7f030138, 0x7f03013c, 0x7f03013d,
0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141,
0x7f030156, 0x7f030165, 0x7f030169
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlAccentColor}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlAccentColor
*/
public static final int ClassicsFooter_srlAccentColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlClassicsSpinnerStyle}
* attribute's value can be found in the {@link #ClassicsFooter} 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>FixedBehind</td><td>2</td><td></td></tr>
* <tr><td>Scale</td><td>1</td><td></td></tr>
* <tr><td>Translate</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:srlClassicsSpinnerStyle
*/
public static final int ClassicsFooter_srlClassicsSpinnerStyle=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableArrow}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srlDrawableArrow
*/
public static final int ClassicsFooter_srlDrawableArrow=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableArrowSize}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableArrowSize
*/
public static final int ClassicsFooter_srlDrawableArrowSize=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableMarginRight}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableMarginRight
*/
public static final int ClassicsFooter_srlDrawableMarginRight=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableProgress}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srlDrawableProgress
*/
public static final int ClassicsFooter_srlDrawableProgress=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableProgressSize}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableProgressSize
*/
public static final int ClassicsFooter_srlDrawableProgressSize=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableSize}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableSize
*/
public static final int ClassicsFooter_srlDrawableSize=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFinishDuration}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:srlFinishDuration
*/
public static final int ClassicsFooter_srlFinishDuration=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlPrimaryColor}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlPrimaryColor
*/
public static final int ClassicsFooter_srlPrimaryColor=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlTextSizeTitle}
* attribute's value can be found in the {@link #ClassicsFooter} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlTextSizeTitle
*/
public static final int ClassicsFooter_srlTextSizeTitle=10;
/**
* Attributes that can be used with a ClassicsHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ClassicsHeader_srlAccentColor cn.jcex:srlAccentColor}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlClassicsSpinnerStyle cn.jcex:srlClassicsSpinnerStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlDrawableArrow cn.jcex:srlDrawableArrow}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlDrawableArrowSize cn.jcex:srlDrawableArrowSize}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlDrawableMarginRight cn.jcex:srlDrawableMarginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlDrawableProgress cn.jcex:srlDrawableProgress}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlDrawableProgressSize cn.jcex:srlDrawableProgressSize}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlDrawableSize cn.jcex:srlDrawableSize}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlEnableLastTime cn.jcex:srlEnableLastTime}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlFinishDuration cn.jcex:srlFinishDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlPrimaryColor cn.jcex:srlPrimaryColor}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlTextSizeTime cn.jcex:srlTextSizeTime}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlTextSizeTitle cn.jcex:srlTextSizeTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #ClassicsHeader_srlTextTimeMarginTop cn.jcex:srlTextTimeMarginTop}</code></td><td></td></tr>
* </table>
* @see #ClassicsHeader_srlAccentColor
* @see #ClassicsHeader_srlClassicsSpinnerStyle
* @see #ClassicsHeader_srlDrawableArrow
* @see #ClassicsHeader_srlDrawableArrowSize
* @see #ClassicsHeader_srlDrawableMarginRight
* @see #ClassicsHeader_srlDrawableProgress
* @see #ClassicsHeader_srlDrawableProgressSize
* @see #ClassicsHeader_srlDrawableSize
* @see #ClassicsHeader_srlEnableLastTime
* @see #ClassicsHeader_srlFinishDuration
* @see #ClassicsHeader_srlPrimaryColor
* @see #ClassicsHeader_srlTextSizeTime
* @see #ClassicsHeader_srlTextSizeTitle
* @see #ClassicsHeader_srlTextTimeMarginTop
*/
public static final int[] ClassicsHeader={
0x7f030136, 0x7f030138, 0x7f03013c, 0x7f03013d,
0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141,
0x7f030149, 0x7f030156, 0x7f030165, 0x7f030168,
0x7f030169, 0x7f03016a
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlAccentColor}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlAccentColor
*/
public static final int ClassicsHeader_srlAccentColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlClassicsSpinnerStyle}
* attribute's value can be found in the {@link #ClassicsHeader} 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>FixedBehind</td><td>2</td><td></td></tr>
* <tr><td>Scale</td><td>1</td><td></td></tr>
* <tr><td>Translate</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:srlClassicsSpinnerStyle
*/
public static final int ClassicsHeader_srlClassicsSpinnerStyle=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableArrow}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srlDrawableArrow
*/
public static final int ClassicsHeader_srlDrawableArrow=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableArrowSize}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableArrowSize
*/
public static final int ClassicsHeader_srlDrawableArrowSize=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableMarginRight}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableMarginRight
*/
public static final int ClassicsHeader_srlDrawableMarginRight=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableProgress}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srlDrawableProgress
*/
public static final int ClassicsHeader_srlDrawableProgress=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableProgressSize}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableProgressSize
*/
public static final int ClassicsHeader_srlDrawableProgressSize=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDrawableSize}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlDrawableSize
*/
public static final int ClassicsHeader_srlDrawableSize=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableLastTime}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableLastTime
*/
public static final int ClassicsHeader_srlEnableLastTime=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFinishDuration}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:srlFinishDuration
*/
public static final int ClassicsHeader_srlFinishDuration=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlPrimaryColor}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlPrimaryColor
*/
public static final int ClassicsHeader_srlPrimaryColor=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlTextSizeTime}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlTextSizeTime
*/
public static final int ClassicsHeader_srlTextSizeTime=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlTextSizeTitle}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlTextSizeTitle
*/
public static final int ClassicsHeader_srlTextSizeTitle=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlTextTimeMarginTop}
* attribute's value can be found in the {@link #ClassicsHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlTextTimeMarginTop
*/
public static final int ClassicsHeader_srlTextTimeMarginTop=13;
/**
* 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 cn.jcex:collapsedTitleGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance cn.jcex:collapsedTitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim cn.jcex:contentScrim}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity cn.jcex:expandedTitleGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin cn.jcex:expandedTitleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom cn.jcex:expandedTitleMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd cn.jcex:expandedTitleMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart cn.jcex:expandedTitleMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop cn.jcex:expandedTitleMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance cn.jcex:expandedTitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration cn.jcex:scrimAnimationDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger cn.jcex:scrimVisibleHeightTrigger}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim cn.jcex:statusBarScrim}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_title cn.jcex:title}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled cn.jcex:titleEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId cn.jcex: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={
0x7f03004b, 0x7f03004c, 0x7f03005e, 0x7f03007d,
0x7f03007e, 0x7f03007f, 0x7f030080, 0x7f030081,
0x7f030082, 0x7f030083, 0x7f03011e, 0x7f03011f,
0x7f030170, 0x7f0301a0, 0x7f0301a1, 0x7f0301b0
};
/**
* 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 cn.jcex:layout_collapseMode}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier cn.jcex:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
* </table>
* @see #CollapsingToolbarLayout_Layout_layout_collapseMode
* @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout={
0x7f0300c3, 0x7f0300c4
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_collapseMode}
* attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>parallax</td><td>2</td><td></td></tr>
* <tr><td>pin</td><td>1</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_collapseParallaxMultiplier}
* attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#collapsedTitleGravity}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#collapsedTitleTextAppearance}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentScrim}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleGravity}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleMargin}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleMarginBottom}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleMarginEnd}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleMarginStart}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleMarginTop}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#expandedTitleTextAppearance}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#scrimAnimationDuration}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#scrimVisibleHeightTrigger}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#statusBarScrim}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:title
*/
public static final int CollapsingToolbarLayout_title=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleEnabled}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#toolbarId}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId=15;
/**
* Attributes that can be used with a ColorStateListItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_alpha cn.jcex:alpha}</code></td><td></td></tr>
* </table>
* @see #ColorStateListItem_android_color
* @see #ColorStateListItem_android_alpha
* @see #ColorStateListItem_alpha
*/
public static final int[] ColorStateListItem={
0x010101a5, 0x0101031f, 0x7f030027
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#alpha}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:alpha
*/
public static final int ColorStateListItem_alpha=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alpha}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#color}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:color
*/
public static final int ColorStateListItem_android_color=0;
/**
* 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 cn.jcex:buttonTint}</code></td><td></td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTintMode cn.jcex:buttonTintMode}</code></td><td></td></tr>
* </table>
* @see #CompoundButton_android_button
* @see #CompoundButton_buttonTint
* @see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton={
0x01010107, 0x7f030043, 0x7f030044
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#button}
* attribute's value can be found in the {@link #CompoundButton} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:button
*/
public static final int CompoundButton_android_button=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonTint}
* attribute's value can be found in the {@link #CompoundButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:buttonTint
*/
public static final int CompoundButton_buttonTint=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.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>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode=2;
/**
* Attributes that can be used with a CoordinatorLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_keylines cn.jcex:keylines}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_statusBarBackground cn.jcex:statusBarBackground}</code></td><td></td></tr>
* </table>
* @see #CoordinatorLayout_keylines
* @see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout={
0x7f0300bd, 0x7f03016f
};
/**
* 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 cn.jcex:layout_anchor}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity cn.jcex:layout_anchorGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior cn.jcex:layout_behavior}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges cn.jcex:layout_dodgeInsetEdges}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge cn.jcex:layout_insetEdge}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline cn.jcex: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, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2,
0x7f0300c5, 0x7f0300c6, 0x7f0300c7
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_anchor}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_anchorGravity}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_behavior}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_dodgeInsetEdges}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>77</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>3</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_insetEdge}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>3</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_keyline}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#keylines}
* attribute's value can be found in the {@link #CoordinatorLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:keylines
*/
public static final int CoordinatorLayout_keylines=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#statusBarBackground}
* attribute's value can be found in the {@link #CoordinatorLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground=1;
/**
* 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 cn.jcex:bottomSheetDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #DesignTheme_bottomSheetStyle cn.jcex:bottomSheetStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #DesignTheme_textColorError cn.jcex:textColorError}</code></td><td></td></tr>
* </table>
* @see #DesignTheme_bottomSheetDialogTheme
* @see #DesignTheme_bottomSheetStyle
* @see #DesignTheme_textColorError
*/
public static final int[] DesignTheme={
0x7f030038, 0x7f030039, 0x7f030195
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#bottomSheetDialogTheme}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#bottomSheetStyle}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textColorError}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:textColorError
*/
public static final int DesignTheme_textColorError=2;
/**
* Attributes that can be used with a DrawerArrowToggle.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength cn.jcex:arrowHeadLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength cn.jcex:arrowShaftLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_barLength cn.jcex:barLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_color cn.jcex:color}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_drawableSize cn.jcex:drawableSize}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars cn.jcex:gapBetweenBars}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_spinBars cn.jcex:spinBars}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_thickness cn.jcex: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={
0x7f030028, 0x7f030029, 0x7f030030, 0x7f03004d,
0x7f030071, 0x7f030097, 0x7f030131, 0x7f030199
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#arrowHeadLength}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#arrowShaftLength}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#barLength}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:barLength
*/
public static final int DrawerArrowToggle_barLength=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#color}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:color
*/
public static final int DrawerArrowToggle_color=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#drawableSize}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#gapBetweenBars}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#spinBars}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:spinBars
*/
public static final int DrawerArrowToggle_spinBars=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#thickness}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:thickness
*/
public static final int DrawerArrowToggle_thickness=7;
/**
* Attributes that can be used with a DropBoxHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DropBoxHeader_dhDrawable1 cn.jcex:dhDrawable1}</code></td><td></td></tr>
* <tr><td><code>{@link #DropBoxHeader_dhDrawable2 cn.jcex:dhDrawable2}</code></td><td></td></tr>
* <tr><td><code>{@link #DropBoxHeader_dhDrawable3 cn.jcex:dhDrawable3}</code></td><td></td></tr>
* </table>
* @see #DropBoxHeader_dhDrawable1
* @see #DropBoxHeader_dhDrawable2
* @see #DropBoxHeader_dhDrawable3
*/
public static final int[] DropBoxHeader={
0x7f030067, 0x7f030068, 0x7f030069
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dhDrawable1}
* attribute's value can be found in the {@link #DropBoxHeader} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dhDrawable1
*/
public static final int DropBoxHeader_dhDrawable1=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dhDrawable2}
* attribute's value can be found in the {@link #DropBoxHeader} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dhDrawable2
*/
public static final int DropBoxHeader_dhDrawable2=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dhDrawable3}
* attribute's value can be found in the {@link #DropBoxHeader} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:dhDrawable3
*/
public static final int DropBoxHeader_dhDrawable3=2;
/**
* 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 cn.jcex:backgroundTint}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_backgroundTintMode cn.jcex:backgroundTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_borderWidth cn.jcex:borderWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_elevation cn.jcex:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_fabSize cn.jcex:fabSize}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ cn.jcex:pressedTranslationZ}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_rippleColor cn.jcex:rippleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_useCompatPadding cn.jcex: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={
0x7f03002e, 0x7f03002f, 0x7f030036, 0x7f030078,
0x7f030084, 0x7f030112, 0x7f03011c, 0x7f0301b6
};
/**
* 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 cn.jcex:behavior_autoHide}</code></td><td></td></tr>
* </table>
* @see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout={
0x7f030031
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#behavior_autoHide}
* attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#backgroundTint}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.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>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#borderWidth}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:borderWidth
*/
public static final int FloatingActionButton_borderWidth=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#elevation}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:elevation
*/
public static final int FloatingActionButton_elevation=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fabSize}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>mini</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:fabSize
*/
public static final int FloatingActionButton_fabSize=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#pressedTranslationZ}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#rippleColor}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:rippleColor
*/
public static final int FloatingActionButton_rippleColor=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#useCompatPadding}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding=7;
/**
* 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 cn.jcex: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, 0x7f030095
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#foreground}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#foregroundInsidePadding}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding=2;
/**
* Attributes that can be used with a FunGameHitBlockHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FunGameHitBlockHeader_fghBallSpeed cn.jcex:fghBallSpeed}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameHitBlockHeader_fghBlockHorizontalNum cn.jcex:fghBlockHorizontalNum}</code></td><td></td></tr>
* </table>
* @see #FunGameHitBlockHeader_fghBallSpeed
* @see #FunGameHitBlockHeader_fghBlockHorizontalNum
*/
public static final int[] FunGameHitBlockHeader={
0x7f030086, 0x7f030087
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghBallSpeed}
* attribute's value can be found in the {@link #FunGameHitBlockHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:fghBallSpeed
*/
public static final int FunGameHitBlockHeader_fghBallSpeed=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghBlockHorizontalNum}
* attribute's value can be found in the {@link #FunGameHitBlockHeader} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:fghBlockHorizontalNum
*/
public static final int FunGameHitBlockHeader_fghBlockHorizontalNum=1;
/**
* Attributes that can be used with a FunGameView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FunGameView_fghBackColor cn.jcex:fghBackColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghLeftColor cn.jcex:fghLeftColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMaskTextBottom cn.jcex:fghMaskTextBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMaskTextSizeBottom cn.jcex:fghMaskTextSizeBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMaskTextSizeTop cn.jcex:fghMaskTextSizeTop}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMaskTextTop cn.jcex:fghMaskTextTop}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMaskTextTopPull cn.jcex:fghMaskTextTopPull}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMaskTextTopRelease cn.jcex:fghMaskTextTopRelease}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghMiddleColor cn.jcex:fghMiddleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghRightColor cn.jcex:fghRightColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghTextGameOver cn.jcex:fghTextGameOver}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghTextLoading cn.jcex:fghTextLoading}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghTextLoadingFailed cn.jcex:fghTextLoadingFailed}</code></td><td></td></tr>
* <tr><td><code>{@link #FunGameView_fghTextLoadingFinished cn.jcex:fghTextLoadingFinished}</code></td><td></td></tr>
* </table>
* @see #FunGameView_fghBackColor
* @see #FunGameView_fghLeftColor
* @see #FunGameView_fghMaskTextBottom
* @see #FunGameView_fghMaskTextSizeBottom
* @see #FunGameView_fghMaskTextSizeTop
* @see #FunGameView_fghMaskTextTop
* @see #FunGameView_fghMaskTextTopPull
* @see #FunGameView_fghMaskTextTopRelease
* @see #FunGameView_fghMiddleColor
* @see #FunGameView_fghRightColor
* @see #FunGameView_fghTextGameOver
* @see #FunGameView_fghTextLoading
* @see #FunGameView_fghTextLoadingFailed
* @see #FunGameView_fghTextLoadingFinished
*/
public static final int[] FunGameView={
0x7f030085, 0x7f030088, 0x7f030089, 0x7f03008a,
0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008e,
0x7f03008f, 0x7f030090, 0x7f030091, 0x7f030092,
0x7f030093, 0x7f030094
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghBackColor}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:fghBackColor
*/
public static final int FunGameView_fghBackColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghLeftColor}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:fghLeftColor
*/
public static final int FunGameView_fghLeftColor=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMaskTextBottom}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghMaskTextBottom
*/
public static final int FunGameView_fghMaskTextBottom=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMaskTextSizeBottom}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:fghMaskTextSizeBottom
*/
public static final int FunGameView_fghMaskTextSizeBottom=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMaskTextSizeTop}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:fghMaskTextSizeTop
*/
public static final int FunGameView_fghMaskTextSizeTop=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMaskTextTop}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghMaskTextTop
*/
public static final int FunGameView_fghMaskTextTop=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMaskTextTopPull}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghMaskTextTopPull
*/
public static final int FunGameView_fghMaskTextTopPull=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMaskTextTopRelease}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghMaskTextTopRelease
*/
public static final int FunGameView_fghMaskTextTopRelease=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghMiddleColor}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:fghMiddleColor
*/
public static final int FunGameView_fghMiddleColor=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghRightColor}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:fghRightColor
*/
public static final int FunGameView_fghRightColor=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghTextGameOver}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghTextGameOver
*/
public static final int FunGameView_fghTextGameOver=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghTextLoading}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghTextLoading
*/
public static final int FunGameView_fghTextLoading=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghTextLoadingFailed}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghTextLoadingFailed
*/
public static final int FunGameView_fghTextLoadingFailed=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fghTextLoadingFinished}
* attribute's value can be found in the {@link #FunGameView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:fghTextLoadingFinished
*/
public static final int FunGameView_fghTextLoadingFinished=13;
/**
* Attributes that can be used with a LinearLayoutCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_divider cn.jcex:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_dividerPadding cn.jcex:dividerPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild cn.jcex:measureWithLargestChild}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_showDividers cn.jcex:showDividers}</code></td><td></td></tr>
* </table>
* @see #LinearLayoutCompat_android_gravity
* @see #LinearLayoutCompat_android_orientation
* @see #LinearLayoutCompat_android_baselineAligned
* @see #LinearLayoutCompat_android_baselineAlignedChildIndex
* @see #LinearLayoutCompat_android_weightSum
* @see #LinearLayoutCompat_divider
* @see #LinearLayoutCompat_dividerPadding
* @see #LinearLayoutCompat_measureWithLargestChild
* @see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat={
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f03006d, 0x7f03006f, 0x7f0300e5,
0x7f03012c
};
/**
* Attributes that can be used with a LinearLayoutCompat_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
* </table>
* @see #LinearLayoutCompat_Layout_android_layout_gravity
* @see #LinearLayoutCompat_Layout_android_layout_width
* @see #LinearLayoutCompat_Layout_android_layout_height
* @see #LinearLayoutCompat_Layout_android_layout_weight
*/
public static final int[] LinearLayoutCompat_Layout={
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_height}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_weight}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_width}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#weightSum}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#divider}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:divider
*/
public static final int LinearLayoutCompat_divider=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#dividerPadding}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#measureWithLargestChild}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#showDividers}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>beginning</td><td>1</td><td></td></tr>
* <tr><td>end</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:showDividers
*/
public static final int LinearLayoutCompat_showDividers=8;
/**
* Attributes that can be used with a ListPopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
* </table>
* @see #ListPopupWindow_android_dropDownHorizontalOffset
* @see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow={
0x010102ac, 0x010102ad
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
* attribute's value can be found in the {@link #ListPopupWindow} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
* attribute's value can be found in the {@link #ListPopupWindow} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset=1;
/**
* Attributes that can be used with a MarqueeViewStyle.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvAnimDuration cn.jcex:mvAnimDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvDirection cn.jcex:mvDirection}</code></td><td></td></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvGravity cn.jcex:mvGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvInterval cn.jcex:mvInterval}</code></td><td></td></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvSingleLine cn.jcex:mvSingleLine}</code></td><td></td></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvTextColor cn.jcex:mvTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MarqueeViewStyle_mvTextSize cn.jcex:mvTextSize}</code></td><td></td></tr>
* </table>
* @see #MarqueeViewStyle_mvAnimDuration
* @see #MarqueeViewStyle_mvDirection
* @see #MarqueeViewStyle_mvGravity
* @see #MarqueeViewStyle_mvInterval
* @see #MarqueeViewStyle_mvSingleLine
* @see #MarqueeViewStyle_mvTextColor
* @see #MarqueeViewStyle_mvTextSize
*/
public static final int[] MarqueeViewStyle={
0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1,
0x7f0300f2, 0x7f0300f3, 0x7f0300f4
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvAnimDuration}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:mvAnimDuration
*/
public static final int MarqueeViewStyle_mvAnimDuration=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvDirection}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom_to_top</td><td>0</td><td></td></tr>
* <tr><td>left_to_right</td><td>3</td><td></td></tr>
* <tr><td>right_to_left</td><td>2</td><td></td></tr>
* <tr><td>top_to_bottom</td><td>1</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:mvDirection
*/
public static final int MarqueeViewStyle_mvDirection=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvGravity}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>left</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>2</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:mvGravity
*/
public static final int MarqueeViewStyle_mvGravity=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvInterval}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:mvInterval
*/
public static final int MarqueeViewStyle_mvInterval=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvSingleLine}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:mvSingleLine
*/
public static final int MarqueeViewStyle_mvSingleLine=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvTextColor}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:mvTextColor
*/
public static final int MarqueeViewStyle_mvTextColor=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mvTextSize}
* attribute's value can be found in the {@link #MarqueeViewStyle} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:mvTextSize
*/
public static final int MarqueeViewStyle_mvTextSize=6;
/**
* Attributes that can be used with a MaterialHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MaterialHeader_mhPrimaryColor cn.jcex:mhPrimaryColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialHeader_mhShadowColor cn.jcex:mhShadowColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialHeader_mhShadowRadius cn.jcex:mhShadowRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialHeader_mhShowBezierWave cn.jcex:mhShowBezierWave}</code></td><td></td></tr>
* </table>
* @see #MaterialHeader_mhPrimaryColor
* @see #MaterialHeader_mhShadowColor
* @see #MaterialHeader_mhShadowRadius
* @see #MaterialHeader_mhShowBezierWave
*/
public static final int[] MaterialHeader={
0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mhPrimaryColor}
* attribute's value can be found in the {@link #MaterialHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:mhPrimaryColor
*/
public static final int MaterialHeader_mhPrimaryColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mhShadowColor}
* attribute's value can be found in the {@link #MaterialHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:mhShadowColor
*/
public static final int MaterialHeader_mhShadowColor=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mhShadowRadius}
* attribute's value can be found in the {@link #MaterialHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:mhShadowRadius
*/
public static final int MaterialHeader_mhShadowRadius=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mhShowBezierWave}
* attribute's value can be found in the {@link #MaterialHeader} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:mhShowBezierWave
*/
public static final int MaterialHeader_mhShowBezierWave=3;
/**
* Attributes that can be used with a MenuGroup.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
* </table>
* @see #MenuGroup_android_enabled
* @see #MenuGroup_android_id
* @see #MenuGroup_android_visible
* @see #MenuGroup_android_menuCategory
* @see #MenuGroup_android_orderInCategory
* @see #MenuGroup_android_checkableBehavior
*/
public static final int[] MenuGroup={
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>all</td><td>1</td><td></td></tr>
* <tr><td>single</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#enabled}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int MenuGroup_android_enabled=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int MenuGroup_android_id=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>alternative</td><td>40000</td><td></td></tr>
* <tr><td>container</td><td>10000</td><td></td></tr>
* <tr><td>secondary</td><td>30000</td><td></td></tr>
* <tr><td>system</td><td>20000</td><td></td></tr>
* </table>
*
* @attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#visible}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int MenuGroup_android_visible=2;
/**
* Attributes that can be used with a MenuItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionLayout cn.jcex:actionLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionProviderClass cn.jcex:actionProviderClass}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionViewClass cn.jcex:actionViewClass}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_showAsAction cn.jcex:showAsAction}</code></td><td></td></tr>
* </table>
* @see #MenuItem_android_icon
* @see #MenuItem_android_enabled
* @see #MenuItem_android_id
* @see #MenuItem_android_checked
* @see #MenuItem_android_visible
* @see #MenuItem_android_menuCategory
* @see #MenuItem_android_orderInCategory
* @see #MenuItem_android_title
* @see #MenuItem_android_titleCondensed
* @see #MenuItem_android_alphabeticShortcut
* @see #MenuItem_android_numericShortcut
* @see #MenuItem_android_checkable
* @see #MenuItem_android_onClick
* @see #MenuItem_actionLayout
* @see #MenuItem_actionProviderClass
* @see #MenuItem_actionViewClass
* @see #MenuItem_showAsAction
*/
public static final int[] MenuItem={
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020,
0x7f03012b
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionLayout}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:actionLayout
*/
public static final int MenuItem_actionLayout=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionProviderClass}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:actionProviderClass
*/
public static final int MenuItem_actionProviderClass=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#actionViewClass}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:actionViewClass
*/
public static final int MenuItem_actionViewClass=15;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#checkable}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checkable
*/
public static final int MenuItem_android_checkable=11;
/**
* <p>This symbol is the offset where the {@link android.R.attr#checked}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checked
*/
public static final int MenuItem_android_checked=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#enabled}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int MenuItem_android_enabled=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#icon}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int MenuItem_android_icon=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int MenuItem_android_id=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>alternative</td><td>40000</td><td></td></tr>
* <tr><td>container</td><td>10000</td><td></td></tr>
* <tr><td>secondary</td><td>30000</td><td></td></tr>
* <tr><td>system</td><td>20000</td><td></td></tr>
* </table>
*
* @attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut=10;
/**
* <p>This symbol is the offset where the {@link android.R.attr#onClick}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:onClick
*/
public static final int MenuItem_android_onClick=12;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#title}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:title
*/
public static final int MenuItem_android_title=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#visible}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int MenuItem_android_visible=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#showAsAction}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>always</td><td>2</td><td></td></tr>
* <tr><td>collapseActionView</td><td>8</td><td></td></tr>
* <tr><td>ifRoom</td><td>1</td><td></td></tr>
* <tr><td>never</td><td>0</td><td></td></tr>
* <tr><td>withText</td><td>4</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:showAsAction
*/
public static final int MenuItem_showAsAction=16;
/**
* Attributes that can be used with a MenuView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_preserveIconSpacing cn.jcex:preserveIconSpacing}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_subMenuArrow cn.jcex:subMenuArrow}</code></td><td></td></tr>
* </table>
* @see #MenuView_android_windowAnimationStyle
* @see #MenuView_android_itemTextAppearance
* @see #MenuView_android_horizontalDivider
* @see #MenuView_android_verticalDivider
* @see #MenuView_android_headerBackground
* @see #MenuView_android_itemBackground
* @see #MenuView_android_itemIconDisabledAlpha
* @see #MenuView_preserveIconSpacing
* @see #MenuView_subMenuArrow
*/
public static final int[] MenuView={
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f030111,
0x7f030171
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#headerBackground}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#itemBackground}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#preserveIconSpacing}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subMenuArrow}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:subMenuArrow
*/
public static final int MenuView_subMenuArrow=8;
/**
* Attributes that can be used with a MountainSceneView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MountainSceneView_msvPrimaryColor cn.jcex:msvPrimaryColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MountainSceneView_msvViewportHeight cn.jcex:msvViewportHeight}</code></td><td></td></tr>
* </table>
* @see #MountainSceneView_msvPrimaryColor
* @see #MountainSceneView_msvViewportHeight
*/
public static final int[] MountainSceneView={
0x7f0300eb, 0x7f0300ec
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#msvPrimaryColor}
* attribute's value can be found in the {@link #MountainSceneView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:msvPrimaryColor
*/
public static final int MountainSceneView_msvPrimaryColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#msvViewportHeight}
* attribute's value can be found in the {@link #MountainSceneView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:msvViewportHeight
*/
public static final int MountainSceneView_msvViewportHeight=1;
/**
* Attributes that can be used with a MultiWaveHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MultiWaveHeader_mwhAlphaColor cn.jcex:mwhAlphaColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiWaveHeader_mwhCloseColor cn.jcex:mwhCloseColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiWaveHeader_mwhStartColor cn.jcex:mwhStartColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiWaveHeader_mwhWaveHeight cn.jcex:mwhWaveHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiWaveHeader_mwhWaves cn.jcex:mwhWaves}</code></td><td></td></tr>
* </table>
* @see #MultiWaveHeader_mwhAlphaColor
* @see #MultiWaveHeader_mwhCloseColor
* @see #MultiWaveHeader_mwhStartColor
* @see #MultiWaveHeader_mwhWaveHeight
* @see #MultiWaveHeader_mwhWaves
*/
public static final int[] MultiWaveHeader={
0x7f0300f5, 0x7f0300f6, 0x7f0300f7, 0x7f0300f8,
0x7f0300f9
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mwhAlphaColor}
* attribute's value can be found in the {@link #MultiWaveHeader} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:mwhAlphaColor
*/
public static final int MultiWaveHeader_mwhAlphaColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mwhCloseColor}
* attribute's value can be found in the {@link #MultiWaveHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:mwhCloseColor
*/
public static final int MultiWaveHeader_mwhCloseColor=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mwhStartColor}
* attribute's value can be found in the {@link #MultiWaveHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:mwhStartColor
*/
public static final int MultiWaveHeader_mwhStartColor=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mwhWaveHeight}
* attribute's value can be found in the {@link #MultiWaveHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:mwhWaveHeight
*/
public static final int MultiWaveHeader_mwhWaveHeight=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#mwhWaves}
* attribute's value can be found in the {@link #MultiWaveHeader} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:mwhWaves
*/
public static final int MultiWaveHeader_mwhWaves=4;
/**
* 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 cn.jcex:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_headerLayout cn.jcex:headerLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemBackground cn.jcex:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemIconTint cn.jcex:itemIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemTextAppearance cn.jcex:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemTextColor cn.jcex:itemTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_menu cn.jcex: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, 0x7f030078,
0x7f030099, 0x7f0300b8, 0x7f0300b9, 0x7f0300bb,
0x7f0300bc, 0x7f0300e6
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int NavigationView_android_background=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#elevation}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:elevation
*/
public static final int NavigationView_elevation=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#headerLayout}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:headerLayout
*/
public static final int NavigationView_headerLayout=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemBackground}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:itemBackground
*/
public static final int NavigationView_itemBackground=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemIconTint}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:itemIconTint
*/
public static final int NavigationView_itemIconTint=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemTextAppearance}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#itemTextColor}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:itemTextColor
*/
public static final int NavigationView_itemTextColor=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#menu}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:menu
*/
public static final int NavigationView_menu=9;
/**
* Attributes that can be used with a PhoenixHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PhoenixHeader_phAccentColor cn.jcex:phAccentColor}</code></td><td></td></tr>
* <tr><td><code>{@link #PhoenixHeader_phPrimaryColor cn.jcex:phPrimaryColor}</code></td><td></td></tr>
* </table>
* @see #PhoenixHeader_phAccentColor
* @see #PhoenixHeader_phPrimaryColor
*/
public static final int[] PhoenixHeader={
0x7f03010a, 0x7f03010b
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#phAccentColor}
* attribute's value can be found in the {@link #PhoenixHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:phAccentColor
*/
public static final int PhoenixHeader_phAccentColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#phPrimaryColor}
* attribute's value can be found in the {@link #PhoenixHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:phPrimaryColor
*/
public static final int PhoenixHeader_phPrimaryColor=1;
/**
* Attributes that can be used with a PopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_overlapAnchor cn.jcex:overlapAnchor}</code></td><td></td></tr>
* </table>
* @see #PopupWindow_android_popupBackground
* @see #PopupWindow_android_popupAnimationStyle
* @see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow={
0x01010176, 0x010102c9, 0x7f0300fd
};
/**
* 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 cn.jcex:state_above_anchor}</code></td><td></td></tr>
* </table>
* @see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState={
0x7f03016c
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#state_above_anchor}
* attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#overlapAnchor}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor=2;
/**
* Attributes that can be used with a ProgressWheel.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_barColor cn.jcex:matProg_barColor}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_barSpinCycleTime cn.jcex:matProg_barSpinCycleTime}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_barWidth cn.jcex:matProg_barWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_circleRadius cn.jcex:matProg_circleRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_fillRadius cn.jcex:matProg_fillRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_linearProgress cn.jcex:matProg_linearProgress}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_progressIndeterminate cn.jcex:matProg_progressIndeterminate}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_rimColor cn.jcex:matProg_rimColor}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_rimWidth cn.jcex:matProg_rimWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ProgressWheel_matProg_spinSpeed cn.jcex:matProg_spinSpeed}</code></td><td></td></tr>
* </table>
* @see #ProgressWheel_matProg_barColor
* @see #ProgressWheel_matProg_barSpinCycleTime
* @see #ProgressWheel_matProg_barWidth
* @see #ProgressWheel_matProg_circleRadius
* @see #ProgressWheel_matProg_fillRadius
* @see #ProgressWheel_matProg_linearProgress
* @see #ProgressWheel_matProg_progressIndeterminate
* @see #ProgressWheel_matProg_rimColor
* @see #ProgressWheel_matProg_rimWidth
* @see #ProgressWheel_matProg_spinSpeed
*/
public static final int[] ProgressWheel={
0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dc,
0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f0300e0,
0x7f0300e1, 0x7f0300e2
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_barColor}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:matProg_barColor
*/
public static final int ProgressWheel_matProg_barColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_barSpinCycleTime}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:matProg_barSpinCycleTime
*/
public static final int ProgressWheel_matProg_barSpinCycleTime=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_barWidth}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:matProg_barWidth
*/
public static final int ProgressWheel_matProg_barWidth=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_circleRadius}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:matProg_circleRadius
*/
public static final int ProgressWheel_matProg_circleRadius=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_fillRadius}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:matProg_fillRadius
*/
public static final int ProgressWheel_matProg_fillRadius=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_linearProgress}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:matProg_linearProgress
*/
public static final int ProgressWheel_matProg_linearProgress=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_progressIndeterminate}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:matProg_progressIndeterminate
*/
public static final int ProgressWheel_matProg_progressIndeterminate=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_rimColor}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:matProg_rimColor
*/
public static final int ProgressWheel_matProg_rimColor=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_rimWidth}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:matProg_rimWidth
*/
public static final int ProgressWheel_matProg_rimWidth=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#matProg_spinSpeed}
* attribute's value can be found in the {@link #ProgressWheel} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:matProg_spinSpeed
*/
public static final int ProgressWheel_matProg_spinSpeed=9;
/**
* 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 cn.jcex:paddingBottomNoButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #RecycleListView_paddingTopNoTitle cn.jcex:paddingTopNoTitle}</code></td><td></td></tr>
* </table>
* @see #RecycleListView_paddingBottomNoButtons
* @see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView={
0x7f0300fe, 0x7f030101
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#paddingBottomNoButtons}
* attribute's value can be found in the {@link #RecycleListView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#paddingTopNoTitle}
* attribute's value can be found in the {@link #RecycleListView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle=1;
/**
* Attributes that can be used with a RecyclerView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_layoutManager cn.jcex:layoutManager}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_reverseLayout cn.jcex:reverseLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_spanCount cn.jcex:spanCount}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_stackFromEnd cn.jcex:stackFromEnd}</code></td><td></td></tr>
* </table>
* @see #RecyclerView_android_orientation
* @see #RecyclerView_android_descendantFocusability
* @see #RecyclerView_layoutManager
* @see #RecyclerView_reverseLayout
* @see #RecyclerView_spanCount
* @see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView={
0x010100c4, 0x010100f1, 0x7f0300bf, 0x7f03011b,
0x7f030130, 0x7f03016b
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>afterDescendants</td><td>1</td><td></td></tr>
* <tr><td>beforeDescendants</td><td>0</td><td></td></tr>
* <tr><td>blocksDescendants</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int RecyclerView_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layoutManager}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:layoutManager
*/
public static final int RecyclerView_layoutManager=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#reverseLayout}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:reverseLayout
*/
public static final int RecyclerView_reverseLayout=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#spanCount}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:spanCount
*/
public static final int RecyclerView_spanCount=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#stackFromEnd}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd=5;
/**
* Attributes that can be used with a Rotate3dAnimation.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Rotate3dAnimation_fromDeg cn.jcex:fromDeg}</code></td><td></td></tr>
* <tr><td><code>{@link #Rotate3dAnimation_pivotX cn.jcex:pivotX}</code></td><td></td></tr>
* <tr><td><code>{@link #Rotate3dAnimation_pivotY cn.jcex:pivotY}</code></td><td></td></tr>
* <tr><td><code>{@link #Rotate3dAnimation_rollType cn.jcex:rollType}</code></td><td></td></tr>
* <tr><td><code>{@link #Rotate3dAnimation_toDeg cn.jcex:toDeg}</code></td><td></td></tr>
* </table>
* @see #Rotate3dAnimation_fromDeg
* @see #Rotate3dAnimation_pivotX
* @see #Rotate3dAnimation_pivotY
* @see #Rotate3dAnimation_rollType
* @see #Rotate3dAnimation_toDeg
*/
public static final int[] Rotate3dAnimation={
0x7f030096, 0x7f03010c, 0x7f03010d, 0x7f03011d,
0x7f0301af
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#fromDeg}
* attribute's value can be found in the {@link #Rotate3dAnimation} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:fromDeg
*/
public static final int Rotate3dAnimation_fromDeg=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#pivotX}
* attribute's value can be found in the {@link #Rotate3dAnimation} array.
*
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:pivotX
*/
public static final int Rotate3dAnimation_pivotX=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#pivotY}
* attribute's value can be found in the {@link #Rotate3dAnimation} array.
*
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name cn.jcex:pivotY
*/
public static final int Rotate3dAnimation_pivotY=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#rollType}
* attribute's value can be found in the {@link #Rotate3dAnimation} 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>x</td><td>0</td><td></td></tr>
* <tr><td>y</td><td>1</td><td></td></tr>
* <tr><td>z</td><td>2</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:rollType
*/
public static final int Rotate3dAnimation_rollType=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#toDeg}
* attribute's value can be found in the {@link #Rotate3dAnimation} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:toDeg
*/
public static final int Rotate3dAnimation_toDeg=4;
/**
* Attributes that can be used with a ScrimInsetsFrameLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground cn.jcex:insetForeground}</code></td><td></td></tr>
* </table>
* @see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout={
0x7f0300b5
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#insetForeground}
* attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground=0;
/**
* Attributes that can be used with a ScrollingViewBehavior_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop cn.jcex:behavior_overlapTop}</code></td><td></td></tr>
* </table>
* @see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout={
0x7f030033
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#behavior_overlapTop}
* attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0;
/**
* Attributes that can be used with a SearchView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_closeIcon cn.jcex:closeIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_commitIcon cn.jcex:commitIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_defaultQueryHint cn.jcex:defaultQueryHint}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_goIcon cn.jcex:goIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_iconifiedByDefault cn.jcex:iconifiedByDefault}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_layout cn.jcex:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_queryBackground cn.jcex:queryBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_queryHint cn.jcex:queryHint}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_searchHintIcon cn.jcex:searchHintIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_searchIcon cn.jcex:searchIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_submitBackground cn.jcex:submitBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_suggestionRowLayout cn.jcex:suggestionRowLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_voiceIcon cn.jcex:voiceIcon}</code></td><td></td></tr>
* </table>
* @see #SearchView_android_focusable
* @see #SearchView_android_maxWidth
* @see #SearchView_android_inputType
* @see #SearchView_android_imeOptions
* @see #SearchView_closeIcon
* @see #SearchView_commitIcon
* @see #SearchView_defaultQueryHint
* @see #SearchView_goIcon
* @see #SearchView_iconifiedByDefault
* @see #SearchView_layout
* @see #SearchView_queryBackground
* @see #SearchView_queryHint
* @see #SearchView_searchHintIcon
* @see #SearchView_searchIcon
* @see #SearchView_submitBackground
* @see #SearchView_suggestionRowLayout
* @see #SearchView_voiceIcon
*/
public static final int[] SearchView={
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f030047, 0x7f030057, 0x7f030065, 0x7f030098,
0x7f0300a2, 0x7f0300be, 0x7f030115, 0x7f030116,
0x7f030121, 0x7f030122, 0x7f030172, 0x7f030177,
0x7f0301b7
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#focusable}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:focusable
*/
public static final int SearchView_android_focusable=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#imeOptions}
* attribute's value can be found in the {@link #SearchView} array.
*
* <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>normal</td><td>0</td><td></td></tr>
* <tr><td>actionDone</td><td>6</td><td></td></tr>
* <tr><td>actionGo</td><td>2</td><td></td></tr>
* <tr><td>actionNext</td><td>5</td><td></td></tr>
* <tr><td>actionNone</td><td>1</td><td></td></tr>
* <tr><td>actionPrevious</td><td>7</td><td></td></tr>
* <tr><td>actionSearch</td><td>3</td><td></td></tr>
* <tr><td>actionSend</td><td>4</td><td></td></tr>
* <tr><td>actionUnspecified</td><td>0</td><td></td></tr>
* <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr>
* <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr>
* <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr>
* <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr>
* <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr>
* <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr>
* <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr>
* </table>
*
* @attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#inputType}
* attribute's value can be found in the {@link #SearchView} array.
*
* <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>none</td><td>0</td><td></td></tr>
* <tr><td>date</td><td>14</td><td></td></tr>
* <tr><td>datetime</td><td>4</td><td></td></tr>
* <tr><td>number</td><td>2</td><td></td></tr>
* <tr><td>numberDecimal</td><td>2002</td><td></td></tr>
* <tr><td>numberPassword</td><td>12</td><td></td></tr>
* <tr><td>numberSigned</td><td>1002</td><td></td></tr>
* <tr><td>phone</td><td>3</td><td></td></tr>
* <tr><td>text</td><td>1</td><td></td></tr>
* <tr><td>textAutoComplete</td><td>10001</td><td></td></tr>
* <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr>
* <tr><td>textCapCharacters</td><td>1001</td><td></td></tr>
* <tr><td>textCapSentences</td><td>4001</td><td></td></tr>
* <tr><td>textCapWords</td><td>2001</td><td></td></tr>
* <tr><td>textEmailAddress</td><td>21</td><td></td></tr>
* <tr><td>textEmailSubject</td><td>31</td><td></td></tr>
* <tr><td>textFilter</td><td>b1</td><td></td></tr>
* <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr>
* <tr><td>textLongMessage</td><td>51</td><td></td></tr>
* <tr><td>textMultiLine</td><td>20001</td><td></td></tr>
* <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr>
* <tr><td>textPassword</td><td>81</td><td></td></tr>
* <tr><td>textPersonName</td><td>61</td><td></td></tr>
* <tr><td>textPhonetic</td><td>c1</td><td></td></tr>
* <tr><td>textPostalAddress</td><td>71</td><td></td></tr>
* <tr><td>textShortMessage</td><td>41</td><td></td></tr>
* <tr><td>textUri</td><td>11</td><td></td></tr>
* <tr><td>textVisiblePassword</td><td>91</td><td></td></tr>
* <tr><td>textWebEditText</td><td>a1</td><td></td></tr>
* <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr>
* <tr><td>textWebPassword</td><td>e1</td><td></td></tr>
* <tr><td>time</td><td>24</td><td></td></tr>
* </table>
*
* @attr name android:inputType
*/
public static final int SearchView_android_inputType=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#closeIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:closeIcon
*/
public static final int SearchView_closeIcon=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#commitIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:commitIcon
*/
public static final int SearchView_commitIcon=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#defaultQueryHint}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#goIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:goIcon
*/
public static final int SearchView_goIcon=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#iconifiedByDefault}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:layout
*/
public static final int SearchView_layout=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#queryBackground}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:queryBackground
*/
public static final int SearchView_queryBackground=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#queryHint}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:queryHint
*/
public static final int SearchView_queryHint=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#searchHintIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:searchHintIcon
*/
public static final int SearchView_searchHintIcon=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#searchIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:searchIcon
*/
public static final int SearchView_searchIcon=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#submitBackground}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:submitBackground
*/
public static final int SearchView_submitBackground=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#suggestionRowLayout}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout=15;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#voiceIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:voiceIcon
*/
public static final int SearchView_voiceIcon=16;
/**
* Attributes that can be used with a SmartRefreshLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlAccentColor cn.jcex:srlAccentColor}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlDisableContentWhenLoading cn.jcex:srlDisableContentWhenLoading}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlDisableContentWhenRefresh cn.jcex:srlDisableContentWhenRefresh}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlDragRate cn.jcex:srlDragRate}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableAutoLoadMore cn.jcex:srlEnableAutoLoadMore}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableClipFooterWhenFixedBehind cn.jcex:srlEnableClipFooterWhenFixedBehind}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableClipHeaderWhenFixedBehind cn.jcex:srlEnableClipHeaderWhenFixedBehind}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableFooterFollowWhenLoadFinished cn.jcex:srlEnableFooterFollowWhenLoadFinished}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableFooterTranslationContent cn.jcex:srlEnableFooterTranslationContent}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableHeaderTranslationContent cn.jcex:srlEnableHeaderTranslationContent}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableLoadMore cn.jcex:srlEnableLoadMore}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableLoadMoreWhenContentNotFull cn.jcex:srlEnableLoadMoreWhenContentNotFull}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableNestedScrolling cn.jcex:srlEnableNestedScrolling}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableOverScrollBounce cn.jcex:srlEnableOverScrollBounce}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableOverScrollDrag cn.jcex:srlEnableOverScrollDrag}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnablePreviewInEditMode cn.jcex:srlEnablePreviewInEditMode}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnablePureScrollMode cn.jcex:srlEnablePureScrollMode}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableRefresh cn.jcex:srlEnableRefresh}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableScrollContentWhenLoaded cn.jcex:srlEnableScrollContentWhenLoaded}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlEnableScrollContentWhenRefreshed cn.jcex:srlEnableScrollContentWhenRefreshed}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlFixedFooterViewId cn.jcex:srlFixedFooterViewId}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlFixedHeaderViewId cn.jcex:srlFixedHeaderViewId}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlFooterHeight cn.jcex:srlFooterHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlFooterInsetStart cn.jcex:srlFooterInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlFooterMaxDragRate cn.jcex:srlFooterMaxDragRate}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlFooterTriggerRate cn.jcex:srlFooterTriggerRate}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlHeaderHeight cn.jcex:srlHeaderHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlHeaderInsetStart cn.jcex:srlHeaderInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlHeaderMaxDragRate cn.jcex:srlHeaderMaxDragRate}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlHeaderTriggerRate cn.jcex:srlHeaderTriggerRate}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlPrimaryColor cn.jcex:srlPrimaryColor}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_srlReboundDuration cn.jcex:srlReboundDuration}</code></td><td></td></tr>
* </table>
* @see #SmartRefreshLayout_srlAccentColor
* @see #SmartRefreshLayout_srlDisableContentWhenLoading
* @see #SmartRefreshLayout_srlDisableContentWhenRefresh
* @see #SmartRefreshLayout_srlDragRate
* @see #SmartRefreshLayout_srlEnableAutoLoadMore
* @see #SmartRefreshLayout_srlEnableClipFooterWhenFixedBehind
* @see #SmartRefreshLayout_srlEnableClipHeaderWhenFixedBehind
* @see #SmartRefreshLayout_srlEnableFooterFollowWhenLoadFinished
* @see #SmartRefreshLayout_srlEnableFooterTranslationContent
* @see #SmartRefreshLayout_srlEnableHeaderTranslationContent
* @see #SmartRefreshLayout_srlEnableLoadMore
* @see #SmartRefreshLayout_srlEnableLoadMoreWhenContentNotFull
* @see #SmartRefreshLayout_srlEnableNestedScrolling
* @see #SmartRefreshLayout_srlEnableOverScrollBounce
* @see #SmartRefreshLayout_srlEnableOverScrollDrag
* @see #SmartRefreshLayout_srlEnablePreviewInEditMode
* @see #SmartRefreshLayout_srlEnablePureScrollMode
* @see #SmartRefreshLayout_srlEnableRefresh
* @see #SmartRefreshLayout_srlEnableScrollContentWhenLoaded
* @see #SmartRefreshLayout_srlEnableScrollContentWhenRefreshed
* @see #SmartRefreshLayout_srlFixedFooterViewId
* @see #SmartRefreshLayout_srlFixedHeaderViewId
* @see #SmartRefreshLayout_srlFooterHeight
* @see #SmartRefreshLayout_srlFooterInsetStart
* @see #SmartRefreshLayout_srlFooterMaxDragRate
* @see #SmartRefreshLayout_srlFooterTriggerRate
* @see #SmartRefreshLayout_srlHeaderHeight
* @see #SmartRefreshLayout_srlHeaderInsetStart
* @see #SmartRefreshLayout_srlHeaderMaxDragRate
* @see #SmartRefreshLayout_srlHeaderTriggerRate
* @see #SmartRefreshLayout_srlPrimaryColor
* @see #SmartRefreshLayout_srlReboundDuration
*/
public static final int[] SmartRefreshLayout={
0x7f030136, 0x7f030139, 0x7f03013a, 0x7f03013b,
0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145,
0x7f030146, 0x7f030147, 0x7f03014a, 0x7f03014b,
0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f,
0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154,
0x7f030157, 0x7f030158, 0x7f03015b, 0x7f03015c,
0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160,
0x7f030161, 0x7f030162, 0x7f030165, 0x7f030166
};
/**
* Attributes that can be used with a SmartRefreshLayout_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 #SmartRefreshLayout_Layout_layout_srlBackgroundColor cn.jcex:layout_srlBackgroundColor}</code></td><td></td></tr>
* <tr><td><code>{@link #SmartRefreshLayout_Layout_layout_srlSpinnerStyle cn.jcex:layout_srlSpinnerStyle}</code></td><td></td></tr>
* </table>
* @see #SmartRefreshLayout_Layout_layout_srlBackgroundColor
* @see #SmartRefreshLayout_Layout_layout_srlSpinnerStyle
*/
public static final int[] SmartRefreshLayout_Layout={
0x7f0300ca, 0x7f0300cb
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_srlBackgroundColor}
* attribute's value can be found in the {@link #SmartRefreshLayout_Layout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:layout_srlBackgroundColor
*/
public static final int SmartRefreshLayout_Layout_layout_srlBackgroundColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#layout_srlSpinnerStyle}
* attribute's value can be found in the {@link #SmartRefreshLayout_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>FixedBehind</td><td>2</td><td></td></tr>
* <tr><td>FixedFront</td><td>3</td><td></td></tr>
* <tr><td>MatchLayout</td><td>4</td><td></td></tr>
* <tr><td>Scale</td><td>1</td><td></td></tr>
* <tr><td>Translate</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:layout_srlSpinnerStyle
*/
public static final int SmartRefreshLayout_Layout_layout_srlSpinnerStyle=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlAccentColor}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlAccentColor
*/
public static final int SmartRefreshLayout_srlAccentColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDisableContentWhenLoading}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlDisableContentWhenLoading
*/
public static final int SmartRefreshLayout_srlDisableContentWhenLoading=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDisableContentWhenRefresh}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlDisableContentWhenRefresh
*/
public static final int SmartRefreshLayout_srlDisableContentWhenRefresh=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlDragRate}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlDragRate
*/
public static final int SmartRefreshLayout_srlDragRate=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableAutoLoadMore}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableAutoLoadMore
*/
public static final int SmartRefreshLayout_srlEnableAutoLoadMore=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableClipFooterWhenFixedBehind}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableClipFooterWhenFixedBehind
*/
public static final int SmartRefreshLayout_srlEnableClipFooterWhenFixedBehind=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableClipHeaderWhenFixedBehind}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableClipHeaderWhenFixedBehind
*/
public static final int SmartRefreshLayout_srlEnableClipHeaderWhenFixedBehind=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableFooterFollowWhenLoadFinished}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableFooterFollowWhenLoadFinished
*/
public static final int SmartRefreshLayout_srlEnableFooterFollowWhenLoadFinished=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableFooterTranslationContent}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableFooterTranslationContent
*/
public static final int SmartRefreshLayout_srlEnableFooterTranslationContent=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableHeaderTranslationContent}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableHeaderTranslationContent
*/
public static final int SmartRefreshLayout_srlEnableHeaderTranslationContent=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableLoadMore}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableLoadMore
*/
public static final int SmartRefreshLayout_srlEnableLoadMore=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableLoadMoreWhenContentNotFull}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableLoadMoreWhenContentNotFull
*/
public static final int SmartRefreshLayout_srlEnableLoadMoreWhenContentNotFull=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableNestedScrolling}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableNestedScrolling
*/
public static final int SmartRefreshLayout_srlEnableNestedScrolling=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableOverScrollBounce}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableOverScrollBounce
*/
public static final int SmartRefreshLayout_srlEnableOverScrollBounce=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableOverScrollDrag}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableOverScrollDrag
*/
public static final int SmartRefreshLayout_srlEnableOverScrollDrag=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnablePreviewInEditMode}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnablePreviewInEditMode
*/
public static final int SmartRefreshLayout_srlEnablePreviewInEditMode=15;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnablePureScrollMode}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnablePureScrollMode
*/
public static final int SmartRefreshLayout_srlEnablePureScrollMode=16;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableRefresh}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableRefresh
*/
public static final int SmartRefreshLayout_srlEnableRefresh=17;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableScrollContentWhenLoaded}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableScrollContentWhenLoaded
*/
public static final int SmartRefreshLayout_srlEnableScrollContentWhenLoaded=18;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableScrollContentWhenRefreshed}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableScrollContentWhenRefreshed
*/
public static final int SmartRefreshLayout_srlEnableScrollContentWhenRefreshed=19;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFixedFooterViewId}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srlFixedFooterViewId
*/
public static final int SmartRefreshLayout_srlFixedFooterViewId=20;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFixedHeaderViewId}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:srlFixedHeaderViewId
*/
public static final int SmartRefreshLayout_srlFixedHeaderViewId=21;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFooterHeight}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlFooterHeight
*/
public static final int SmartRefreshLayout_srlFooterHeight=22;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFooterInsetStart}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlFooterInsetStart
*/
public static final int SmartRefreshLayout_srlFooterInsetStart=23;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFooterMaxDragRate}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlFooterMaxDragRate
*/
public static final int SmartRefreshLayout_srlFooterMaxDragRate=24;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFooterTriggerRate}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlFooterTriggerRate
*/
public static final int SmartRefreshLayout_srlFooterTriggerRate=25;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlHeaderHeight}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlHeaderHeight
*/
public static final int SmartRefreshLayout_srlHeaderHeight=26;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlHeaderInsetStart}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:srlHeaderInsetStart
*/
public static final int SmartRefreshLayout_srlHeaderInsetStart=27;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlHeaderMaxDragRate}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlHeaderMaxDragRate
*/
public static final int SmartRefreshLayout_srlHeaderMaxDragRate=28;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlHeaderTriggerRate}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlHeaderTriggerRate
*/
public static final int SmartRefreshLayout_srlHeaderTriggerRate=29;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlPrimaryColor}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:srlPrimaryColor
*/
public static final int SmartRefreshLayout_srlPrimaryColor=30;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlReboundDuration}
* attribute's value can be found in the {@link #SmartRefreshLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:srlReboundDuration
*/
public static final int SmartRefreshLayout_srlReboundDuration=31;
/**
* 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 cn.jcex:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth cn.jcex:maxActionInlineWidth}</code></td><td></td></tr>
* </table>
* @see #SnackbarLayout_android_maxWidth
* @see #SnackbarLayout_elevation
* @see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout={
0x0101011f, 0x7f030078, 0x7f0300e3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#elevation}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:elevation
*/
public static final int SnackbarLayout_elevation=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#maxActionInlineWidth}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth=2;
/**
* Attributes that can be used with a Spinner.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_popupTheme cn.jcex:popupTheme}</code></td><td></td></tr>
* </table>
* @see #Spinner_android_entries
* @see #Spinner_android_popupBackground
* @see #Spinner_android_prompt
* @see #Spinner_android_dropDownWidth
* @see #Spinner_popupTheme
*/
public static final int[] Spinner={
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f03010f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#entries}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entries
*/
public static final int Spinner_android_entries=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#prompt}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:prompt
*/
public static final int Spinner_android_prompt=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#popupTheme}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:popupTheme
*/
public static final int Spinner_popupTheme=4;
/**
* Attributes that can be used with a StoreHouseHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #StoreHouseHeader_shhDropHeight cn.jcex:shhDropHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #StoreHouseHeader_shhEnableFadeAnimation cn.jcex:shhEnableFadeAnimation}</code></td><td></td></tr>
* <tr><td><code>{@link #StoreHouseHeader_shhLineWidth cn.jcex:shhLineWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #StoreHouseHeader_shhText cn.jcex:shhText}</code></td><td></td></tr>
* </table>
* @see #StoreHouseHeader_shhDropHeight
* @see #StoreHouseHeader_shhEnableFadeAnimation
* @see #StoreHouseHeader_shhLineWidth
* @see #StoreHouseHeader_shhText
*/
public static final int[] StoreHouseHeader={
0x7f030127, 0x7f030128, 0x7f030129, 0x7f03012a
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#shhDropHeight}
* attribute's value can be found in the {@link #StoreHouseHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:shhDropHeight
*/
public static final int StoreHouseHeader_shhDropHeight=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#shhEnableFadeAnimation}
* attribute's value can be found in the {@link #StoreHouseHeader} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:shhEnableFadeAnimation
*/
public static final int StoreHouseHeader_shhEnableFadeAnimation=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#shhLineWidth}
* attribute's value can be found in the {@link #StoreHouseHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:shhLineWidth
*/
public static final int StoreHouseHeader_shhLineWidth=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#shhText}
* attribute's value can be found in the {@link #StoreHouseHeader} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:shhText
*/
public static final int StoreHouseHeader_shhText=3;
/**
* Attributes that can be used with a SwitchCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_showText cn.jcex:showText}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_splitTrack cn.jcex:splitTrack}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchMinWidth cn.jcex:switchMinWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchPadding cn.jcex:switchPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchTextAppearance cn.jcex:switchTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTextPadding cn.jcex:thumbTextPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTint cn.jcex:thumbTint}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTintMode cn.jcex:thumbTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_track cn.jcex:track}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTint cn.jcex:trackTint}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTintMode cn.jcex:trackTintMode}</code></td><td></td></tr>
* </table>
* @see #SwitchCompat_android_textOn
* @see #SwitchCompat_android_textOff
* @see #SwitchCompat_android_thumb
* @see #SwitchCompat_showText
* @see #SwitchCompat_splitTrack
* @see #SwitchCompat_switchMinWidth
* @see #SwitchCompat_switchPadding
* @see #SwitchCompat_switchTextAppearance
* @see #SwitchCompat_thumbTextPadding
* @see #SwitchCompat_thumbTint
* @see #SwitchCompat_thumbTintMode
* @see #SwitchCompat_track
* @see #SwitchCompat_trackTint
* @see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat={
0x01010124, 0x01010125, 0x01010142, 0x7f03012d,
0x7f030134, 0x7f030178, 0x7f030179, 0x7f03017b,
0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f0301b3,
0x7f0301b4, 0x7f0301b5
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textOff}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:textOff
*/
public static final int SwitchCompat_android_textOff=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textOn}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:textOn
*/
public static final int SwitchCompat_android_textOn=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#thumb}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:thumb
*/
public static final int SwitchCompat_android_thumb=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#showText}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:showText
*/
public static final int SwitchCompat_showText=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#splitTrack}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:splitTrack
*/
public static final int SwitchCompat_splitTrack=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#switchMinWidth}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#switchPadding}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:switchPadding
*/
public static final int SwitchCompat_switchPadding=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#switchTextAppearance}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#thumbTextPadding}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#thumbTint}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:thumbTint
*/
public static final int SwitchCompat_thumbTint=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#thumbTintMode}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#track}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:track
*/
public static final int SwitchCompat_track=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#trackTint}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:trackTint
*/
public static final int SwitchCompat_trackTint=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#trackTintMode}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:trackTintMode
*/
public static final int SwitchCompat_trackTintMode=13;
/**
* Attributes that can be used with a TabItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
* </table>
* @see #TabItem_android_icon
* @see #TabItem_android_layout
* @see #TabItem_android_text
*/
public static final int[] TabItem={
0x01010002, 0x010100f2, 0x0101014f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#icon}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int TabItem_android_icon=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int TabItem_android_layout=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#text}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:text
*/
public static final int TabItem_android_text=2;
/**
* Attributes that can be used with a TabLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TabLayout_tabBackground cn.jcex:tabBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabContentStart cn.jcex:tabContentStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabGravity cn.jcex:tabGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorColor cn.jcex:tabIndicatorColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorHeight cn.jcex:tabIndicatorHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMaxWidth cn.jcex:tabMaxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMinWidth cn.jcex:tabMinWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMode cn.jcex:tabMode}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPadding cn.jcex:tabPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingBottom cn.jcex:tabPaddingBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingEnd cn.jcex:tabPaddingEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingStart cn.jcex:tabPaddingStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingTop cn.jcex:tabPaddingTop}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabSelectedTextColor cn.jcex:tabSelectedTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabTextAppearance cn.jcex:tabTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabTextColor cn.jcex: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={
0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f,
0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183,
0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187,
0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabBackground}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:tabBackground
*/
public static final int TabLayout_tabBackground=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabContentStart}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabContentStart
*/
public static final int TabLayout_tabContentStart=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabGravity}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>fill</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:tabGravity
*/
public static final int TabLayout_tabGravity=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabIndicatorColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabIndicatorHeight}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabMaxWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabMinWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabMinWidth
*/
public static final int TabLayout_tabMinWidth=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabMode}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fixed</td><td>1</td><td></td></tr>
* <tr><td>scrollable</td><td>0</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:tabMode
*/
public static final int TabLayout_tabMode=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabPadding}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabPadding
*/
public static final int TabLayout_tabPadding=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabPaddingBottom}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabPaddingEnd}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabPaddingStart}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabPaddingTop}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabSelectedTextColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabTextAppearance}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#tabTextColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:tabTextColor
*/
public static final int TabLayout_tabTextColor=15;
/**
* Attributes that can be used with a TaurusHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TaurusHeader_thPrimaryColor cn.jcex:thPrimaryColor}</code></td><td></td></tr>
* </table>
* @see #TaurusHeader_thPrimaryColor
*/
public static final int[] TaurusHeader={
0x7f030197
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#thPrimaryColor}
* attribute's value can be found in the {@link #TaurusHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:thPrimaryColor
*/
public static final int TaurusHeader_thPrimaryColor=0;
/**
* Attributes that can be used with a TextAppearance.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_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_textAllCaps cn.jcex:textAllCaps}</code></td><td></td></tr>
* </table>
* @see #TextAppearance_android_textSize
* @see #TextAppearance_android_typeface
* @see #TextAppearance_android_textStyle
* @see #TextAppearance_android_textColor
* @see #TextAppearance_android_textColorHint
* @see #TextAppearance_android_shadowColor
* @see #TextAppearance_android_shadowDx
* @see #TextAppearance_android_shadowDy
* @see #TextAppearance_android_shadowRadius
* @see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance={
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f03018c
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDx}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDy}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColor
*/
public static final int TextAppearance_android_textColor=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textSize}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:textSize
*/
public static final int TextAppearance_android_textSize=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textStyle}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>bold</td><td>1</td><td></td></tr>
* <tr><td>italic</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#typeface}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>monospace</td><td>3</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>sans</td><td>1</td><td></td></tr>
* <tr><td>serif</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:typeface
*/
public static final int TextAppearance_android_typeface=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#textAllCaps}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:textAllCaps
*/
public static final int TextAppearance_textAllCaps=9;
/**
* Attributes that can be used with a TextInputLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterEnabled cn.jcex:counterEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterMaxLength cn.jcex:counterMaxLength}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance cn.jcex:counterOverflowTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterTextAppearance cn.jcex:counterTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_errorEnabled cn.jcex:errorEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_errorTextAppearance cn.jcex:errorTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled cn.jcex:hintAnimationEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintEnabled cn.jcex:hintEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintTextAppearance cn.jcex:hintTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription cn.jcex:passwordToggleContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable cn.jcex:passwordToggleDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled cn.jcex:passwordToggleEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleTint cn.jcex:passwordToggleTint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode cn.jcex:passwordToggleTintMode}</code></td><td></td></tr>
* </table>
* @see #TextInputLayout_android_textColorHint
* @see #TextInputLayout_android_hint
* @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, 0x7f030060, 0x7f030061,
0x7f030062, 0x7f030063, 0x7f030079, 0x7f03007a,
0x7f03009c, 0x7f03009d, 0x7f03009e, 0x7f030105,
0x7f030106, 0x7f030107, 0x7f030108, 0x7f030109
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#hint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:hint
*/
public static final int TextInputLayout_android_hint=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#counterEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:counterEnabled
*/
public static final int TextInputLayout_counterEnabled=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#counterMaxLength}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#counterOverflowTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#counterTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#errorEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:errorEnabled
*/
public static final int TextInputLayout_errorEnabled=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#errorTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#hintAnimationEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#hintEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:hintEnabled
*/
public static final int TextInputLayout_hintEnabled=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#hintTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#passwordToggleContentDescription}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#passwordToggleDrawable}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#passwordToggleEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#passwordToggleTint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#passwordToggleTintMode}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode=15;
/**
* Attributes that can be used with a Toolbar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_buttonGravity cn.jcex:buttonGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseContentDescription cn.jcex:collapseContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseIcon cn.jcex:collapseIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEnd cn.jcex:contentInsetEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEndWithActions cn.jcex:contentInsetEndWithActions}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetLeft cn.jcex:contentInsetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetRight cn.jcex:contentInsetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStart cn.jcex:contentInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation cn.jcex:contentInsetStartWithNavigation}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_logo cn.jcex:logo}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_logoDescription cn.jcex:logoDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_maxButtonHeight cn.jcex:maxButtonHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationContentDescription cn.jcex:navigationContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationIcon cn.jcex:navigationIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_popupTheme cn.jcex:popupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitle cn.jcex:subtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextAppearance cn.jcex:subtitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextColor cn.jcex:subtitleTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_title cn.jcex:title}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargin cn.jcex:titleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginBottom cn.jcex:titleMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginEnd cn.jcex:titleMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginStart cn.jcex:titleMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginTop cn.jcex:titleMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargins cn.jcex:titleMargins}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextAppearance cn.jcex:titleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextColor cn.jcex: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, 0x7f03003f, 0x7f030049,
0x7f03004a, 0x7f030058, 0x7f030059, 0x7f03005a,
0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f0300d7,
0x7f0300d8, 0x7f0300e4, 0x7f0300fa, 0x7f0300fb,
0x7f03010f, 0x7f030173, 0x7f030174, 0x7f030175,
0x7f0301a0, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4,
0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8,
0x7f0301a9
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int Toolbar_android_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int Toolbar_android_minHeight=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#buttonGravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:buttonGravity
*/
public static final int Toolbar_buttonGravity=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#collapseContentDescription}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#collapseIcon}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:collapseIcon
*/
public static final int Toolbar_collapseIcon=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetEnd}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetEndWithActions}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetLeft}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetRight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetRight
*/
public static final int Toolbar_contentInsetRight=8;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetStart}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetStart
*/
public static final int Toolbar_contentInsetStart=9;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#contentInsetStartWithNavigation}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation=10;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#logo}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:logo
*/
public static final int Toolbar_logo=11;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#logoDescription}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:logoDescription
*/
public static final int Toolbar_logoDescription=12;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#maxButtonHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight=13;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#navigationContentDescription}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription=14;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#navigationIcon}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:navigationIcon
*/
public static final int Toolbar_navigationIcon=15;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#popupTheme}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:popupTheme
*/
public static final int Toolbar_popupTheme=16;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subtitle}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:subtitle
*/
public static final int Toolbar_subtitle=17;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subtitleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance=18;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#subtitleTextColor}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor=19;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#title}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name cn.jcex:title
*/
public static final int Toolbar_title=20;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleMargin}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:titleMargin
*/
public static final int Toolbar_titleMargin=21;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleMarginBottom}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom=22;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleMarginEnd}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd=23;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleMarginStart}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:titleMarginStart
*/
public static final int Toolbar_titleMarginStart=24;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleMarginTop}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:titleMarginTop
*/
public static final int Toolbar_titleMarginTop=25;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleMargins}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:titleMargins
*/
public static final int Toolbar_titleMargins=26;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance=27;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#titleTextColor}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:titleTextColor
*/
public static final int Toolbar_titleTextColor=28;
/**
* Attributes that can be used with a TwoLevelHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TwoLevelHeader_srlEnablePullToCloseTwoLevel cn.jcex:srlEnablePullToCloseTwoLevel}</code></td><td></td></tr>
* <tr><td><code>{@link #TwoLevelHeader_srlEnableTwoLevel cn.jcex:srlEnableTwoLevel}</code></td><td></td></tr>
* <tr><td><code>{@link #TwoLevelHeader_srlFloorDuration cn.jcex:srlFloorDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #TwoLevelHeader_srlFloorRage cn.jcex:srlFloorRage}</code></td><td></td></tr>
* <tr><td><code>{@link #TwoLevelHeader_srlMaxRage cn.jcex:srlMaxRage}</code></td><td></td></tr>
* <tr><td><code>{@link #TwoLevelHeader_srlRefreshRage cn.jcex:srlRefreshRage}</code></td><td></td></tr>
* </table>
* @see #TwoLevelHeader_srlEnablePullToCloseTwoLevel
* @see #TwoLevelHeader_srlEnableTwoLevel
* @see #TwoLevelHeader_srlFloorDuration
* @see #TwoLevelHeader_srlFloorRage
* @see #TwoLevelHeader_srlMaxRage
* @see #TwoLevelHeader_srlRefreshRage
*/
public static final int[] TwoLevelHeader={
0x7f030150, 0x7f030155, 0x7f030159, 0x7f03015a,
0x7f030163, 0x7f030167
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnablePullToCloseTwoLevel}
* attribute's value can be found in the {@link #TwoLevelHeader} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnablePullToCloseTwoLevel
*/
public static final int TwoLevelHeader_srlEnablePullToCloseTwoLevel=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlEnableTwoLevel}
* attribute's value can be found in the {@link #TwoLevelHeader} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:srlEnableTwoLevel
*/
public static final int TwoLevelHeader_srlEnableTwoLevel=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFloorDuration}
* attribute's value can be found in the {@link #TwoLevelHeader} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:srlFloorDuration
*/
public static final int TwoLevelHeader_srlFloorDuration=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlFloorRage}
* attribute's value can be found in the {@link #TwoLevelHeader} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlFloorRage
*/
public static final int TwoLevelHeader_srlFloorRage=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlMaxRage}
* attribute's value can be found in the {@link #TwoLevelHeader} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlMaxRage
*/
public static final int TwoLevelHeader_srlMaxRage=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#srlRefreshRage}
* attribute's value can be found in the {@link #TwoLevelHeader} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name cn.jcex:srlRefreshRage
*/
public static final int TwoLevelHeader_srlRefreshRage=5;
/**
* Attributes that can be used with a View.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
* <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingEnd cn.jcex:paddingEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingStart cn.jcex:paddingStart}</code></td><td></td></tr>
* <tr><td><code>{@link #View_theme cn.jcex:theme}</code></td><td></td></tr>
* </table>
* @see #View_android_theme
* @see #View_android_focusable
* @see #View_paddingEnd
* @see #View_paddingStart
* @see #View_theme
*/
public static final int[] View={
0x01010000, 0x010100da, 0x7f0300ff, 0x7f030100,
0x7f030198
};
/**
* 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 cn.jcex:backgroundTint}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode cn.jcex:backgroundTintMode}</code></td><td></td></tr>
* </table>
* @see #ViewBackgroundHelper_android_background
* @see #ViewBackgroundHelper_backgroundTint
* @see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper={
0x010100d4, 0x7f03002e, 0x7f03002f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #ViewBackgroundHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int ViewBackgroundHelper_android_background=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#backgroundTint}
* attribute's value can be found in the {@link #ViewBackgroundHelper} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.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>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name cn.jcex:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode=2;
/**
* Attributes that can be used with a ViewStubCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
* </table>
* @see #ViewStubCompat_android_id
* @see #ViewStubCompat_android_layout
* @see #ViewStubCompat_android_inflatedId
*/
public static final int[] ViewStubCompat={
0x010100d0, 0x010100f2, 0x010100f3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int ViewStubCompat_android_id=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#inflatedId}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int ViewStubCompat_android_layout=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#focusable}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:focusable
*/
public static final int View_android_focusable=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#theme}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:theme
*/
public static final int View_android_theme=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#paddingEnd}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:paddingEnd
*/
public static final int View_paddingEnd=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#paddingStart}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:paddingStart
*/
public static final int View_paddingStart=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#theme}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:theme
*/
public static final int View_theme=4;
/**
* Attributes that can be used with a ViewfinderView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewfinderView_inner_corner_color cn.jcex:inner_corner_color}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_corner_length cn.jcex:inner_corner_length}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_corner_width cn.jcex:inner_corner_width}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_height cn.jcex:inner_height}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_margintop cn.jcex:inner_margintop}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_scan_bitmap cn.jcex:inner_scan_bitmap}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_scan_iscircle cn.jcex:inner_scan_iscircle}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_scan_speed cn.jcex:inner_scan_speed}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewfinderView_inner_width cn.jcex:inner_width}</code></td><td></td></tr>
* </table>
* @see #ViewfinderView_inner_corner_color
* @see #ViewfinderView_inner_corner_length
* @see #ViewfinderView_inner_corner_width
* @see #ViewfinderView_inner_height
* @see #ViewfinderView_inner_margintop
* @see #ViewfinderView_inner_scan_bitmap
* @see #ViewfinderView_inner_scan_iscircle
* @see #ViewfinderView_inner_scan_speed
* @see #ViewfinderView_inner_width
*/
public static final int[] ViewfinderView={
0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af,
0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3,
0x7f0300b4
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_corner_color}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:inner_corner_color
*/
public static final int ViewfinderView_inner_corner_color=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_corner_length}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:inner_corner_length
*/
public static final int ViewfinderView_inner_corner_length=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_corner_width}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:inner_corner_width
*/
public static final int ViewfinderView_inner_corner_width=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_height}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:inner_height
*/
public static final int ViewfinderView_inner_height=3;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_margintop}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:inner_margintop
*/
public static final int ViewfinderView_inner_margintop=4;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_scan_bitmap}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name cn.jcex:inner_scan_bitmap
*/
public static final int ViewfinderView_inner_scan_bitmap=5;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_scan_iscircle}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name cn.jcex:inner_scan_iscircle
*/
public static final int ViewfinderView_inner_scan_iscircle=6;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_scan_speed}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name cn.jcex:inner_scan_speed
*/
public static final int ViewfinderView_inner_scan_speed=7;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#inner_width}
* attribute's value can be found in the {@link #ViewfinderView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:inner_width
*/
public static final int ViewfinderView_inner_width=8;
/**
* Attributes that can be used with a WaveSwipeHeader.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #WaveSwipeHeader_wshAccentColor cn.jcex:wshAccentColor}</code></td><td></td></tr>
* <tr><td><code>{@link #WaveSwipeHeader_wshPrimaryColor cn.jcex:wshPrimaryColor}</code></td><td></td></tr>
* <tr><td><code>{@link #WaveSwipeHeader_wshShadowColor cn.jcex:wshShadowColor}</code></td><td></td></tr>
* <tr><td><code>{@link #WaveSwipeHeader_wshShadowRadius cn.jcex:wshShadowRadius}</code></td><td></td></tr>
* </table>
* @see #WaveSwipeHeader_wshAccentColor
* @see #WaveSwipeHeader_wshPrimaryColor
* @see #WaveSwipeHeader_wshShadowColor
* @see #WaveSwipeHeader_wshShadowRadius
*/
public static final int[] WaveSwipeHeader={
0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5
};
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#wshAccentColor}
* attribute's value can be found in the {@link #WaveSwipeHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:wshAccentColor
*/
public static final int WaveSwipeHeader_wshAccentColor=0;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#wshPrimaryColor}
* attribute's value can be found in the {@link #WaveSwipeHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:wshPrimaryColor
*/
public static final int WaveSwipeHeader_wshPrimaryColor=1;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#wshShadowColor}
* attribute's value can be found in the {@link #WaveSwipeHeader} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name cn.jcex:wshShadowColor
*/
public static final int WaveSwipeHeader_wshShadowColor=2;
/**
* <p>This symbol is the offset where the {@link cn.jcex.R.attr#wshShadowRadius}
* attribute's value can be found in the {@link #WaveSwipeHeader} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name cn.jcex:wshShadowRadius
*/
public static final int WaveSwipeHeader_wshShadowRadius=3;
}
} | [
"[email protected]"
] | |
0f8fa3c357200074c41743454c3da088587e1a35 | 81084a2cb73e98baf5af4df02565d9c32899320c | /src/com/ezmo/sms/db/SmsDBHelper.java | 12e0641608a0121033a551020b05550766db404c | [] | no_license | ezmo/Android_1 | f9d9fc6cc4a0bb9069731bb429a63b17477965c7 | b2a238dc5a05745cf2412e6943d95f5ab32bc7aa | refs/heads/master | 2020-06-02T05:32:53.364602 | 2014-07-21T06:15:31 | 2014-07-21T06:15:31 | 22,053,318 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,871 | java | package com.ezmo.sms.db;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
import com.ezmo.sms.util.L;
public class SmsDBHelper {
public static final String DB_NAME = "sms.db";
private static final int DB_VERSION = 1;
private SQLiteDatabase db;
private SmsDAO dao;
MonitorDBOpenHelper openHepler = null;
public SmsDBHelper(Context context)
{
// boolean existDB = DBUtil.existDBFile(context);
// if (!existDB)
// {
// L.d("DB가 존재하지 않습니다. assets에서 복사합니다.");
// DBUtil.copySQLiteDB(context);
// }
openHepler = new MonitorDBOpenHelper(context, DB_NAME, null, DB_VERSION);
db = openHepler.getWritableDatabase();
dao = new SmsDAO(db);
}
public void dbClose()
{
db.close();
db = null;
}
public void helperClose()
{
if (openHepler != null)
{
openHepler.close();
openHepler = null;
}
}
public SmsDAO getDAO()
{
return this.dao;
}
class MonitorDBOpenHelper extends SQLiteOpenHelper {
Context context;
public MonitorDBOpenHelper(Context context, String name, CursorFactory factory, int version)
{
super(context, name, factory, version);
this.context = context;
}
@Override
public void onCreate(SQLiteDatabase db)
{
db.execSQL(SmsTables.SmsTable.TABLE_CREATE_SQL);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
// db.execSQL(LottoTables.ContactTable.TABLE_DROP_SQL);
// onCreate(db);
L.d("새 DB가 검색되었습니다. Info:Old-" + oldVersion + " info:new-" + newVersion);
DBUtil.copySQLiteDB(context);
openHepler = new MonitorDBOpenHelper(context, DB_NAME, null, DB_VERSION);
db = openHepler.getWritableDatabase();
dao = new SmsDAO(db);
}
}
}
| [
"[email protected]"
] | |
536b4b3512a757040c5c312418c1571c6a8fe149 | 5372104dbaf2a962d6a28836301bd2a221ce7b6d | /app/src/main/java/com/example/loginactivity/aboutus/AboutUsFragment.java | 6a28a1636140b882092eb27a847744c1241dc7f3 | [] | no_license | HARSHU105/smart_parking_management | 8cfc775c2d0768b65f5d7d68a65abb2e65c6d2fc | d0f826c3b0c8c160208f1eb3a700d55bc5f7b87a | refs/heads/master | 2023-01-28T03:53:17.984488 | 2020-12-06T12:27:00 | 2020-12-06T12:27:00 | 319,022,884 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 741 | java | package com.example.loginactivity.aboutus;
import android.os.Bundle;
import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.example.loginactivity.BaseFragment;
import com.example.loginactivity.R;
public class AboutUsFragment extends BaseFragment {
public AboutUsFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_about_us, container, false);
return view;
}
} | [
"[email protected]"
] | |
b73f7424c23579e98db0c643cca6acd8f52c9194 | 421f0a75a6b62c5af62f89595be61f406328113b | /generated_tests/no_seeding/85_shop-umd.cs.shop.JSListOperators-1.0-1/umd/cs/shop/JSListOperators_ESTest_scaffolding.java | 20a73b8d5b0ade33f91685117676c626d310d29b | [] | no_license | tigerqiu712/evosuite-model-seeding-empirical-evaluation | c78c4b775e5c074aaa5e6ca56bc394ec03c2c7c6 | 11a920b8213d9855082d3946233731c843baf7bc | refs/heads/master | 2020-12-23T21:04:12.152289 | 2019-10-30T08:02:29 | 2019-10-30T08:02:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 533 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Mon Oct 28 13:47:30 GMT 2019
*/
package umd.cs.shop;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit.After;
import org.evosuite.runtime.sandbox.Sandbox;
import org.evosuite.runtime.sandbox.Sandbox.SandboxMode;
@EvoSuiteClassExclude
public class JSListOperators_ESTest_scaffolding {
// Empty scaffolding for empty test suite
}
| [
"[email protected]"
] | |
35991a34d1962073e1fca9e78e63f29659999188 | 9e0458e6fa22167de352526550cb65ef0e1928c2 | /day12/src/com/demo/demo3/Demo2.java | a22bcd09c2bf11853c3112b4db3729f3d49313b5 | [] | no_license | slhczz/slhczz | 8511fe7e760bfabbcf7ae9e665380cbcbe71fdac | 3e5f5f6aded092291e20c4aadba476aec10f1219 | refs/heads/master | 2020-12-24T12:59:49.485895 | 2018-11-29T08:33:02 | 2018-11-29T08:33:02 | 67,462,750 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 541 | java | package com.demo.demo3;
import java.util.Arrays;
public class Demo2 {
public static void main(String[] args) {
int[] arr = {1,2,3};
System.out.println(homework2(arr));
}
public static String homework2(int[] arr) {
String s ="[";
// 输出结果[1,2,3]
for(int i =0;i<arr.length;i++) {
if(i==arr.length-1) {
s+=arr[i];
}else {
s+=arr[i];
s+=", ";
}
}
s+="]";
return s;
}
}
| [
"[email protected]"
] | |
c62464a731f83200f043adfc18ba53f0bdeaf37d | 21edb3829fe62235536d22e5363bdaf763bce604 | /Movie.java | 6f292ed3439f58807c92022aca7372721e5f5b46 | [] | no_license | mohithabhiram/PrimeSearchFilter | 298172a13e530dcfa714b58f4ee2b75dbdacb9e6 | abb8f0352fffe02776cbf4555f1fd6d18dd533a1 | refs/heads/main | 2023-08-29T04:51:54.043579 | 2021-09-27T07:51:35 | 2021-09-27T07:51:35 | 410,787,334 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,943 | java | import java.util.*;
public class Movie {
private String movieName;
private int yearOfRelease;
private double rating;
private int views;
public Movie() {
}
public Movie(String movieName,int yearOfRelease ,double rating,
int views) {
this.movieName = movieName;
this.yearOfRelease = yearOfRelease;
this.rating = rating;
this.views = views;
}
public int getYearOfRelease() {
return yearOfRelease;
}
public void setYearOfRelease(int yearOfRelease) {
this.yearOfRelease = yearOfRelease;
}
public int getViews() {
return views;
}
public void setViews(int views) {
this.views = views;
}
public String getMovieName() {
return movieName;
}
public void setmovieName(String movieName) {
this.movieName = movieName;
}
public double getRating() {
return rating;
}
public void setRating(double rating) {
this.rating = rating;
}
public static Comparator<Movie> viewsComp = new Comparator <Movie>() {
public int compare(Movie m1,Movie m2) {
int v1=m1.getViews();
int v2=m2.getViews();
return v2-v1;
}
};
public static void main(String [] args)
{
ArrayList<Movie> mve = new ArrayList<Movie>();
Scanner sc = new Scanner(System.in);
mve.add(new Movie("Arrival",2016,7.9,3100));
mve.add(new Movie("The Shawshank Redemption",1994,9.2,3500));
mve.add(new Movie("12 Angry Men",1957,8.9,3200));
mve.add(new Movie("The Prestige",2006,8.5,4200));
mve.add(new Movie("The Dark Knight Rises",2012,8.3,2800));
mve.add(new Movie("A Beautiful Mind",2001,8.1,2890));
mve.add(new Movie("Shutter Island",2010,8.1,3200));
mve.add(new Movie("Prisoners",2013,8.1,2910));
mve.add(new Movie("Incendies",2010,8.3,3100));
mve.add(new Movie("Interstellar",2014,8.6, 3580));
mve.add(new Movie("Drive",2011,7.8, 2960));
mve.add(new Movie("Django Unchained",2012,8.4,3560));
mve.add(new Movie("Fight Club",1999,8.8,4696));
while(true) {
System.out.println("_______________________________");
System.out.println("Choose the required filter:");
System.out.println("1.Order by IMDB rating");
System.out.println("2.Order by year of release");
System.out.println("3.Order by number of views");
System.out.println("4.Exit");
int choice = sc.nextInt();
switch(choice)
{
case 1:
System.out.println("Please enter the IMDB rating");
double rating = sc.nextDouble();
fetchByRating(mve,rating);
break;
case 2:
System.out.println("Please enter the range for year of release");
System.out.print("From:");
int from = sc.nextInt();
System.out.print("To:");
int to = sc.nextInt();
fetchByYearOfRelease(mve,from,to);
break;
case 3:
System.out.println("Ordering by number of views");
fetchByViews(mve);
break;
default:
System.exit(0);
break;
}
}
}
private static void fetchByViews(ArrayList<Movie> mve) {
Collections.sort(mve,Movie.viewsComp);
for(int i = 0; i < mve.size(); i++){
Movie m = mve.get(i);
System.out.println(m.getMovieName()+", "+"Views:"+m.getViews());
}
}
private static void fetchByYearOfRelease(ArrayList<Movie> mve, int from, int to) {
Movie m;
for(int i = 0; i < mve.size(); i++){
m = mve.get(i);
if(m.getYearOfRelease()>=from && m.getYearOfRelease()<=to)
{
System.out.println(m.getMovieName()+", "+"Year:"+m.getYearOfRelease());
}
}
}
private static void fetchByRating(ArrayList<Movie> mve, double rating2) {
Movie m;
for(int i = 0; i < mve.size(); i++){
m = mve.get(i);
if(m.getRating()>=rating2) {
System.out.println(m.getMovieName()+", "+"Rating:"+m.getRating());
}
}
}
}
| [
"[email protected]"
] | |
52c4d27cbaa3db1b4b6a5d58b5a6b388b63dc041 | 20441a2245068f1a27ecd5e5a682f7b03ca7df72 | /src/com/furqan/problem/exercise/maxNumber/MaxNumberFromInt.java | 3e534aa948e93d84e6fbad26e9f983377046534b | [] | no_license | furqanullah717/problem-solving-exercise | 99bf0f216fca7a8b51465eb0486cb312042f6d5a | 5dca7fe2c5239f0b1d0fcbcb11c0c00d69531db7 | refs/heads/master | 2023-04-24T01:32:36.498513 | 2021-04-14T07:23:37 | 2021-04-14T07:23:37 | 332,061,924 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 863 | java | package com.furqan.problem.exercise.maxNumber;
public class MaxNumberFromInt {
public int solution(int N,int replaceValue) {
if (N == 0)
{
return replaceValue * 10;
}
int negative = N / Math.abs(N);
N = Math.abs(N);
int n = N;
int resultant = Integer.MIN_VALUE;
int counter = 0;
int position = 1;
while (n > 0)
{
counter++;
n = n / 10;
}
for (int i = 0; i <= counter; i++)
{
int valueObtained = ((N / position) * (position * 10)) + (replaceValue * position) + (N % position);
if (valueObtained * negative > resultant)
{
resultant = valueObtained * negative;
}
position = position * 10;
}
return resultant;
}
}
| [
"[email protected]"
] | |
48e77121476f54680ef440e37a9e2f5941d778c8 | 8feaa8e539410131a975032b7530e1f8a350c9ba | /provider/src/main/java/com/example/provider/service/DemoService.java | cc630de6dc1c62cbb2dcea5491ae8c1ab1a38721 | [] | no_license | SimonePan/dubbo-demo | 5efcfdd8e82be4f5820d9b8d94b6b766112f792c | 3d5b71b9ca367e0d5c965c23e5daab8106c9bae3 | refs/heads/master | 2022-06-27T01:01:30.132424 | 2019-12-02T01:41:52 | 2019-12-02T01:41:52 | 224,788,601 | 0 | 0 | null | 2022-03-21T22:00:27 | 2019-11-29T06:13:03 | Java | UTF-8 | Java | false | false | 187 | java | package com.example.provider.service;
/**
* @description: demo
* @author: Grace.Pan
* @create: 2019-11-29 10:45
*/
public interface DemoService {
String sayHello(String name);
}
| [
"[email protected]"
] | |
ae8cc0b34baddaafe6e1f3b004a3176d4485e841 | e43041f6fd1fb11501f210e5e5c2640c85419250 | /trunk/ZionGroup/src/cabrobo/RobotColors.java | ebf10c47a4bac26dc80ace4df00973e9bf58a365 | [] | no_license | BGCX262/zyon-group-pe-svn-to-git | 24f80cb759bf930795767a58bf34756518f2bd61 | 6645a5ff141dfc7b879e840fdff376b5f8d7fcde | refs/heads/master | 2021-01-20T10:42:41.896572 | 2015-08-23T06:54:06 | 2015-08-23T06:54:06 | 41,243,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,001 | java | /*******************************************************************************
* Copyright (c) 2001, 2010 Mathew A. Nelson and Robocode contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://robocode.sourceforge.net/license/epl-v10.html
*
* Contributors:
* Mathew A. Nelson
* - Initial implementation
* Flemming N. Larsen
* - Maintainance
*******************************************************************************/
package cabrobo;
import java.awt.*;
/**
* RobotColors - A serializable class to send Colors to teammates
*/
public class RobotColors implements java.io.Serializable {
private static final long serialVersionUID = 1L;
public Color bodyColor;
public Color gunColor;
public Color radarColor;
public Color scanColor;
public Color bulletColor;
}
| [
"[email protected]"
] | |
2bddecdba57a09f715e67a9833b8ba65bb7c9c3e | ae56efbb9c130641818a8b88b22848a028e59e4b | /OrdersSystem/src/com/lost/dao/UserDao.java | 865daa84327de7f0ab935200b3400bcbbb53edc6 | [] | no_license | Lost-FFRL/OrdersSystem-mvc | c27d458ee7d39e65e8182fe16dd03e14f74f1cdb | 441dfe2b612dcd8b5e4dc6e45af9ad7bd451741d | refs/heads/master | 2021-01-22T09:04:51.142104 | 2013-11-22T15:30:44 | 2013-11-22T15:30:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,217 | java | package com.lost.dao;
import java.util.List;
import com.lost.bean.User;
import com.lost.vo.UserVo;
public interface UserDao
{
/**
* 新增
* @return
*/
boolean add(List<User> users);
/**
* 新增用户
* @param user
* @return
*/
boolean add(UserVo vo);
/**
* 更新
* @param obj
*/
boolean update(UserVo vo);
/**
* 删除
* @return
*/
boolean delete(List<String> ids);
/**
* 删除
* @param ids
* @return
*/
boolean delete(String ids);
boolean delById(String id);
/**
* 修改状态为删除
* @return
*/
boolean delUpdateByIds(String ids);
User getById(String id);
int getCount(User user);
int queryTotal(UserVo vo);
/**
* 查询
* @param obj
* @return
*/
List<User> query(UserVo vo);
/**
* 检测是否存在
* @param user
* @return
*/
boolean isExists(User user);
/**
* 检查用户名密码是否正确
* @param account
* @param pwd
* @return
*/
boolean checkUser(String account, String pwd);
}
| [
"[email protected]"
] | |
ff1782e659079a06a869534010e114d5ec959b80 | 3995c390a1fd27c54a0d9bd964d8ac97c5a26fe4 | /src/dhh/jsp/generator/element/jspContentElementGenerator.java | 7ef3e0654bef24a7ac2073cf2358875274b62e9c | [] | no_license | foxiaotao/generatorCustom_simon_4.0 | a6aed721026d0de790b921af0612660840421244 | 697dff5149f304e112513815dd6117d10ba54831 | refs/heads/master | 2021-01-19T00:27:57.379947 | 2017-08-16T08:05:14 | 2017-08-16T08:05:14 | 87,173,285 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,080 | java | /*
* Copyright 2009 The Apache Software Foundation
*
* 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 dhh.jsp.generator.element;
import org.mybatis.generator.api.dom.xml.TextElement;
/**
*
* @author 孙涛
*
*/
public class jspContentElementGenerator extends AbstractTextElementGenerator {
private boolean isSimple;
public jspContentElementGenerator(boolean isSimple) {
super();
this.isSimple = isSimple;
}
@Override
public void addElements(TextElement parentElement) {
}
} | [
"[email protected]"
] | |
8d378df543d662d0cc763e901f0e8b975e6e5f00 | 3285c2ede4407cbb3c75141b3b0b92e4ea43fb5a | /ImageTestApplication/app/src/androidTest/java/com/example/imagetestapplication/ExampleInstrumentedTest.java | 613fd50d95516ac27e8e45c7016f4d0ae46d786d | [] | no_license | wookyo/TestProject | d8d64ee10f1c30b3c415ecefe5e3956d5228e441 | 910b6728321190fe8095c25ee8d8ca8d4cc598bb | refs/heads/master | 2020-07-26T05:59:06.696242 | 2020-02-22T10:23:04 | 2020-02-22T10:23:04 | 208,557,250 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 735 | java | package com.example.imagetestapplication;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.imagetestapplication", appContext.getPackageName());
}
}
| [
"[email protected]"
] | |
25a55afa3d2f220ad0a328aaae1fca6e0eff095c | f321db1ace514d08219cc9ba5089ebcfff13c87a | /generated-tests/adynamosa/tests/s1003/13_javaviewcontrol/evosuite-tests/com/pmdesigns/jvc/tools/JVCParser_ESTest.java | 36f393b2966e40c9101f27d96565fb3adc1232db | [] | no_license | sealuzh/dynamic-performance-replication | 01bd512bde9d591ea9afa326968b35123aec6d78 | f89b4dd1143de282cd590311f0315f59c9c7143a | refs/heads/master | 2021-07-12T06:09:46.990436 | 2020-06-05T09:44:56 | 2020-06-05T09:44:56 | 146,285,168 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 18,834 | java | /*
* This file was automatically generated by EvoSuite
* Mon Jul 22 00:59:02 GMT 2019
*/
package com.pmdesigns.jvc.tools;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.shaded.org.mockito.Mockito.*;
import static org.evosuite.runtime.EvoAssertions.*;
import com.pmdesigns.jvc.tools.JVCParser;
import com.pmdesigns.jvc.tools.JVCParserTokenManager;
import com.pmdesigns.jvc.tools.SimpleCharStream;
import com.pmdesigns.jvc.tools.Token;
import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.PipedInputStream;
import java.io.PushbackInputStream;
import java.io.Reader;
import java.io.SequenceInputStream;
import java.io.StringReader;
import java.util.Enumeration;
import java.util.LinkedHashSet;
import java.util.Locale;
import java.util.NoSuchElementException;
import java.util.Set;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.evosuite.runtime.ViolatedAssumptionAnswer;
import org.evosuite.runtime.testdata.EvoSuiteFile;
import org.evosuite.runtime.testdata.FileSystemHandling;
import org.junit.runner.RunWith;
@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true, useJEE = true)
public class JVCParser_ESTest extends JVCParser_ESTest_scaffolding {
@Test(timeout = 4000)
public void test00() throws Throwable {
EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile("(*XRVFUw,~E");
FileSystemHandling.appendLineToFile(evoSuiteFile0, "(*XRVFUw,~E");
Locale locale0 = Locale.TAIWAN;
Set<String> set0 = locale0.getUnicodeLocaleAttributes();
JVCParser jVCParser0 = new JVCParser("(*XRVFUw,~E", set0, true);
StringReader stringReader0 = new StringReader("_sb.append(\"(*XRVFUw,~E\n\"); \t// (*XRVFUw,~E (1)\n");
jVCParser0.ReInit((Reader) stringReader0);
String string0 = jVCParser0.parse();
assertEquals("_sb.append(\"_sb.append(\\\"(*XRVFUw,~E\\n\"); \t// (*XRVFUw,~E (1)\n_sb.append(\"\\\"); \t// (*XRVFUw,~E (1)\\n\");\t// (*XRVFUw,~E (2)\n", string0);
}
@Test(timeout = 4000)
public void test01() throws Throwable {
PipedInputStream pipedInputStream0 = new PipedInputStream(10);
JVCParser jVCParser0 = new JVCParser(pipedInputStream0);
jVCParser0.getToken(100);
jVCParser0.generateParseException();
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test02() throws Throwable {
// Undeclared exception!
try {
JVCParser.main((String[]) null);
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test03() throws Throwable {
PipedInputStream pipedInputStream0 = new PipedInputStream(10);
JVCParser jVCParser0 = new JVCParser(pipedInputStream0);
Token token0 = jVCParser0.getToken(0);
assertEquals(100, jVCParser0.debugColumn);
assertNotNull(token0);
}
@Test(timeout = 4000)
public void test04() throws Throwable {
DataInputStream dataInputStream0 = new DataInputStream((InputStream) null);
JVCParser jVCParser0 = new JVCParser(dataInputStream0);
Token token0 = jVCParser0.getToken((-993));
assertNotNull(token0);
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test05() throws Throwable {
byte[] byteArray0 = new byte[6];
ByteArrayInputStream byteArrayInputStream0 = new ByteArrayInputStream(byteArray0);
JVCParser jVCParser0 = new JVCParser(byteArrayInputStream0);
jVCParser0.ReInit((Reader) null);
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test06() throws Throwable {
PipedInputStream pipedInputStream0 = new PipedInputStream(10);
JVCParser jVCParser0 = new JVCParser(pipedInputStream0);
DataInputStream dataInputStream0 = new DataInputStream(pipedInputStream0);
// Undeclared exception!
try {
jVCParser0.ReInit((InputStream) dataInputStream0, "");
fail("Expecting exception: RuntimeException");
} catch(RuntimeException e) {
//
// java.io.UnsupportedEncodingException:
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test07() throws Throwable {
byte[] byteArray0 = new byte[3];
ByteArrayInputStream byteArrayInputStream0 = new ByteArrayInputStream(byteArray0);
PushbackInputStream pushbackInputStream0 = new PushbackInputStream(byteArrayInputStream0, (byte)97);
JVCParser jVCParser0 = new JVCParser(pushbackInputStream0);
// Undeclared exception!
try {
jVCParser0.ReInit((InputStream) pushbackInputStream0, "3loI@z4b!IGD%UjP");
fail("Expecting exception: RuntimeException");
} catch(RuntimeException e) {
//
// java.io.UnsupportedEncodingException: 3loI@z4b!IGD%UjP
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test08() throws Throwable {
StringReader stringReader0 = new StringReader("");
JVCParser jVCParser0 = new JVCParser(stringReader0);
jVCParser0.ReInit((JVCParserTokenManager) null);
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test09() throws Throwable {
byte[] byteArray0 = new byte[3];
ByteArrayInputStream byteArrayInputStream0 = new ByteArrayInputStream(byteArray0);
PushbackInputStream pushbackInputStream0 = new PushbackInputStream(byteArrayInputStream0, (byte)97);
JVCParser jVCParser0 = new JVCParser(pushbackInputStream0);
JVCParserTokenManager jVCParserTokenManager0 = new JVCParserTokenManager((SimpleCharStream) null);
jVCParser0.ReInit(jVCParserTokenManager0);
// Undeclared exception!
try {
jVCParser0.parse();
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
}
}
@Test(timeout = 4000)
public void test10() throws Throwable {
EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile("(*XRVFUw,~E");
String[] stringArray0 = new String[2];
FileSystemHandling.appendLineToFile(evoSuiteFile0, "(*XRVFUw,~E");
stringArray0[0] = "(*XRVFUw,~E";
JVCParser.main(stringArray0);
// Undeclared exception!
try {
JVCParser.main(stringArray0);
// fail("Expecting exception: NoSuchElementException");
// Unstable assertion
} catch(NoSuchElementException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("java.util.LinkedList", e);
}
}
@Test(timeout = 4000)
public void test11() throws Throwable {
String[] stringArray0 = new String[2];
stringArray0[0] = "-debug";
try {
JVCParser.main(stringArray0);
fail("Expecting exception: FileNotFoundException");
} catch(FileNotFoundException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.evosuite.runtime.mock.java.io.MockFileInputStream", e);
}
}
@Test(timeout = 4000)
public void test12() throws Throwable {
JVCParser jVCParser0 = new JVCParser((JVCParserTokenManager) null);
// Undeclared exception!
try {
jVCParser0.ReInit((InputStream) null, "bN");
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test13() throws Throwable {
JVCParser jVCParser0 = new JVCParser((JVCParserTokenManager) null);
// Undeclared exception!
try {
jVCParser0.ReInit((InputStream) null);
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test14() throws Throwable {
LinkedHashSet<String> linkedHashSet0 = new LinkedHashSet<String>();
JVCParser jVCParser0 = null;
try {
jVCParser0 = new JVCParser("OZ]=VNsCY'JFd/", linkedHashSet0, true);
fail("Expecting exception: FileNotFoundException");
} catch(Throwable e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.evosuite.runtime.mock.java.io.MockFileInputStream", e);
}
}
@Test(timeout = 4000)
public void test15() throws Throwable {
PipedInputStream pipedInputStream0 = new PipedInputStream(44);
BufferedInputStream bufferedInputStream0 = new BufferedInputStream(pipedInputStream0, 44);
DataInputStream dataInputStream0 = new DataInputStream(bufferedInputStream0);
JVCParser jVCParser0 = null;
try {
jVCParser0 = new JVCParser(dataInputStream0, "Y;)yZ");
fail("Expecting exception: RuntimeException");
} catch(RuntimeException e) {
//
// java.io.UnsupportedEncodingException: Y;)yZ
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test16() throws Throwable {
byte[] byteArray0 = new byte[2];
ByteArrayInputStream byteArrayInputStream0 = new ByteArrayInputStream(byteArray0);
JVCParser jVCParser0 = new JVCParser(byteArrayInputStream0);
jVCParser0.ReInit((InputStream) byteArrayInputStream0, (String) null);
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test17() throws Throwable {
byte[] byteArray0 = new byte[2];
EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile("(*XRVFU~E");
FileSystemHandling.appendDataToFile(evoSuiteFile0, byteArray0);
JVCParser jVCParser0 = new JVCParser("(*XRVFU~E", (Set<String>) null);
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test18() throws Throwable {
JVCParser jVCParser0 = new JVCParser((JVCParserTokenManager) null);
// Undeclared exception!
try {
jVCParser0.generateParseException();
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("com.pmdesigns.jvc.tools.ParseException", e);
}
}
@Test(timeout = 4000)
public void test19() throws Throwable {
StringReader stringReader0 = new StringReader("\"[[+\"");
JVCParser jVCParser0 = new JVCParser(stringReader0);
JVCParser jVCParser1 = new JVCParser(stringReader0);
Token token0 = jVCParser0.getNextToken();
assertNotNull(token0);
token0.next = jVCParser1.token;
String string0 = jVCParser0.parse();
assertEquals(100, jVCParser0.debugColumn);
assertEquals("", string0);
}
@Test(timeout = 4000)
public void test20() throws Throwable {
byte[] byteArray0 = new byte[7];
ByteArrayInputStream byteArrayInputStream0 = new ByteArrayInputStream(byteArray0);
SequenceInputStream sequenceInputStream0 = new SequenceInputStream(byteArrayInputStream0, byteArrayInputStream0);
JVCParser jVCParser0 = new JVCParser(sequenceInputStream0);
Token token0 = jVCParser0.getToken(2);
Token token1 = jVCParser0.getToken(1);
assertEquals(0, byteArrayInputStream0.available());
assertNotSame(token1, token0);
}
@Test(timeout = 4000)
public void test21() throws Throwable {
EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile("(*XRVFUw,~E");
FileSystemHandling.appendLineToFile(evoSuiteFile0, "(*XRVFUw,~E");
Locale locale0 = new Locale("(*XRVFUw,~E", "(*XRVFUw,~E");
Set<String> set0 = locale0.getUnicodeLocaleAttributes();
JVCParser jVCParser0 = new JVCParser("(*XRVFUw,~E", set0, false);
Token token0 = jVCParser0.getToken(1790);
assertEquals(0, token0.kind);
assertEquals(12, token0.endColumn);
Token token1 = jVCParser0.getNextToken();
assertEquals(100, jVCParser0.debugColumn);
assertEquals(1, token1.beginLine);
assertEquals(16, token1.kind);
}
@Test(timeout = 4000)
public void test22() throws Throwable {
StringReader stringReader0 = new StringReader("\"[[+\"");
JVCParser jVCParser0 = new JVCParser(stringReader0);
try {
jVCParser0.parse();
fail("Expecting exception: Exception");
} catch(Exception e) {
//
// Unbalanced tag at end of null
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test23() throws Throwable {
String[] stringArray0 = new String[2];
EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile("TF'vP7");
stringArray0[0] = "TF'vP7";
FileSystemHandling.appendStringToFile(evoSuiteFile0, "\"[[\"");
try {
JVCParser.main(stringArray0);
fail("Expecting exception: Exception");
} catch(Exception e) {
//
// Unbalanced tag at end of TF'vP7
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test24() throws Throwable {
StringReader stringReader0 = new StringReader("TF'vP7");
JVCParser jVCParser0 = new JVCParser(stringReader0);
StringReader stringReader1 = new StringReader("[[==");
jVCParser0.ReInit((Reader) stringReader1);
try {
jVCParser0.parse();
fail("Expecting exception: Exception");
} catch(Exception e) {
//
// Unbalanced tag at end of null
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test25() throws Throwable {
StringReader stringReader0 = new StringReader("TF'vP7");
JVCParser jVCParser0 = new JVCParser(stringReader0);
StringReader stringReader1 = new StringReader("\"[[!\"");
jVCParser0.ReInit((Reader) stringReader1);
try {
jVCParser0.parse();
fail("Expecting exception: Exception");
} catch(Exception e) {
//
// Unbalanced tag at end of null
//
verifyException("com.pmdesigns.jvc.tools.JVCParser", e);
}
}
@Test(timeout = 4000)
public void test26() throws Throwable {
String[] stringArray0 = new String[2];
stringArray0[1] = "-debug";
// Undeclared exception!
try {
JVCParser.main(stringArray0);
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.evosuite.runtime.mock.java.io.MockFileInputStream", e);
}
}
@Test(timeout = 4000)
public void test27() throws Throwable {
String[] stringArray0 = new String[1];
// Undeclared exception!
try {
JVCParser.main(stringArray0);
fail("Expecting exception: NullPointerException");
} catch(NullPointerException e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.evosuite.runtime.mock.java.io.MockFileInputStream", e);
}
}
@Test(timeout = 4000)
public void test28() throws Throwable {
String[] stringArray0 = new String[7];
JVCParser.main(stringArray0);
assertEquals(7, stringArray0.length);
}
@Test(timeout = 4000)
public void test29() throws Throwable {
String[] stringArray0 = new String[0];
JVCParser.main(stringArray0);
assertEquals(0, stringArray0.length);
}
@Test(timeout = 4000)
public void test30() throws Throwable {
JVCParser jVCParser0 = null;
try {
jVCParser0 = new JVCParser("(*XRVFU~E", (Set<String>) null);
fail("Expecting exception: FileNotFoundException");
} catch(Throwable e) {
//
// no message in exception (getMessage() returned null)
//
verifyException("org.evosuite.runtime.mock.java.io.MockFileInputStream", e);
}
}
@Test(timeout = 4000)
public void test31() throws Throwable {
StringReader stringReader0 = new StringReader("\"[[+\"");
JVCParser jVCParser0 = new JVCParser(stringReader0);
Enumeration<InputStream> enumeration0 = (Enumeration<InputStream>) mock(Enumeration.class, new ViolatedAssumptionAnswer());
doReturn(false).when(enumeration0).hasMoreElements();
SequenceInputStream sequenceInputStream0 = new SequenceInputStream(enumeration0);
jVCParser0.ReInit((InputStream) sequenceInputStream0);
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test32() throws Throwable {
String[] stringArray0 = new String[2];
EvoSuiteFile evoSuiteFile0 = new EvoSuiteFile("TF'vP7");
FileSystemHandling.appendStringToFile(evoSuiteFile0, "TF'vP7");
stringArray0[0] = "TF'vP7";
JVCParser.main(stringArray0);
assertEquals(2, stringArray0.length);
}
@Test(timeout = 4000)
public void test33() throws Throwable {
DataInputStream dataInputStream0 = new DataInputStream((InputStream) null);
JVCParser jVCParser0 = new JVCParser(dataInputStream0);
jVCParser0.enable_tracing();
assertEquals(100, jVCParser0.debugColumn);
}
@Test(timeout = 4000)
public void test34() throws Throwable {
PipedInputStream pipedInputStream0 = new PipedInputStream(10);
JVCParser jVCParser0 = new JVCParser(pipedInputStream0);
jVCParser0.disable_tracing();
assertEquals(100, jVCParser0.debugColumn);
}
}
| [
"[email protected]"
] | |
d85e9cab4735d108ca954ef2f53694588b697805 | cd3296010e857c45b51f78635742240b3fe9b752 | /src/MedianMerge.java | 07b26a6e53fbf4fbb7e7c52530e3085deda4853c | [] | no_license | ank29/DataStructureAndAlgo | a1b29e72def1a88c8119e27bf4ff78ef2d66407a | 10be1ade019b47b7547dc63fdbb5deba14bc06da | refs/heads/master | 2020-03-24T23:45:59.304286 | 2018-08-27T10:40:46 | 2018-08-27T10:40:46 | 143,153,369 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,527 | java |
public class MedianMerge {
static double findMedianMerge(int[] ar1,int ar2[]){
int end = ar1.length-1;
return getMedian(ar1,0,end,ar2,0,end);
}
static double getMedian(int[] ar1,int start1,int end1,int[] ar2,int start2,int end2) {
int n = end1 - start1 + 1;
if (n <= 0) return -1;
if (n == 1)
return (ar1[start1] + ar2[start2]) / 2;
if (n == 2)
return (Math.max(ar1[start1], ar2[start2]) + Math.min(ar1[end1], ar2[end2])) / 2;
double m1 = median(ar1, start1, end1);
double m2 = median(ar2, start2, end2);
if (m1 < m2) {
if (n % 2 == 0)
return getMedian(ar1, start1 + (n / 2), end1, ar2, start2, start2 + (n / 2) - 1);
else return getMedian(ar1, start1 + (n / 2), end1, ar2, start2, start2 + (n / 2));
} else {
if (n % 2 == 0)
return getMedian(ar1, start1, start1 + (n / 2) - 1, ar2, start2 + (n / 2), end2);
else return getMedian(ar1, start1, start1 + (n / 2), ar2, start2 + (n / 2), end2);
}
}
static double median(int[] arr,int j,int n){
int len = n-j+1;
if(len%2 == 0)
return (arr[n/2]+arr[(n/2)-1])/2;
else
return arr[n/2];
}
public static void main(String args[]){
int arr[] = {1, 2,3,4,5,6};
int arr2[] = {7,8,9,10,11,12};
double median = findMedianMerge(arr,arr2);
System.out.println("median is "+median);
}
}
| [
"[email protected]"
] | |
dadfed3b32fbbf8cd0483a51aecc6ea1bb866943 | 4ae8f83d2a7eeb246de5d532429427a5eee39277 | /Java-EE-Ex/cdi/simplegreeting/src/main/java/javaeetutorial/simplegreeting/UserBean.java | 23d30eaf604a045d82f8ad4e18238fe162b5015f | [] | no_license | kenparker/EJB3Demos | caaec229ccbd23afcde27ec67809deb5f34e677b | e7d632d92b8e026b644f5779895b9bca94f1b406 | refs/heads/master | 2021-01-24T18:24:47.790798 | 2017-08-02T12:45:58 | 2017-08-02T12:45:58 | 84,422,408 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,711 | java | /**
* Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved.
*
* You may not modify, use, reproduce, or distribute this software except in
* compliance with the terms of the License at:
* http://java.net/projects/javaeetutorial/pages/BerkeleyLicense
*/
package javaeetutorial.simplegreeting;
import java.io.Serializable;
import java.util.Date;
import javax.enterprise.context.SessionScoped;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.validator.ValidatorException;
import javax.inject.Named;
@Named
@SessionScoped
public class UserBean implements Serializable {
protected String firstName = "Duke";
protected String lastName = "Java";
protected Date dob;
protected String sex = "Unknown";
protected String email;
protected String serviceLevel = "medium";
public UserBean() {}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Date getDob() {
return dob;
}
public void setDob(Date dob) {
this.dob = dob;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getServiceLevel() {
return serviceLevel;
}
public void setServiceLevel(String serviceLevel) {
this.serviceLevel = serviceLevel;
}
public void validateEmail(FacesContext context, UIComponent toValidate,
Object value) throws ValidatorException {
String emailStr = (String) value;
if (-1 == emailStr.indexOf("@")) {
FacesMessage message = new FacesMessage("Invalid email address");
throw new ValidatorException(message);
}
}
public String addConfirmedUser() {
// This method would call a database or other service and add the
// confirmed user information.
// For now, we just place an informative message in request scope
FacesMessage doneMessage =
new FacesMessage("Successfully added new user");
FacesContext.getCurrentInstance().addMessage(null, doneMessage);
return "done";
}
}
| [
"[email protected]"
] | |
35436e517c0ab939a90cd89444d7f6dfe1266e1b | 098d95d7aa610723ecd3e8680b3a9d508119393b | /Microservicios/kk/src/main/java/kk/FilmActorPK.java | 21d954831e8b6767dcb82f0ec10250887728d7ef | [] | no_license | JorgeTorresVN/FS20210921 | ed9bfc70034680038e72a6d5993e541626a1b45c | 77ad72590cf0f7d313147a72394a6435530efa1e | refs/heads/main | 2023-08-22T21:57:26.305968 | 2021-11-02T09:18:24 | 2021-11-02T09:18:24 | 408,758,006 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,199 | java | package kk;
import java.io.Serializable;
import javax.persistence.*;
/**
* The primary key class for the film_actor database table.
*
*/
@Embeddable
public class FilmActorPK implements Serializable {
//default serial version id, required for serializable classes.
private static final long serialVersionUID = 1L;
@Column(name="actor_id", insertable=false, updatable=false)
private int actorId;
@Column(name="film_id", insertable=false, updatable=false)
private int filmId;
public FilmActorPK() {
}
public int getActorId() {
return this.actorId;
}
public void setActorId(int actorId) {
this.actorId = actorId;
}
public int getFilmId() {
return this.filmId;
}
public void setFilmId(int filmId) {
this.filmId = filmId;
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof FilmActorPK)) {
return false;
}
FilmActorPK castOther = (FilmActorPK)other;
return
(this.actorId == castOther.actorId)
&& (this.filmId == castOther.filmId);
}
public int hashCode() {
final int prime = 31;
int hash = 17;
hash = hash * prime + this.actorId;
hash = hash * prime + this.filmId;
return hash;
}
} | [
"[email protected]"
] | |
c2129cd3cf316508bb0facb4f0846b125c3e42bd | e27f03583cfb53455e843300a3a07fdde16256c7 | /src/test/java/com/challenge/utility/OrdersUtilityUnitTest.java | 90a2c12d3aab40a1fe9cadb6845bf1bc137b1ab3 | [] | no_license | jitendra8911/pizza-orders | cf4b616e0230ba8cd833049bd165bb4714016c36 | 3797492fb1fcc68b180237a0e8a31bcccd82c606 | refs/heads/master | 2021-09-13T03:46:39.414794 | 2018-04-24T16:27:39 | 2018-04-24T16:27:39 | 117,052,952 | 0 | 0 | null | 2018-04-24T15:58:50 | 2018-01-11T05:09:19 | Java | UTF-8 | Java | false | false | 1,449 | java | package com.challenge.utility;
import com.challenge.entity.Order;
import org.junit.Test;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import static org.junit.Assert.assertEquals;
public class OrdersUtilityUnitTest {
private final OrdersUtility ordersUtility = new OrdersUtility();
@Test
public void testReadOrders() {
File file = new File("src/main/resources/PizzaOrders");
String absolutePath = file.getAbsolutePath();
List<Order> actualOrders;
actualOrders = ordersUtility.readOrders(absolutePath);
assertEquals(actualOrders.size(), 9);
}
@Test
public void writeOrders() {
File file = new File("src/main/resources/OutputPizzaOrders");
String absolutePath = file.getAbsolutePath();
List<Order> sortedOrders = new ArrayList<>();
sortedOrders.add(new Order("Meat", (long) 1506176687));
sortedOrders.add(new Order("pizza", (long) 1477578287));
sortedOrders.add(new Order("p1zza", (long) 1477491887));
sortedOrders.add(new Order("Bread", (long) 1477405487));
sortedOrders.add(new Order("Pizza", (long) 1477319087));
sortedOrders.add(new Order("bread", (long) 1477232687));
sortedOrders.add(new Order("bread", (long) 1474640687));
sortedOrders.add(new Order("meatMeaT", (long) 1474295087));
sortedOrders.add(new Order("VegVeg", (long) 1474295087));
ordersUtility.writeOrders(absolutePath, sortedOrders);
}
}
| [
"[email protected]"
] | |
00087f94a85f8ff61e6d033a9d1d54217e20a773 | 20d54af513fcedaff4caa9c2e80d09e1b63185a0 | /Visit/app/src/main/java/com/example/sonu_pc/visit/utils/GsonUtils.java | 9eb86392eac0df862ccd3da82a337c260a30e783 | [] | no_license | sakshay584/Visit | 166802a00be83bc405acad5d99d617c30cdb1e54 | 94214263487b12bb39284fdb405368b4ea4e0a46 | refs/heads/master | 2020-04-17T10:48:42.582933 | 2018-05-06T21:11:09 | 2018-05-06T21:11:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,514 | java | package com.example.sonu_pc.visit.utils;
import com.example.sonu_pc.visit.fragments.SuggestionFragment;
import com.example.sonu_pc.visit.model.preference_model.CameraPreference;
import com.example.sonu_pc.visit.model.preference_model.Preference;
import com.example.sonu_pc.visit.model.preference_model.RatingPreferenceModel;
import com.example.sonu_pc.visit.model.preference_model.SuggestionPreference;
import com.example.sonu_pc.visit.model.preference_model.SurveyPreferenceModel;
import com.example.sonu_pc.visit.model.preference_model.TextInputPreferenceModel;
import com.example.sonu_pc.visit.model.preference_model.ThankYouPreference;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
/**
* Created by sonupc on 29-01-2018.
*/
public class GsonUtils {
public static Gson getGsonParser(){
RuntimeTypeAdapterFactory<Preference> adapter =
RuntimeTypeAdapterFactory
.of(Preference.class)
.registerSubtype(TextInputPreferenceModel.class)
.registerSubtype(SurveyPreferenceModel.class)
.registerSubtype(ThankYouPreference.class)
.registerSubtype(CameraPreference.class)
.registerSubtype(RatingPreferenceModel.class)
.registerSubtype(SuggestionPreference.class);
Gson gson = new GsonBuilder().setPrettyPrinting().registerTypeAdapterFactory(adapter).create();
return gson;
}
}
| [
"[email protected]"
] | |
f848e9e8fe7832e928d58c684aee8fdb59023ce5 | 5e59b569deba22a899fe71e5bebeed0df0d2ce34 | /src/main/java/com/training/set/Laptop.java | 6ed44717506962ae0e919239ba6aaf9a212acd87 | [] | no_license | Niveditamohan/java-collection-assignments | 08bcf46434235f8dbd9b518dadda5130b7d1ffb7 | f2158a98cd28e5f206d9fa7e75136882c0575fbb | refs/heads/master | 2021-07-20T08:02:16.220567 | 2019-11-18T08:21:31 | 2019-11-18T08:21:31 | 221,875,081 | 0 | 0 | null | 2020-10-13T17:28:47 | 2019-11-15T08:06:25 | Java | UTF-8 | Java | false | false | 2,487 | java | package com.training.set;
public class Laptop {
private String company;
private String model;
private String operatingSystem;
private String processor;
/**
* Default constructor
*/
public Laptop() {
}
/**
* Parameterized constructor
*
* @param company
* @param model
* @param operatingSystem
* @param processor
*/
public Laptop(String company, String model, String operatingSystem, String processor) {
super();
this.company = company;
this.model = model;
this.operatingSystem = operatingSystem;
this.processor = processor;
}
/**
* Getters and setters for all attributes
*/
public String getCompany() {
return company;
}
public void setCompany(String company) {
this.company = company;
}
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
public String getOperatingSystem() {
return operatingSystem;
}
public void setOperatingSystem(String operatingSystem) {
this.operatingSystem = operatingSystem;
}
public String getProcessor() {
return processor;
}
public void setProcessor(String processor) {
this.processor = processor;
}
/**
* toString() method overridden
*/
@Override
public String toString() {
return "Laptop [company=" + company + ", model=" + model + ", operatingSystem=" + operatingSystem
+ ", processor=" + processor + "]";
}
/**
* Overridden the hashCode() method to provide the desired implementation
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((company == null) ? 0 : company.hashCode());
result = prime * result + ((model == null) ? 0 : model.hashCode());
return result;
}
/**
* Overridden the equals() method to provide the desired implementation
*/
@Override
public boolean equals(Object obj) {
boolean answer = false;
if (this == obj)
answer = true;
if (obj == null)
answer = false;
if (getClass() != obj.getClass())
answer = false;
Laptop laptop = (Laptop) obj;
if (this.getCompany() == laptop.getCompany() && this.getModel() == laptop.getModel())
answer = true;
return answer;
}
// @Override
// public boolean equals(Object obj) {
// Laptop laptop = (Laptop) obj;
// if (this.getCompany() == laptop.getCompany() && this.getModel() == laptop.getModel())
// return true;
// if (obj == null)
// return false;
// if (obj.getClass() != this.getClass())
// return false;
// return true;
// }
}
| [
"[email protected]"
] | |
e395fb8ce64f2d7dc111a50feb06f4224518ef8c | b0cbf1df70686cf1c9f648631f39a65b6f6d8871 | /src/main/java/com/zxw/mbg/model/SmsCouponHistory.java | a1c4d6f1c5846a126e0cf8d8b83074d447587dbf | [] | no_license | zxw1029/mall_learn | 34d76311a980b10e5651d833bdafa415338dac5a | 0880ba560fc62e7b5a5596727ee551eae69960c7 | refs/heads/master | 2022-12-04T19:19:40.051985 | 2020-08-28T09:26:28 | 2020-08-28T09:26:28 | 290,723,363 | 0 | 0 | null | 2020-08-28T09:26:29 | 2020-08-27T08:43:02 | Java | UTF-8 | Java | false | false | 3,611 | java | package com.zxw.mbg.model;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
public class SmsCouponHistory implements Serializable {
private Long id;
private Long couponId;
private Long memberId;
private String couponCode;
@ApiModelProperty(value = "领取人昵称")
private String memberNickname;
@ApiModelProperty(value = "获取类型:0->后台赠送;1->主动获取")
private Integer getType;
private Date createTime;
@ApiModelProperty(value = "使用状态:0->未使用;1->已使用;2->已过期")
private Integer useStatus;
@ApiModelProperty(value = "使用时间")
private Date useTime;
@ApiModelProperty(value = "订单编号")
private Long orderId;
@ApiModelProperty(value = "订单号码")
private String orderSn;
private static final long serialVersionUID = 1L;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getCouponId() {
return couponId;
}
public void setCouponId(Long couponId) {
this.couponId = couponId;
}
public Long getMemberId() {
return memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
}
public String getCouponCode() {
return couponCode;
}
public void setCouponCode(String couponCode) {
this.couponCode = couponCode == null ? null : couponCode.trim();
}
public String getMemberNickname() {
return memberNickname;
}
public void setMemberNickname(String memberNickname) {
this.memberNickname = memberNickname == null ? null : memberNickname.trim();
}
public Integer getGetType() {
return getType;
}
public void setGetType(Integer getType) {
this.getType = getType;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getUseStatus() {
return useStatus;
}
public void setUseStatus(Integer useStatus) {
this.useStatus = useStatus;
}
public Date getUseTime() {
return useTime;
}
public void setUseTime(Date useTime) {
this.useTime = useTime;
}
public Long getOrderId() {
return orderId;
}
public void setOrderId(Long orderId) {
this.orderId = orderId;
}
public String getOrderSn() {
return orderSn;
}
public void setOrderSn(String orderSn) {
this.orderSn = orderSn == null ? null : orderSn.trim();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", couponId=").append(couponId);
sb.append(", memberId=").append(memberId);
sb.append(", couponCode=").append(couponCode);
sb.append(", memberNickname=").append(memberNickname);
sb.append(", getType=").append(getType);
sb.append(", createTime=").append(createTime);
sb.append(", useStatus=").append(useStatus);
sb.append(", useTime=").append(useTime);
sb.append(", orderId=").append(orderId);
sb.append(", orderSn=").append(orderSn);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
}
} | [
"[email protected]"
] | |
9d0aa276e72d9140637c3ec797a09941778a8bad | 5408974ab2c804250e15707f2050e2da3af0ac90 | /examples/src/generics/wildCardTest/Main.java | f58d1700f9e4efb6636088de453cc8eff2698b01 | [] | no_license | MartemyanovR/JavaEE-Spring | 4a9f5c5566f19d27fcb73aee061ebba1b8267f10 | 627a65c772ddd36be412c3d1a56b19f7f15371a2 | refs/heads/master | 2023-04-04T12:12:10.199631 | 2021-04-07T20:51:23 | 2021-04-07T20:51:23 | 338,117,089 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,014 | java | package generics.wildCardTest;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) {
Shape rec = new Rectangle();
Shape cir = new Circle();
Circle circle = new Circle();
List<Shape> listShape = new ArrayList<>();
listShape.add(rec);
listShape.add(cir);
listShape.add(circle);
List<Circle> listCirc = new ArrayList<>();
// listCirc.add(cir); // не сработает тк тип Shape
listCirc.add(circle);
Canvas can = new Canvas();
//ковааариантность!
can.draw(rec);
can.draw(cir);
can.draw(circle);
can.drawAll(listShape);
/*
* тк в методе drawAll() указан аргумент, List<Shape> то вызвать List<Circle> не возможно.
* Обобщения ИНВАРИАНТНЫ
*/
// can.drawAll(listCirc);
//with bounded WildCard
can.drawAll(listShape);
List<Integer> ints = new ArrayList<Integer>();
ints.add(1);
ints.add(2);
List<? extends Number> nums = ints;
/*
* Если контейнер объявлен с wildcard ? extends, то можно только читать значения.
* В список нельзя ничего добавить, кроме null.
*/
nums.add(null);
System.out.println(ints.get(2));
System.out.println(nums.get(2));
testExt(listShape);
}
public static void testExt (List<? extends Shape> lisWild) {
for(Shape sh : lisWild) { // тк мы не знаем каакой тип у <?>, мы не можем его присваивать переменной shape, для этого используем <? extends Shape>
System.out.println(sh);
sh.figure();
}
}
public static void testSup (List<? super Shape> lisWild) { // Shape не включительно
for(Object sh : lisWild) {
System.out.println(sh);
// sh.figure(); //у object нет данного метода, поэтому compile-time error
}
}
}
| [
"[email protected]"
] | |
6c984160c0d3ebe4dce42be928b5928f675da2c4 | d4c8f468c1f8735bb58741429ebd0020ab227684 | /InventoryManagementEJBs/src/test/java/com/test/constants/Constatns.java | cd9d1d484fb3c7178f97574e3de6b2cc127c4f39 | [] | no_license | Aya-M-Ashraf/InventoryManagementSystem | 62a34b7d2ae523d6c3f823895fd4e92f48e97646 | 14c5218c65e3fccfcd17a51756458652be58d4d9 | refs/heads/master | 2020-05-22T01:06:35.565659 | 2016-09-18T11:36:38 | 2016-09-18T11:36:38 | 65,390,398 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 376 | java | package com.test.constants;
public class Constatns {
public final static String ACCEPT_ORDER = "Accept Order";
public final static String REJECT_ORDER = "Reject Order";
public final static int PENDING_ORDER_ID = 1;
public final static int REJECTED_ORDER_ID = 2;
public final static int PROGRESS_ORDER_ID = 3;
public final static int DELIVERED_ORDER_ID = 4;
}
| [
"Hossam@Hossam-Youssef"
] | Hossam@Hossam-Youssef |
783e1d0d47470714196ef2fe84727625d68f52bd | a4dd47de3fbb319a9ffbf2804f8f26aa24a43b40 | /MobileApplication6/app/src/main/java/com/example/mobileapplication6/Store.java | baffd28c99447914dcfac0643d59af00986b43a3 | [] | no_license | kimnamseokk/MobileApplication | 0d560698eddabd4e5a2e29bcdd1cea0c907d871e | 3b5c24cbe56675fdc3ada098e0e54c37d4b5b44f | refs/heads/master | 2021-06-16T16:55:28.929919 | 2017-04-07T04:46:34 | 2017-04-07T04:46:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,675 | java | package com.example.mobileapplication6;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by 박남주 on 2017-04-06.
*/
public class Store implements Parcelable {
String name;
String tel;
String [] menu;
String homepage;
String date_regist;
int num_category;
public Store(String name, String tel, String menu1, String menu2, String menu3, String homepage ,int num_category, String date_regist){
menu = new String[3];
this.name = name;
this.tel = tel;
this.menu[0] = menu1;
this.menu[1] = menu2;
this.menu[2] = menu3;
this.homepage = homepage;
this.num_category = num_category;
this.date_regist = date_regist;
}
protected Store(Parcel in) {
name = in.readString();
tel = in.readString();
menu = in.createStringArray();
homepage = in.readString();
date_regist = in.readString();
num_category = in.readInt();
}
public static final Creator<Store> CREATOR = new Creator<Store>() {
@Override
public Store createFromParcel(Parcel in) {
return new Store(in);
}
@Override
public Store[] newArray(int size) {
return new Store[size];
}
};
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(name);
parcel.writeString(tel);
parcel.writeStringArray(menu);
parcel.writeString(homepage);
parcel.writeString(date_regist);
parcel.writeInt(num_category);
}
}
| [
"[email protected]"
] | |
ff1ad10d5947ee208353784f613aa0bfe96bfaae | d1e778187e8c410d9ce851702807e0706ff2738e | /src/main/java/ru/buddyborodist/spring/security/controller/UserController.java | b163beaa5e1e93e965f7ca7dcc9b6aa2dabbdbdc | [] | no_license | BuddyBorodist/Task_2_4_2 | 08d518ad0c8704ec2f64e5f33bd8d7c1c0dd7e21 | d187622156fad1e26c936655d8a7af17a4f0f2c4 | refs/heads/master | 2023-09-03T21:58:00.774635 | 2021-11-01T19:31:49 | 2021-11-01T19:31:49 | 423,591,572 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,869 | java | package ru.buddyborodist.spring.security.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import ru.buddyborodist.spring.security.model.Role;
import ru.buddyborodist.spring.security.model.User;
import ru.buddyborodist.spring.security.service.RoleService;
import ru.buddyborodist.spring.security.service.UserService;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
@Controller
public class UserController {
private final UserService userService;
private final RoleService roleService;
@Autowired
public UserController(UserService userService, RoleService roleService) {
this.userService = userService;
this.roleService = roleService;
}
@GetMapping(value = "/user")
public String userInfo(@AuthenticationPrincipal User user, Model model){
model.addAttribute("user", user);
model.addAttribute("roles", user.getRoles());
return "user";
}
@GetMapping(value = "/admin")
public String listUsers(Model model) {
model.addAttribute("allUsers", userService.getAllUsers());
return "admin";
}
@GetMapping(value = "/admin/new")
public String newUser(Model model) {
model.addAttribute("user", new User());
model.addAttribute("roles", roleService.getAllRoles());
return "new";
}
@PostMapping(value = "/admin/add-user")
public String addUser(@ModelAttribute User user, @RequestParam(value = "checkBoxRoles") String[] checkBoxRoles) {
Set<Role> roleSet = new HashSet<>();
for (String role : checkBoxRoles) {
roleSet.add(roleService.getRoleName(role));
}
user.setRoles(roleSet);
userService.saveUser(user);
return "redirect:/admin";
}
@GetMapping(value = "/edit/{id}")
public String editUserForm(@PathVariable("id") long id, Model model) {
model.addAttribute("user", userService.getUserId(id));
model.addAttribute("roles", roleService.getAllRoles());
return "edit";
}
@PatchMapping(value = "/edit")
public String editUser(@ModelAttribute User user, @RequestParam(value = "checkBoxRoles") String[] checkBoxRoles) {
Set<Role> roleSet = new HashSet<>();
for (String role : checkBoxRoles) {
roleSet.add(roleService.getRoleName(role));
}
user.setRoles(roleSet);
userService.updateUser(user);
return "redirect:/admin";
}
@DeleteMapping(value = "/remove/{id}")
public String removeUser(@PathVariable("id") long id) {
userService.deleteUserId(id);
return "redirect:/admin";
}
} | [
"[email protected]"
] | |
d0d5a229e6d6f277981cd7ce0e9a2a4dc991880b | 9e12436041714ba86c640c604faf301bc278db8f | /broadcastx/src/main/java/com/hisign/broadcastx/socket/ListenerNoBlock.java | 69fc5f04253b8bf52892ec0db8d30e843e22bd6a | [] | no_license | AnsonLoveLina/AndroidRTCX | a54245a5e35076d9a8e1e199346be83ca78bea72 | 9008f2fd6a2b98753b1d7317b88822e8b35b36cb | refs/heads/master | 2020-03-27T13:06:05.394024 | 2019-05-13T08:16:30 | 2019-05-13T08:16:34 | 146,590,158 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,746 | java | package com.hisign.broadcastx.socket;
import com.hisign.broadcastx.pj.Stuff;
import com.hisign.broadcastx.socket.ack.AckTimeOut;
import com.hisign.broadcastx.util.FastJsonUtil;
import com.hisign.broadcastx.util.SocketUtil;
import java.lang.reflect.ParameterizedType;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.logging.Level;
import java.util.logging.Logger;
import io.socket.emitter.Emitter;
import jodd.util.ReflectUtil;
import static com.hisign.broadcastx.util.Constant.TIMEOUT_FLAG;
public abstract class ListenerNoBlock<T> implements Emitter.Listener {
private static final Logger logger = Logger.getLogger(ListenerNoBlock.class.getName());
private Class<T> tClass;
public ListenerNoBlock() {
tClass = ReflectUtil.getGenericSupertype(getClass(),0);
}
@Override
public void call(Object... args) {
for (Object object : args) {
T stuff = null;
try {
stuff = FastJsonUtil.parseObject(object, tClass);
} catch (Exception e) {
logger.log(Level.SEVERE, String.format("%s can not parse to %s", object == null ? "" : object.toString(), tClass.toString()));
}
if (stuff == null) {
continue;
}
ExecutorService executorService = Executors.newSingleThreadExecutor();
final T finalStuff = stuff;
executorService.submit(new Runnable() {
@Override
public void run() {
onEventCall(finalStuff);
}
});
}
}
abstract public void onEventCall(T object);
}
| [
"[email protected]"
] | |
91a52eff7b1a75cd16250e90de7ba038859f0efc | 221097aadc52b3360a9ee3618473829dc324ec98 | /src/com/savneet/vehicle/Vehicle.java | e2b6ed3814857b585400f0a1f0d0133e2f97873d | [] | no_license | savneetshuann/javainheritance | eff694a6cb30970b80411250ba6e61ed26e843ee | 622d4ba50dd4a92f793a00aca26f142946896594 | refs/heads/master | 2023-03-14T23:26:16.909392 | 2021-03-27T15:04:06 | 2021-03-27T15:04:06 | 352,091,102 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 681 | java | package com.savneet.vehicle;
public class Vehicle {
String vin;
String brand;
boolean isInsured;
public Vehicle(String vin, String brand, boolean isInsured) {
this.vin = vin;
this.brand = brand;
this.isInsured = isInsured;
}
public String getVin() {
return vin;
}
public void setVin(String vin) {
this.vin = vin;
}
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public boolean isInsured() {
return isInsured;
}
public void setInsured(boolean insured) {
isInsured = insured;
}
}
| [
"[email protected]"
] | |
c9045ae48afa6e3b6e0c608ecc027c2fe2dd485e | 51f76f0be9c418af6d215132e150e3df75e37b43 | /DataGenerator/DataGenerator-portlet/src/main/java/com/genpact/service/http/DataGeneratorServiceSoap.java | 3c60f81a5e295575ba034354d1c19d1dd0eb4526 | [] | no_license | Jeff-pear/DataGenerator | 6a61aa46dedcd3b7d19ca335972921d3dae300a7 | 4ab282af57241bc1e8119c5f55daeaeaa0aa059e | refs/heads/master | 2023-05-26T18:33:27.046253 | 2016-11-03T01:50:10 | 2016-11-03T01:50:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,610 | java | package com.genpact.service.http;
/**
* Provides the SOAP utility for the
* {@link com.genpact.service.DataGeneratorServiceUtil} service utility. The
* static methods of this class calls the same methods of the service utility.
* However, the signatures are different because it is difficult for SOAP to
* support certain types.
*
* <p>
* ServiceBuilder follows certain rules in translating the methods. For example,
* if the method in the service utility returns a {@link java.util.List}, that
* is translated to an array of {@link com.genpact.model.DataGeneratorSoap}.
* If the method in the service utility returns a
* {@link com.genpact.model.DataGenerator}, that is translated to a
* {@link com.genpact.model.DataGeneratorSoap}. Methods that SOAP cannot
* safely wire are skipped.
* </p>
*
* <p>
* The benefits of using the SOAP utility is that it is cross platform
* compatible. SOAP allows different languages like Java, .NET, C++, PHP, and
* even Perl, to call the generated services. One drawback of SOAP is that it is
* slow because it needs to serialize all calls into a text format (XML).
* </p>
*
* <p>
* You can see a list of services at http://localhost:8080/api/axis. Set the
* property <b>axis.servlet.hosts.allowed</b> in portal.properties to configure
* security.
* </p>
*
* <p>
* The SOAP utility is only generated for remote services.
* </p>
*
* @author 710008328
* @see DataGeneratorServiceHttp
* @see com.genpact.model.DataGeneratorSoap
* @see com.genpact.service.DataGeneratorServiceUtil
* @generated
*/
public class DataGeneratorServiceSoap {
}
| [
"[email protected]"
] | |
09d5768798daaa6f7fae6c3b4b574cb844008102 | e016b6e85f67eb50a7ba0a9b9db0ba4797947786 | /app/src/main/java/com/cdlit/assetmaintenanceapp/Dialog/DialogAddEquipmentModelRequired.java | ba896de1dbdbd3edf02bbb8bd9dc1eb57a1d5663 | [] | no_license | lokeshkhinchi1983/yantra_android | e751886b51219e3e7117081ddec98f5ca8e65779 | 72c3ad0637cd56d9b79be71cbfec9d1362e27942 | refs/heads/master | 2020-05-29T19:48:48.905238 | 2019-05-30T03:30:19 | 2019-05-30T03:30:19 | 189,338,296 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 28,572 | java |
package com.cdlit.assetmaintenanceapp.Dialog;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.app.DialogFragment;
import android.support.v7.app.AlertDialog;
import android.util.Log;
import android.util.Patterns;
import android.view.Gravity;
import android.view.View;
import android.view.WindowManager;
import android.widget.ArrayAdapter;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;
import com.cdlit.assetmaintenanceapp.Model.EquipmentResponse;
import com.cdlit.assetmaintenanceapp.Model.LocationResponse;
import com.cdlit.assetmaintenanceapp.Model.RepairLogEquipmentType;
import com.cdlit.assetmaintenanceapp.R;
import com.cdlit.assetmaintenanceapp.Ui.FragmentEquipment;
import com.cdlit.assetmaintenanceapp.Utils.Global;
import com.cdlit.assetmaintenanceapp.Utils.Utilities;
import com.crashlytics.android.Crashlytics;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
/**
* Created by rakesh on 13062017.
*/
public class DialogAddEquipmentModelRequired extends DialogFragment {
private static final String TAG = DialogAddEquipmentModelRequired.class.getSimpleName();
private AlertDialog.Builder alertDialogBuilder;
private Spinner spinnerLocation;
private Spinner spinnerEquipmentType;
private EditText etAddEquipmentModel;
private ArrayList<RepairLogEquipmentType.RepairLogEquipmentTypeResponse> listEquipmentType;
private ArrayList<LocationResponse> listLocation;
private ArrayList<String> listLocationName;
private ArrayList<String> listEquipmentTypeName;
private ArrayAdapter<String> locationAdapter;
private ArrayAdapter<String> equipmentTypeAdapter;
private EquipmentResponse equipmentResponse;
private String locationName;
private String equipmentTypeName;
private int locationPos;
private int equipmentTypePos;
private String okString;
// private EditText etDueServiceInterval;
// private Spinner spinnerInspectionDuration;
private ArrayList<String> listInspectionDuration;
// private ArrayAdapter<String> indpectionDurationAdapter;
private String inspectionDuration;
private int inspectionDurationPos;
private TextView tvEmailId;
private DialogAddEmail dialogAddEmail;
private ArrayList<String> listEmail;
private ArrayList<String> listEmail_1;
// private TextView tvDueServiceDate;
private String dueServiceDate;
private EquipmentResponse equipmentClone;
// private TextView tvDueServiceDateTitle;
// private TextView tvWeekDay;
// private LinearLayout llWeekDay;
// private Spinner spinnerWeekDay;
// private TextView tvMonthDay;
private TextView tvOtherDay;
// private EditText etMonthDay;
private ArrayList<String> listDayFreq;
private ArrayAdapter<String> checkDayAdapter;
public DialogAddEquipmentModelRequired() {
}
public static DialogAddEquipmentModelRequired newInstance() {
DialogAddEquipmentModelRequired dialogAddEquipmentModelRequired = new DialogAddEquipmentModelRequired();
return dialogAddEquipmentModelRequired;
}
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Bundle args = getArguments();
final String title = args.getString("title");
listLocation = args.getParcelableArrayList("list_location");
listEquipmentType = args.getParcelableArrayList("list_equipment_type");
equipmentClone = args.getParcelable("equipment_clone");
if (title.equalsIgnoreCase(getResources().getString(R.string.update_equipment_model_dialog_title))) {
equipmentResponse = (EquipmentResponse) args.getParcelable("equipment_response");
locationName = equipmentResponse.getLocation().getLocationName();
equipmentTypeName = equipmentResponse.getEquipmentType().getEquipmentTypeName();
inspectionDuration = equipmentResponse.getServiceFrequency();
okString = getResources().getString(R.string.update_bt_string);
listEmail = (ArrayList<String>) equipmentResponse.getEmailId();
listEmail_1 = args.getStringArrayList("email_list");
Log.e("listEmail_1", "" + listEmail_1);
} else {
okString = getResources().getString(R.string.add_bt_string);
listEmail = new ArrayList<String>();
}
listLocationName = new ArrayList<String>();
String userType = Utilities.getStringFromSharedPreferances(getActivity(), Global.KEY_USER_TYPE, null);
if (getActivity().getResources().getString(R.string.Administrator).equalsIgnoreCase(userType) && equipmentClone == null) {
listLocationName.add("Select Location");
}
for (LocationResponse locationResponse : listLocation) {
listLocationName.add(locationResponse.getLocationName());
}
listEquipmentTypeName = new ArrayList<String>();
if (equipmentClone == null) {
listEquipmentTypeName.add("Select Asset Category");
}
for (RepairLogEquipmentType.RepairLogEquipmentTypeResponse equipmentTypeResponse : listEquipmentType) {
listEquipmentTypeName.add(equipmentTypeResponse.getName());
}
alertDialogBuilder = new AlertDialog.Builder(getActivity(), R.style.MyDialogTheme);
String title1 = null;
if (equipmentClone != null) {
if (title.equalsIgnoreCase(getResources().getString(R.string.update_equipment_model_dialog_title))) {
} else {
title1 = "Clone asset";
}
} else {
title1 = title;
}
// alertDialogBuilder.setTitle("" + title);
TextView customTitle = new TextView(getActivity());
// You Can Customise your Title here
customTitle.setText(title1);
// customTitle.setAllCaps(true);
customTitle.setPadding(16, 16, 16, 16);
customTitle.setGravity(Gravity.CENTER);
customTitle.setTextColor(getResources().getColor(R.color.text_color_primary_dark));
customTitle.setTextSize(getResources().getDimension(R.dimen.text_size_medium));
alertDialogBuilder.setCustomTitle(customTitle);
View view = getActivity().getLayoutInflater().inflate(R.layout.dialog_add_equipment_model_required, null);
spinnerLocation = (Spinner) view.findViewById(R.id.spinner_location);
spinnerEquipmentType = (Spinner) view.findViewById(R.id.spinner_equipment_type);
etAddEquipmentModel = (EditText) view.findViewById(R.id.et_add_equipment_model);
// tvDueServiceDateTitle = (TextView) view.findViewById(R.id.tv_due_service_date_title);
// etDueServiceInterval = (EditText) view.findViewById(R.id.et_due_service_interval);
// spinnerInspectionDuration = (Spinner) view.findViewById(R.id.spinner_inspection_duration);
tvEmailId = (TextView) view.findViewById(R.id.tv_email_id);
// tvDueServiceDate = (TextView) view.findViewById(R.id.tv_due_service_date);
/*
tvWeekDay = (TextView) view.findViewById(R.id.tv_week_day);
llWeekDay = (LinearLayout) view.findViewById(R.id.ll_week_day);
spinnerWeekDay = (Spinner) view.findViewById(R.id.spinner_week_day);
tvMonthDay = (TextView) view.findViewById(R.id.tv_month_day);
etMonthDay = (EditText) view.findViewById(R.id.et_month_day);
*/
tvOtherDay = (TextView) view.findViewById(R.id.tv_other_day);
locationAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_spinner_item, listLocationName);
locationAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerLocation.setAdapter(locationAdapter);
equipmentTypeAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_spinner_item, listEquipmentTypeName);
equipmentTypeAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerEquipmentType.setAdapter(equipmentTypeAdapter);
listInspectionDuration = new ArrayList<String>();
listInspectionDuration.add("Select Service Frequency");
listInspectionDuration.add("Daily");
listInspectionDuration.add("Weekly");
listInspectionDuration.add("Monthly");
listInspectionDuration.add("Quarterly");
listInspectionDuration.add("Half Yearly");
listInspectionDuration.add("Yearly");
listDayFreq = new ArrayList<String>();
listDayFreq.add("Select Day");
listDayFreq.add("Monday");
listDayFreq.add("Tuesday");
listDayFreq.add("Wednesday");
listDayFreq.add("Thursday");
listDayFreq.add("Friday");
// listDayFreq.add("Saturday");
// listDayFreq.add("Sunday");
checkDayAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_spinner_item, listDayFreq);
checkDayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// spinnerWeekDay.setAdapter(checkDayAdapter);
/*
indpectionDurationAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_spinner_item, listInspectionDuration);
indpectionDurationAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerInspectionDuration.setAdapter(indpectionDurationAdapter);
spinnerInspectionDuration.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
if (position == 0) {
*/
/* tvWeekDay.setVisibility(View.GONE);
llWeekDay.setVisibility(View.GONE);
spinnerWeekDay.setVisibility(View.GONE);
tvMonthDay.setVisibility(View.GONE);
etMonthDay.setVisibility(View.GONE);*//*
// tvOtherDay.setVisibility(View.GONE);
tvOtherDay.setVisibility(View.VISIBLE);
tvOtherDay.setText("Due day will be first working day after the due date. Due date will be calculated on the basis of last service date.");
} else if (position == 1) {
*/
/* tvWeekDay.setVisibility(View.GONE);
llWeekDay.setVisibility(View.GONE);
spinnerWeekDay.setVisibility(View.GONE);
tvMonthDay.setVisibility(View.GONE);
etMonthDay.setVisibility(View.GONE);*//*
// tvOtherDay.setVisibility(View.GONE);
tvOtherDay.setVisibility(View.VISIBLE);
tvOtherDay.setText("Due day will be first working day after the due date. Due date will be calculated on the basis of last service date.");
} else if (position == 2) {
*/
/* spinnerWeekDay.setVisibility(View.VISIBLE);
tvWeekDay.setVisibility(View.VISIBLE);
llWeekDay.setVisibility(View.VISIBLE);
tvMonthDay.setVisibility(View.GONE);
etMonthDay.setVisibility(View.GONE);*//*
// tvOtherDay.setVisibility(View.GONE);
tvOtherDay.setVisibility(View.VISIBLE);
tvOtherDay.setText("Due day will be first working day after the due date. Due date will be calculated on the basis of last service date.");
} else if (position == 3) {
*/
/* spinnerWeekDay.setVisibility(View.GONE);
tvWeekDay.setVisibility(View.GONE);
llWeekDay.setVisibility(View.GONE);
tvMonthDay.setVisibility(View.VISIBLE);
etMonthDay.setVisibility(View.VISIBLE);*//*
// tvOtherDay.setVisibility(View.GONE);
tvOtherDay.setVisibility(View.VISIBLE);
tvOtherDay.setText("Due day will be first working day after the due date. Due date will be calculated on the basis of last service date.");
} else if (position == 4 || position == 5 || position == 6) {
*/
/* spinnerWeekDay.setVisibility(View.GONE);
tvWeekDay.setVisibility(View.GONE);
llWeekDay.setVisibility(View.GONE);
tvMonthDay.setVisibility(View.GONE);
etMonthDay.setVisibility(View.GONE);*//*
tvOtherDay.setVisibility(View.VISIBLE);
tvOtherDay.setText("Due day will be first working day after the due date. Due date will be calculated on the basis of last service date.");
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
*/
tvEmailId.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialogAddEmail = DialogAddEmail.newInstance();
Bundle bundle = new Bundle();
bundle.putString("title", getResources().getString(R.string.dialog_add_email_title));
bundle.putStringArrayList("list_email", listEmail);
dialogAddEmail.setArguments(bundle);
dialogAddEmail.setTargetFragment(DialogAddEquipmentModelRequired.this, 0);
dialogAddEmail.show(getFragmentManager(), "dialog");
}
});
if (title.equalsIgnoreCase(getResources().getString(R.string.update_equipment_model_dialog_title))) {
etAddEquipmentModel.setHint("Update equipment model");
// etDueServiceInterval.setHint("Update due service interval");
for (int i = 0; i < listLocationName.size(); i++) {
if (listLocationName.get(i).equalsIgnoreCase(locationName)) {
locationPos = i;
}
}
for (int i = 0; i < listEquipmentTypeName.size(); i++) {
if (listEquipmentTypeName.get(i).equalsIgnoreCase(equipmentTypeName)) {
equipmentTypePos = i;
}
}
for (int i = 0; i < listInspectionDuration.size(); i++) {
if (listInspectionDuration.get(i).equalsIgnoreCase(inspectionDuration)) {
inspectionDurationPos = i;
}
}
etAddEquipmentModel.setText(equipmentResponse.getModelNo());
// etDueServiceInterval.setText(equipmentResponse.getDue_service_interval());
spinnerLocation.setSelection(locationPos);
spinnerEquipmentType.setSelection(equipmentTypePos);
// spinnerInspectionDuration.setSelection(inspectionDurationPos);
String email = "";
for (int i = 0; i < listEmail.size(); i++) {
if (i == (listEmail.size() - 1)) {
email = email + listEmail.get(i);
} else {
email = email + listEmail.get(i) + " , ";
}
}
tvEmailId.setText(email);
/* dueServiceDate = convertDateFormate(equipmentResponse.getNextServiceDate());
if (dueServiceDate == null || dueServiceDate.equalsIgnoreCase("")) {
tvDueServiceDate.setText("Select Next Service Date");
} else {
tvDueServiceDate.setText("" + dueServiceDate);
}*/
}
/* tvDueServiceDate.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showDatePickerDialog();
}
});
*/
alertDialogBuilder.setView(view);
alertDialogBuilder.setPositiveButton(okString, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
alertDialogBuilder.setNegativeButton(getResources().getString(R.string.bt_negative), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
((FragmentEquipment) getTargetFragment()).addEquipmentNegativeClick();
}
});
alertDialogBuilder.setNeutralButton("Next", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if (title.equalsIgnoreCase(getResources().getString(R.string.update_equipment_model_dialog_title))) {
((FragmentEquipment) getTargetFragment()).updateEquipmentNegativeClick();
}
}
});
final AlertDialog dialog = alertDialogBuilder.create();
dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation_bottom_to_top;
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
dialog.show();
// dialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(getResources().getColor(R.color.colorPrimary));
if (title.equalsIgnoreCase(getResources().getString(R.string.update_equipment_model_dialog_title))) {
dialog.getButton(AlertDialog.BUTTON_NEUTRAL).setVisibility(View.VISIBLE);
} else {
dialog.getButton(AlertDialog.BUTTON_NEUTRAL).setVisibility(View.GONE);
}
dialog.getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (title.equalsIgnoreCase(getResources().getString(R.string.add_equipment_model_dialog_title))) {
int posLocation = 0;
for (int i = 0; i < listLocation.size(); i++) {
if (listLocation.get(i).getLocationName().equalsIgnoreCase(spinnerLocation.getSelectedItem().toString())) {
posLocation = i;
}
}
int posEquipment = 0;
for (int i = 0; i < listEquipmentType.size(); i++) {
if (listEquipmentType.get(i).getName().equalsIgnoreCase(spinnerEquipmentType.getSelectedItem().toString())) {
posEquipment = i;
}
}
String freqDay = "";
if (spinnerLocation.getSelectedItem().toString().equalsIgnoreCase("Select location")) {
Utilities.showSnackbar(v, "Please select any location");
} else if (spinnerEquipmentType.getSelectedItem().toString().equalsIgnoreCase("Select Asset Category")) {
Utilities.showSnackbar(v, "Please select any asset category");
} else if (etAddEquipmentModel.getText().toString().equalsIgnoreCase("")) {
Utilities.showSnackbar(v, "Please add asset model");
} /*else if (etDueServiceInterval.getText().toString().equalsIgnoreCase("")) {
Snackbar.make(v, "Please add due service interval", Snackbar.LENGTH_LONG).show();
}*/ else if (listEmail == null || listEmail.size() == 0) {
//Snackbar.make(v, "Please add any email id", Snackbar.LENGTH_LONG).show();
Utilities.showSnackbar(v, "Please add any email id");
}
/*else if (tvDueServiceDate.getText().toString().equalsIgnoreCase("Select Next Service Date")) {
// Snackbar.make(v, "Please select next service date", Snackbar.LENGTH_LONG).show();
Utilities.showSnackbar(v, "Please select next service date");
} else if (spinnerInspectionDuration.getSelectedItemPosition() == 0) {
//Snackbar.make(v, "Please select any service frequency", Snackbar.LENGTH_LONG).show();
Utilities.showSnackbar(v, "Please select any service frequency");
}*/
else /*if (spinnerInspectionDuration.getSelectedItemPosition() == 1)*/ {
((FragmentEquipment) getTargetFragment()).addEquipmentPositiveClick(listLocation.get(posLocation).getId(), listEquipmentType.get(posEquipment).getId(), etAddEquipmentModel.getText().toString(),
/*spinnerInspectionDuration.getSelectedItem().toString(),*/ listEmail/*, tvDueServiceDate.getText().toString(), spinnerInspectionDuration.getSelectedItem().toString(), freqDay*/);
}
} else {
Log.e("listEmail", "" + listEmail);
Log.e("equipmentResponse", "" + listEmail_1);
//List<String> list = equipmentResponse.getEmailId();
boolean email = listEmail.containsAll(listEmail_1);
Log.e("email", "" + email);
if (spinnerLocation.getSelectedItem().toString().equalsIgnoreCase(equipmentResponse.getLocation().getLocationName()) &&
spinnerEquipmentType.getSelectedItem().toString().equalsIgnoreCase(equipmentResponse.getEquipmentType().getEquipmentTypeName()) &&
etAddEquipmentModel.getText().toString().equalsIgnoreCase(equipmentResponse.getModelNo()) /*&&
etDueServiceInterval.getText().toString().equalsIgnoreCase(equipmentResponse.getDue_service_interval())*/
/* && tvDueServiceDate.getText().toString().equalsIgnoreCase(dueServiceDate) &&
spinnerInspectionDuration.getSelectedItem().toString().equalsIgnoreCase(equipmentResponse.getServiceFrequency())
*/
) {
Utilities.showSnackbar(v, getResources().getString(R.string.not_any_change));
} else if (spinnerLocation.getSelectedItem().toString().equalsIgnoreCase("Select location")) {
Utilities.showSnackbar(v, "Please select any location");
} else if (spinnerEquipmentType.getSelectedItem().toString().equalsIgnoreCase("Select Asset Category")) {
Utilities.showSnackbar(v, "Please select any asset category");
} else if (etAddEquipmentModel.getText().toString().equalsIgnoreCase("")) {
Utilities.showSnackbar(v, "Please update asset model");
}
/*else if (etDueServiceInterval.getText().toString().equalsIgnoreCase("")) {
Snackbar.make(v, "Please add due service interval", Snackbar.LENGTH_LONG).show();
}*/
/* else if (spinnerInspectionDuration.getSelectedItem().toString().equalsIgnoreCase("Select Service Frequency")) {
// Snackbar.make(v, "Please select any service frequency", Snackbar.LENGTH_LONG).show();
Utilities.showSnackbar(v, "Please select any service frequency");
} */
else if (listEmail == null || listEmail.size() == 0) {
// Snackbar.make(v, "Please add any email id", Snackbar.LENGTH_LONG).show();
Utilities.showSnackbar(v, "Please add any email id");
} /*else if (tvDueServiceDate.getText().toString().equalsIgnoreCase("Select Next Service Date")) {
Snackbar.make(v, "Please select next service date", Snackbar.LENGTH_LONG).show();
} */ else {
int posLocation = 0;
for (int i = 0; i < listLocation.size(); i++) {
if (listLocation.get(i).getLocationName().equalsIgnoreCase(spinnerLocation.getSelectedItem().toString())) {
posLocation = i;
}
}
int posEquipment = 0;
for (int i = 0; i < listEquipmentType.size(); i++) {
if (listEquipmentType.get(i).getName().equalsIgnoreCase(spinnerEquipmentType.getSelectedItem().toString())) {
posEquipment = i;
}
}
((FragmentEquipment) getTargetFragment()).editEquipmentPositiveClick(listLocation.get(posLocation).getId(), listEquipmentType.get(posEquipment).getId(), etAddEquipmentModel.getText().toString()
/* , spinnerInspectionDuration.getSelectedItem().toString() */, listEmail /* , tvDueServiceDate.getText().toString() */);
}
}
}
});
return dialog;
}
private void showDatePickerDialog() {
// Get Current Date
final Calendar c = Calendar.getInstance();
int mYear = c.get(Calendar.YEAR);
int mMonth = c.get(Calendar.MONTH);
int mDay = c.get(Calendar.DAY_OF_MONTH);
Log.e("mYear", "" + mYear);
Log.e("mMonth", "" + mMonth);
Log.e("mDay", "" + mDay);
/* DatePickerDialog datePickerDialog = new DatePickerDialog(getActivity(),
new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int year,
int monthOfYear, int dayOfMonth) {
tvDueServiceDate.setText("" + dayOfMonth + "-" + (monthOfYear + 1) + "-" + year);
}
}, mYear, mMonth, mDay);
datePickerDialog.show();*/
DatePickerDialog datePickerDialog = new DatePickerDialog(getActivity(), null, mYear, mMonth, mDay) {
@Override
public void onDateChanged(@NonNull DatePicker view, int year, int month, int dayOfMonth) {
dismiss();
// tvDueServiceDate.setText("" + dayOfMonth + "-" + (month + 1) + "-" + year);
}
};
datePickerDialog.show();
datePickerDialog.getButton(DatePickerDialog.BUTTON_POSITIVE).setVisibility(View.GONE);
datePickerDialog.getButton(DatePickerDialog.BUTTON_NEGATIVE).setVisibility(View.GONE);
}
private String convertDateFormate(String stringDate) {
String date = null;
Date convertedDate = null;
if (stringDate == null || stringDate.equals("")) {
date = "";
return date;
} else {
String oldFormat = "yyyy-MM-dd";
// String oldFormat = "yyyy-MM-dd'T'HH:mm:ss";
String newFormat = "dd-MM-yyyy";
SimpleDateFormat sdf1 = new SimpleDateFormat(oldFormat);
SimpleDateFormat sdf2 = new SimpleDateFormat(newFormat);
try {
date = sdf2.format(sdf1.parse(stringDate));
} catch (ParseException e) {
e.printStackTrace();
Crashlytics.logException(e);
}
try {
convertedDate = (Date) sdf2.parse(date);
} catch (ParseException e) {
e.printStackTrace();
Crashlytics.logException(e);
}
return date;
}
}
public boolean isValidEmail(CharSequence target) {
if (target == null) {
return false;
} else {
return Patterns.EMAIL_ADDRESS.matcher(target).matches();
}
}
public void addEmail(ArrayList<String> listEmail) {
this.listEmail = listEmail;
dialogAddEmail.dismiss();
String email = "";
for (int i = 0; i < listEmail.size(); i++) {
if (i == (listEmail.size() - 1)) {
email = email + listEmail.get(i);
} else {
email = email + listEmail.get(i) + " , ";
}
}
tvEmailId.setText(email);
}
} | [
"[email protected]"
] | |
45a0514c52c294daa05fed96a45f390aa1e7d02f | e682fa3667adce9277ecdedb40d4d01a785b3912 | /internal/fischer/mangf/A106181.java | 28a831efe0f9d97028e4c03a5dc0e2b848324ffb | [
"Apache-2.0"
] | permissive | gfis/joeis-lite | 859158cb8fc3608febf39ba71ab5e72360b32cb4 | 7185a0b62d54735dc3d43d8fb5be677734f99101 | refs/heads/master | 2023-08-31T00:23:51.216295 | 2023-08-29T21:11:31 | 2023-08-29T21:11:31 | 179,938,034 | 4 | 1 | Apache-2.0 | 2022-06-25T22:47:19 | 2019-04-07T08:35:01 | Roff | UTF-8 | Java | false | false | 386 | java | package irvine.oeis.a106;
import irvine.math.z.Z;
import irvine.oeis.recur.HolonomicRecurrence;
/**
* A106181 Expansion of c(-x^2)(1+2x-sqrt(1+4x^2))/2, c(x) the g.f. of A000108.
* @author Georg Fischer
*/
public class A106181 extends HolonomicRecurrence {
/** Construct the sequence. */
public A106181() {
super(0, "[[0],[-12,4],[-4,4],[0,1],[2,1]]", "0,1,-1", 0);
}
}
| [
"[email protected]"
] | |
6ae8d60d5eadc20b6c97dd28ba0167f02b84c167 | f336202e545aa423bb58421692135837cba1d7b2 | /APCSAJava/src/unit4/AddSubMultRunner.java | e535d3e0051d59d22a9d80890fa029ecbfca017d | [] | no_license | CodyKurpanek/APCSA | 81c8a1a25eb6fa32dc87c523902d75590890f352 | cb24a994520172ec2cd04e0cbb223a64eefd4e68 | refs/heads/master | 2020-12-26T11:01:26.321934 | 2020-05-08T20:11:35 | 2020-05-08T20:11:35 | 237,489,083 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 813 | java | package unit4;
//(c) A+ Computer Science
//www.apluscompsci.com
//Name -
import static java.lang.System.*;
import java.util.Scanner;
public class AddSubMultRunner
{
public static void main( String args[] )
{
System.out.println( AddSubMult.check( 10, 20) );
System.out.println( AddSubMult.check( 20, 10) );
System.out.println( AddSubMult.check( 20, 20) );
System.out.println( AddSubMult.check( 10, 10) );
System.out.println( AddSubMult.check( 0, 1) );
System.out.println( AddSubMult.check( 1, 0 ) );
System.out.println( AddSubMult.check( 3.1, 5.7) );
System.out.println( String.format("%.1f", AddSubMult.check( 5.2, 3.8 )));
System.out.println( AddSubMult.check( 5342, 323 ) );
}
/* output:
10.0
10.0
400.0
100.0
1.0
1.0
2.6
1.4
5019.0
*/
} | [
"[email protected]"
] | |
a7587a060666dc2c89c58d82daf6bfe9c7206f7d | 8eb0d9d990cc6fa5355c22c7ded911e5cba09f13 | /app/src/main/java/com/codepath/simpleinstagram/PostsAdapter.java | 8c5ddc40cc05b4898757630f18047fa0c2076a90 | [
"Apache-2.0"
] | permissive | CeesWang/CodePath-SimpleInstagram | 83b2339cfbd717e871c1bd3269a3f71aa11071cc | 6f53e6d4e145559c710af0e887d35cbb8c625672 | refs/heads/master | 2020-05-02T02:45:08.714544 | 2019-03-29T08:30:46 | 2019-03-29T08:30:46 | 177,710,956 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,969 | java | package com.codepath.simpleinstagram;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import com.parse.ParseFile;
import java.util.List;
public class PostsAdapter extends RecyclerView.Adapter<PostsAdapter.ViewHolder> {
private Context context;
private List<Post> posts;
public PostsAdapter(Context context, List<Post> list_posts) {
this.context = context;
this.posts = list_posts;
}
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
View view = LayoutInflater.from(context).inflate(R.layout.item_post,viewGroup,false);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(@NonNull ViewHolder viewHolder, int i) {
Post post = posts.get(i);
viewHolder.bind(post);
}
@Override
public int getItemCount() {
return posts.size();
}
class ViewHolder extends RecyclerView.ViewHolder {
private TextView tvHandle;
private TextView tvDescrption;
private ImageView ivImage;
public ViewHolder(@NonNull View itemView) {
super(itemView);
tvHandle = itemView.findViewById(R.id.tvHandle);
tvDescrption = itemView.findViewById(R.id.tvDescription);
ivImage = itemView.findViewById(R.id.tvImage);
}
public void bind (Post post) {
tvHandle.setText(post.getUser().getUsername());
ParseFile image = post.getImage();
if (image!= null)
Glide.with(context).load(image.getUrl().replace("http","https")).into(ivImage);
tvDescrption.setText(post.getDescription());
}
}
}
| [
"[email protected]"
] | |
fc80f49b41a61d621cf379c4a32dfab50c8f0777 | 82f8969288302f6d52c002373dfd172c99bdae47 | /demo/gradle-demo/src/main/java/com/ciaoshen/sia/demo/gradle_demo/todo/model/ToDoItem.java | d9a96e53e338c84a5324bf6e0c15d84a3e46f2ca | [
"MIT"
] | permissive | helloShen/spring-in-action | c75521f7a013ce691dc5aaa76b83030739bbbc57 | b6f60fea7c2fc7640440597fede183dbbd61d65d | refs/heads/master | 2023-04-22T04:05:09.109174 | 2021-05-09T05:03:08 | 2021-05-09T05:03:08 | 362,617,109 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 779 | java | package com.ciaoshen.sia.demo.gradle_demo.todo.model;
public class ToDoItem implements Comparable<ToDoItem> {
private Long id;
private String name;
private boolean completed;
/* InMemoryToDoRepository will set id before inserting items */
public ToDoItem(String name) {
this.name = name;
this.completed = false;
}
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public String getName() {
return name;
}
public boolean getCompleted() {
return completed;
}
public int compareTo(ToDoItem item) {
return (int) (this.id - item.id);
}
public String toString() {
return "Item[" + id + "]:\t" + name + "\n";
}
} | [
"[email protected]"
] | |
17067beee59ad23380ade8d5ff800a7a72699101 | 2ea8fd0854b78da867e374f73f45c6b96c59d688 | /src/main/java/protocolsupport/protocol/transformer/middlepacket/serverbound/play/MiddlePlayerAbilities.java | 0004972ddf39d95d5afd06357436a0a0d8fe7047 | [] | no_license | Imanity-Software/Imanity-ProtocolSupport | 8ca5085c50a0fa352188567145f5177ea65430dc | df41b4c221136a1df837ff20db2cb789cb536b5d | refs/heads/master | 2022-11-11T03:11:07.173968 | 2020-07-04T09:07:00 | 2020-07-04T09:07:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 952 | java | package protocolsupport.protocol.transformer.middlepacket.serverbound.play;
import net.minecraft.server.v1_8_R3.Packet;
import protocolsupport.protocol.ServerBoundPacket;
import protocolsupport.protocol.transformer.middlepacket.ServerBoundMiddlePacket;
import protocolsupport.protocol.transformer.middlepacketimpl.PacketCreator;
import protocolsupport.utils.recyclable.RecyclableCollection;
import protocolsupport.utils.recyclable.RecyclableSingletonList;
public abstract class MiddlePlayerAbilities extends ServerBoundMiddlePacket {
protected int flags;
protected float flySpeed;
protected float walkSpeed;
@Override
public RecyclableCollection<? extends Packet<?>> toNative() throws Exception {
PacketCreator creator = PacketCreator.create(ServerBoundPacket.PLAY_ABILITIES.get());
creator.writeByte(flags);
creator.writeFloat(flySpeed);
creator.writeFloat(walkSpeed);
return RecyclableSingletonList.create(creator.create());
}
}
| [
"[email protected]"
] | |
257f851abcb7abaee21c1e0475dab6b133bb3050 | 7fc223270302d2489d6e0465655e9e6fa35566cf | /sara/src/sara/nemo/br/ufes/inf/controller/ControlCadastrarVooGrupoI.java | 22f34752234a690e087540561c174e56e704e160 | [] | no_license | souzalaercio2004/sara | 0523663d7790f9dad4448c50caa540b9b82d5d2f | 408ebabf6335f29470e90967926e5776ebbaf729 | refs/heads/master | 2021-12-01T21:54:35.177802 | 2021-06-03T22:21:22 | 2021-06-03T22:21:22 | 185,288,456 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 538 | java | package sara.nemo.br.ufes.inf.controller;
import java.sql.SQLException;
import javax.swing.JOptionPane;
import sara.nemo.br.ufes.inf.DAO.VooGrupoIDAO;
import sara.nemo.br.ufes.inf.domain.VooGrupoI;
public class ControlCadastrarVooGrupoI {
public static void inserir(VooGrupoI vooGrupoI) {
VooGrupoIDAO vooGrupoIDAO= new VooGrupoIDAO();
try {
vooGrupoIDAO.inserir(vooGrupoI);
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, "Dados invalidos para cadastro de voos do GrupoI"+ e.getMessage());
}
}
}
| [
"[email protected]"
] | |
644fb6f9f48e46680879dcd795124a2be01783f2 | 913276d64af68dffe1ae32d32a7ff132054c08cf | /src/com/shapegame/shapes/ShapeUtil.java | ef3e665b0da08b19b2a0b15718d776d3e68a23a8 | [] | no_license | hasahmed/shapegame | 58911e740d068ad098619650eeb4b26a5f6a4434 | 3269eab3544c78263f779082da8e3d6955a4882a | refs/heads/master | 2021-09-09T06:20:40.821612 | 2018-03-14T05:43:33 | 2018-03-14T05:43:33 | 106,077,761 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 940 | java | package com.shapegame.shapes;
/**
* Created by Hasan Y Ahmed on 10/23/17.
*/
public class ShapeUtil {
// static float[] makeSquare(int screenx, int screeny, int size) {
// float x = -1f + ((float)screenx * horPixelStep);
// float y = 1f - ((float)screeny * vertPixelStep);
// float xsize = (float)size * horPixelStep;
// float ysize = (float)size * vertPixelStep;
// float squareVerts[] = {
// // triangle 1
// x, y - ysize, 0f, //lower left,
// x + xsize, y - ysize, 0f, //lower right
// x, y, 0f, // top left
//
//
// // triangle 2
// x, y, 0f, // top left
// x + xsize, y - ysize, 0f, //lower right
// x + xsize, y, 0f //lower right
// };
// return squareVerts;
// }
}
| [
"[email protected]"
] | |
6bbf1ccd138849cc5f59c5db8a70d72d32078119 | baf7aec70102f2a53bf4d48f3e40b5f55d41c09b | /src/main/java/com/skywell/banking/api/ws/user/ChangePass.java | bf1b46e10b1dbc75fdc65e598aed295393c03e49 | [] | no_license | ivartanian/banking | 6d32afc564b53f387236a417d9b01b468d48c0e7 | 1603df83236984d066ff7a9a55a25d551d7ffad0 | refs/heads/master | 2021-01-10T10:28:16.902422 | 2016-02-18T15:58:06 | 2016-02-18T15:58:06 | 51,403,568 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,490 | java |
package com.skywell.banking.api.ws.user;
import com.skywell.banking.api.ws.ReqBase;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for changePass complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="changePass">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="reqBase" type="{http://cb.ukrpay.net/common/ws}reqBase"/>
* <element name="login" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hashCurrentPassword" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hashNewPassword" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "changePass", propOrder = {
"reqBase",
"login",
"hashCurrentPassword",
"hashNewPassword"
})
public class ChangePass {
@XmlElement(required = true)
protected ReqBase reqBase;
@XmlElement(required = true)
protected String login;
@XmlElement(required = true)
protected String hashCurrentPassword;
@XmlElement(required = true)
protected String hashNewPassword;
/**
* Gets the value of the reqBase property.
*
* @return
* possible object is
* {@link ReqBase }
*
*/
public ReqBase getReqBase() {
return reqBase;
}
/**
* Sets the value of the reqBase property.
*
* @param value
* allowed object is
* {@link ReqBase }
*
*/
public void setReqBase(ReqBase value) {
this.reqBase = value;
}
/**
* Gets the value of the login property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLogin() {
return login;
}
/**
* Sets the value of the login property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLogin(String value) {
this.login = value;
}
/**
* Gets the value of the hashCurrentPassword property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHashCurrentPassword() {
return hashCurrentPassword;
}
/**
* Sets the value of the hashCurrentPassword property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHashCurrentPassword(String value) {
this.hashCurrentPassword = value;
}
/**
* Gets the value of the hashNewPassword property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHashNewPassword() {
return hashNewPassword;
}
/**
* Sets the value of the hashNewPassword property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHashNewPassword(String value) {
this.hashNewPassword = value;
}
}
| [
"[email protected]"
] | |
b70ac48f984318dcde9a615ffe9505e2722b73cb | 3d7bdf787248185925a5ea551f2ce9d845cfe7bb | /22 - Concurrency/P925N40/MapComparisons.java | 53f2506a059e20742c8cb5c45100026b9929d8a0 | [] | no_license | Pavel1709/ThinkingInJava | 23cd505e7c903de695956ac95dedbea62ed0608e | cf6e96802e77abbbca8e91002228570cd70c6416 | refs/heads/master | 2023-02-17T16:31:03.932549 | 2021-01-20T08:18:07 | 2021-01-20T08:18:07 | 331,236,551 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,434 | java | //: concurrency/MapComparisons.java
// {Args: 1 10 10} (Fast verification check during build)
// Rough comparison of thread-safe Map performance.
import java.util.concurrent.*;
import java.util.*;
import net.mindview.util.*;
abstract class MapTest
extends Tester<Map<Integer,Integer>> {
MapTest(String testId, int nReaders, int nWriters) {
super(testId, nReaders, nWriters);
}
class Reader extends TestTask {
long result = 0;
void test() {
for(long i = 0; i < testCycles; i++)
for(int index = 0; index < containerSize; index++)
result += testContainer.get(index);
}
void putResults() {
readResult += result;
readTime += duration;
}
}
class Writer extends TestTask {
void test() {
for(long i = 0; i < testCycles; i++)
for(int index = 0; index < containerSize; index++)
testContainer.put(index, writeData[index]);
}
void putResults() {
writeTime += duration;
}
}
void startReadersAndWriters() {
for(int i = 0; i < nReaders; i++)
exec.execute(new Reader());
for(int i = 0; i < nWriters; i++)
exec.execute(new Writer());
}
}
class SynchronizedHashMapTest extends MapTest {
Map<Integer,Integer> containerInitializer() {
return Collections.synchronizedMap(
new HashMap<Integer,Integer>(
MapData.map(
new CountingGenerator.Integer(),
new CountingGenerator.Integer(),
containerSize)));
}
SynchronizedHashMapTest(int nReaders, int nWriters) {
super("Synched HashMap", nReaders, nWriters);
}
}
class ConcurrentHashMapTest extends MapTest {
Map<Integer,Integer> containerInitializer() {
return new ConcurrentHashMap<Integer,Integer>(
MapData.map(
new CountingGenerator.Integer(),
new CountingGenerator.Integer(), containerSize));
}
ConcurrentHashMapTest(int nReaders, int nWriters) {
super("ConcurrentHashMap", nReaders, nWriters);
}
}
class ReaderWriterMapTesting extends MapTest {
Map<Integer,Integer> containerInitializer() {
return new ReaderWriterMap<Integer,Integer>(
MapData.map(
new CountingGenerator.Integer(),
new CountingGenerator.Integer(), containerSize));
}
ReaderWriterMapTesting(int nReaders, int nWriters) {
super("ReaderWriterMapTest", nReaders, nWriters);
}
}
public class MapComparisons {
public static void main(String[] args) {
Tester.initMain(args);
new SynchronizedHashMapTest(10, 0);
new SynchronizedHashMapTest(9, 1);
new SynchronizedHashMapTest(5, 5);
new ConcurrentHashMapTest(10, 0);
new ConcurrentHashMapTest(9, 1);
new ConcurrentHashMapTest(5, 5);
new ReaderWriterMapTesting(10, 0);
new ReaderWriterMapTesting(9, 1);
new ReaderWriterMapTesting(5, 5);
Tester.exec.shutdown();
}
} /* Output: (Sample)
Type Read time Write time
Synched HashMap 10r 0w 306052025049 0
Synched HashMap 9r 1w 428319156207 47697347568
readTime + writeTime = 476016503775
Synched HashMap 5r 5w 243956877760 244012003202
readTime + writeTime = 487968880962
ConcurrentHashMap 10r 0w 23352654318 0
ConcurrentHashMap 9r 1w 18833089400 1541853224
readTime + writeTime = 20374942624
ConcurrentHashMap 5r 5w 12037625732 11850489099
readTime + writeTime = 23888114831
*///:~
| [
"[email protected]"
] | |
2800578a068b84676b50b1a045a7525d6f392869 | 18d29169778970ed8668e41e7b9e8b37523c49c1 | /offer/src/main/java/com/xup/offer/ch4/PathInTree.java | c2b6d5ee44d3ba6ecb42561362fafbd1d1071f6f | [] | no_license | panxu18/offer-java | 7d24f069476385897723f2435fe91a2132b9755c | f957e28146340f52ae4cf60e309477ff4582974a | refs/heads/master | 2021-07-07T21:49:25.171030 | 2019-07-18T07:08:45 | 2019-07-18T07:08:45 | 193,698,107 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,773 | java | package com.xup.offer.ch4;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Stack;
import java.util.stream.Collectors;
public class PathInTree {
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
/*
* 非递归解法
*/
public ArrayList<ArrayList<Integer>> FindPath(TreeNode root,int target) {
if (root == null)
return new ArrayList<ArrayList<Integer>>(0);
int sum = 0;
ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
Stack<TreeNode> stack = new Stack<>();
TreeNode p = root;
/*
* 遍历左节点
*/
while (p != null) {
sum += p.val;
stack.push(p);
p = p.left;
}
while (!stack.isEmpty()) {
/*
* 遍历右节点
*/
p = stack.peek();
if (p.right != null) {
p = p.right;
while (p != null) {
sum += p.val;
stack.push(p);
p = p.left;
}
}
/*
* 叶子节点
*/
p = stack.peek();
if (p.left == null && p.right == null) {
if (sum == target) {
ArrayList<Integer> list = new ArrayList<>(stack.size());
for (TreeNode e : stack) {
list.add(e.val);
}
result.add(list);
// stream操作可能会导致超时
/*result.add((ArrayList<Integer>) stack.stream()
.map((node)->node.val)
.collect(Collectors.toList()));*/
}
}
/*
* 出栈
*/
p = stack.pop();
sum -= p.val;
while (!stack.isEmpty() && stack.peek().right == p) {
p = stack.pop();
sum -= p.val;
}
}
// stream操作可能会导致超时
/*return result.stream()
.sorted(Comparator.comparing(ArrayList<Integer>::size).reversed())
.collect(Collectors.toList());*/
return result;
}
ArrayList<ArrayList<Integer>> result = new ArrayList<>();
ArrayList<Integer> list = new ArrayList<>();
/*
* 递归解法
*/
public ArrayList<ArrayList<Integer>> FindPath2(TreeNode root, int target) {
if (root == null)
return new ArrayList<ArrayList<Integer>>(0);
list.add(root.val);
target -= root.val;
if (root.left == null && root.right == null && target == 0) {
result.add(new ArrayList<>(list));
}
if (root.left != null)
FindPath2(root.left, target);
if (root.right != null)
FindPath2(root.right, target);
list.remove(list.size() - 1);
return result;
}
public static void main(String[] args) {
PathInTree pathInTree = new PathInTree();
TreeNode root = pathInTree.new TreeNode(10);
root.left = pathInTree.new TreeNode(5);
root.right = pathInTree.new TreeNode(12);
TreeNode p = root.left;
p.left = pathInTree.new TreeNode(4);
p.right = pathInTree.new TreeNode(7);
System.out.println(pathInTree.FindPath(root, 22));
}
}
| [
"[email protected]"
] | |
1ea515eed51864f80511ed8dc49aa0004d1eb339 | cfaf7abd44c8f4b92e0eec7447115d90a4ea09dd | /src/main/java/com/qiao/service/impl/CartService.java | 213ef21eed78876b44af2f52f2e5740032bde0f8 | [] | no_license | qiao1031/Qiao_Project | ee626f64428af4ea888b3f4127c8c39e5b90fee4 | cd8f2a0d55265d429485406be691a1637c765e10 | refs/heads/master | 2020-03-26T07:46:33.673659 | 2018-08-14T06:20:23 | 2018-08-14T06:20:23 | 144,670,352 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,490 | java | package com.qiao.service.impl;
import com.qiao.dao.Mybatis.CartDaoMybatisImpl;
import com.qiao.entity.Cart;
import com.qiao.entity.PageModel;
import com.qiao.service.ICartService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class CartService implements ICartService {
@Autowired
CartDaoMybatisImpl cartDao;
public boolean addCart(Cart cart) {
// TODO Auto-generated method stub
return cartDao.addCart(cart);
}
public boolean deleteCart(int cartId) {
// TODO Auto-generated method stub
return cartDao.deleteCart(cartId);
}
public boolean updataeCart(Cart cart) {
// TODO Auto-generated method stub
return cartDao.updataeCart(cart);
}
public boolean updateCart(int id, int num) {
// TODO Auto-generated method stub
return cartDao.updateCart(id, num);
}
public List<Cart> findAllCart() {
// TODO Auto-generated method stub
return cartDao.findAllCart();
}
@Override
public Cart findCartById(int id) {
// TODO Auto-generated method stub
return cartDao.findCartById(id) ;
}
public int getCartNum() {
// TODO Auto-generated method stub
return cartDao.getCartNum();
}
@Override
public void clearCart() {
// TODO Auto-generated method stub
cartDao.clearCart();
}
@Override
public PageModel<Cart> findCartByPage(int pageNo, int pageSize) {
// TODO Auto-generated method stub
return cartDao.findCartByPage(pageNo,pageSize);
}
}
| [
"[email protected]"
] | |
8472b1ea645e210ce1db7458f1c8f808d56272dd | dde455d629e783b17eeff8583ec7ebad395aabe1 | /workspace/recursividade/src/composite/CompositeGraphic.java | 18e15d94733f5e78e9abd7b2ecd8c215d1c21269 | [] | no_license | raquelvl/p2-20182 | 43ee69be6a8f1dac6b9d233fb9a49cfa2435921e | d16bd90db83d64ab88ac075568746f8e057eab73 | refs/heads/master | 2020-03-27T04:15:50.710215 | 2018-11-30T12:00:16 | 2018-11-30T12:00:16 | 145,925,622 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 599 | java | package composite;
import java.util.ArrayList;
import java.util.List;
/** "Composite" */
class CompositeGraphic implements Graphic {
// Collection of child graphics.
private List<Graphic> childGraphics = new ArrayList<Graphic>();
// Prints the graphic.
public void print() {
for (Graphic graphic : childGraphics) {
graphic.print(); // Delegation
}
}
// Adds the graphic to the composition.
public void add(Graphic graphic) {
childGraphics.add(graphic);
}
// Removes the graphic from the composition.
public void remove(Graphic graphic) {
childGraphics.remove(graphic);
}
} | [
"[email protected]"
] | |
309973017b1e9e80d071903ae9420e456a10026b | ec8a93fd3929369d4fc8d0a75f58d956a830f87a | /src/leetcode/challenge/PascalTriangle2.java | e2f9229564f28c44e34c8ca7f670b576322b3246 | [] | no_license | zeelichsheng/leetcode | 9ff150aee41cd4c05b9188fe65b60297ef7b1a24 | 7e676ec13ee09965f530ecb547e39a27adb60344 | refs/heads/master | 2021-01-10T00:57:28.822967 | 2017-01-21T09:20:58 | 2017-01-21T09:20:58 | 45,162,733 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 671 | java | package leetcode.challenge;
import java.util.ArrayList;
import java.util.List;
/**
* Given an index k, return the kth row of the Pascal's triangle.
*
* https://leetcode.com/problems/pascals-triangle-ii/
*/
public class PascalTriangle2 {
public List<Integer> getRow(int rowIndex) {
List<Integer> lastRow = new ArrayList<>();
lastRow.add(1);
for (int i = 1; i < rowIndex + 1; ++i) {
List<Integer> currRow = new ArrayList<>();
currRow.add(1);
for (int j = 1; j < i; ++j) {
currRow.add(lastRow.get(j - 1) + lastRow.get(j));
}
currRow.add(1);
lastRow = currRow;
}
return lastRow;
}
}
| [
"[email protected]"
] | |
225aa121aa1fbf5a92297fb7796606abebae0db4 | 530c7cb60e2e88a9d1c198966fcce21f3d0d0cee | /customarray/src/edu/ucla/cs/bigfuzz/customarray/inapplicable/Property/map1.java | 93b2bbad3d970fda9d3f8f1fe42bf1994f844b91 | [
"BSD-2-Clause"
] | permissive | BovdBerg/BigFuzzCovGuidance | 089ddaf1ef77e6e5de8828ac0cd9d9aa715183e2 | 131b4f26f16510e086f2aec60ea66078d427c46d | refs/heads/master | 2023-06-08T20:47:56.485586 | 2021-06-27T14:31:51 | 2021-06-27T14:31:51 | 380,746,901 | 1 | 0 | BSD-2-Clause | 2021-06-27T13:34:59 | 2021-06-27T13:29:15 | Java | UTF-8 | Java | false | false | 472 | java | package edu.ucla.cs.bigfuzz.customarray.inapplicable.Property;
import scala.Tuple4;
import scala.runtime.BoxesRunTime;
public class map1 {
public static void main(String[] args) {
apply(new Tuple4(1.0,1,1.0,""));
}
static final Tuple4 apply(Tuple4 s){
float a= (float) s._1();
for (int i=0; i < BoxesRunTime.unboxToInt(s._2()); ) {
i++;
a*=1 + (float) s._3();
}
return new Tuple4(BoxesRunTime.boxToFloat(a),s._2(),s._3(),s._4());
}
} | [
"[email protected]"
] | |
7a711edb954c856cf9b34bb2b8dbff93460a926f | 31f9d5c8396c07976353809c91680da0105dc4cc | /src/main/java/com/tianyang/common/supcan/common/properties/Express.java | 8141eb51d04cbf637b3800f37cc6186749eadd1b | [] | no_license | 508org/508_pro | d217d234bd935d0f23c48b6e4f7ab4f31f02a7ca | c2df81fe0f2dd5e04cce7ec616b41629734b4ee7 | refs/heads/master | 2021-05-14T15:29:33.337537 | 2018-02-03T03:49:05 | 2018-02-03T03:49:05 | 115,993,125 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,444 | java | /**
* Copyright © 2012-2016 <a href="https://github.com/tianyang/tianyang">tianyang</a> All rights reserved.
*/
package com.tianyang.common.supcan.common.properties;
import com.tianyang.common.supcan.annotation.common.properties.SupExpress;
import com.tianyang.common.utils.ObjectUtils;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamConverter;
import com.thoughtworks.xstream.converters.extended.ToAttributedValueConverter;
/**
* 硕正TreeList Properties Express
* @author WangZhen
* @version 2013-11-04
*/
@XStreamAlias("Express")
@XStreamConverter(value = ToAttributedValueConverter.class, strings = {"text"})
public class Express {
/**
* 是否自动按列的引用关系优化计算顺序 默认值true
*/
@XStreamAsAttribute
private String isOpt;
/**
* 文本
*/
private String text;
public Express() {
}
public Express(SupExpress supExpress) {
this();
ObjectUtils.annotationToObject(supExpress, this);
}
public Express(String text) {
this.text = text;
}
public Express(String name, String text) {
this(name);
this.text = text;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getIsOpt() {
return isOpt;
}
public void setIsOpt(String isOpt) {
this.isOpt = isOpt;
}
}
| [
"[email protected]"
] | |
3a4893b0a65bdcff8967ecb7a8cb3b0c109c64fb | fa40680adca30ea971af0a554975644d93858598 | /app/src/main/java/com/example/elelogistic/RagisterActivity.java | 16d4d2644c51dfb8773db7352b7857bd4b114aec | [] | no_license | manishashrivastv/EleLogistic | 945b9ca16dbc8d46cea2348fa84549d9fc1111da | e6e53722acd08e7de4d8810744d9a7a106252c7e | refs/heads/master | 2023-03-25T18:22:02.842562 | 2021-03-18T16:17:25 | 2021-03-18T16:17:25 | 349,140,172 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,391 | java | package com.example.elelogistic;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Patterns;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.material.textfield.TextInputLayout;
public class RagisterActivity extends AppCompatActivity {
EditText name, email, phone, password;
Button register;
TextView login;
boolean isNameValid, isEmailValid, isPhoneValid, isPasswordValid;
TextInputLayout nameError, emailError, phoneError, passError;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ragister);
name = (EditText) findViewById(R.id.name);
email = (EditText) findViewById(R.id.email);
phone = (EditText) findViewById(R.id.phone);
password = (EditText) findViewById(R.id.password);
login = (TextView) findViewById(R.id.login);
register = (Button) findViewById(R.id.register);
nameError = (TextInputLayout) findViewById(R.id.nameError);
emailError = (TextInputLayout) findViewById(R.id.emailError);
phoneError = (TextInputLayout) findViewById(R.id.phoneError);
passError = (TextInputLayout) findViewById(R.id.passError);
register.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
SetValidation();
}
});
login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// redirect to LoginActivity
Intent intent = new Intent(getApplicationContext(), RagisterActivity.class);
startActivity(intent);
}
});
}
public void SetValidation() {
// Check for a valid name.
if (name.getText().toString().isEmpty()) {
nameError.setError(getResources().getString(R.string.name_error));
isNameValid = false;
} else {
isNameValid = true;
nameError.setErrorEnabled(false);
}
// Check for a valid email address.
if (email.getText().toString().isEmpty()) {
emailError.setError(getResources().getString(R.string.email_error));
isEmailValid = false;
} else if (!Patterns.EMAIL_ADDRESS.matcher(email.getText().toString()).matches()) {
emailError.setError(getResources().getString(R.string.error_invalid_email));
isEmailValid = false;
} else {
isEmailValid = true;
emailError.setErrorEnabled(false);
}
// Check for a valid phone number.
if (phone.getText().toString().isEmpty()) {
phoneError.setError(getResources().getString(R.string.phone_error));
isPhoneValid = false;
} else {
isPhoneValid = true;
phoneError.setErrorEnabled(false);
}
// Check for a valid password.
if (password.getText().toString().isEmpty()) {
passError.setError(getResources().getString(R.string.password_error));
isPasswordValid = false;
} else if (password.getText().length() < 6) {
passError.setError(getResources().getString(R.string.error_invalid_password));
isPasswordValid = false;
} else {
isPasswordValid = true;
passError.setErrorEnabled(false);
}
if (isNameValid && isEmailValid && isPhoneValid && isPasswordValid) {
Toast.makeText(getApplicationContext(), "Successfully", Toast.LENGTH_SHORT).show();
}
}
} | [
"[email protected]"
] | |
173bacc4e0927baa8134b127cc50170e57075f23 | 1ae51e5b26a80ad836e7b8866c3e6a1fe498a8db | /scratch/synapse-2.1-versioned/java/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/config/TargetConfiguration.java | bd896b442714da391af9be7186af835c7122d3e7 | [] | no_license | kelloggm/synapse | 71e3cbb192e8a80a6aaf441e480ba0d7d47d1e36 | 75d1639336924ab25730a78b00fe23d13d9ec67c | refs/heads/trunk | 2020-04-17T19:57:21.275687 | 2019-03-25T22:12:45 | 2019-03-25T22:12:45 | 166,885,598 | 0 | 1 | null | 2019-07-31T21:57:13 | 2019-01-21T21:49:44 | Java | UTF-8 | Java | false | false | 3,272 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.synapse.transport.passthru.config;
import org.apache.axis2.context.ConfigurationContext;
import org.apache.axis2.description.ParameterInclude;
import org.apache.axis2.transport.base.threads.WorkerPool;
import org.apache.http.protocol.*;
import org.apache.synapse.transport.passthru.connections.TargetConnections;
/**
* This class stores configuration specific to HTTP Connectors (Senders)
*/
public class TargetConfiguration extends BaseConfiguration {
private int maxConnections = Integer.MAX_VALUE;
/** Whether User-Agent header coming from client should be preserved */
private boolean preserveUserAgentHeader = false;
/** Whether Server header coming from server should be preserved */
private boolean preserveServerHeader = true;
private TargetConnections connections = null;
public TargetConfiguration(ConfigurationContext configurationContext,
ParameterInclude parameters,
WorkerPool pool) {
super(configurationContext, parameters, pool);
maxConnections = conf.getIntProperty(
PassThroughConfigPNames.MAX_CONNECTION_PER_TARGET,
Integer.MAX_VALUE);
preserveUserAgentHeader = conf.getBooleanProperty(
PassThroughConfigPNames.USER_AGENT_HEADER_PRESERVE, false);
preserveServerHeader = conf.getBooleanProperty(
PassThroughConfigPNames.SERVER_HEADER_PRESERVE, true);
}
@Override
protected HttpProcessor initHttpProcessor() {
String userAgent = conf.getStringProperty(
PassThroughConfigPNames.USER_AGENT_HEADER_VALUE,
"Synapse-PT-HttpComponents-NIO");
return new ImmutableHttpProcessor(
new RequestContent(),
new RequestTargetHost(),
new RequestConnControl(),
new RequestUserAgent(userAgent),
new RequestExpectContinue(false));
}
public int getMaxConnections() {
return maxConnections;
}
public boolean isPreserveUserAgentHeader() {
return preserveUserAgentHeader;
}
public boolean isPreserveServerHeader() {
return preserveServerHeader;
}
public TargetConnections getConnections() {
return connections;
}
public void setConnections(TargetConnections connections) {
this.connections = connections;
}
}
| [
"[email protected]"
] | |
71cf52fa4252b5e99d1443e41b18c64faf9c5776 | f02cf6ae857a9fbe9baffa3b4b7286df4e031c03 | /hummingbird-common/src/main/java/io/hummingbird/common/validator/group/UpdateGroup.java | 492bc78b8e71b3174b08876c3f92dc949fe36334 | [
"Apache-2.0"
] | permissive | TopMonster/hummingBird | 3e4067cc25e8b997c85b883e7f073123998ce8f6 | 122da1bb84f0128a35b7a6513378f7d1eb8260bf | refs/heads/master | 2023-02-24T13:21:36.673128 | 2021-05-18T11:03:26 | 2021-05-18T11:03:26 | 221,826,804 | 31 | 5 | Apache-2.0 | 2023-02-22T07:36:43 | 2019-11-15T02:24:17 | JavaScript | UTF-8 | Java | false | false | 132 | java |
package io.hummingbird.common.validator.group;
/**
* 更新数据 Group
*
* @author Top
*/
public interface UpdateGroup {
}
| [
"[email protected]"
] | |
cf70081a616d990cdc99d664f24c6f17eefc4ac0 | 123393b7dfbd9b5cc7f9988283e1c5ea26dd37ad | /exams/pallida-retake/src/main/java/com/greenfox/pingithefrosty/pallidaretake/services/ClothingServiceImpl.java | 7bde11e92e4d6b57b5f737cdb2f31443261195f4 | [] | no_license | green-fox-academy/pingithefrosty | b9109915e054000e8704e0b0e1ca863428096687 | 5cba5f2f0c4b08d90abbcd126c4b7f82f162313f | refs/heads/master | 2021-09-10T12:30:18.495076 | 2018-03-26T09:21:32 | 2018-03-26T09:21:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,317 | java | package com.greenfox.pingithefrosty.pallidaretake.services;
import com.greenfox.pingithefrosty.pallidaretake.models.Clothing;
import com.greenfox.pingithefrosty.pallidaretake.repositories.ClothingRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class ClothingServiceImpl implements ClothingService {
@Autowired
ClothingRepository clothingRepository;
@Override
public Clothing getClothingByName(String name) {
return clothingRepository.findOneDistinct(name);
}
@Override
public List<Clothing> findAll() {
return clothingRepository.findAll();
}
@Override
public List<String> findAllNames() {
return clothingRepository.findDistinctNames();
}
@Override
public List<String> findAllSizes() {
return clothingRepository.findDistinctSizes();
}
@Override
public List<Clothing> findByPrice(double price, String type) {
if (type.equals("higher")) {
return clothingRepository.findByPriceIsGreaterThan(price);
} else if (type.equals("lower")) {
return clothingRepository.findByPriceIsLessThan(price);
} else if (type.equals("equal")) {
return clothingRepository.findByPriceEquals(price);
} else {
return null;
}
}
}
| [
"[email protected]"
] | |
3c534366b7c650b410a2f25c18c9c350fdb4d0c3 | df611101f20e618425839fbde7605c42d33e86d8 | /platform-admin/src/main/java/com/platform/aop/DataFilterAspect.java | ad7a9256a4b32bcd600db701ed4a241bf40b949f | [] | no_license | juicewall/test | 6609429f34feeed5ba2d60ce89d6ad9d30895150 | 525144e106592418da87c9d049740c35d11a8a15 | refs/heads/master | 2021-05-02T05:56:08.681388 | 2019-07-31T02:30:51 | 2019-07-31T02:30:51 | 120,849,009 | 1 | 0 | null | 2019-07-31T03:10:49 | 2018-02-09T03:01:58 | JavaScript | UTF-8 | Java | false | false | 4,321 | java | package com.platform.aop;
import com.platform.annotation.DataFilter;
import com.platform.entity.SysUserEntity;
import com.platform.service.SysRoleDeptService;
import com.platform.utils.Constant;
import com.platform.utils.RRException;
import com.platform.utils.ShiroUtils;
import org.apache.commons.lang.StringUtils;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Map;
/**
* 数据过滤,切面处理类
*
* @author lipengjun
* @email [email protected]
* @date 2017年10月23日 下午13:33:35
*/
@Aspect
@Component
public class DataFilterAspect {
@Autowired
private SysRoleDeptService sysRoleDeptService;
/**
* 切点
*/
@Pointcut("@annotation(com.platform.annotation.DataFilter)")
public void dataFilterCut() {
}
/**
* 前置通知
*
* @param point 连接点
*/
@Before("dataFilterCut()")
public void dataFilter(JoinPoint point) {
//获取参数
Object params = point.getArgs()[0];
if (params != null && params instanceof Map) {
SysUserEntity user = ShiroUtils.getUserEntity();
//如果不是超级管理员,则只能查询本部门及子部门数据
if (user.getUserId() != Constant.SUPER_ADMIN) {
Map map = (Map) params;
map.put("filterSql", getFilterSQL(user, point));
}
return;
}
throw new RRException("数据权限接口的参数必须为Map类型,且不能为NULL");
}
/**
* 获取数据过滤的SQL
*
* @param user 登录用户
* @param point 连接点
* @return sql
*/
private String getFilterSQL(SysUserEntity user, JoinPoint point) {
MethodSignature signature = (MethodSignature) point.getSignature();
DataFilter dataFilter = signature.getMethod().getAnnotation(DataFilter.class);
String userAlias = dataFilter.userAlias();
String deptAlias = dataFilter.deptAlias();
StringBuilder filterSql = new StringBuilder();
filterSql.append(" and ( ");
if (StringUtils.isNotEmpty(deptAlias) || StringUtils.isNotBlank(userAlias)) {
if (StringUtils.isNotEmpty(deptAlias)) {
//取出登录用户部门权限
String alias = getAliasByUser(user.getUserId());
filterSql.append(deptAlias);
filterSql.append(" in ");
filterSql.append(" ( ");
filterSql.append(alias);
filterSql.append(" ) ");
if (StringUtils.isNotBlank(userAlias)) {
if (dataFilter.self()) {
filterSql.append(" or ");
} else {
filterSql.append(" and ");
}
}
}
if (StringUtils.isNotBlank(userAlias)) {
//没有部门数据权限,也能查询本人数据
filterSql.append(userAlias);
filterSql.append(" = ");
filterSql.append(user.getUserId());
filterSql.append(" ");
}
} else {
return "";
}
filterSql.append(" ) ");
return filterSql.toString();
}
/**
* 取出用户权限
*
* @param userId 登录用户Id
* @return 权限
*/
private String getAliasByUser(Long userId) {
@SuppressWarnings("unchecked")
List<Long> roleOrglist = sysRoleDeptService.queryDeptIdListByUserId(userId);
StringBuilder roleStr = new StringBuilder();
String alias = "";
if (roleOrglist != null && !roleOrglist.isEmpty()) {
for (Long roleId : roleOrglist) {
roleStr.append(",");
roleStr.append("'");
roleStr.append(roleId);
roleStr.append("'");
}
alias = roleStr.toString().substring(1, roleStr.length());
}
return alias;
}
}
| [
"[email protected]"
] | |
63a72e5e73a1fa28a027a05cdb86fb5260f61d3c | e9baa988168e102c409c75ab70269f7af2b51be6 | /mbm/src/main/java/org/multibit/mbm/resources/PublicItemResource.java | f6f16c84e1ade28005ebb4d25d0c3e4ef2bbc847 | [
"MIT"
] | permissive | kenrestivo/MultiBitMerchant | b1c56d53796ac6031bf4877f1c3ecdd29dcb38f6 | 9a81e237face023f59dec927a2d7a960f72abfcb | refs/heads/master | 2021-01-16T19:11:51.361683 | 2012-10-12T17:17:01 | 2012-10-12T17:17:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,251 | java | package org.multibit.mbm.resources;
import com.google.common.base.Optional;
import com.yammer.dropwizard.jersey.caching.CacheControl;
import com.yammer.metrics.annotation.Timed;
import org.multibit.mbm.api.hal.HalMediaType;
import org.multibit.mbm.api.response.hal.item.CustomerItemCollectionBridge;
import org.multibit.mbm.db.dao.ItemDao;
import org.multibit.mbm.db.dto.Item;
import org.multibit.mbm.db.dto.User;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
* <p>Resource to provide the following to application:</p>
* <ul>
* <li>Provision of REST endpoints to manage Item retrieval operations
* by the public</li>
* </ul>
* <p>This is the main interaction point for the public to get detail on Items for sale.</p>
*
* @since 0.0.1
*/
@Component
@Path("/item")
@Produces({HalMediaType.APPLICATION_HAL_JSON, HalMediaType.APPLICATION_HAL_XML, MediaType.APPLICATION_JSON})
public class PublicItemResource extends BaseResource {
@Resource(name = "hibernateItemDao")
ItemDao itemDao;
/**
* Provide a paged response of all items in the system
*
* @param rawPageSize The unvalidated page size
* @param rawPageNumber The unvalidated page number
*
* @return A response containing a paged list of all items
*/
@GET
@Timed
@Path("/promotion")
@CacheControl(maxAge = 6, maxAgeUnit = TimeUnit.HOURS)
public Response retrieveAllByPage(
@QueryParam("pageSize") Optional<String> rawPageSize,
@QueryParam("pageNumber") Optional<String> rawPageNumber) {
// Validation
int pageSize = Integer.valueOf(rawPageSize.get());
int pageNumber = Integer.valueOf(rawPageNumber.get());
List<Item> items = itemDao.getAllByPage(pageSize, pageNumber);
// Provide a representation to the client
CustomerItemCollectionBridge bridge = new CustomerItemCollectionBridge(uriInfo, Optional.<User>absent());
return ok(bridge, items);
}
public void setItemDao(ItemDao itemDao) {
this.itemDao = itemDao;
}
} | [
"[email protected]"
] | |
7e84870685321c9e077c111e887a30de15b9458e | 7d1b25e3b875cf22e3bc283820d5df207452e4dd | /AlpineUtility/src/com/alpine/utility/db/MultiDBGreenplumUtility.java | 6001dadd1997aed9863c4e123e933ca7e2025beb | [] | no_license | thyferny/indwa-work | 6e0aea9cbd7d8a11cc5f7333b4a1c3efeabb1ad0 | 53a3c7d9d831906837761465433e6bfd0278c94e | refs/heads/master | 2020-05-20T01:26:56.593701 | 2015-12-28T05:40:29 | 2015-12-28T05:40:29 | 42,904,565 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 365 | java | /**
* ClassName MultiDBGreenplumUtility.java
*
* Version information: 1.00
*
* Data: 2011-11-26
*
* COPYRIGHT (C) 2011 Alpine Solutions. All Rights Reserved.
**/
package com.alpine.utility.db;
public class MultiDBGreenplumUtility extends AbstractMultiDBUtilityGPPG {
/**
*
*/
private static final long serialVersionUID = -7993985724639684779L;
}
| [
"[email protected]"
] | |
a513ad5411f63d5c23ee4feb4554d9156bdffb77 | 7343a29f19ee00aa46f9fa8ddacacd3dcc88b3a2 | /DatabaseServiceRestApi/src/main/java/com/databaseRestApi/springboot/util/CustomErrorType.java | 9194335d9604e4bd03df4cec21f88e309826cb7b | [] | no_license | cristiansen12/Jobs-Matcher-SOA-Version | a184cccffebf9850883896b4e7b984329628c792 | eefc896e8770455c52cb7d0f744c9777e6d72f83 | refs/heads/master | 2021-09-14T22:02:40.813999 | 2018-05-20T22:05:11 | 2018-05-20T22:05:11 | 109,997,751 | 0 | 0 | null | 2017-11-25T14:40:50 | 2017-11-08T16:01:40 | null | UTF-8 | Java | false | false | 287 | java | package com.databaseRestApi.springboot.util;
public class CustomErrorType {
private String errorMessage;
public CustomErrorType(String errorMessage){
this.errorMessage = errorMessage;
}
public String getErrorMessage() {
return errorMessage;
}
}
| [
"[email protected]"
] | |
9973f8bcb13ccdfaa8fb60e0298d7a7bd1b1a327 | 2ccd3fffec70133d08dd9453882906c7250387ad | /app/src/main/java/anwar/pcremote/Streming/Constants.java | 8dcdd891fd394b03ff5efdf602d8a9717e71de84 | [] | no_license | AHTanvir/PCRemote | a51bfa4788bcca53ea6d0018e4b47068dfc8789a | a1da46f1bacc87b5e5ce984e9e984906f0616765 | refs/heads/master | 2020-06-25T20:56:04.035198 | 2017-09-21T15:06:25 | 2017-09-21T15:06:25 | 96,988,222 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 984 | java | package anwar.pcremote.Streming;
/**
* Created by anwar_husen15 on 1/9/2016.
*/
public class Constants {
public static String SERVER_IP = "192.168.0.102";
public static final int SERVER_PORT =8998;
public static final String PLAY="32";
public static final String NEXT="34";
public static final String PREVIOUS="33";
public static final String STOP="stop";
public static final String FORWARD="39";
public static final String BACKWORD="37";
public static final String VOL_UP="38";
public static final String VOL_DOWN="40";
public static final String DOUBLECLICK="doubleclick";
public static final String PAUSE="32";
public static final String MOUSE_LEFT_CLICK="1024";
public static final String MOUSE_RIGHT_CLICK="4096";
public static final String ENTER="10";
public static final int SEARCH_PORT =15263;
public static String LAST_DEVICE=null;
}
| [
"[email protected]"
] | |
d6dc8f771acd132ecf07604c7dff7b186b068513 | 56b6e3e217df87ff5095bc3d18038d9dad2bb140 | /app/src/main/java/com/example/runislife/adapters/TrainingTabsAdapter.java | 7a03db3c06740a91681a96b613e3b98750317b82 | [] | no_license | AlexeyBalaganskiy/RunIsLife | f098da407ae4a76e987755090660d42eaa0f0f49 | 78113425ab1f35a964e973a56561fb19b9f9abbd | refs/heads/master | 2020-08-06T22:19:14.225839 | 2019-10-06T19:52:03 | 2019-10-06T19:52:03 | 213,173,445 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,256 | java | package com.example.runislife.adapters;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import com.example.runislife.TrainingDaysFragment;
import com.example.runislife.TrainingDescriptionFragment;
public class TrainingTabsAdapter extends FragmentPagerAdapter {
private TrainingDescriptionFragment tab1;
private TrainingDaysFragment tab2;
public TrainingTabsAdapter(FragmentManager fm,TrainingDescriptionFragment tab1, TrainingDaysFragment tab2) {
super(fm);
this.tab1 = tab1;
this.tab2 = tab2;
}
@Override
public CharSequence getPageTitle(int position){
switch(position){
case 0:
return "Описание плана";
case 1:
return "Дни тренировок";
default:
return "";
}
}
@Override
public Fragment getItem(int position) {
switch(position){
case 0:
return tab1;
case 1:
return tab2;
default:
return null;
}
}
@Override
public int getCount() {
return 2;
}
}
| [
"[email protected]"
] | |
1d379a61d0cc37cd27834830854cabff7f5059a0 | 9d53bfb8072924bcc3fcb83785d81b73d74c745a | /instrumentation/jaxrs/jaxrs-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/jaxrs/v1_0/JaxrsServerSpanNaming.java | 1c7092c2fb6ce8edc3d21626929c98c135d50aed | [
"Apache-2.0"
] | permissive | otj202/opentelemetry-java-instrumentation | 25ef8c97d90a811b23b764be8119646cc4ab49e9 | b61113fef656c39b0d2c39ee2aabeb770c5c0377 | refs/heads/main | 2023-07-18T13:09:30.253147 | 2021-08-27T21:14:40 | 2021-08-27T21:14:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,248 | java | /*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.jaxrs.v1_0;
import io.opentelemetry.context.Context;
import io.opentelemetry.instrumentation.api.servlet.ServletContextPath;
import io.opentelemetry.javaagent.bootstrap.jaxrs.JaxrsContextPath;
import java.util.function.Supplier;
public class JaxrsServerSpanNaming {
public static Supplier<String> getServerSpanNameSupplier(
Context context, HandlerData handlerData) {
return () -> {
String pathBasedSpanName = handlerData.getServerSpanName();
// If path based name is empty skip prepending context path so that path based name would
// remain as an empty string for which we skip updating span name. Path base span name is
// empty when method and class don't have a jax-rs path annotation, this can happen when
// creating an "abort" span, see RequestContextHelper.
if (!pathBasedSpanName.isEmpty()) {
pathBasedSpanName = JaxrsContextPath.prepend(context, pathBasedSpanName);
pathBasedSpanName = ServletContextPath.prepend(context, pathBasedSpanName);
}
return pathBasedSpanName;
};
}
private JaxrsServerSpanNaming() {}
}
| [
"[email protected]"
] | |
f5dc57ccddf8cc3a59997f7c30a87664da7267f7 | 8e73b8b5f86d39ada9410542b38523deaf0b71b5 | /example-zuul/src/main/java/com/test/ExampleZuulApplication.java | f394e68b0ad2668507b936b31ed3785967988148 | [] | no_license | pigjson/privateSpringCloud | 2fbdf38e788057332e434e480a66e9f348144e89 | 6a68363e916828d67efaee400507cc61cf010f9d | refs/heads/master | 2022-10-16T16:34:49.584865 | 2020-04-08T07:12:04 | 2020-04-08T07:12:04 | 223,312,874 | 1 | 0 | null | 2022-10-05T18:21:30 | 2019-11-22T03:06:38 | JavaScript | UTF-8 | Java | false | false | 492 | java | package com.test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
@SpringBootApplication
@EnableEurekaClient
@EnableZuulProxy
public class ExampleZuulApplication {
public static void main(String[] args) {
SpringApplication.run(ExampleZuulApplication.class, args);
}
}
| [
"[email protected]"
] | |
4feabcdc7d4254959b2f2428abfc7cf7022aa9c5 | 0abe61f25f9e130170610189975d07faad94ce3c | /src/main/java/com/dang/ctci/treegraph/DFS.java | d3f0f4bcdbc0bd02f8328b4b91dea6d84eca89a8 | [] | no_license | dzungdev/cracking-the-coding-interview | 73b667a662d5b80db086b662f9d0657a4d7a792d | 81e34ef6831feaea8b3d8c08fa72f3c014cd31b3 | refs/heads/master | 2020-03-15T09:49:28.220815 | 2018-08-15T04:16:35 | 2018-08-15T04:16:35 | 132,084,603 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 876 | java | package com.dang.ctci.treegraph;
import com.dang.ctci.common.GNode;
import com.dang.ctci.common.Graph;
public class DFS {
public <T> void dfs(Graph<T> graph, T v) {
GNode<T> root = null;
for (GNode<T> node: graph.nodes) {
if (node.data == v) {
root = node;
break;
}
}
dfsHelper(root);
}
private <T> void dfsHelper(GNode<T> node) {
node.isVisited = true;
System.out.println(node.data + " ");
for (GNode<T> child : node.children) {
if (!child.isVisited) {
dfsHelper(child);
}
}
}
public static void main(String[] args) {
DFS app = new DFS();
Graph<Integer> graph = new Graph<Integer>(4);
graph.addEdge(0, 1);
graph.addEdge(0, 2);
graph.addEdge(1, 2);
graph.addEdge(2, 0);
graph.addEdge(2, 3);
graph.addEdge(3, 3);
app.dfs(graph, 2);
}
}
| [
"[email protected]"
] | |
ca52d829147c8c9d7f45fd065c8e8db98aa119cb | 0faff77a64a0cbc124c8296a7ae270e1e462b5df | /progamer1/src/main/java/br/com/fiap/util/AuthorizationListener.java | 4df281d12c1681ab68fbe1bfaebe49aee10bb86c | [] | no_license | sakitani/Fiap2021---Digital-Business | d7b385752c181b05113ab5b330704896afac6906 | 915470956d91487cf4ceb552ded6b14d1ada95f1 | refs/heads/master | 2023-08-02T04:58:07.546317 | 2021-09-08T18:41:12 | 2021-09-08T18:41:12 | 367,164,515 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,152 | java | package br.com.fiap.util;
import javax.faces.application.NavigationHandler;
import javax.faces.context.FacesContext;
import javax.faces.event.PhaseEvent;
import javax.faces.event.PhaseId;
import javax.faces.event.PhaseListener;
import br.com.fiap.model.Profile;
public class AuthorizationListener implements PhaseListener{
private static final long serialVersionUID = 1L;
@Override
public void afterPhase(PhaseEvent event) {
FacesContext context = FacesContext.getCurrentInstance();
String viewId = context.getViewRoot().getViewId();
if (viewId.equals("/login.xhtml")) return;
Profile profile = (Profile) context.getExternalContext().getSessionMap().get("profile");
if (profile != null) return;
NavigationHandler navigator = context.
getApplication().getNavigationHandler();
navigator.handleNavigation(context, null, "login?faces-redirect=true");
System.out.println("AFTER - " + event.getPhaseId());
}
@Override
public void beforePhase(PhaseEvent event) {
System.out.println("BEFORE - " + event.getPhaseId());
}
@Override
public PhaseId getPhaseId() {
return PhaseId.RESTORE_VIEW;
}
}
| [
"[email protected]"
] | |
d0269e1b1c6d7eb6f6cb83daa86168df296cfc46 | ba57107ae84da94226fac306b9f8be22ba67925b | /src/com/company/Money.java | 48b1b87b88c0dc00866e46d4f4a8cc7d79c6ebea | [] | no_license | IgorBagnucki/Appstore | fb8d79589e135303d12c69341ed6b66aeb28313f | bf106311cd21fa8d21998cb3fdf2c9dfd1735483 | refs/heads/master | 2022-11-13T15:22:37.452007 | 2020-06-22T13:22:28 | 2020-06-22T13:22:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 718 | java | package com.company;
public class Money {
public int amount;
Money(int amount) {
this.amount = amount;
}
public Money() {
this(0);
}
public int get() {
return amount;
}
public void set(int value) {
amount = value;
}
public void subtract(Money other) {
subtract(other.get());
}
public void subtract(int value) {
amount -= value;
}
public void add(Money other) {
add(other.get());
}
public void add(int value) {
amount += value;
}
@Override
public String toString() {
return amount + "$";
}
public void set(Money cash) {
set(cash.get());
}
}
| [
"[email protected]"
] | |
c5c73a1d5072660f05aad42c87dab5956a7084cd | a63d907ad63ba6705420a6fb2788196d1bd3763c | /src/dataflow/jobnavi/jobnavi-scheduler/src/main/java/com/tencent/bk/base/dataflow/jobnavi/scheduler/http/admin/ScheduleToolHandler.java | a9ddc57160847ce1a1dae133112afa9f240980c3 | [
"MIT"
] | permissive | Tencent/bk-base | a38461072811667dc2880a13a5232004fe771a4b | 6d483b4df67739b26cc8ecaa56c1d76ab46bd7a2 | refs/heads/master | 2022-07-30T04:24:53.370661 | 2022-04-02T10:30:55 | 2022-04-02T10:30:55 | 381,257,882 | 101 | 51 | NOASSERTION | 2022-04-02T10:30:56 | 2021-06-29T06:10:01 | Python | UTF-8 | Java | false | false | 14,193 | java | /*
* Tencent is pleased to support the open source community by making BK-BASE 蓝鲸基础平台 available.
*
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
*
* BK-BASE 蓝鲸基础平台 is licensed under the MIT License.
*
* License for BK-BASE 蓝鲸基础平台:
* --------------------------------------------------------------------
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
* LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
* NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.tencent.bk.base.dataflow.jobnavi.scheduler.http.admin;
import com.tencent.bk.base.dataflow.jobnavi.exception.NaviException;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.metadata.AbstractJobDao;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.metadata.MetaDataManager;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.schedule.Schedule;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.schedule.ScheduleManager;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.schedule.bean.DependencyInfo;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.schedule.bean.Period;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.schedule.bean.ScheduleInfo;
import com.tencent.bk.base.dataflow.jobnavi.scheduler.state.dependency.DependencyManager;
import com.tencent.bk.base.dataflow.jobnavi.state.ExecuteResult;
import com.tencent.bk.base.dataflow.jobnavi.state.TaskInfo;
import com.tencent.bk.base.dataflow.jobnavi.state.TaskStatus;
import com.tencent.bk.base.dataflow.jobnavi.util.cron.CronUtil;
import com.tencent.bk.base.dataflow.jobnavi.util.http.AbstractHttpHandler;
import com.tencent.bk.base.dataflow.jobnavi.util.http.HttpReturnCode;
import com.tencent.bk.base.dataflow.jobnavi.util.http.JsonUtils;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Set;
import java.util.TimeZone;
import org.apache.log4j.Logger;
import org.glassfish.grizzly.http.server.Request;
import org.glassfish.grizzly.http.server.Response;
public class ScheduleToolHandler extends AbstractHttpHandler {
private static final Logger LOGGER = Logger.getLogger(ScheduleToolHandler.class);
@Override
public void doPost(Request request, Response response) throws Exception {
Map<String, Object> params = JsonUtils.readMap(request.getInputStream());
String operate = (String) params.get("operate");
if ("calculate_schedule_task_time".equals(operate)) {
String rerunListStr = (String) params.get("rerun_processings");
String rerunModel = (String) params.get("rerun_model");
Long startTime = (Long) params.get("start_time");
Long endTime = (Long) params.get("end_time");
List<String> rerunList = Arrays.asList(rerunListStr.split(","));
final Set<TaskStatus> excludeStatuses = new HashSet<>();
String excludeStatusesStr = request.getParameter("exclude_statuses");
if (excludeStatusesStr != null) {
for (String excludeStatus : excludeStatusesStr.split(",")) {
excludeStatuses.add(TaskStatus.valueOf(excludeStatus));
}
}
List<TaskInfo> taskInfoList = new ArrayList<>();
try {
generateTask(rerunList, rerunModel, startTime, endTime, taskInfoList, excludeStatuses);
} catch (NaviException e) {
writeData(false, e.getMessage(), HttpReturnCode.ERROR_RUNTIME_EXCEPTION, response);
}
//generated result message
List<Map<String, Object>> result = new ArrayList<>();
for (TaskInfo taskInfo : taskInfoList) {
Map<String, Object> map = new HashMap<>();
map.put("schedule_id", taskInfo.getScheduleId());
map.put("schedule_time", taskInfo.getScheduleTime());
result.add(map);
}
writeData(true, "rerun success.", HttpReturnCode.DEFAULT, JsonUtils.writeValueAsString(result), response);
}
}
@Override
public void doGet(Request request, Response response) throws Exception {
String operate = request.getParameter("operate");
AbstractJobDao dao = MetaDataManager.getJobDao();
if ("query_failed_executes".equals(operate)) {
try {
long beginTime = Long.parseLong(request.getParameter("begin_time"));
long endTime = Long.parseLong(request.getParameter("end_time"));
String typeId = request.getParameter("type_id") != null ? request.getParameter("type_id") : "";
List<ExecuteResult> executeResults = dao.queryFailedExecutes(beginTime, endTime, typeId);
List<Map<String, Object>> results = new ArrayList<>();
for (ExecuteResult executeResult : executeResults) {
results.add(executeResult.toHTTPJson());
}
writeData(true, "query failed execute success.", HttpReturnCode.DEFAULT,
JsonUtils.writeValueAsString(results), response);
} catch (Exception e) {
LOGGER.error("query failed execute error.", e);
writeData(false, "query failed execute error." + e.getMessage(),
HttpReturnCode.ERROR_RUNTIME_EXCEPTION, response);
}
}
}
private void generateTask(List<String> scheduleIdList, String model, Long startTime, Long endTime,
List<TaskInfo> taskInfoList, Set<TaskStatus> excludeStatuses) throws NaviException {
Schedule schedule = ScheduleManager.getSchedule();
//find heads
List<String> heads = getHeads(scheduleIdList, endTime);
//generate heads taskInfo
for (String scheduleId : heads) {
ScheduleInfo scheduleInfo = schedule.getScheduleInfo(scheduleId);
Period period = scheduleInfo.getPeriod();
Long currentScheduleTime = schedule.calcNextScheduleTime(scheduleId, startTime, false);
while (currentScheduleTime <= endTime) {
TaskInfo taskInfo = schedule.buildTaskInfo(scheduleInfo, currentScheduleTime);
generateTaskInfo(taskInfo, period.getTimezone(), taskInfoList, excludeStatuses);
currentScheduleTime = currentScheduleTime + 1;
currentScheduleTime = schedule.calcNextScheduleTime(scheduleId, currentScheduleTime, false);
}
}
//generate children taskInfo
generateChildTaskInfoList(taskInfoList, scheduleIdList, model, excludeStatuses);
}
private List<String> getHeads(List<String> scheduleIdList, Long endTime) throws NaviException {
Schedule schedule = ScheduleManager.getSchedule();
List<String> heads = new ArrayList<>();
for (String scheduleId : scheduleIdList) {
if (scheduleId == null) {
continue;
}
ScheduleInfo scheduleInfo = schedule.getScheduleInfo(scheduleId);
if (scheduleInfo == null) {
throw new NaviException("Can not find schedule [" + scheduleId + "]");
}
validateScheduleInfo(scheduleInfo);
Period period = scheduleInfo.getPeriod();
Long nextScheduleTime = schedule.getScheduleTimes().get(scheduleId);
if (nextScheduleTime != null && endTime >= nextScheduleTime) {
String prettyTime = CronUtil
.getPrettyTime(nextScheduleTime, "yyyy-MM-dd HH:mm:ss", period.getTimezone());
throw new NaviException(
"schedule [" + scheduleId + "] at schedule time " + prettyTime
+ " is not scheduled. Please make sure that end time should smaller than it.");
}
List<DependencyInfo> parents = scheduleInfo.getParents();
boolean isHead = true;
for (DependencyInfo parent : parents) {
if (scheduleIdList.contains(parent.getParentId())
&& !scheduleId.equals(parent.getParentId())) { //exclude self dependence
isHead = false;
break;
}
}
if (isHead) {
heads.add(scheduleId);
}
}
return heads;
}
private boolean generateTaskInfo(TaskInfo taskInfo, TimeZone timeZone,
List<TaskInfo> generatedTaskInfoList, Set<TaskStatus> excludeStatuses) throws NaviException {
String scheduleId = taskInfo.getScheduleId();
long scheduleTime = taskInfo.getScheduleTime();
String schedulePrettyTime = CronUtil.getPrettyTime(scheduleTime, "yyyy-MM-dd HH:mm:ss", timeZone);
if (needRerun(scheduleId, scheduleTime, schedulePrettyTime, excludeStatuses)) {
if (!isTaskContain(taskInfo, generatedTaskInfoList)) {
LOGGER.info("add schedule [" + scheduleId + "] rerun at time : " + schedulePrettyTime);
generatedTaskInfoList.add(taskInfo);
}
return true;
}
return false;
}
private void generateChildTaskInfoList(List<TaskInfo> generatedTaskInfoList, List<String> rerunIdList,
String rerunModel, Set<TaskStatus> excludeStatuses) throws NaviException {
Schedule schedule = ScheduleManager.getSchedule();
Queue<TaskInfo> bfsQueue = new LinkedList<>(generatedTaskInfoList);
while (!bfsQueue.isEmpty()) {
TaskInfo taskInfo = bfsQueue.poll();
if (taskInfo == null) {
continue;
}
String scheduleId = taskInfo.getScheduleId();
long dataTime = taskInfo.getDataTime();
List<TaskInfo> childrenTaskInfo = DependencyManager.generateChildrenTaskInfo(scheduleId, dataTime);
if (childrenTaskInfo == null) {
continue;
}
for (TaskInfo childTaskInfo : childrenTaskInfo) {
String childId = childTaskInfo.getScheduleId();
if (scheduleId.equals(childId)) {
continue;
}
if (rerunIdList.contains(childId) || "all_child".equals(rerunModel)) {
ScheduleInfo childInfo = schedule.getScheduleInfo(childId);
if (childInfo == null) {
continue;
}
validateScheduleInfo(childInfo);
Period period = childInfo.getPeriod();
Long nextScheduleTime = schedule.getScheduleTimes().get(childId);
if (nextScheduleTime != null && childTaskInfo.getScheduleTime() >= nextScheduleTime) {
continue;
}
if (generateTaskInfo(childTaskInfo, period.getTimezone(), generatedTaskInfoList, excludeStatuses)) {
bfsQueue.add(childTaskInfo);
}
}
}
}
}
private void validateScheduleInfo(ScheduleInfo scheduleInfo) throws NaviException {
String scheduleId = scheduleInfo.getScheduleId();
if (!scheduleInfo.isActive()) {
LOGGER.error("schedule [" + scheduleId + "] is disabled. skip rerun.");
throw new NaviException("schedule [" + scheduleId + "] is disabled. skip rerun.");
}
if (scheduleInfo.getPeriod() == null) {
LOGGER.error("schedule [" + scheduleId + "] is not period schedule. skip rerun.");
throw new NaviException("schedule [" + scheduleId + "] is not period schedule. skip rerun.");
}
}
private boolean isTaskContain(TaskInfo task, List<TaskInfo> taskInfoList) {
for (TaskInfo taskInfo : taskInfoList) {
if (taskInfo.getScheduleId().equals(task.getScheduleId()) && taskInfo.getScheduleTime() == task
.getScheduleTime()) {
return true;
}
}
return false;
}
private boolean needRerun(String scheduleId, Long scheduleTime, String currentPrettyTime,
Set<TaskStatus> excludeStatuses) throws NaviException {
AbstractJobDao dao = MetaDataManager.getJobDao();
TaskStatus status = dao.getExecuteStatus(scheduleId, scheduleTime);
if (status == TaskStatus.preparing || status == TaskStatus.running
|| status == TaskStatus.recovering || status == TaskStatus.decommissioned
|| status == TaskStatus.lost || status == TaskStatus.retried) {
throw new NaviException("schedule [" + scheduleId + "] at schedule time " + currentPrettyTime
+ " is not finished, please retry it later.");
} else if (excludeStatuses.contains(status)) {
LOGGER.info("schedule [" + scheduleId + "] at schedule time " + currentPrettyTime + " is " + status);
throw new NaviException(
"schedule [" + scheduleId + "] at schedule time " + currentPrettyTime + " is " + status
+ " which is excluded");
}
return true;
}
}
| [
"[email protected]"
] | |
a121b018bca733877099e3b8b3219a1513f5ae84 | 494ceb30947ea62fdb5f7e00064cab6351e20b03 | /src/main/java/com/yz/testSH/App.java | 504eb20a48e0257d115eaaed574b0c5c4b459aa7 | [] | no_license | RisingSunYZ/SpringHibenate | 428f8218e42a547cbc37b168b3d552c641e20dcc | 1a7a612a51abfd3aa62de1abc4085f8632b44159 | refs/heads/master | 2021-04-12T10:48:43.521884 | 2018-04-11T06:28:50 | 2018-04-11T06:28:50 | 126,302,973 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,414 | java | package com.yz.testSH;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import javax.sql.DataSource;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import redis.clients.jedis.Jedis;
import com.yz.testSH.model.TStudent;
import com.yz.testSH.service.student.IStudentService;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
ApplicationContext con = new ClassPathXmlApplicationContext("Application.xml");
DataSource source = (DataSource) con.getBean("dataSource");
IStudentService studentService = (IStudentService) con.getBean("studentServiceImpl");
// IStudentService studentService = new StudentServiceImpl();
TStudent stu = new TStudent();
Date date = new Date();
stu.setBirth(date);
stu.setName("yz");
studentService.save(stu);
Jedis conn = new Jedis("localhost");
System.out.println(stu.getId());
// Map<String,String> map = new HashMap<String,String>();
// map.put("name", "yz");
// map.put("date", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date));
// conn.hmset("student"+stu.getId(), map);
byte[] stuStr = serializable(stu);
conn.lpush("students".getBytes(), stuStr);
//
//// IStudentDao dao = new StudentDaoImpl();
//// dao.save(stu);
//
try {
// System.out.println(source.getConnection());
// System.out.println( "Hello World!123" );
// ApplicationContext con = new ClassPathXmlApplicationContext("Application.xml");
// IStudentDao dao = (IStudentDao) con.getBean("studentDaoImpl");
// dao.save(stu);
// IStudentService service = (IStudentService) con.getBean("studentServiceImpl");
// service.save(stu);
} catch (Exception e) {
e.printStackTrace();
}
}
private static byte[] serializable(TStudent stu) {
ObjectOutputStream oos = null;
ByteArrayOutputStream baos = null;
try {
baos = new ByteArrayOutputStream();
oos = new ObjectOutputStream(baos);
oos.writeObject(stu);
byte[] temp = baos.toByteArray();
return temp;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
| [
"[email protected]"
] | |
46e9a55e394e5df1b064982c0cd6cc45f15f6faf | 1bf105826a6d3a7b0715c5b6a3ededcb9da45539 | /src/cn/easybuy/dao/BaseDaoImpl.java | aa37e391f50fd60afd3e1ddcf5b26c9185732094 | [] | no_license | Dongyang666/ebuy | 2c966a89f3522f30c17b4eded934534568104a25 | a6bd776289e25011b4f437d51e22e9d99a42611b | refs/heads/master | 2021-05-10T12:36:56.739706 | 2018-01-22T11:04:40 | 2018-01-22T11:04:40 | 118,444,768 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,572 | java | package cn.easybuy.dao;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.sql.*;
import java.util.List;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import cn.easybuy.utils.JdbcUtils;
/**
* 基础dao的实现类,实现最基本的增删查改的方法
*/
@SuppressWarnings("unchecked")
public abstract class BaseDaoImpl<T> implements IBaseDao<T> {
//保存当前运行类的参数化类型中的实际类型
@SuppressWarnings("rawtypes")
private Class clazz ;
private String className;
@SuppressWarnings("rawtypes")
public BaseDaoImpl() {
//this.getClass()当前运行类的字节码
//this表示当前运行类
//getGenericSuperclass()获取父类,即参数化类型
Type type = this.getClass().getGenericSuperclass();
ParameterizedType pt =(ParameterizedType)type;
//可能会有多个参数化类型 获取实际类型参数
Type[] types = pt.getActualTypeArguments();
clazz = (Class) types[0];
className=clazz.getSimpleName();
}
@Override
public T findById(int id){
String sql="select * from "+className +" where id= ?";
try {
return JdbcUtils.getQueryRunner().query(sql, new BeanHandler<T>( clazz),id);
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException();
}
}
@Override
public List<T> getAll(){
String sql="select * from "+className;
try {
return JdbcUtils.getQueryRunner().query(sql, new BeanListHandler<T>(clazz));
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException();
}
}
@Override
public boolean add(T t){
int b=0;
Field[] f =clazz.getDeclaredFields();
StringBuilder sb = new StringBuilder();
String sql = "insert into "+ className+" values (";
sb.append(sql);
for (int i = 0; i < f.length; i++) {
try {
f[i].setAccessible(true);
Object value =f[i].get(t);
if(value instanceof String||value instanceof Timestamp){
sb.append("'"+value+"'");
}
else sb.append(value);
} catch (Exception e) {
System.out.println(e);
}
if(i!=f.length-1) sb.append(",");
}
sb.append(")");
sql =sb.toString();
try {
b =JdbcUtils.getQueryRunner().update(sql);
} catch (SQLException e) {
e.printStackTrace();
}
if(b>0)return true;
else return false;
}
@Override
public boolean delete(int id){
int b= 0;
String sql="delete from "+className +" where id= ?";
try {
b = JdbcUtils.getQueryRunner().update(sql, id);
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException();
}
if(b>0) return true;
else return false;
}
@Override
public boolean update(T t){
String sql = "update "+className+" set ";
StringBuilder sb =new StringBuilder("update "+className+" set ");
Field[] f =clazz.getDeclaredFields();
Object []params = new Object[f.length];
int j=0;
for (int i = 0; i < f.length; i++) {
f[i].setAccessible(true);
try {
if(f[i].getName()!="id"){
sb.append(f[i].getName()+"= "+"?");
params[j]=f[i].get(t);
j++;
if(i!=f.length-1) sb.append(",");
}
else params[f.length-1]=f[i].get(t);
} catch (Exception e) {
e.printStackTrace();
}
}
sb.append(" where id = ?");
sql=sb.toString();
try {
JdbcUtils.getQueryRunner().update(sql, params);
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
}
| [
"[email protected]"
] | |
4f6c6c83f536e4f8ad8eea17b7fd244c6aa4ce2c | a9d4dafe4b07a5cdc21d2472f9fdc614558259ad | /src/levels/Escenario3.java | 5331787b8f6346f30a7dbcd3894e94d5f7592b47 | [] | no_license | seylincarcamo/ParadoxieWolrd | ad23b40949674564a1d285b11d64bbc5d6a65e02 | e834c76c031897d2a9c01c335ab044972a9651f4 | refs/heads/master | 2022-04-23T16:09:34.151714 | 2020-04-23T04:56:04 | 2020-04-23T04:56:04 | 258,093,355 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,337 | 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 levels;
import gui.Estado;
import gui.Personaje;
import interfaces.Interface_MyMethods;
import interfaces.MyMethods;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.LayoutManager;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.Timer;
import main.Principal;
import objects.CoinGema;
import objects.Door;
import objects.Monster;
import objects.MoverObjects;
public class Escenario3 extends JPanel implements ActionListener, KeyListener {
private ImageIcon icono;
private Image fondo;
private Timer t;
private MyMethods mis_metodos;
private Personaje p1;
private Monster[] monster_wolf;
private MoverObjects[] fnd;
private MoverObjects[] suelo;
private MoverObjects[] pisos;
private MoverObjects[] sierras;
private MoverObjects door;
private CoinGema[] coins;
private String msg_coins;
private String msg_gemas;
private String msg_vidas;
private String msg_nivel;
private Font font;
private boolean gameEnded;
private boolean coinsVerif;
private boolean cancel;
private Estado[] est;
private JFrame marco;
private int comprobar;
private int nivel;
private int cont_coins;
private int cont_gemas;
private int cont_vidas;
private int rest_vidas;
JButton playButton = new JButton();
public Escenario3(JFrame marco, int v, int nivel) {
setDoubleBuffered(true);
this.marco = marco;
this.rest_vidas = v;
this.nivel = nivel;
initVariables();
iniButtons();
this.t = new Timer(5, null);
this.t.addActionListener(this);
this.t.start();
addKeyListener(this);
setFocusable(true);
setMessages();
}
public void initVariables() {
this.p1 = new Personaje();
this.est = new Estado[4];
this.mis_metodos = new MyMethods();
animar((Interface_MyMethods)this.mis_metodos);
this.door = (MoverObjects)new Door(7727, 268, this.nivel);
this.monster_wolf = new Monster[4];
this.monster_wolf[0] = new Monster(-1500, 500, 2);
this.monster_wolf[1] = new Monster(-1700, 500, 2);
this.monster_wolf[2] = new Monster(-2200, 500, 2);
this.monster_wolf[3] = new Monster(-2650, 500, 2);
for (int x = 0; x < this.est.length; x++)
this.est[x] = new Estado(x);
this.cont_coins = 0;
this.cont_gemas = 0;
this.gameEnded = false;
this.coinsVerif = false;
this.cancel = true;
}
public void setMessages() {
this.font = new Font("Intensa Fuente", 0, 20);
this.msg_coins = "" + this.cont_coins;
this.msg_gemas = "" + this.cont_gemas;
this.msg_vidas = "" + this.rest_vidas;
this.msg_nivel = "" + this.nivel;
}
public void iniButtons() {
ImageIcon btn1 = new ImageIcon("src/images/Botones/m1.png"), btn2 = new ImageIcon("src/images/Botones/m2.png"), btn3 = new ImageIcon("src/images/Botones/m3.png");
this.playButton.setBounds(1150, 5, 67, 62);
this.playButton.addActionListener(this);
ConfigurarBoton(this.playButton, btn1, btn2, btn3);
add(this.playButton);
}
public void ConfigurarBoton(JButton boton, ImageIcon img1, ImageIcon img2, ImageIcon img3) {
boton.setIcon(img1);
setLayout((LayoutManager)null);
boton.setBorderPainted(false);
boton.setContentAreaFilled(false);
boton.setFocusable(false);
boton.setRolloverEnabled(true);
boton.setRolloverIcon(img2);
boton.setPressedIcon(img3);
}
public void animar(Interface_MyMethods c) {
this.fnd = (MoverObjects[])c.getSetFondoAnimation(12, this.nivel);
this.coins = c.getCoinsGemas(this.nivel);
}
public void keyPressed(KeyEvent ev) {
this.p1.keyPressed(ev);
}
public void keyReleased(KeyEvent ev) {
this.p1.keyReleased(ev);
}
public void keyTyped(KeyEvent ev) {}
public void paint(Graphics g) {
int x;
for (x = this.fnd.length - 1; x >= 0; x--)
this.fnd[x].dibujar(g);
this.door.dibujar(g);
for (x = 0; x < this.est.length; x++)
this.est[x].dibujar(g);
setOpaque(false);
super.paint(g);
Graphics2D g2 = (Graphics2D)g;
this.p1.dibujar(g);
int i;
for (i = 0; i < this.monster_wolf.length; i++)
this.monster_wolf[i].dibujar(g);
for (i = 0; i < this.coins.length; i++)
this.coins[i].dibujar(g);
g2.setColor(Color.white);
g2.setFont(this.font);
g2.drawString(this.msg_nivel, 61, 47);
g2.drawString(this.msg_vidas, 251, 47);
g2.drawString(this.msg_coins, 448, 47);
g2.drawString(this.msg_gemas, 648, 47);
Toolkit.getDefaultToolkit().sync();
g.dispose();
}
public void actionPerformed(ActionEvent e) {
this.p1.mover(this.fnd[this.fnd.length - 1].getX());
this.door.mover(this.p1.getMove(), this.p1.getDirection());
int x;
for (x = 0; x < this.monster_wolf.length; x++) {
this.monster_wolf[x].mover(this.p1.getMove(), this.p1.getDirection());
this.monster_wolf[x].perseguir();
if (this.monster_wolf[x].detectar(this.p1.getX(), this.p1.getY(), this.p1.getWidth(), this.p1.getHeight()) && this.cancel) {
new Principal(this.marco, this.rest_vidas - 1, this.nivel);
this.cancel = false;
}
}
if (this.door.detectar(this.p1.getX(), this.p1.getY(), this.p1.getWidth(), this.p1.getHeight()) && this.cancel) {
int[] send = { ++this.nivel, this.cont_coins, 50, this.cont_gemas, 5 };
this.cancel = false;
new Principal(this.marco, send);
}
this.comprobar = 0;
for (x = 0; x < this.coins.length; x++) {
this.coins[x].mover(this.p1.getMove(), this.p1.getDirection());
if (this.coins[x].detectar(this.p1.getX(), this.p1.getY(), this.p1.getWidth(), this.p1.getHeight())) {
this.coinsVerif = true;
this.comprobar = x;
if (!this.coins[x].isObtenida()) {
if (this.coins[x].isTipo() == 1) {
this.cont_coins++;
} else {
this.cont_gemas++;
}
this.coins[x].setObtenida(true);
}
}
this.coins[x].coinObtenida();
}
for (x = 0; x < this.fnd.length; x++)
this.fnd[x].mover(this.p1.getMove(), this.p1.getDirection());
if (e.getSource() == this.playButton)
try {
Thread.sleep(3000L);
new Principal(this.marco);
} catch (Exception excep) {
System.exit(0);
}
this.msg_coins = "" + this.cont_coins;
this.msg_gemas = "" + this.cont_gemas;
this.msg_vidas = "" + this.rest_vidas;
this.msg_nivel = "" + this.nivel;
repaint();
}
public void gameOver(int status) {}
}
| [
"[email protected]"
] | |
7131b6534435e8909efa04342a724a3d87ff5daa | 7cf7d9729dae85781d9ceee4494c241e50cd3a5b | /WLPoker/src/com/wlzndjk/poker/picupload/UploadService.java | 7cb33ce3384343967f54421e3a4e8529152a1b09 | [] | no_license | heshicaihao/DIY_Poker | e80e58d57943a117ca65fe8a02826e942a312195 | 70a100b2a0ef37b4dcf09d2a23f3335f6dad0df8 | refs/heads/master | 2021-04-29T08:53:48.774419 | 2018-01-09T01:59:45 | 2018-01-09T01:59:45 | 77,670,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,272 | java | package com.wlzndjk.poker.picupload;
import com.wlzndjk.poker.utils.LogUtils;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class UploadService extends Service {
public static String TAG = "UploadService";
public Thread mThread ;
public UploadManagerThread mUploadManagerThread;
public static int cout = 0;
private static UploadService instance;
@Override
public void onCreate() {
LogUtils.logd(TAG, "onCreate");
instance = this;
UploadTaskManager.getInstance();
mUploadManagerThread = new UploadManagerThread();
super.onCreate();
LogUtils.logd(TAG, "onCreate++++");
}
@Override
public IBinder onBind(Intent intent) {
LogUtils.logd(TAG, "onBind");
return null;
}
/**
* Android 2.0时 使用的开启Service
*/
@Override
public void onStart(Intent intent, int startId) {
LogUtils.logd(TAG, "onStart");
}
/**
* Android 2.0以后 使用的开启Service
*/
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
LogUtils.logd(TAG, "onStartCommand");
String msg = intent.getExtras().getString("flag");
String url = intent.getExtras().getString("url");
LogUtils.logd(TAG, "msg:"+msg);
LogUtils.logd(TAG, "url:"+url);
if (mThread == null) {
mThread = new Thread(mUploadManagerThread);
}
if (mThread==null) {
LogUtils.logd(TAG, "mThread:+mThread==null");
}
if (mUploadManagerThread==null) {
LogUtils.logd(TAG, "mUploadManagerThread:+mUploadManagerThread==null");
}
if (msg.equals("start")) {
startUpload();
} else if (msg.equals("stop")) {
// mUploadManagerThread.setStop(true);
stopSelf();
}
// return super.onStartCommand(intent, flags, startId);
return START_STICKY_COMPATIBILITY;
}
@Override
public void onDestroy() {
try {
mThread.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
// mUploadManagerThread.setStop(true);
mThread = null;
super.onDestroy();
}
public static UploadService getInstance() {
return instance;
}
private void startUpload() {
mThread = new Thread(mUploadManagerThread);
mThread.start();
LogUtils.logd(TAG, "mThread.start()");
}
} | [
"[email protected]"
] | |
3e320171a27b7f1e3c569fac4b5564e0a3c54da7 | f7a87051e0f6b81ff9ebb3f7c5f16eb84aecc5ec | /app/src/main/java/com/lightcyclesoftware/fragmentexample/core/managers/CoordinatedFeedManager.java | bfb53cd3d6e3192bf0c08ce7556360a1ea75c46e | [] | no_license | tallgeese-3/fragment-example | c7cf950210221a14ca022128bf69c0b62ff50385 | 77d56c4a0bc996ea91595b6384b0ce675461f369 | refs/heads/master | 2021-05-29T00:11:22.231497 | 2015-03-03T01:30:58 | 2015-03-03T01:30:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,379 | java | package com.lightcyclesoftware.fragmentexample.core.managers;
import com.lightcyclesoftware.fragmentexample.com.lightcyclesoftware.fragmentexample.core.entities.Culture;
import com.lightcyclesoftware.fragmentexample.webservices.FeedzillaCategoriesResponse;
import com.lightcyclesoftware.fragmentexample.webservices.FeedzillaClient;
import com.lightcyclesoftware.fragmentexample.webservices.FeedzillaCulturesResponse;
import com.lightcyclesoftware.fragmentexample.webservices.FeedzillaSubCategoriesResponse;
import java.util.List;
import javax.inject.Inject;
import rx.Observable;
/**
* Created by ewilliams on 2/24/15.
*/
public class CoordinatedFeedManager implements FeedManager {
private FeedzillaClient feedzillaClient;
@Inject
public CoordinatedFeedManager(FeedzillaClient feedzillaClient) {
this.feedzillaClient = feedzillaClient;
}
@Override
public Observable<List<Culture>> getCultures() {
return feedzillaClient.getCultures();
}
@Override
public Observable<FeedzillaCategoriesResponse> getCategories(String cultureCode, String order) {
return feedzillaClient.getCategories(cultureCode, order);
}
@Override
public Observable<FeedzillaSubCategoriesResponse> getSubCategories(String cultureCode, String order) {
return feedzillaClient.getSubCategories(cultureCode, order);
}
}
| [
"[email protected]"
] | |
04e857d280f754ad93904097d57dabe9547d2e3b | 99ab4c4487df5795bdadd845301bebbe12d1cd56 | /chili-master/chili-gwt/src/main/java/info/chili/gwt/callback/ALRequestCallback.java | 6827e02cda4d6547269df68e44944c6a4eb834b2 | [] | no_license | ayalamanchili/chili | 79968b236009fdf674667acd5d555b1049b74fcb | 67f133e3c4844d93638048e3f2c93fa1fe7a798c | refs/heads/master | 2023-01-03T14:57:49.991573 | 2023-01-02T14:23:05 | 2023-01-02T14:23:05 | 32,548,415 | 0 | 6 | null | 2023-01-02T14:23:06 | 2015-03-19T21:59:04 | Java | UTF-8 | Java | false | false | 706 | 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 info.chili.gwt.callback;
import com.google.gwt.http.client.RequestCallback;
import info.chili.gwt.widgets.LoadingWidget;
import java.util.logging.Logger;
/**
*
* @author Ramana.Lukalapu
*/
public abstract class ALRequestCallback implements RequestCallback {
Logger logger = Logger.getLogger(ALRequestCallback.class.getName());
protected LoadingWidget loadingWidget = new LoadingWidget();
public ALRequestCallback() {
loadingWidget.show();
}
}
| [
"[email protected]"
] | |
38f7ed47e401e06485ae8a7c4976044598e4f5e7 | 62f04f05d2786305a1d1a46e997d92c51a3166dd | /grainInsects/src/com/grain/service/AttributeService.java | 263b967fb624d46f44a510a368f9e7a14b195fc6 | [] | no_license | wuwei-bupt/LocationSystem | 849d1163275eba4a7a2fa2f3fc59e2a09333e26e | 3ff8bdbe52df1761610f215f6013dc6c5a8483d4 | refs/heads/master | 2020-05-21T10:10:08.545328 | 2016-11-10T09:24:24 | 2016-11-10T09:24:24 | 70,296,389 | 1 | 2 | null | 2016-10-27T09:14:02 | 2016-10-08T02:07:14 | Java | UTF-8 | Java | false | false | 171 | java | package com.grain.service;
import com.grain.entity.Attribute;
/**
* Service - 属性
*
*/
public interface AttributeService extends BaseService<Attribute, Long> {
} | [
"[email protected]"
] | |
5c7a3f954736b5dae1158b22c6e77f2f531cec0a | c71db87f3eb4f9ebc44a30d2f1e91fc927236b59 | /src/main/java/ejb3inaction/businessLogic/BidServiceImpl.java | f277119fb92bf00725180dd5f0843fdde7e8ab4e | [] | no_license | pagusek/ActionBazar | e81cf7d07573da5d1b9e826cb7cf529a27495366 | 093e01a183602685f1de6e6d0e80d4484e5d7a7d | refs/heads/master | 2021-01-10T05:19:43.921987 | 2015-11-15T16:53:40 | 2015-11-15T16:53:40 | 43,093,063 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 400 | java | package ejb3inaction.businessLogic;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import ejb3inaction.entities.BidEntity;
@Stateless
public class BidServiceImpl implements BidService {
@PersistenceContext
private EntityManager entityManager;
@Override
public void addBid(BidEntity bid) {
entityManager.persist(bid);
}
}
| [
"[email protected]"
] | |
3050f1901a547b2c1ea9ac5430ae6a69827b130b | 70ab62b9dfbd4cff64e4e8c3bd80b045bfb20772 | /MyApplication/androidserver/src/main/java/net/tt/androidserver/activity/BoundActivity.java | ae2886a376a7d3e85440a6ee948854251fdef50e | [] | no_license | jspfei/android-_new_technology | 072cb4f9a93100f67673a86178889d8bdb95b7c2 | 235a06a10c803ae9c7544d9a71c19cf757d6d022 | refs/heads/master | 2020-05-30T12:53:09.221035 | 2017-05-25T06:49:51 | 2017-05-25T06:49:51 | 82,629,765 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,377 | java | package net.tt.androidserver.activity;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import net.tt.androidserver.R;
import net.tt.androidserver.server.MyBindService;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class BoundActivity extends Activity {
private static final String TAG = "BoundActivity";
private ServiceConnection sc = new MyServiceConnection();
private MyBindService.MyBinder myBinder;
private MyBindService myBindService;
private boolean mBound;
private class MyServiceConnection implements ServiceConnection{
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
Log.i(TAG, "onServiceConnected: ");
myBinder = (MyBindService.MyBinder) service;
myBindService = myBinder.getService();
mBound = true;
}
@Override
public void onServiceDisconnected(ComponentName name) {
mBound = false;
Log.i(TAG, "onServiceDisconnected: ");
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_bound);
findViewById(R.id.bindService).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(BoundActivity.this,MyBindService.class);
bindService(intent,sc, Context.BIND_AUTO_CREATE);
}
});
findViewById(R.id.unBindService).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
excuteUnbindService();
}
});
String cmd = "adb shell";
String cmd1 = "am start -n com.android.browser/com.android.browser.BrowserActivity";
try {
execCommand(cmd);
execCommand(cmd1);
} catch (IOException e) {
}
}
public void execCommand(String command) throws IOException {
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec(command);
try {
if (proc.waitFor() != 0) {
System.err.println("exit value = " + proc.exitValue());
}
BufferedReader in = new BufferedReader(new InputStreamReader(
proc.getInputStream()));
StringBuffer stringBuffer = new StringBuffer();
String line = null;
while ((line = in.readLine()) != null) {
stringBuffer.append(line+"-");
}
System.out.println(stringBuffer.toString());
} catch (InterruptedException e) {
System.err.println(e);
}
}
private void excuteUnbindService() {
if (mBound) {
unbindService(sc);
mBound = false;
}
}
@Override
protected void onDestroy() {
super.onDestroy();
Log.w(TAG, "in onDestroy");
excuteUnbindService();
}
}
| [
"[email protected]"
] | |
ca63bfefe21b46bd734745a365e807ceadf89a27 | 92a5e9e0aae727d88f53fbeb89a7aec7b4610322 | /inclass/c11/SimpleExample1.java | 70b95b8bd9f3b2a0b4a0efdd6b6a716066aaf010 | [] | no_license | Erewhon-Lucy/program_java | 770b39db3296495b2766c0edb86f7fc2c1a29eeb | df45247671e2942ed278f75e81a436923ddae27a | refs/heads/main | 2023-01-23T08:54:08.050280 | 2020-12-08T07:26:46 | 2020-12-08T07:26:46 | 313,104,907 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 380 | java | package inclass.c11;
import java.awt.*;
public class SimpleExample1 extends Frame {
public static void main(String args[]) {
Frame f = new Frame();
Button b = new Button("Click me!!");
f.add(b);
f.setSize(300, 100);
f.setTitle("This is my First AWT example");
f.setLayout(new FlowLayout());
f.setVisible(true);
}
} | [
"[email protected]"
] | |
1cdfb3e17412b0dff7cf26415467cac59ffa1012 | f08296fd4f0ab0d51a670c0fa26ead486d2cf4d9 | /app/src/test/java/br/com/pedrohsantos/pokemonbattle/ExampleUnitTest.java | 2a77469ac89fa3c56e0770a4e74e61495b84e62a | [] | no_license | phsantosti/PokemonBattles | 4c97c50dad0933791141ef9f58ecb33f7ad61dea | 704650e68b3288486e743f4e3c7586fe17fdb2e2 | refs/heads/master | 2020-11-25T12:30:23.411559 | 2019-12-17T16:54:11 | 2019-12-17T16:54:11 | 228,661,909 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 394 | java | package br.com.pedrohsantos.pokemonbattle;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"[email protected]"
] | |
c6625146677b7b6756b42ae27fcb9f7092b5a3bc | aa1377a8854a16aeca7e533453898ae07340d362 | /src/edu/fit/cs/sno/test/MiscTest.java | 05f3b94c9f0786402d1ee495dd9ebb2dacbe73d6 | [] | no_license | Dieileson/sno | 7ad6eebd558c85d3d956a95a7bfbe0b34c7778ec | 72979514aaaae78369c77b762f750d78b6307630 | refs/heads/master | 2021-05-26T10:07:49.920508 | 2011-04-23T01:12:05 | 2011-04-23T01:12:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 471 | java | package edu.fit.cs.sno.test;
import static org.junit.Assert.assertEquals;
import org.junit.Before;
import org.junit.Test;
import edu.fit.cs.sno.snes.cpu.CPU;
import edu.fit.cs.sno.util.Settings;
public class MiscTest {
@Before
public void setUp() {
Settings.init();
CPU.resetCPU();
}
@Test
public void testCPUStatic() {
CPU.dataBank = 5;
assertEquals(CPU.dataBank, 5);
}
@Test
public void testCPUStatic02() {
assertEquals(0, CPU.dataBank);
}
}
| [
"[email protected]"
] | |
b5116c6ff720564e82e66718d38afa04512d4e4c | 8f7fa81ff9fbc3098e02da898cf2f8d40606c600 | /src/main/java/com/zhanglei/designPattern/principle/singleresponsibility/WalkBird.java | d9ba4d25f55bee181d9955f84a4b000d05c41baf | [] | no_license | zhanglei-workspace/Java-related-code | c0ac624d3152401b0e56ede6cf1dbf777445b31c | f95bc686a46f157b7199df74a5afef455c23dd2d | refs/heads/master | 2022-12-17T09:02:34.805796 | 2019-07-06T10:00:06 | 2019-07-06T10:00:06 | 51,248,116 | 2 | 2 | null | 2022-12-16T03:47:08 | 2016-02-07T13:14:31 | Java | UTF-8 | Java | false | false | 198 | java | package principle.singleresponsibility;
/**
* Created by geely
*/
public class WalkBird {
public void mainMoveMode(String birdName){
System.out.println(birdName+"用脚走");
}
}
| [
"[email protected]"
] | |
75124c1838151a33d5638f2a5ee5ea10beb6f061 | 3162399369790f5d78f0324801db4886b9d09dfe | /src/com/gl/hashtable/HashTable.java | 5e71e374abae6514d52bbbaf91d465c8c268b174 | [] | no_license | Vishwa07dev/gl_code | e59e13d2c62387deb107804f5f233471afc0d223 | 9ae72004c5f611dabc6ebf63eca9f2e080a2249c | refs/heads/master | 2023-03-13T17:24:30.261740 | 2021-03-07T23:09:10 | 2021-03-07T23:09:10 | 297,829,030 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 923 | java | package com.gl.hashtable;
/**
* This will store the elements in the key value format.
*
* On an average case, it guarantees :
* Insertion -- O(1)
* Search -- O(1)
* Deletion -- O(1)
*/
public class HashTable {
private int tSize ; //size of the given Hash table / number of HashTableNodes or buckets
private int count ;
private HashTableNode[] table ;
public HashTable(){
}
public HashTable(int tSize){
this.tSize = tSize ;
table = new HashTableNode[tSize];
this.count=0;
}
public int gettSize() {
return tSize;
}
public void settSize(int tSize) {
this.tSize = tSize;
this.table = new HashTableNode[tSize];
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public HashTableNode[] getTable() {
return table;
}
public void setTable(HashTableNode[] table) {
this.table = table;
}
}
| [
"[email protected]"
] | |
793076d05da70dcc16a258e02f68015d1e0e2576 | 3b2e405eda5e4cacaed89f66a669bf0524cee036 | /src/main/java/com/example/vms/utils/QRCodeUtil.java | 50cdadfc9e3adad6112613aa4056e1550d843126 | [] | no_license | thechetanmishra/Visitor-Management-Systems | 80c92d3fe6f66b2f244d2e543709caafa7977a20 | a3b1daed2a41fe7aece5bef7f2d45bb189a3146d | refs/heads/master | 2020-04-27T19:29:14.932861 | 2019-03-08T22:43:40 | 2019-03-08T22:43:40 | 174,620,605 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,740 | java | package com.example.vms.utils;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Base64;
import java.util.Hashtable;
import javax.imageio.ImageIO;
import org.springframework.stereotype.Component;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
@Component
public class QRCodeUtil {
private static final int QRSize = 255;
public BufferedImage createQRImage(String qrCodeText) throws WriterException, IOException {
return createQRImage(qrCodeText, QRSize);
}
public BufferedImage createQRImage(String qrCodeText, int size) throws WriterException, IOException {
// Create the ByteMatrix for the QR-Code that encodes the given String
Hashtable<EncodeHintType, ErrorCorrectionLevel> hintMap = new Hashtable<>();
hintMap.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
QRCodeWriter qrCodeWriter = new QRCodeWriter();
BitMatrix byteMatrix = qrCodeWriter.encode(qrCodeText, BarcodeFormat.QR_CODE, size, size, hintMap);
// Make the BufferedImage that are to hold the QRCode
int matrixWidth = byteMatrix.getWidth();
BufferedImage image = new BufferedImage(matrixWidth, matrixWidth, BufferedImage.TYPE_INT_RGB);
image.createGraphics();
Graphics2D graphics = (Graphics2D) image.getGraphics();
graphics.setColor(Color.WHITE);
graphics.fillRect(0, 0, matrixWidth, matrixWidth);
// Paint and save the image using the ByteMatrix
graphics.setColor(Color.BLACK);
for (int i = 0; i < matrixWidth; i++) {
for (int j = 0; j < matrixWidth; j++) {
if (byteMatrix.get(i, j)) {
graphics.fillRect(i, j, 1, 1);
}
}
}
return image;
}
public String encodeToString(BufferedImage image, String type) {
String imageString = null;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
ImageIO.write(image, type, bos);
byte[] imageBytes = bos.toByteArray();
imageString = Base64.getEncoder().encodeToString(imageBytes);
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
return imageString;
}
public static BufferedImage decodeToImage(String imageString) {
BufferedImage image = null;
byte[] imageByte;
try {
imageByte = Base64.getDecoder().decode(imageString);
ByteArrayInputStream bis = new ByteArrayInputStream(imageByte);
image = ImageIO.read(bis);
bis.close();
} catch (Exception e) {
e.printStackTrace();
}
return image;
}
}
| [
"[email protected]"
] | |
b8dae743c28f7e1f44ca48b1576aa75dfb7adadb | 493ecb3fe0333e4ff36a37add2d886ce722c8670 | /src/main/java/com/ems/dto/ems/EmployeeDesignationSetupDTO.java | f36fb1e2e809877716e8970a2c2209af17c8ac5c | [] | no_license | ApurboRahman/EmployeeManagementSystem | 5dc705f255ff3034f0bac1983e225b6204086cbd | 081a0247d42f1f75f6019b06b35c254686dc22ed | refs/heads/master | 2020-03-30T09:47:37.292614 | 2018-10-01T13:38:57 | 2018-10-01T13:38:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,305 | java | package com.ems.dto.ems;
import java.util.Date;
/**
* Created by Apurbo on 11/22/2016.
*/
public class EmployeeDesignationSetupDTO {
Integer employeeDesignationType;
String shortName;
String fullName;
String userName;
Date setDate;
String approvedBy;
public Integer getEmployeeDesignationType() {
return employeeDesignationType;
}
public void setEmployeeDesignationType(Integer employeeDesignationType) {
this.employeeDesignationType = employeeDesignationType;
}
public String getShortName() {
return shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Date getSetDate() {
return setDate;
}
public void setSetDate(Date setDate) {
this.setDate = setDate;
}
public String getApprovedBy() {
return approvedBy;
}
public void setApprovedBy(String approvedBy) {
this.approvedBy = approvedBy;
}
}
| [
"[email protected]"
] | |
3c47b7fa175007fa293656b9e0858141c81a2b9b | 26d6af360db11f62862320e370d45bf3537c4018 | /Programas/eventosDeTextos/Principal.java | 8b160a1069d78383c1f19d9bb352d96998ea2003 | [
"MIT"
] | permissive | Daniel-Fonseca-da-Silva/-Faculdade-Java-Swing | 5fb510a6c98131652bf4f361b83a3b31ddf29655 | edbfb312b476d10b186e33b94541e5cd843acde8 | refs/heads/master | 2023-07-09T16:01:24.728908 | 2021-08-02T18:44:02 | 2021-08-02T18:44:02 | 392,058,330 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 332 | java | package eventosDeTextos;
import java.awt.EventQueue;
public class Principal {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Tela frame = new Tela();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
}
| [
"[email protected]"
] | |
ffcd56cc54ae4447da8d762e5a89ddf43cd8e3fb | c4190838f5fdcc714bb39970891f7fa13435f5d0 | /src/Menu.java | 44a9697625928480fa903fc64a111859a5b2c4e9 | [] | no_license | grubaanka133-p0o9/Homework-drink | d7ee60145bf017d3f62f40a2d927bc1e3ba0971c | cf224f8c16b8fcd8e1c2b47d4ab10ed02b61962e | refs/heads/master | 2020-12-13T12:42:33.704609 | 2020-01-19T19:53:31 | 2020-01-19T19:53:31 | 234,419,663 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,210 | java | public class Menu {
public static void main(String[] args) {
Drink drink1 = new Drink();
drink1.name = "Mojito";
drink1.price = 25;
drink1.ingredient1.name = "rum";
drink1.ingredient2.name = "lime juice";
drink1.ingredient3.name = "mint";
drink1.ingredient1.quantity = 50;
drink1.ingredient2.quantity = 15;
drink1.ingredient3.quantity = 10;
drink1.alcohol = true;
Drink drink2 = new Drink();
drink2.name = "Banana duo";
drink2.price = 20;
drink2.ingredient1.name = "banan juice";
drink2.ingredient2.name = "currant juice";
drink2.ingredient3.name = "orange";
drink2.ingredient1.quantity = 1;
drink2.ingredient2.quantity = 200;
drink2.ingredient3.quantity = 1;
drink2.alcohol = false;
float sumOfIngredients1 = drink1.ingredient1.quantity + drink1.ingredient2.quantity +
drink1.ingredient3.quantity;
float sumOfIngredients2 = drink2.ingredient1.quantity + drink2.ingredient2.quantity +
drink2.ingredient3.quantity;
System.out.println("MENU\n");
System.out.println(drink1.name + "-" + drink1.price + " zł");
System.out.println(drink1.ingredient1.name + " - " + drink1.ingredient1.quantity + " ml");
System.out.println(drink1.ingredient2.name + " - " + drink1.ingredient2.quantity + " ml");
System.out.println(drink1.ingredient3.name + " - " + drink1.ingredient3.quantity + " pieces");
System.out.println("Drink has alcohol: " + drink1.alcohol +"\n");
System.out.println("Capacity: " + sumOfIngredients1 +"ml\n");
System.out.println(drink2.name + " - " + drink2.price + " zł");
System.out.println(drink2.ingredient1.name + " - " + drink2.ingredient1.quantity + " ml");
System.out.println(drink2.ingredient2.name + " - " + drink2.ingredient2.quantity + " ml");
System.out.println(drink2.ingredient3.name + " - " + drink2.ingredient3.quantity + " pieces");
System.out.println("Drink has alcohol: " + drink2.alcohol);
System.out.println("Capacity: " + sumOfIngredients2 + "ml");
}
}
| [
"[email protected]"
] | |
383e99a948c5fb3b293f598add5d719760765baa | d27016431e4cf0c5837a2d7ccf70bfae3225d302 | /SampleRestAssured/src/test/java/TestRuuner/Runner.java | f72207403001384cec592122bd14050a0df7d21c | [] | no_license | Nidhi031/Webservices | ea360746613166e286181cd17e7eeb46d334ccaf | 84d63ebb824d79775fe832623ad8fc738cc78567 | refs/heads/master | 2020-04-04T10:06:54.606725 | 2018-11-02T09:28:02 | 2018-11-02T09:28:02 | 155,843,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 409 | java | package TestRuuner;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import cucumber.api.testng.AbstractTestNGCucumberTests;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/java/Feature Files/hcsc.feature",glue = {"stepDefinitions"}
,plugin= {"pretty","json:target/Cucumber-report/cucumber.json"}
)
public class Runner{
}
| [
"[email protected]"
] | |
eaa9f0a81ab96443d7bb3eb9ad1dcbd21f1f3fde | afc94eecda1baa11b4d0beb5c011534478f9cf58 | /src/Lesson240.java | 04f52cc0c15d692bbd25dec8f30b63d4c30f0701 | [] | no_license | gui66497/LeetCode_Learn | d4c10a36b7386a947b844b4a261da9d1bafe55fe | 039869eee3f55192ea62d86fde3a9fbe0a5b5e26 | refs/heads/main | 2023-04-19T02:09:29.439836 | 2021-04-29T02:44:07 | 2021-04-29T02:44:07 | 306,685,626 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,678 | java |
// 240. 搜索二维矩阵 II
// 编写一个高效的算法来搜索 m x n 矩阵 matrix 中的一个目标值 target 。该矩阵具有以下特性:
// 每行的元素从左到右升序排列。
// 每列的元素从上到下升序排列。
// 示例 1:
// 输入:matrix = [[1,4,7,11,15],[2,5,8,12,19],[3,6,9,16,22],[10,13,14,17,24],[18,21,23,26,30]], target = 5
// 输出:true
// 示例 2:
// 输入:matrix = [[1,4,7,11,15],[2,5,8,12,19],[3,6,9,16,22],[10,13,14,17,24],[18,21,23,26,30]], target = 20
// 输出:false
// 提示:
// m == matrix.length
// n == matrix[i].length
// 1 <= n, m <= 300
// -109 <= matix[i][j] <= 109
// 每行的所有元素从左到右升序排列
// 每列的所有元素从上到下升序排列
// -109 <= target <= 109
class Lesson240 {
public boolean searchMatrix(int[][] matrix, int target) {
// 从左下角开始
int row = matrix.length - 1;
int col = 0;
while (row >= 0 && col < matrix[0].length) {
if (matrix[row][col] < target) {
col++;
} else if (matrix[row][col] > target) {
row--;
} else {
return true;
}
}
return false;
}
public static void main(String[] args) {
ListNode head = new ListNode(-129);
head.next = new ListNode(-129);
Lesson240 solution = new Lesson240();
int[][] matrix = { { 1, 4, 7, 11, 15 }, { 2, 5, 8, 12, 19 }, { 3, 6, 9, 16, 22 }, { 10, 13, 14, 17, 24 },
{ 18, 21, 23, 26, 30 } };
boolean res = solution.searchMatrix(matrix, 5);
System.out.println("res:" + res);
}
} | [
"[email protected]"
] | |
7045b06ae9b85b68200a334cedbc3fad7fd1f405 | c7080f170e9a61b4a3052a54120d2c5ef3878acf | /domi-common/src/main/java/com/domi/common/utils/JsonUtils.java | b09ed066568fd581c935b595437a341f2e5d7fce | [] | no_license | kakajing/domi2.0 | 8f5757d9e784c982c3f21ed3287447cf2f541b76 | 10b6c253220a6dfdd5b4bee74180db9f5976dcab | refs/heads/master | 2021-01-04T02:41:40.303848 | 2017-02-17T16:23:07 | 2017-02-17T16:23:07 | 76,050,418 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,695 | java | package com.domi.common.utils;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.List;
/**
* 嘟米商城自定义响应结构
*/
public class JsonUtils {
// 定义jackson对象
private static final ObjectMapper MAPPER = new ObjectMapper();
/**
* 将对象转换成json字符串。
* <p>Title: pojoToJson</p>
* <p>Description: </p>
* @param data
* @return
*/
public static String objectToJson(Object data) {
try {
String string = MAPPER.writeValueAsString(data);
return string;
} catch (JsonProcessingException e) {
e.printStackTrace();
}
return null;
}
/**
* 将json结果集转化为对象
*
* @param jsonData json数据
* @param
* @return
*/
public static <T> T jsonToPojo(String jsonData, Class<T> beanType) {
try {
T t = MAPPER.readValue(jsonData, beanType);
return t;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
* 将json数据转换成pojo对象list
* <p>Title: jsonToList</p>
* <p>Description: </p>
* @param jsonData
* @param beanType
* @return
*/
public static <T>List<T> jsonToList(String jsonData, Class<T> beanType) {
JavaType javaType = MAPPER.getTypeFactory().constructParametricType(List.class, beanType);
try {
List<T> list = MAPPER.readValue(jsonData, javaType);
return list;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
| [
"[email protected]"
] | |
7f2d84d7a700ab21202263a8a83087d380be4a38 | 311018a637bd1db50e3e6f15ef3ca254b6bb3ccc | /wearable/src/main/java/com/example/android/sunshine/wearable/Constants.java | 8483b4b9ec0b9f62b3d2645b881acd91b9e0412f | [
"Apache-2.0"
] | permissive | fabiocasado/GoUbiquitous | be4afa9994b1e6dc3bd72a434b643d38c7542e1d | c2d990197adab780a539e5cca58049e83d23cbe3 | refs/heads/master | 2021-01-01T05:09:51.098199 | 2016-05-10T12:55:25 | 2016-05-10T12:55:25 | 57,136,600 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 352 | java | package com.example.android.sunshine.wearable;
/**
* Created by fcasado on 5/10/16.
*/
public class Constants {
public static final String WEATHER_PREF = "weather";
public static final String PREF_KEY_WEATHER_ID = "weatherID";
public static final String PREF_KEY_MIN_TEMP = "minTemp";
public static final String PREF_KEY_MAX_TEMP = "maxTemp";
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.